/* ============================================================
   Sydney Business Valuations – Core Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #0d1b2e;
  --navy-mid:   #152540;
  --navy-light: #1e3a5f;
  --blue:       #1565c0;
  --blue-bright:#1976d2;
  --gold:       #c8a84b;
  --gold-light: #e0c060;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --gray-light: #e8ecf1;
  --gray:       #8a9ab0;
  --text:       #1a2535;
  --text-mid:   #3d4f66;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', sans-serif;

  --radius:  6px;
  --radius-lg: 12px;
  --shadow:  0 4px 24px rgba(13,27,46,0.10);
  --shadow-lg: 0 8px 40px rgba(13,27,46,0.18);

  --max-w: 1140px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--mid  { background: var(--navy-mid); color: var(--white); }
.section--gray { background: var(--off-white); }
.text-center { text-align: center; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section--dark .section-title,
.section--mid  .section-title { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 48px;
}
.section--dark .section-sub { color: var(--gray-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(21,101,192,0.35); }
.btn-gold    { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }

.divider { width: 56px; height: 3px; background: var(--gold); margin: 16px auto 0; border-radius: 2px; }
.divider--left { margin-left: 0; }

/* ---------- NAVIGATION ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: var(--navy); }
.nav-logo-text { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.nav-logo-text span { display: block; font-family: var(--font-body); font-size: 0.7rem; font-weight: 400; color: var(--gold); letter-spacing: 0.08em; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-cta { margin-left: 8px; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); display: block; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-image: url('../images/sydney-business-valuations.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,27,46,0.78) 35%, rgba(13,27,46,0.35) 100%);
}
/* Sub-page hero headers */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/sydney-business-valuations.jpg') center/cover no-repeat;
  opacity: 0.2;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  animation: fadeUp 0.9s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.4);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  z-index: 1;
}
.hero-stats-inner {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.hero-stat {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; margin-top: 4px; display: block; }

/* ---------- SERVICES CARDS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card-icon {
  width: 48px; height: 48px;
  background: rgba(21,101,192,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.service-card p  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--blue); margin-top: 16px; transition: gap var(--transition); }
.service-card-link:hover { gap: 10px; }

/* ---------- PARTNER SECTION ---------- */
.partner-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.partner-img-wrap {
  position: relative;
}
.partner-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--gray-light);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.partner-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow);
}
.partner-badge-title { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }
.partner-badge-name  { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-top: 4px; }
.partner-badge-creds { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }

.partner-content .section-title { text-align: left; }
.partner-content blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-mid);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.7;
}
.partner-signature {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--navy);
  margin-top: 16px;
}
.partner-creds {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.cred-tag {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 40px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* ---------- STATS BAR ---------- */
.stats-bar { padding: 48px 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 24px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label  { font-size: 0.8rem; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 6px; }

/* ---------- FEATURES GRID ---------- */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.feature-item { display: flex; gap: 16px; }
.feature-check {
  width: 28px; height: 28px; min-width: 28px;
  background: rgba(21,101,192,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.feature-check svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 2.5; }
.feature-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-item p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ---------- PRICING SECTION ---------- */
#pricing .container { max-width: 1400px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; align-items: start; }
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  background: var(--white);
  border: 2px solid var(--gray-light);
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--navy);
  border-color: var(--gold);
  color: var(--white);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.pricing-name { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--gray); margin-bottom: 8px; }
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.6); }
.pricing-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.pricing-card.featured .pricing-price { color: var(--gold); }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.pricing-desc { font-size: 0.85rem; color: var(--text-mid); margin: 8px 0 20px; line-height: 1.5; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.7); }
.pricing-divider { height: 1px; background: var(--gray-light); margin: 20px 0; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.8); }
.pricing-feature svg { width: 14px; height: 14px; min-width: 14px; stroke: var(--blue); fill: none; stroke-width: 2.5; margin-top: 2px; }
.pricing-card.featured .pricing-feature svg { stroke: var(--gold); }
.pricing-feature.excluded { opacity: 0.45; }
.pricing-feature.excluded svg { stroke: #c0392b; }
.pricing-card.featured .pricing-feature.excluded svg { stroke: #e74c3c; }
.pricing-cta { margin-top: 24px; width: 100%; text-align: center; }

/* ---------- USA CITY LINKS ---------- */
.usa-cities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}
.usa-cities a {
  display: block;
  padding: 10px 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, background 0.2s;
}
.usa-cities a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.04);
}

