/* =========================================================================
   TAUWEET — Design System
   Premium UAE corporate services website
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors */
  --navy-deep: #071A33;
  --navy-dark: #04111F;
  --gold: #C9A24D;
  --gold-light: #E2C477;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --text: #172033;
  --muted: #687386;
  --border: #E7EAF0;

  /* Derived */
  --navy-mid: #0C2340;
  --navy-glass: rgba(7, 26, 51, 0.92);
  --gold-glow: rgba(201, 162, 77, 0.35);
  --shadow-sm: 0 1px 2px rgba(7, 26, 51, 0.06), 0 1px 1px rgba(7, 26, 51, 0.04);
  --shadow-md: 0 8px 24px rgba(7, 26, 51, 0.08), 0 2px 8px rgba(7, 26, 51, 0.06);
  --shadow-lg: 0 24px 60px rgba(7, 26, 51, 0.16), 0 8px 24px rgba(7, 26, 51, 0.08);
  --shadow-gold: 0 12px 30px rgba(201, 162, 77, 0.22);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container-max: 1280px;
  --container-pad: 24px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --header-h: 84px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.3s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}
ul, ol { padding: 0; list-style: none; }
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select, button { font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy-deep);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--muted); }
p.lead { font-size: 1.125rem; line-height: 1.7; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.container-narrow {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

section { position: relative; }
.section { padding-block: clamp(56px, 8vw, 108px); }
.section-tight { padding-block: clamp(40px, 5vw, 72px); }
.section-navy { background: var(--navy-deep); color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.72); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-off { background: var(--off-white); }

.grid { display: grid; gap: 28px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ---------- Section heading ---------- */
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-navy .eyebrow { color: var(--gold-light); }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201,162,77,0.32); }

.btn-outline-light {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-outline-navy {
  border-color: var(--navy-deep);
  color: var(--navy-deep);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy-deep); color: var(--white); transform: translateY(-2px); }

.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); }

.btn-ghost-gold {
  color: var(--gold);
  background: transparent;
  padding-inline: 4px;
}
.btn-ghost-gold:hover { color: var(--gold-light); gap: 14px; }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-deep);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.site-header.is-scrolled {
  background: var(--navy-glass);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(4,17,31,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img, .brand svg { height: 42px; width: auto; }

.main-nav { display: none; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav > ul > li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur);
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); background: rgba(255,255,255,0.05); }
.nav-link .chev { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.has-dropdown:hover .nav-link .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 620px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.dropdown.single-col { min-width: 240px; grid-template-columns: 1fr; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-col-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.dropdown a {
  display: block;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text);
  border-radius: 6px;
  transition: color var(--dur), padding-left var(--dur);
}
.dropdown a:hover { color: var(--gold); padding-left: 4px; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: transparent;
  padding: 0;
  align-items: center;
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--navy-deep);
  z-index: 999;
  overflow-y: auto;
  padding: 20px var(--container-pad) 40px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; color: var(--white); font-weight: 500; font-size: 1.02rem;
}
.mobile-nav-link .chev { width: 18px; height: 18px; transition: transform var(--dur); }
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}
.mobile-submenu.is-open { max-height: 600px; }
.mobile-submenu li a {
  display: block;
  padding: 11px 4px 11px 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  border-left: 2px solid rgba(255,255,255,0.15);
  margin-left: 4px;
}
.mobile-submenu li a:hover { color: var(--gold-light); border-color: var(--gold); }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
  padding-block: clamp(64px, 10vw, 60px) 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg svg { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--navy-deep) 18%, rgba(7,26,51,0.78) 45%, rgba(7,26,51,0.28) 75%, rgba(7,26,51,0.05) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; padding-block: 72px 56px; }
.hero-content { max-width: 620px; }
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content h1 .accent { color: var(--gold-light); }
.hero-content p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.trust-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 56px;
  padding-block: 32px;
}
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .icon-badge { flex-shrink: 0; }
.trust-item h4 { color: var(--white); font-family: var(--font-sans); font-size: 0.98rem; font-weight: 600; margin-bottom: 4px; }
.trust-item p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }

