/* ============================================================
   AMBAV — GLOBAL DESIGN SYSTEM
   Palette: Ocean Blue · Water · Teal
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

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

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100vw; }
body { max-width: 100vw; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── DESIGN TOKENS ── */
:root {
  /* Blues — primary brand colours */
  --ocean:     #0a2342;
  --deep-blue: #0d3063;
  --mid-blue:  #1a5276;
  --sky:       #2e86c1;
  --aqua:      #5dade2;
  --mist:      #aed6f1;

  /* Kept for backward compatibility — mapped to blue equivalents */
  --obsidian:  #0a2342;
  --ink:       #0a2342;
  --charcoal:  #0d3063;
  --graphite:  #0d3063;
  --smoke:     #1a5276;
  --ash:       #4a6fa5;
  --pearl:     #aed6f1;

  /* Light palette */
  --ivory:      #f0f6fc;
  --cream:      #f7fbff;
  --warm-white: #faf9f7;
  --white:      #ffffff;

  /* Accent — teal/cyan replaces gold */
  --gold:       #0097a7;
  --gold-light: #4dd0e1;
  --gold-pale:  #e0f7fa;
  --gold-dark:  #006064;
  --gold-rich:  #00838f;

  /* Semantic */
  --text-dark:       rgba(240,246,252,0.92);
  --text-dark-muted: rgba(240,246,252,0.55);
  --text-dark-dim:   rgba(240,246,252,0.28);
  --border-dark:     rgba(0,151,167,0.20);
  --border-light:    rgba(10,35,66,0.10);
  --border-gold:     rgba(0,151,167,0.40);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:    1280px;
  --nav-h:    84px;
  --sec-v:    120px;
  --sec-v-sm: 72px;

  /* Motion */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s var(--ease);
  --t-med:  0.45s var(--ease-out);
  --t-slow: 0.7s var(--ease-out);

  /* Third-party brand colors */
  --color-whatsapp: #25d366;
  --color-amazon:   #ff9900;
  --color-youtube:  #ff0000;

  /* Form states */
  --color-success-bg:     #f0faf4;
  --color-success-border: #a3cfb4;
  --color-success-text:   #1a6636;
  --color-error:          #c0392b;

  /* Logo mark gradient */
  --logo-grad-start: #1a7fc4;
  --logo-grad-mid:   #0d5fa0;
  --logo-grad-end:   #0a4a82;

  /* Breakpoints (reference only — use in media queries below) */
  --bp-xs: 480px;
  --bp-sm: 600px;
  --bp-md: 768px;
  --bp-lg: 1024px;
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ── SECTION ── */
.section { padding: var(--sec-v) 0; }
.section--dark { background: var(--deep-blue); }
.section--ink  { background: var(--ocean); }
.section--ivory { background: var(--ivory); }
.section--cream { background: var(--cream); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.display-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.display-title em {
  font-style: italic;
  color: var(--gold);
}

.display-title--xl  { font-size: clamp(3rem, 6vw, 5.5rem); }
.display-title--lg  { font-size: clamp(2.25rem, 4.5vw, 4rem); }
.display-title--md  { font-size: clamp(1.75rem, 3vw, 2.75rem); }
.display-title--sm  { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }

.body-lg   { font-size: 1.125rem; line-height: 1.75; font-weight: 300; }
.body-base { font-size: 1rem;     line-height: 1.70; font-weight: 300; }
.body-sm   { font-size: 0.875rem; line-height: 1.65; font-weight: 300; }

.text-dark-muted { color: var(--text-dark-muted); }
.text-muted      { color: var(--ash); }
.text-gold       { color: var(--gold); }

/* ── GOLD RULE ── */
.gold-rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 24px 0;
}
.gold-rule--center { margin: 24px auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  border-radius: 0;
  transition: all var(--t-med);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Gold filled (now teal) */
.btn-gold {
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8125rem;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}
.btn-gold:hover { background: var(--gold-rich); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,151,167,0.55); }

/* Ghost (on dark) */
.btn-ghost {
  padding: 13px 35px;
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark-dim);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8125rem;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(0,151,167,0.12); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,151,167,0.25); }

