/* ============================================
   MOUSSEFIZZ — Premium Global Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand palette */
  --navy:        #0A1628;
  --navy-mid:    #122040;
  --blue:        #1A56DB;
  --blue-light:  #3B82F6;
  --blue-pale:   #EFF6FF;
  --teal:        #0EA5E9;
  --gold:        #D4AF37;
  --gold-light:  #F5E199;
  --green:       #059669;
  --green-light: #D1FAE5;
  --red:         #DC2626;
  --red-light:   #FEE2E2;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F8FAFF;
  --grey-50:     #F9FAFB;
  --grey-100:    #F3F4F6;
  --grey-200:    #E5E7EB;
  --grey-300:    #D1D5DB;
  --grey-400:    #9CA3AF;
  --grey-600:    #4B5563;
  --grey-800:    #1F2937;
  --text:        #111827;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --max-w:       960px;
  --max-w-wide:  1140px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-xl:   0 20px 60px rgba(0,0,0,0.15);
  --shadow-blue: 0 8px 32px rgba(26,86,219,0.3);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.4);

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

/* ---- Layout ---- */
.container  { max-width: var(--max-w);      margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 24px; }

/* ---- HEADER ---- */
.site-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img { height: 38px; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-600);
  padding: 8px 16px;
  border-radius: var(--r-full);
  transition: all 0.2s;
}
.header-nav a:hover { color: var(--navy); background: var(--grey-100); text-decoration: none; }
.header-nav .btn-header {
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-md);
  transition: all 0.2s;
}
.header-nav .btn-header:hover { background: var(--blue); transform: translateY(-1px); box-shadow: var(--shadow-blue); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white) !important;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none !important;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #B8961E, var(--gold), #D4AF37);
  color: var(--navy) !important;
  padding: 18px 48px;
  border-radius: var(--r-full);
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: var(--shadow-gold);
  transition: all 0.25s;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.btn-gold:hover::before { left: 150%; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,55,0.5); }

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #047857, var(--green));
  color: var(--white) !important;
  padding: 18px 48px;
  border-radius: var(--r-full);
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 8px 32px rgba(5,150,105,0.35);
  transition: all 0.25s;
  width: 100%;
}
.btn-green:hover { background: linear-gradient(135deg, #065F46, #047857); transform: translateY(-1px); }

/* ---- BADGES ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
}
.badge-navy  { background: var(--navy);  color: var(--white); }
.badge-gold  { background: var(--gold);  color: var(--navy); }
.badge-green { background: var(--green); color: var(--white); }
.badge-red   { background: var(--red);   color: var(--white); }
.badge-blue  { background: var(--blue);  color: var(--white); }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ---- DIVIDERS ---- */
.divider { border: none; border-top: 1px solid var(--grey-200); margin: 24px 0; }
.divider-gold { border-top-color: var(--gold); opacity: 0.4; }

/* ---- STARS ---- */
.stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }

/* ---- ALERTS ---- */
.alert {
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-warning { background: #FFFBEB; border: 1px solid #FDE68A; color: #92400E; }
.alert-success { background: var(--green-light); border: 1px solid #6EE7B7; color: #065F46; }
.alert-info    { background: var(--blue-pale); border: 1px solid #BFDBFE; color: #1E40AF; }
.alert-danger  { background: var(--red-light); border: 1px solid #FCA5A5; color: #991B1B; }

/* ---- SECTION ---- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-head p  { font-size: 17px; color: var(--grey-600); max-width: 560px; margin: 0 auto; }

/* ---- TABLE ---- */
.premium-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.premium-table th {
  padding: 16px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.premium-table th:first-child { background: var(--grey-100); color: var(--grey-600); }
.premium-table th:last-child  { background: var(--navy); color: var(--white); }
.premium-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--grey-100); vertical-align: top; }
.premium-table td:last-child  { background: #F0F7FF; }
.premium-table tr:last-child td { border-bottom: none; }
.check { color: var(--green); font-weight: 700; margin-right: 6px; }
.cross { color: var(--red);   font-weight: 700; margin-right: 6px; }

/* ---- REVIEW CARD ---- */
.review-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--blue-pale);
  position: absolute;
  top: 8px;
  right: 20px;
  line-height: 1;
}
.review-card .reviewer-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.review-card .reviewer-loc  { font-size: 12px; color: var(--grey-400); margin-left: 6px; }
.review-card .review-title  { font-weight: 600; font-size: 14px; margin: 8px 0 4px; }
.review-card .review-text   { font-size: 14px; color: var(--grey-600); line-height: 1.65; }
.verified-badge { font-size: 11px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 4px; margin-top: 4px; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 24px 48px;
}
.footer-brand img { height: 36px; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 16px; }
.footer-brand p   { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 240px; }
.footer-col h6 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-col .contact-item { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  padding: 16px 24px;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .header-nav a:not(.btn-header) { display: none; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .container, .container-wide { padding: 0 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