/* ---------- Icon badges ---------- */
.icon-badge {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: rgba(201,162,77,0.08);
}
.icon-badge svg { width: 22px; height: 22px; }
.icon-badge.lg { width: 60px; height: 60px; }
.icon-badge.lg svg { width: 26px; height: 26px; }
.icon-badge.filled { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--gold-light); }
.icon-badge.soft-navy { background: rgba(7,26,51,0.06); border-color: rgba(7,26,51,0.14); color: var(--navy-deep); }

/* ---------- Cards: goal cards ---------- */
.goal-grid { grid-template-columns: repeat(3, 1fr); }
.goal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.goal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.goal-card .icon-badge { margin-bottom: 20px; }
.goal-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.goal-card p { font-size: 0.92rem; margin-bottom: 20px; flex-grow: 1; }
.card-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-weight: 600; font-size: 0.88rem;
}
.card-arrow svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.goal-card:hover .card-arrow svg { transform: translateX(4px); }

/* ---------- Structure cards ---------- */
.structure-grid { grid-template-columns: repeat(3, 1fr); }
.structure-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.structure-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.structure-media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.structure-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.structure-card:hover .structure-media img { transform: scale(1.06); }
.structure-media .icon-badge { position: absolute; left: 20px; bottom: -24px; background: var(--navy-deep); }
.structure-body { padding: 40px 24px 28px; }
.structure-body h3 { color: var(--white); margin-bottom: 10px; }
.structure-body p { margin-bottom: 18px; font-size: 0.94rem; }
.structure-link { color: var(--gold-light); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; }
.structure-link svg { width: 16px; height: 16px; transition: transform var(--dur); }
.structure-card:hover .structure-link svg { transform: translateX(4px); }
.structure-bottom-cta { text-align: center; margin-top: 44px; }

/* ---------- Service grid ---------- */
.services-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  height: 100%;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card .icon-badge { margin-bottom: 16px; }
.service-card h3 { font-size: 1.02rem; margin-bottom: 8px; font-family: var(--font-sans); font-weight: 700;}
.service-card p { font-size: 0.86rem; margin: 0; }
.services-cta { text-align: center; margin-top: 40px; }

/* ---------- Why Tauweet ---------- */
.why-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 28px; }
.why-item { display: flex; gap: 16px; }
.why-item .icon-badge { flex-shrink: 0; }
.why-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-item p { font-size: 0.92rem; margin: 0; }

/* ---------- How it works ---------- */
.timeline-desktop { display: none; }
.timeline-desktop { position: relative; }
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.timeline-step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.timeline-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy-deep); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.15rem;
  margin: 0 auto 18px; border: 3px solid var(--off-white);
  box-shadow: var(--shadow-sm);
}
.timeline-step h4 { font-size: 0.98rem; margin-bottom: 6px; }
.timeline-step p { font-size: 0.84rem; margin: 0; }

.timeline-mobile { display: flex; flex-direction: column; gap: 0; }
.timeline-mobile .timeline-step {
  display: flex; gap: 18px; text-align: left; padding: 0 0 32px;
  position: relative;
}
.timeline-mobile .timeline-step::before {
  content: '';
  position: absolute;
  left: 27px; top: 56px; bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--border) 0 8px, transparent 8px 14px);
}
.timeline-mobile .timeline-step:last-child::before { display: none; }
.timeline-mobile .timeline-num { margin: 0; flex-shrink: 0; }