/* Light (on light bg) */
.btn-dark {
  padding: 13px 35px;
  background: var(--ink);
  color: var(--ivory);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8125rem;
}
.btn-dark:hover { background: var(--charcoal); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(10,35,66,0.45); color: #fff; }

.btn-outline-dark {
  padding: 13px 35px;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(10,35,66,0.3);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8125rem;
}
.btn-outline-dark:hover { border-color: var(--ink); background: var(--ink); color: var(--ivory); }

.btn-sm { padding: 10px 24px; font-size: 0.75rem; }
.btn-lg { padding: 18px 44px; font-size: 0.875rem; }

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
}

.site-header--transparent { background: transparent; }
.site-header--solid {
  background: rgba(10,35,66,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-dark);
}

.navbar {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 0;
  width: 100%;
  padding: 0 24px 0 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-tm {
  font-size: 0.8rem;
  color: #fff;
  align-self: flex-start;
  margin-top: 4px;
  margin-left: -4px;
  line-height: 1;
  font-weight: 400;
}

.logo-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  align-self: flex-end;
  margin-bottom: 6px;
  white-space: nowrap;
}

.logo-mark {
  width: 46px;
  height: 46px;
  background: linear-gradient(160deg, var(--logo-grad-start) 0%, var(--logo-grad-mid) 55%, var(--logo-grad-end) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,35,66,0.35);
}

/* Water ripple wave at bottom of mark */
.logo-mark::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -10%;
  width: 120%;
  height: 16px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}

.logo-mark svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1;
}

.logo-name sup {
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: super;
  opacity: 0.7;
}

.logo-tagline {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  line-height: 1;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 32px;
}

.nav-links a {
  position: relative;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,246,252,0.65);
  transition: color var(--t-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ivory);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}


.nav-cta {
  flex-shrink: 0;
  padding: 10px 22px !important;
  border-radius: 24px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-rich) 100%) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow: 0 0 0 0 rgba(0,151,167,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: box-shadow var(--t-med), transform var(--t-med), background var(--t-med) !important;
  overflow: hidden;
  position: relative;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.nav-cta:hover::before {
  left: 130%;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 0 0 3px rgba(0,151,167,0.25), 0 6px 24px rgba(0,151,167,0.40) !important;
  background: linear-gradient(135deg, var(--gold-rich) 0%, #00acc1 100%) !important;
}

.nav-cta-arrow {
  display: inline-block;
  transition: transform var(--t-fast);
  font-style: normal;
}

.nav-cta:hover .nav-cta-arrow {
  transform: translateX(3px);
}

/* ── NAV SEARCH ── */
.nav-search {
  position: relative;
  flex-shrink: 0;
  margin-right: 16px;
}

.nav-search-toggle {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px 0 12px;
  color: rgba(240,246,252,0.70);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  transition: all var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}

.nav-search-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-search-toggle:hover {
  color: var(--ivory);
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
}

/* Search backdrop */
.nav-search-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,35,66,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 498;
}
.nav-search-backdrop.open { display: block; }

.nav-search-box {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: min(480px, calc(100vw - 32px));
  background: var(--white);
  border: 1px solid rgba(0,151,167,0.18);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(10,35,66,0.22), 0 0 0 1px rgba(0,151,167,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 500;
  overflow: hidden;
}

.nav-search-box.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-search-input-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 6px 6px 6px 18px;
  border-bottom: 1px solid var(--border-light);
  background: var(--white);
}

.nav-search-input-row svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.8;
}

.nav-search-input {
  flex: 1;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  outline: none;
}

.nav-search-input::placeholder { color: rgba(100,116,139,0.6); }

.nav-search-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--t-fast);
  flex-shrink: 0;
  border-radius: 50%;
  background: transparent;
}

.nav-search-close:hover {
  color: var(--white);
  background: var(--ink);
}

/* Search hint row below input */
.search-hint-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
  background: var(--ivory);
  border-bottom: 1px solid var(--border-light);
}

.search-hint-tag {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ash);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3px 10px;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.search-hint-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

/* Results dropdown */
.nav-search-results {
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) transparent;
}

.search-result-group-label {
  padding: 12px 18px 6px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--ivory);
  border-bottom: 1px solid var(--border-light);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background var(--t-fast);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
}

.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--ivory); }

.search-result-item:hover .search-result-img {
  box-shadow: 0 4px 16px rgba(0,151,167,0.15);
}

.search-result-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: var(--ivory);
  flex-shrink: 0;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  transition: box-shadow var(--t-fast);
}

