/* ============================================
   LondonLush Support — Global CSS
   Brand Colors: Navy #0f1740 | Gold #d4a017
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #f9fafb; }

/* ---- Brand Variables ---- */
:root {
  --navy:       #0f1740;
  --navy-light: #1a2456;
  --gold:       #d4a017;
  --gold-light: #e8b832;
  --gold-pale:  #fdf3d6;
  --text-dark:  #0f1740;
  --text-mid:   #4b5563;
  --text-light: #9ca3af;
  --border:     #e5e7eb;
  --bg-light:   #f9fafb;
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(15,23,64,.25);
  transition: background .3s;
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar-logo img { height: 56px; width: auto; object-fit: contain; background: transparent; filter: drop-shadow(0 1px 6px rgba(0,0,0,0.3)); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(255,255,255,.1); }
.nav-cta {
  margin-left: 1rem;
  padding: .5rem 1.25rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle {
  display: flex; align-items: center; gap: 4px;
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.dropdown-toggle:hover { color: var(--gold); background: rgba(255,255,255,.1); }
.dropdown-toggle svg { transition: transform .2s; }
.dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(15,23,64,.15);
  border: 1px solid var(--border);
  padding: .5rem 0;
  padding-top: calc(.5rem + 6px);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.dropdown:hover .dropdown-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown-item {
  display: block;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  transition: background .15s, color .15s;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: var(--gold-pale); color: var(--navy); }

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.5rem;
  gap: .25rem;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  display: block;
  padding: .75rem 1rem;
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.mobile-nav-link:hover { color: var(--gold); background: rgba(255,255,255,.08); }
.mobile-section-label { padding: .5rem 1rem; color: var(--gold); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.mobile-cta {
  display: block;
  margin-top: .5rem;
  padding: .75rem 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .875rem;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
}

@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,64,.92) 0%, rgba(15,23,64,.75) 55%, rgba(15,23,64,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 1.5rem 4rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212,160,23,.2);
  border: 1px solid rgba(212,160,23,.4);
  border-radius: 999px;
  padding: .375rem 1rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }
.hero-title { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 1.5rem; }
.hero-title span { color: var(--gold); }
.hero-desc { font-size: 1.0625rem; color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: 2rem; max-width: 640px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 2.5rem; }
.hero-check { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.8); font-size: .875rem; }
.hero-check svg { color: var(--gold); flex-shrink: 0; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .9375rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  font-weight: 600;
  font-size: .9375rem;
  border-radius: 8px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.2); }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,.4); font-size: .75rem; }
.scroll-line { width: 1px; height: 2rem; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity:1 } 50% { opacity:.3 } }

/* ---- Section Shared ---- */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .375rem .875rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-tag-dark {
  background: rgba(212,160,23,.2);
  border: 1px solid rgba(212,160,23,.3);
  color: var(--gold);
}
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }
.section-title-white { color: #fff; }
.section-desc { font-size: .9375rem; color: var(--text-mid); line-height: 1.75; max-width: 640px; }
.section-desc-center { margin-left: auto; margin-right: auto; text-align: center; }
.text-center { text-align: center; }

/* ---- Cards ---- */
.card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(15,23,64,.06);
  transition: box-shadow .3s, transform .2s;
}
.card:hover { box-shadow: 0 12px 36px rgba(15,23,64,.12); transform: translateY(-2px); }
.card-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .5s; }
.card:hover .card-img { transform: scale(1.04); }
.card-img-wrap { overflow: hidden; position: relative; }
.card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,64,.7), transparent); }
.card-body { padding: 1.25rem; }
.card-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.card-text { font-size: .875rem; color: var(--text-mid); line-height: 1.65; }
.card-link { display: inline-flex; align-items: center; gap: .375rem; font-size: .875rem; font-weight: 600; color: var(--gold); text-decoration: none; margin-top: 1rem; transition: gap .2s; }
.card-link:hover { gap: .625rem; }