/* ---------- Locations ---------- */
.locations-grid { grid-template-columns: repeat(3, 1fr); }
.location-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
}
.location-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.location-card:hover img { transform: scale(1.08); }
.location-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,26,51,0) 30%, rgba(7,26,51,0.92) 100%);
}
.location-body { position: relative; z-index: 1; padding: 22px; width: 100%; }
.location-body h3 { color: var(--white); margin-bottom: 4px; font-size: 1.15rem; }
.location-body p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 12px; }
.location-link { color: var(--gold-light); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.location-link svg { width: 14px; height: 14px; }

/* ---------- Setup Finder ---------- */
.finder-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 4vw, 48px);
  max-width: 820px;
  margin-inline: auto;
}
.finder-progress { display: flex; gap: 8px; margin-bottom: 32px; }
.finder-progress span { height: 4px; flex: 1; border-radius: 4px; background: var(--border); transition: background var(--dur); }
.finder-progress span.is-active { background: var(--gold); }
.finder-step { display: none; }
.finder-step.is-active { display: block; animation: fadeUp 0.4s var(--ease); }
.finder-step h3 { margin-bottom: 22px; }
.finder-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.finder-option {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  text-align: left;
  background: var(--white);
  transition: border-color var(--dur), background var(--dur), transform var(--dur);
}
.finder-option:hover { border-color: var(--gold); transform: translateY(-2px); }
.finder-option.is-selected { border-color: var(--gold); background: rgba(201,162,77,0.06); }
.finder-option .dot { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--border); flex-shrink: 0; position: relative; }
.finder-option.is-selected .dot { border-color: var(--gold); }
.finder-option.is-selected .dot::after { content:''; position:absolute; inset: 3px; background: var(--gold); border-radius: 50%; }
.finder-nav { display: flex; justify-content: space-between; margin-top: 28px; }
.finder-result { text-align: center; padding-block: 8px; }
.finder-result .icon-badge { margin-inline: auto; margin-bottom: 20px; }
.finder-result h3 { margin-bottom: 12px; }
.finder-result p.result-text { font-size: 1.05rem; color: var(--text); margin-bottom: 16px; }
.finder-disclaimer { font-size: 0.82rem; color: var(--muted); margin-bottom: 26px; }
.finder-result .btn { margin-inline: auto; }

/* ---------- Packages ---------- */
.packages-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.package-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #FFFDF8, var(--white));
  box-shadow: var(--shadow-gold);
  position: relative;
}
.package-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--navy-deep); color: var(--gold-light);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-pill);
}
.package-card h3 { margin-bottom: 10px; }
.package-card > p { font-size: 0.92rem; margin-bottom: 24px; min-height: 44px; }
.package-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex-grow: 1; }
.package-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--text); }
.package-features svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.package-price { font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy-deep); margin-bottom: 20px; }

/* ---------- Testimonials ---------- */
.testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.testimonial-quote-icon { color: var(--gold); width: 30px; height: 30px; margin-bottom: 16px; opacity: 0.7; }
.testimonial-text { font-size: 1rem; color: var(--text); margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-deep); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700;
}
.testimonial-author strong { display: block; font-size: 0.92rem; color: var(--navy-deep); }
.testimonial-author span { font-size: 0.82rem; color: var(--muted); }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; text-align: left; background: transparent; border: none;
  font-weight: 600; font-size: 1rem; color: var(--navy-deep);
}
.faq-question .plus { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq-question .plus::before, .faq-question .plus::after {
  content: ''; position: absolute; background: var(--gold); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur);
}
.faq-question .plus::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-question .plus::after { left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%); }
.faq-item.is-open .faq-question .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq-answer-inner { padding: 0 24px 22px; font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.faq-item.is-open .faq-answer { max-height: 600px; }

/* ---------- Final CTA + Consultation form ---------- */
.final-cta { background: var(--navy-deep); position: relative; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; opacity: 0.55; }
.final-cta-bg picture, .final-cta-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.final-cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, var(--navy-deep) 15%, rgba(7,26,51,0.55) 55%, rgba(7,26,51,0.15) 100%); }
.final-cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.final-cta-content h2 { color: var(--white); margin-bottom: 18px; }
.final-cta-content p { margin-bottom: 32px; font-size: 1.05rem; max-width: 480px; }
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.consultation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
}
.consultation-card h3 { margin-bottom: 6px; }
.consultation-card > p { font-size: 0.92rem; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: var(--text); }
.form-group .required { color: var(--gold); }
.form-control {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.94rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--dur), box-shadow var(--dur);
  width: 100%;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,77,0.14); outline: none; }
