/* ============================================
   FIRMEXIA CONSULTING — Premium Design System
   Corporate Luxury · Navy & Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Core Palette */
  --navy-950: #060d1f;
  --navy-900: #0a1628;
  --navy-800: #0f2140;
  --navy-700: #1a3360;
  --navy-600: #1e3a8a;
  --navy-400: #3b6dd4;
  --navy-200: #bfcff7;

  --gold-500: #c9922a;
  --gold-400: #e0a93e;
  --gold-300: #f0c060;
  --gold-200: #f8dfa0;
  --gold-100: #fdf3da;

  --white: #ffffff;
  --grey-50:  #f9fafb;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-400: #94a3b8;
  --grey-600: #475569;
  --grey-800: #1e293b;

  --success: #059669;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --section-py: 110px;

  /* Shadows */
  --shadow-gold: 0 4px 24px rgba(201,146,42,0.25);
  --shadow-card: 0 2px 8px rgba(6,13,31,0.06), 0 8px 32px rgba(6,13,31,0.08);
  --shadow-card-hover: 0 8px 24px rgba(6,13,31,0.10), 0 24px 64px rgba(6,13,31,0.14);
  --shadow-navy: 0 8px 32px rgba(6,13,31,0.35);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.2s;
  --t-base: 0.35s;
  --t-slow: 0.6s;
}

/* ---- Reset ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-body);
  color: var(--grey-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration:none; }
img { display:block; max-width:100%; }
ul { list-style:none; }
button { font-family: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--navy-950); }
::-webkit-scrollbar-thumb { background:var(--gold-400); border-radius:10px; }

/* ============================================
   HEADER
   ============================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--t-base) var(--ease),
              padding var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}

header.transparent { background: transparent; }

header.solid {
  background: rgba(6,13,31,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), var(--shadow-navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-emblem {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.logo-wordmark { display:flex; flex-direction:column; line-height:1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold-300);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* CTA Button */
.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950) !important;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--r-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,146,42,0.4);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,13,31,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
  text-align: center;
}

.mobile-nav a:hover {
  color: var(--gold-300);
  background: rgba(255,255,255,0.04);
}

.mobile-nav .mobile-cta {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950) !important;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: var(--r-md);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
  padding-top: 76px; /* header height */
}

.hero-img-wrap {
  position: relative;
  line-height: 0;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Gradient overlay at bottom for trust bar blend */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--navy-950));
  pointer-events: none;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--navy-950);
  padding: 28px 0 36px;
  position: relative;
}

.trust-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.trust-cell {
  background: rgba(255,255,255,0.03);
  padding: 22px 20px;
  text-align: center;
  transition: background var(--t-fast);
}

.trust-cell:hover { background: rgba(255,255,255,0.06); }

.trust-cell-icon {
  font-size: 26px;
  margin-bottom: 8px;
  display: block;
}

.trust-cell-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.trust-cell-sub {
  font-size: 11.5px;
  color: var(--gold-300);
  font-weight: 500;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
section { padding: var(--section-py) 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold-400);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-title .accent-word {
  color: var(--gold-500);
  font-style: italic;
}

.section-lead {
  font-size: 17px;
  color: var(--grey-600);
  line-height: 1.75;
  max-width: 560px;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 64px;
}

.section-header-centered .section-lead {
  margin: 0 auto;
}

/* ============================================
   DIAGONAL DIVIDER
   ============================================ */
.diagonal-top {
  position: relative;
}
.diagonal-top::before {
  content: '';
  position: absolute;
  top: -60px; left: 0; right: 0;
  height: 120px;
  background: inherit;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--grey-50);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500), var(--gold-400));
}

.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-panel {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-200);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
}

.service-panel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-panel-header {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}

.service-panel-header::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.service-panel-icon {
  font-size: 38px;
  margin-bottom: 16px;
  display: block;
}

.service-panel-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-panel-subtitle {
  font-size: 13.5px;
  color: var(--gold-300);
  font-weight: 500;
  line-height: 1.5;
}

.service-panel-body {
  padding: 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-items {
  flex: 1;
  margin-bottom: 28px;
}

.service-item-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--grey-100);
  transition: background var(--t-fast);
}

.service-item-row:last-child { border-bottom: none; }

.service-check {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--success), #047857);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 10px;
  color: white;
  font-weight: 700;
}

.service-item-text {
  font-size: 14.5px;
  color: var(--grey-600);
  line-height: 1.5;
}

.service-note-box {
  background: linear-gradient(135deg, var(--gold-100), #fdf8ed);
  border-left: 3px solid var(--gold-400);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--gold-500);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-600);
  transition: gap var(--t-fast), color var(--t-fast);
  border-bottom: 2px solid var(--gold-300);
  padding-bottom: 3px;
}

.service-cta-link:hover {
  gap: 14px;
  color: var(--gold-500);
  border-color: var(--gold-400);
}

/* ============================================
   PACKAGES
   ============================================ */
.packages-section {
  background: var(--navy-950);
  position: relative;
  overflow: hidden;
}

.packages-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(30,58,138,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(201,146,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.packages-section .section-title { color: var(--white); }
.packages-section .section-lead { color: rgba(255,255,255,0.6); }
.packages-section .section-eyebrow { color: var(--gold-300); }
.packages-section .section-eyebrow::before,
.packages-section .section-eyebrow::after { background: var(--gold-300); }

.packages-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkg-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: background var(--t-base);
}

.pkg-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-8px);
}