/* ---- Grids ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2-1 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 1024px) { .grid-2-1 { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---- About Images Grid ---- */
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative; }
.about-img-grid img { border-radius: 12px; width: 100%; object-fit: cover; box-shadow: 0 4px 16px rgba(15,23,64,.12); }
.about-img-1 { height: 240px; }
.about-img-2 { height: 240px; margin-top: 2rem; }
.about-img-3 { height: 180px; }
.about-img-4 { height: 180px; margin-top: 1rem; }
.about-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(15,23,64,.3);
}
.about-badge-num { font-size: 1.75rem; font-weight: 800; color: var(--gold); }
.about-badge-label { font-size: .7rem; color: rgba(255,255,255,.6); }

/* ---- Stat Box ---- */
.stat-box { background: #f9fafb; border-radius: 12px; padding: 1.5rem; text-align: center; border: 1px solid var(--border); }
.stat-num { font-size: 1.625rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: .8125rem; color: var(--text-mid); margin-top: .25rem; }

/* ---- Check List ---- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .875rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--text-mid); }
.check-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.check-list-white li { color: rgba(255,255,255,.75); }

/* ---- KPI Section ---- */
.kpi-section { background: var(--navy); padding: 5rem 1.5rem; }
.kpi-inner { max-width: 1280px; margin: 0 auto; }
.kpi-card { text-align: center; }
.kpi-icon-wrap { width: 64px; height: 64px; background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.3); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; transition: background .2s; }
.kpi-card:hover .kpi-icon-wrap { background: rgba(212,160,23,.28); }
.kpi-icon-wrap svg { color: var(--gold); }
.kpi-num { font-size: 2.5rem; font-weight: 800; color: var(--gold); }
.kpi-label { font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.7); }