textarea.form-control { resize: vertical; min-height: 96px; }
.phone-group { display: flex; gap: 8px; }
.phone-group select { flex: 0 0 92px; }
.form-error { font-size: 0.78rem; color: #C0392B; min-height: 16px; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; }
.form-success {
  background: rgba(46, 160, 90, 0.08);
  border: 1px solid rgba(46,160,90,0.35);
  color: #1E7E45;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.form-alert {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.35);
  color: #A93226;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); padding-top: 72px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 40px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; margin-bottom: 20px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur), background var(--dur);
}
.footer-social a:hover { border-color: var(--gold); background: rgba(201,162,77,0.1); }
.footer-social svg { width: 16px; height: 16px; color: var(--white); }
.footer-col h4 { color: var(--white); font-family: var(--font-sans); font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color var(--dur); }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; font-size: 0.88rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-block: 24px; font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform var(--dur) var(--ease);
  animation: pulse-wa 2.6s ease-out 3;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; color: var(--white); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb-bar { background: var(--off-white); border-bottom: 1px solid var(--border); padding-block: 16px; }
.breadcrumb-list { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.84rem; color: var(--muted); }
.breadcrumb-list a { color: var(--muted); transition: color var(--dur); }
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list .sep { color: var(--border); }
.breadcrumb-list .current { color: var(--navy-deep); font-weight: 600; }

/* ---------- Inner page hero ---------- */
.page-hero { background: var(--navy-deep); color: var(--white); padding-block: 56px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; opacity: 0.4; }
.page-hero-bg picture, .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; }

/* ---------- Content blocks (service/location templates) ---------- */
.content-block { padding-block: clamp(48px, 6vw, 88px); }
.content-block:nth-child(even) { background: var(--off-white); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col.reverse .col-media { order: 2; }
.col-media img, .col-media svg { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-md); }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--text); }
.check-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.numbered-list { display: flex; flex-direction: column; gap: 22px; }
.numbered-item { display: flex; gap: 18px; }
.numbered-item .num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-deep); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; flex-shrink: 0;
}
.numbered-item h4 { margin-bottom: 4px; }
.numbered-item p { margin: 0; font-size: 0.94rem; }

.info-callout {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin-top: 8px;
}
.info-callout h4 { margin-bottom: 8px; font-size: 1rem; }
.info-callout p { margin: 0; font-size: 0.92rem; }

.related-grid { grid-template-columns: repeat(3, 1fr); }

/* ---------- Blog ---------- */
.blog-grid { grid-template-columns: repeat(3, 1fr); }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--white); transition: transform var(--dur), box-shadow var(--dur); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-body { padding: 22px; }
.blog-category { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: inline-block; }
.blog-body h3 { font-size: 1.08rem; margin-bottom: 10px; }
.blog-meta { display: flex; gap: 14px; font-size: 0.8rem; color: var(--muted); margin-top: 14px; }
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.blog-filter { padding: 9px 18px; border-radius: var(--radius-pill); border: 1.5px solid var(--border); font-size: 0.86rem; font-weight: 600; color: var(--text); transition: all var(--dur); }
.blog-filter:hover, .blog-filter.active { border-color: var(--gold); background: var(--gold); color: var(--navy-deep); }

.article-body { max-width: 760px; margin-inline: auto; }
.article-body h2 { margin-top: 40px; margin-bottom: 16px; }
.article-body h3 { margin-top: 28px; margin-bottom: 12px; }
.article-body p { margin-bottom: 18px; font-size: 1.02rem; color: var(--text); }
.article-body ul, .article-body ol { margin-bottom: 18px; padding-left: 22px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; color: var(--text); }
.article-hero-media { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; box-shadow: var(--shadow-md); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: translateY(0);} }

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-block: 80px; }
.error-code { font-family: var(--font-serif); font-size: clamp(4rem, 12vw, 8rem); color: var(--gold); line-height: 1; margin-bottom: 12px; }
.error-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