.search-result-info { flex: 1; min-width: 0; }

.search-result-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.search-result-meta {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--ash);
}


.search-no-results {
  padding: 40px 24px;
  text-align: center;
}

.search-no-results-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  opacity: 0.4;
}

.search-no-results-text {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ash);
  margin-bottom: 4px;
}

.search-no-results-sub {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(100,116,139,0.7);
}

.search-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--border-light);
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-footer-hint {
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--ash);
  letter-spacing: 0.04em;
}

.search-footer a {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-footer a:hover { color: var(--gold-dark); }

/* Highlight matched text */
.search-result-name mark {
  background: #e0f7fa;
  color: var(--gold-dark);
  border-radius: 2px;
  padding: 0 2px;
}

@media (max-width: 768px) {
  .nav-search-box { width: calc(100vw - 32px); right: -16px; border-radius: 12px; }
  .nav-search { margin-right: 8px; }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--ocean);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 80% 60%, rgba(0,151,167,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 600px at -10% 30%, rgba(0,151,167,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero .display-title { color: var(--ivory); }
.page-hero .body-lg { color: var(--text-dark-muted); margin-top: 20px; max-width: 520px; }

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--ocean);
  padding: 14px 0;
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  flex-shrink: 0;
  min-width: 100%;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ivory);
  padding: 0 28px;
}

.marquee-track .dot {
  color: var(--ivory);
  font-weight: 700;
  opacity: 0.5;
  padding: 0 4px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--ocean);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 300px at 50% 100%, rgba(0,151,167,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner .display-title { color: var(--ivory); margin-bottom: 20px; }
.cta-banner .body-lg { color: var(--text-dark-muted); margin-bottom: 44px; max-width: 520px; margin-left: auto; margin-right: auto; }

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-actions .btn { min-width: 180px; text-align: center; }

/* ── CTA ACTION CARDS ── */
.cta-action-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 32px 20px 24px;
  border-radius: 16px;
  min-width: 280px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.cta-action-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}

.cta-action-card:hover { transform: translateY(-3px); }
.cta-action-card:hover::before { background: rgba(255,255,255,0.04); }

.cta-action-card--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-rich) 100%);
  box-shadow: 0 8px 32px rgba(0,151,167,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  color: var(--white);
}
.cta-action-card--primary:hover {
  box-shadow: 0 16px 48px rgba(0,151,167,0.50), inset 0 1px 0 rgba(255,255,255,0.15);
}

.cta-action-card--ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--ivory);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.cta-action-card--ghost:hover {
  border-color: rgba(255,255,255,0.30);
  box-shadow: 0 8px 32px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.12);
}

.cta-action-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-action-card--primary .cta-action-icon {
  background: rgba(255,255,255,0.18);
}
.cta-action-card--ghost .cta-action-icon {
  background: rgba(255,255,255,0.08);
}

.cta-action-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
  flex: 1;
}

.cta-action-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.cta-action-sub {
  font-size: 0.75rem;
  font-weight: 300;
  opacity: 0.75;
  letter-spacing: 0.03em;
}

.cta-action-arrow {
  font-size: 1.1rem;
  opacity: 0.6;
  transition: transform var(--t-fast), opacity var(--t-fast);
  flex-shrink: 0;
}
.cta-action-card:hover .cta-action-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ocean);
  padding-top: 80px;
  border-top: 2px solid rgba(0,151,167,0.45);
}

.footer-grid {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-text { gap: 2px; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-dark-muted);
  max-width: 280px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: all var(--t-fast);
  text-decoration: none;
}

.social-btn span { line-height: 1; }

.social-btn--facebook {
  background: rgba(24,119,242,0.12);
  border-color: rgba(24,119,242,0.25);
  color: #70a8ff;
}
.social-btn--facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
  box-shadow: 0 4px 16px rgba(24,119,242,0.40);
  transform: translateY(-2px);
}

.social-btn--instagram {
  background: rgba(225,48,108,0.10);
  border-color: rgba(225,48,108,0.22);
  color: #f06292;
}
.social-btn--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(220,39,67,0.40);
  transform: translateY(-2px);
}

.social-btn--youtube {
  background: rgba(255,0,0,0.10);
  border-color: rgba(255,0,0,0.20);
  color: #ff6b6b;
}
.social-btn--youtube:hover {
  background: var(--color-youtube);
  border-color: var(--color-youtube);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,0,0,0.40);
  transform: translateY(-2px);
}