/* ---- Review Card ---- */
.review-card { background: #fff; border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border); box-shadow: 0 1px 4px rgba(15,23,64,.06); transition: box-shadow .2s; }
.review-card:hover { box-shadow: 0 8px 28px rgba(15,23,64,.1); }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars svg { color: var(--gold); fill: var(--gold); }
.review-text { font-size: .875rem; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 1.25rem; }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar { width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8125rem; color: var(--gold); flex-shrink: 0; }
.reviewer-name { font-size: .875rem; font-weight: 700; color: var(--navy); }
.reviewer-role { font-size: .75rem; color: var(--text-light); }

/* ---- Contact ---- */
.contact-info-card { background: #fff; border-radius: 16px; padding: 1.5rem; text-align: center; border: 1px solid var(--border); box-shadow: 0 1px 4px rgba(15,23,64,.06); transition: box-shadow .2s; }
.contact-info-card:hover { box-shadow: 0 8px 28px rgba(15,23,64,.1); }
.contact-icon-wrap { width: 56px; height: 56px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.contact-icon-wrap svg { color: var(--gold); }
.contact-info-title { font-size: .9375rem; font-weight: 700; color: var(--navy); margin-bottom: .375rem; }
.contact-info-line { font-size: .8125rem; color: var(--text-mid); word-break: break-word; overflow-wrap: anywhere; }

/* ---- Form ---- */
.form-section { background: #f9fafb; border-radius: 20px; padding: 2rem; border: 1px solid var(--border); }
.form-title { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-label { font-size: .8125rem; font-weight: 600; color: #374151; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: .875rem;
  font-family: inherit;
  color: var(--navy);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,23,.2); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-btn { width: 100%; padding: .9rem; background: var(--navy); color: #fff; font-size: .9375rem; font-weight: 700; font-family: inherit; border: none; border-radius: 8px; cursor: pointer; transition: background .2s; }
.form-btn:hover { background: var(--navy-light); }
.form-note { font-size: .75rem; color: var(--text-light); text-align: center; margin-top: .75rem; }

/* ---- Page Hero (inner pages) ---- */
.page-hero { position: relative; background: var(--navy); padding: 7rem 1.5rem 4rem; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .15; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,23,64,.92), rgba(15,23,64,.65)); }
.page-hero-content { position: relative; z-index: 10; max-width: 1280px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: rgba(255,255,255,.45); margin-top: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-active { color: var(--gold); }

/* ---- Service Category ---- */
.cat-header { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; margin-bottom: 2.5rem; }
@media (max-width: 768px) { .cat-header { grid-template-columns: 1fr; } }
.cat-header img { width: 100%; height: 200px; object-fit: cover; border-radius: 16px; box-shadow: 0 4px 16px rgba(15,23,64,.12); }

/* ---- CTA Banner ---- */
.cta-banner { background: var(--gold); padding: 3.5rem 1.5rem; text-align: center; }
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--navy); margin-bottom: .75rem; }
.cta-desc { font-size: .9375rem; color: rgba(15,23,64,.7); margin-bottom: 1.75rem; }
.btn-navy { display: inline-flex; align-items: center; gap: .5rem; padding: .875rem 2rem; background: var(--navy); color: #fff; font-weight: 700; font-size: .9375rem; border-radius: 8px; text-decoration: none; transition: background .2s, transform .15s; }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ---- Footer ---- */
footer { background: var(--navy); color: #fff; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 4rem 1.5rem 2rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo img { height: 60px; object-fit: contain; margin-bottom: 1rem; background: transparent; filter: drop-shadow(0 1px 8px rgba(0,0,0,0.35)); }
.footer-desc { font-size: .8125rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .625rem; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: #fff; font-size: .75rem; font-weight: 700; transition: background .2s; }
.social-btn:hover { background: var(--gold); color: var(--navy); }
.footer-col-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .8125rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .875rem; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { font-size: .8125rem; color: rgba(255,255,255,.6); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { max-width: 1280px; margin: 0 auto; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ---- How We Work Steps ---- */
.step-card { position: relative; }
.step-img-wrap { position: relative; border-radius: 12px; overflow: hidden; margin-bottom: 1rem; }
.step-img-wrap img { width: 100%; height: 180px; object-fit: cover; transition: transform .5s; }
.step-card:hover .step-img-wrap img { transform: scale(1.05); }
.step-img-wrap-overlay { position: absolute; inset: 0; background: rgba(15,23,64,.3); }
.step-num { position: absolute; top: .75rem; left: .75rem; width: 36px; height: 36px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; color: var(--navy); box-shadow: 0 4px 12px rgba(212,160,23,.5); }
.step-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.step-desc { font-size: .8125rem; color: var(--text-mid); line-height: 1.65; }

/* ---- Why Section ---- */
.value-card { background: #fff; border-radius: 16px; padding: 1.5rem; text-align: center; border: 1px solid var(--border); box-shadow: 0 1px 4px rgba(15,23,64,.06); transition: box-shadow .2s; }
.value-card:hover { box-shadow: 0 8px 28px rgba(15,23,64,.1); }
.value-icon { width: 56px; height: 56px; background: var(--navy); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.value-icon svg { color: var(--gold); }
.value-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.value-desc { font-size: .8125rem; color: var(--text-mid); line-height: 1.65; }

/* ---- Team Card ---- */
.team-card { text-align: center; }
.team-img-wrap { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 1rem; }
.team-img-wrap img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-name { font-size: 1rem; font-weight: 700; color: #fff; }
.team-role { font-size: .8125rem; color: var(--gold); }

/* ---- Utility ---- */
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.bg-gray { background: #f9fafb; }
.bg-white { background: #fff; }
.bg-navy { background: var(--navy); }
.quote-bar { border-left: 4px solid var(--gold); padding-left: 1.25rem; }
.img-cover { width: 100%; object-fit: cover; border-radius: 16px; }
.shadow-card { box-shadow: 0 4px 20px rgba(15,23,64,.1); }
.rounded-xl { border-radius: 16px; }

/* FAQ */
.faq-block { background: #f9fafb; border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border); }
.faq-item { padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-q { font-size: .875rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.faq-a { font-size: .8125rem; color: var(--text-mid); }

/* Map embed */
.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); height: 260px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* Responsive */
@media (max-width: 767px) {
  .hero-content { padding-top: 6rem; }
  .section { padding: 3.5rem 1rem; }
  .about-img-1, .about-img-2 { height: 160px; }
  .about-img-3, .about-img-4 { height: 130px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* ---- Hero page-load entrance ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes spinPop {
  from { opacity: 0; transform: scale(0) rotate(-30deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Hero content staggered entrance */
.hero .hero-badge   { animation: fadeUp  .7s cubic-bezier(.22,.68,0,1.2) both; animation-delay: .15s; }
.hero .hero-title   { animation: fadeUp  .75s cubic-bezier(.22,.68,0,1.2) both; animation-delay: .35s; }
.hero .hero-desc    { animation: fadeUp  .7s ease both; animation-delay: .55s; }
.hero .hero-checks  { animation: fadeUp  .7s ease both; animation-delay: .7s; }
.hero .hero-buttons { animation: fadeUp  .7s ease both; animation-delay: .85s; }
.hero .hero-scroll  { animation: fadeIn 1.2s ease both; animation-delay: 1.1s; }
.hero .hero-bg img  { animation: fadeIn 1.8s ease both; }

/* Inner-page hero */
.page-hero .page-hero-content .section-tag       { animation: fadeUp .6s ease both; animation-delay: .2s; }
.page-hero .page-hero-content .section-title     { animation: fadeUp .65s ease both; animation-delay: .35s; }
.page-hero .page-hero-content .section-title-white { animation: fadeUp .65s ease both; animation-delay: .35s; }
.page-hero .page-hero-content p                  { animation: fadeUp .6s ease both; animation-delay: .5s; }
.page-hero .page-hero-content .breadcrumb        { animation: fadeUp .6s ease both; animation-delay: .65s; }
.page-hero .page-hero-content .hero-buttons,
.page-hero .page-hero-content > div:last-child   { animation: fadeUp .6s ease both; animation-delay: .8s; }
.page-hero .page-hero-bg img                     { animation: fadeIn 1.5s ease both; }

/* ---- Hover micro-interactions ---- */
.btn-primary, .btn-outline, .btn-navy, .nav-cta {
  will-change: transform;
}
.card { will-change: transform, box-shadow; }

/* ---- Floating badge ---- */
.about-badge {
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ---- Pulse ring on hero badge dot ---- */
.hero-badge-dot {
  position: relative;
}
.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: ringPulse 2s ease-in-out infinite;
}
@keyframes ringPulse {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ---- Section divider shimmer ---- */
.section-tag::after {
  content: '';
  display: block;
  height: 0;
}

/* ---- CTA banner subtle shimmer background ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  animation: shimmer 5s ease infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---- KPI icon hover spin ---- */
.kpi-icon-wrap {
  transition: transform .4s ease, background .2s;
}
.kpi-card:hover .kpi-icon-wrap {
  transform: rotate(8deg) scale(1.1);
}

/* ---- Card image zoom already handled, add overlay fade ---- */
.card-img-overlay {
  transition: opacity .4s ease;
  opacity: .45;
}
.card:hover .card-img-overlay { opacity: .3; }

/* ---- Social button spin ---- */
.social-btn { transition: background .2s, transform .25s; }
.social-btn:hover { transform: rotate(8deg) scale(1.15); }

/* ---- Step number bounce ---- */
.step-num {
  transition: transform .3s cubic-bezier(.22,.68,0,1.5);
}
.step-card:hover .step-num { transform: scale(1.2); }

/* ---- Nav link underline sweep ---- */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width .25s ease, left .25s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 60%; left: 20%;
}

/* ---- Footer link hover slide ---- */
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: color .2s, gap .2s;
}
.footer-links a::before {
  content: '›';
  font-size: .8rem;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity .2s, width .2s;
  color: var(--gold);
}
.footer-links a:hover::before { opacity: 1; width: 12px; }

/* ---- Scroll progress bar at top ---- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  width: 0%;
  transition: width .1s linear;
}

/* ---- Reduce motion support ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