.pkg-card.pkg-featured {
  background: rgba(201,146,42,0.08);
  border-color: rgba(201,146,42,0.4);
  transform: translateY(-6px);
}

.pkg-card.pkg-featured::before {
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.pkg-card.pkg-featured:hover { transform: translateY(-14px); }

.pkg-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 0 0 12px 12px;
}

.pkg-icon { font-size: 36px; margin-bottom: 16px; display: block; }

.pkg-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pkg-subtitle {
  font-size: 13px;
  color: var(--gold-300);
  font-weight: 500;
  margin-bottom: 24px;
}

.pkg-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.pkg-includes {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 14px;
}

.pkg-list { flex: 1; margin-bottom: 28px; }

.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.pkg-list li:last-child { border-bottom: none; }

.pkg-bullet {
  width: 16px; height: 16px;
  background: rgba(5,150,105,0.25);
  border: 1px solid rgba(5,150,105,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 8px;
  color: #34d399;
}

/* ============================================
   BUTTONS SYSTEM
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t-fast) var(--ease);
  letter-spacing: 0.2px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201,146,42,0.45);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-700);
}

.btn-navy:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-navy);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-400);
  border-color: rgba(201,146,42,0.5);
}

.btn-outline-gold:hover {
  background: rgba(201,146,42,0.1);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 40px; font-size: 15.5px; border-radius: var(--r-lg); }
.btn-full { width: 100%; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.cta-band-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   WHY US / FEATURES
   ============================================ */
.why-section {
  background: var(--white);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  border-radius: var(--r-lg);
  padding: 36px 30px;
  border: 1px solid var(--grey-200);
  background: var(--white);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--grey-100);
}

.why-card:hover::after { transform: scaleX(1); }

.why-card:last-child { grid-column: 2; }

.why-icon-wrap {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(15,33,64,0.25);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14.5px;
  color: var(--grey-600);
  line-height: 1.75;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--grey-50);
  position: relative;
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--grey-200);
  overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid var(--grey-200); }

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  transition: color var(--t-fast);
}

.faq-trigger:hover .faq-q { color: var(--gold-500); }

.faq-q {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.4;
  transition: color var(--t-fast);
}

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 300;
  color: var(--navy-600);
  transition: background var(--t-fast), transform var(--t-base) var(--ease), color var(--t-fast);
}

.faq-item.open .faq-icon {
  background: var(--gold-400);
  color: var(--navy-950);
  border-color: var(--gold-400);
  transform: rotate(45deg);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--t-slow) var(--ease);
}

.faq-body-inner {
  padding: 0 0 24px;
  font-size: 15.5px;
  color: var(--grey-600);
  line-height: 1.8;
}

.faq-body-inner strong { color: var(--navy-800); }

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  background: var(--white);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}

.contact-left h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.contact-left .contact-sub {
  font-size: 15px;
  color: var(--grey-600);
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--grey-200);
  background: var(--grey-50);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.contact-card:hover {
  border-color: var(--navy-200);
  box-shadow: var(--shadow-card);
}

.contact-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card-info strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 4px;
}

.contact-card-info a,
.contact-card-info p {
  font-size: 15px;
  color: var(--grey-800);
  font-weight: 500;
  line-height: 1.5;
}

.contact-card-info a { transition: color var(--t-fast); }
.contact-card-info a:hover { color: var(--navy-600); }

/* Form */
.contact-form-wrap {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300), var(--gold-400));
}

.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--grey-800);
  margin-bottom: 8px;
}

.field label .req { color: var(--gold-500); margin-left: 2px; }

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--grey-800);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--grey-400); }

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--navy-400);
  box-shadow: 0 0 0 3px rgba(59,109,212,0.10);
}

.field textarea { resize: vertical; min-height: 116px; }

.form-disclaimer {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--grey-400);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,146,42,0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand-col {}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-emblem {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-desc {
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}

.footer-contacts { display: flex; flex-direction: column; gap: 8px; }

.footer-contacts a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 8px;
  transition: color var(--t-fast);
}

.footer-contacts a:hover { color: var(--gold-300); }

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 18px;
}

.footer-col-links { display: flex; flex-direction: column; gap: 10px; }

.footer-col-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}

.footer-col-links a:hover { color: var(--white); }

.footer-hours-list { display: flex; flex-direction: column; gap: 8px; }

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-hours-row:last-child { border-bottom: none; }

.footer-hours-row .day { color: rgba(255,255,255,0.75); }
.footer-hours-row .time { color: var(--gold-300); font-weight: 600; font-size: 12.5px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}

.footer-seo-nav { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-seo-nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--t-fast);
}

.footer-seo-nav a:hover { color: rgba(255,255,255,0.6); }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .services-split { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pkg-card.pkg-featured { transform: none; }
  .pkg-card.pkg-featured:hover { transform: translateY(-8px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .main-nav, .btn-header { display: none !important; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card:last-child { grid-column: 1 / -1; max-width: 340px; margin: 0 auto; width: 100%; }

  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  .section-title { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 540px) {
  :root { --section-py: 56px; }

  .trust-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card:last-child { grid-column: auto; max-width: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .service-panel-header, .service-panel-body { padding: 24px 22px; }
}