.social-btn--whatsapp {
  background: rgba(37,211,102,0.10);
  border-color: rgba(37,211,102,0.22);
  color: #4cdb87;
}
.social-btn--whatsapp:hover {
  background: var(--color-whatsapp);
  border-color: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.40);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,151,167,0.2);
}

.footer-col ul { padding: 0; list-style: none; margin: 0; }
.footer-col ul li { margin-bottom: 14px; }

.footer-col ul a {
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
  transition: color var(--t-fast);
  font-weight: 300;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin-bottom: 14px;
  line-height: 1.55;
  font-weight: 300;
}

.footer-contact li strong {
  flex-shrink: 0;
  color: var(--text-dark-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  padding-right: 100px;
  font-size: 0.8125rem;
  color: var(--text-dark-dim);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a { color: var(--text-dark-dim); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--text-dark-muted); }

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 60%, #4dd0e1 100%);
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(0,151,167,0.5);
}

/* ── AMAZON STRIP ── */
.amazon-strip {
  background: var(--ocean);
  border-bottom: 1px solid rgba(255,153,0,0.20);
  border-top: 1px solid rgba(255,153,0,0.12);
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Inner pages: strip sits directly after the fixed nav */
.amazon-strip--offset {
  margin-top: var(--nav-h);
}


.amazon-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 24px 10px 16px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px)  { .amazon-strip-inner { padding-left: 12px;  padding-right: 12px;  } }

.amazon-strip-left {
  gap: 10px;
}

.amazon-strip-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,246,252,0.55);
}

.amazon-strip-logo {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: #ff9900;
  letter-spacing: -0.02em;
}

.amazon-strip-logo span {
  font-size: 0.75rem;
  font-weight: 400;
  color: #ff9900;
  opacity: 0.8;
}

.amazon-strip-center {
  gap: 10px;
}

.amazon-strip-stars {
  color: #ff9900;
  font-size: 0.875rem;
  letter-spacing: 2px;
}

.amazon-strip-meta {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(240,246,252,0.55);
  letter-spacing: 0.04em;
}

.amazon-strip-meta strong {
  color: rgba(240,246,252,0.80);
  font-weight: 500;
}

.amazon-strip-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff9900;
  border-bottom: 1px solid rgba(255,153,0,0.40);
  padding-bottom: 1px;
  transition: border-color var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
}

.amazon-strip-cta:hover { color: #ffb84d; border-color: #ff9900; }

/* ── MARKETPLACE STRIP BUTTONS ── */
.strip-market-btns {
  gap: 8px;
  flex-shrink: 0;
}

.strip-mkt-btn {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: opacity var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.strip-mkt-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.strip-mkt-btn--amazon   { background: var(--color-amazon); color: #111827; border-color: var(--color-amazon); }
.strip-mkt-btn--flipkart { background: #2874f0; color: #fff;    border-color: #2874f0; }
.strip-mkt-btn--meesho   { background: #f43397; color: #fff;    border-color: #f43397; }

@media (max-width: 640px) {
  .amazon-strip-center { display: none; }
  .amazon-strip-left { display: none; }
  .strip-mkt-btn { font-size: 0.75rem; padding: 6px 14px; }
  .amazon-strip-inner { justify-content: center; }
}

/* ── AMAZON BUTTON ── */
.btn-amazon {
  background: #ff9900;
  color: #111827;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn-amazon:hover {
  background: #e07b00;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,153,0,0.65);
  color: #000;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE NAVIGATION ── */
@media (max-width: 768px) {
  :root { --nav-h: 70px; --sec-v: 72px; }
  .navbar { padding: 0 16px 0 12px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10,35,66,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px 32px;
    border-bottom: 1px solid var(--border-dark);
    gap: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.875rem;
  }

  .nav-links a::after { display: none; }
  .hamburger { display: flex; }
  .nav-cta   { display: none; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { min-width: 0; width: 100%; text-align: center; }
}

/* ── SKIP TO CONTENT ── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 9999;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-whatsapp);
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
  color: #fff;
}
.wa-float svg { flex-shrink: 0; }
@media (max-width: 480px) {
  .wa-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
  .wa-float-label { display: none; }
}