/* ---------- PROCESS STEPS ---------- */
.process-steps { display: flex; gap: 0; position: relative; margin-top: 48px; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 2px;
  background: var(--gray-light);
  z-index: 0;
}
.process-step { flex: 1; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.process-step:hover .process-step-num { background: var(--blue); color: var(--white); }
.process-step-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); margin-bottom: 14px; background: var(--gray-light); }
.process-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p  { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: 64px 0;
  text-align: center;
}
.cta-banner .section-title { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; margin-top: 48px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item:hover { border-color: rgba(21,101,192,0.25); box-shadow: 0 2px 12px rgba(13,27,46,0.06); }
.faq-item.open { border-color: var(--blue); box-shadow: 0 4px 16px rgba(13,27,46,0.08); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  gap: 12px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  line-height: 1.4;
}
.faq-item.open .faq-question { color: var(--blue); }
.faq-question svg {
  width: 20px; height: 20px; min-width: 20px;
  stroke: var(--blue); fill: none; stroke-width: 2;
  transition: transform var(--transition);
  background: rgba(21,101,192,0.08);
  border-radius: 50%;
  padding: 3px;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); background: var(--blue); stroke: var(--white); }
.faq-answer {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 20px; }

/* ---------- BOOKING SECTION ---------- */
.booking-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-mid);
  padding: 64px;
  text-align: center;
  border: 1px solid rgba(200,168,75,0.2);
}
.booking-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/sydney-skyline-bg.jpg') center/cover;
  opacity: 0.08;
}
.booking-section .section-title { color: var(--white); position: relative; z-index: 1; }
.booking-section p { color: rgba(255,255,255,0.75); position: relative; z-index: 1; margin-bottom: 36px; }
.booking-cards { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 14px;
  min-width: 260px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.booking-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.booking-card-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gray-light);
  overflow: hidden; flex-shrink: 0;
}
.booking-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.booking-card-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.booking-card-cred { font-size: 0.75rem; color: var(--gray); }
.booking-card-link { font-size: 0.8rem; color: var(--blue); font-weight: 700; margin-top: 2px; display: block; }

/* ---------- MAP AREA ---------- */
.map-section { padding: 60px 0 0; }
.map-wrap { background: var(--gray-light); height: 360px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ---------- CONTACT FORM ---------- */
.contact-form { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,0.12); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ---------- TRUST LOGOS ---------- */
.trust-logos { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.trust-logo {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-contact strong { color: var(--white); display: block; margin-bottom: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ---------- MOBILE ---------- */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { gap: 16px 32px; }
}
@media (max-width: 900px) {
  .services-grid   { grid-template-columns: 1fr 1fr; }
  .partner-section { grid-template-columns: 1fr; gap: 48px; }
  .partner-img-wrap { max-width: 400px; }
  .features-grid   { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .faq-grid        { grid-template-columns: 1fr; gap: 12px; }
  .usa-cities      { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 48px 0; }
  .page-hero { padding: 100px 0 60px; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-content { padding: 0 8px; }
  .hero h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .hero p { font-size: 0.92rem; }
  .hero-stats-inner { display: none; }
  .section-title { font-size: clamp(1.3rem, 4vw, 1.8rem); }
  .services-grid  { grid-template-columns: 1fr; }
  .faq-grid       { grid-template-columns: 1fr; gap: 10px; }
  .faq-question   { padding: 16px; font-size: 0.85rem; }
  .faq-answer     { padding: 0 16px; }
  .faq-item.open .faq-answer { padding: 0 16px 16px; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card   { padding: 24px 20px; }
  .pricing-card.featured { padding: 32px 20px 24px; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .form-row       { grid-template-columns: 1fr; }
  .process-steps  { flex-direction: column; }
  .process-steps::before { display: none; }
  .booking-section { padding: 32px 20px; }
  .booking-cards  { flex-direction: column; align-items: center; }
  .booking-card   { width: 100%; max-width: 320px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    padding: 32px 24px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open li a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
  }
  .nav-links.open li a:hover,
  .nav-links.open li a.active {
    color: var(--gold);
    background: none;
  }
  .nav-links.open .nav-cta {
    border-bottom: none;
    margin-top: 16px;
    padding-top: 8px;
  }
  .nav-links.open .nav-cta a.btn {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 16px;
    font-size: 1rem;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .partner-content blockquote { font-size: 1rem; }
  .feature-item { gap: 12px; }
  .usa-cities { grid-template-columns: repeat(2, 1fr); }
  .trust-logos { gap: 12px; }
  .trust-logo { font-size: 0.7rem; padding: 8px 12px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .page-hero { padding: 90px 0 48px; }
  .hero { padding: 90px 0 48px; }
  .hero h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.2rem; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 1.6rem; }
  .pricing-price { font-size: 2rem; }
  .faq-question { font-size: 0.82rem; padding: 14px; gap: 8px; }
  .faq-question svg { width: 18px; height: 18px; min-width: 18px; padding: 2px; }
  .booking-section { padding: 24px 16px; }
  .usa-cities { grid-template-columns: repeat(2, 1fr); }
  .usa-cities a { font-size: 0.8rem; padding: 8px 6px; }
  .nav-inner { padding: 0 16px; }
}
