/* =============================================
   CORVELA INTERNATIONAL — STYLES
   ============================================= */

/* --- TOKENS --- */
:root {
  --gold:        #C9A247;
  --gold-light:  #E0BE7A;
  --gold-dark:   #A0812A;
  --gold-bg:     #FBF5E6;

  --dark:        #111318;
  --dark-2:      #1C2030;
  --dark-3:      #2A2F40;
  --mid:         #5A6070;
  --light:       #F4F5F7;
  --white:       #FFFFFF;

  --text:        #1C2030;
  --text-muted:  #6B7280;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;

  --shadow-sm:   0 1px 4px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.14);

  --transition:  0.25s ease;
  --max-w:       1160px;
  --nav-h:       72px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- UTILITY --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.section { padding-block: clamp(64px, 8vw, 120px); }
.gold { color: var(--gold); }
.gold-bg { background: var(--gold); color: var(--white); }

/* --- TYPOGRAPHY --- */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 0;
}
.body-text {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-header .section-intro { margin-inline: auto; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,71,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-full { width: 100%; }
.section-cta { margin-top: clamp(28px, 4vw, 44px); }

/* =============================================
   FIND YOUR PLAN
   ============================================= */
.find-plan {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  padding-block: clamp(64px, 8vw, 112px);
  border-bottom: 1px solid rgba(201,162,71,.18);
}
.fp-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.fp-header .section-title { color: var(--white); }
.fp-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  margin-top: -4px;
}

/* Widget shell */
.fp-widget {
  max-width: 680px;
  margin-inline: auto;
  background: var(--dark-3);
  border: 1px solid rgba(201,162,71,.2);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}

/* Progress bar */
.fp-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.fp-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.fp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  width: 16.67%;
  transition: width 0.45s cubic-bezier(.4,0,.2,1);
}
.fp-step-counter {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}

/* Steps container */
.fp-steps { position: relative; }

.fp-step {
  display: none;
  animation: fpFadeIn 0.38s ease both;
}
.fp-step.active { display: block; }
.fp-step.exit {
  display: block;
  animation: fpFadeOut 0.22s ease both;
}
@keyframes fpFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fpFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}

/* Question text */
.fp-question {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.4;
}

/* Option buttons */
.fp-options {
  display: grid;
  gap: 14px;
}
.fp-options--2 { grid-template-columns: repeat(2, 1fr); }
.fp-options--3 { grid-template-columns: repeat(3, 1fr); }

.fp-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
  min-height: 88px;
}
.fp-opt:hover {
  background: rgba(201,162,71,.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.fp-opt.selected {
  background: rgba(201,162,71,.18);
  border-color: var(--gold);
  color: var(--gold);
}
.fp-opt-icon {
  font-size: 1.4rem;
  line-height: 1;
}

/* Age input — step 3 */
.fp-age-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.fp-age-input-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fp-age-input {
  width: 120px;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
  -moz-appearance: textfield;
}
.fp-age-input::-webkit-outer-spin-button,
.fp-age-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.fp-age-input::placeholder { color: rgba(255,255,255,.25); font-size: 1rem; font-weight: 400; }
.fp-age-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,71,.2);
}
.fp-age-unit {
  font-size: 0.9rem;
  color: rgba(255,255,255,.45);
}
.fp-next-btn { min-width: 140px; }
.fp-next-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}

/* Back button */
.fp-back {
  margin-top: 24px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  padding: 4px 0;
}
.fp-back:hover { color: var(--gold); }

/* Result screen */
.fp-result-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.fp-result-summary {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,162,71,.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fp-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}
.fp-summary-label {
  color: rgba(255,255,255,.4);
  font-weight: 500;
}
.fp-summary-value {
  color: var(--gold-light);
  font-weight: 600;
  text-align: right;
}
.fp-result-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-outline-dark {
  background: transparent;
  color: rgba(255,255,255,.55);
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  font-family: inherit;
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Recommendation card */
.fp-rec-card {
  width: 100%;
  background: linear-gradient(145deg, rgba(201,162,71,.1) 0%, rgba(42,47,64,.6) 100%);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: clamp(22px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(201,162,71,.12);
  text-align: left;
}
.fp-rec-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.fp-rec-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}
.fp-rec-carrier {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.fp-rec-why {
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
}
.fp-rec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fp-rec-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(201,162,71,.12);
  border: 1px solid rgba(201,162,71,.3);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.fp-rec-cta {
  align-self: flex-start;
  margin-top: 4px;
}

/* Summary section below card */
.fp-result-summary-wrap { width: 100%; }
.fp-summary-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 10px;
  text-align: left;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .fp-options--3 { grid-template-columns: repeat(2, 1fr); }
  .fp-opt { min-height: 76px; padding: 16px 10px; font-size: 0.82rem; }
  .fp-opt-icon { font-size: 1.15rem; }
  .fp-result-actions { flex-direction: column; }
  .fp-result-actions .btn,
  .fp-result-actions .btn-outline-dark { width: 100%; text-align: center; }
}
@media (max-width: 400px) {
  .fp-options--2 { grid-template-columns: 1fr; }
  .fp-options--3 { grid-template-columns: 1fr; }
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(17, 19, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow var(--transition);
}
.nav-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}
.nav-toggle span:nth-child(2) { width: 75%; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17,19,24,0.95) 0%, rgba(28,32,48,0.88) 60%, rgba(17,19,24,0.97) 100%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80") center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,162,71,.12) 0%, transparent 65%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-block: clamp(48px, 8vw, 100px);
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBob 1.6s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%       { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* =============================================
   STATS BAND
   ============================================= */
.stats-band {
  background: var(--white);
  padding-block: clamp(36px, 4vw, 56px);
  border-top: 1px solid rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 12px; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.about-img-wrapper {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 540px;
  background: linear-gradient(145deg, var(--dark-2) 0%, var(--dark-3) 60%, rgba(201,162,71,.15) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=800&q=80") center/cover;
  opacity: 0.55;
  border-radius: inherit;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--dark);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.about-pillars li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.pillar-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card--featured {
  background: var(--dark-2);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.service-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,162,71,.15) 0%, transparent 70%);
}
.service-card--featured h3,
.service-card--featured p { color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,.65); }
.service-card--featured .service-icon { color: var(--gold); }
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   WHY US
   ============================================= */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.why-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-md);
  background: var(--light);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition);
}
.why-card:hover { transform: translateX(6px); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial-section {
  background: var(--gold-bg);
  padding-block: clamp(56px, 7vw, 96px);
}
.testimonial {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.6;
  display: block;
  margin-bottom: 24px;
  opacity: 0.7;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 32px;
}
.testimonial-attribution { display: flex; flex-direction: column; gap: 4px; }
.attr-name {
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 0.95rem;
}
.attr-title {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item { display: flex; flex-direction: column; gap: 3px; }
.cd-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.cd-value {
  font-size: 0.95rem;
  color: var(--text);
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #E2E5EC;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0B8C5; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,71,.15);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,162,71,.2);
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-block: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-main .logo { color: var(--white); flex-shrink: 0; }
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-contact {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
}
.footer-contact a {
  color: var(--gold-light);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { padding-block: 16px; }
.footer-bottom .container p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* =============================================
   RESPONSIVE — TABLET (max 900px)
   ============================================= */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 480px; margin-inline: auto; }
  .about-img-placeholder { aspect-ratio: 16/9; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* =============================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================= */
@media (max-width: 640px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(17, 19, 24, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 24px;
    border-bottom: 1px solid rgba(201,162,71,.2);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px clamp(20px, 5vw, 32px);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .nav-cta {
    margin: 12px clamp(20px, 5vw, 32px) 0;
    border-radius: var(--radius-sm);
    text-align: center;
    padding: 14px !important;
  }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Why grid handled above */

  /* Hero */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-links { gap: 16px; }
  .footer-right { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* About badge */
  .about-badge { right: 12px; bottom: -16px; width: 80px; height: 80px; }
  .about-badge-num { font-size: 1.15rem; }
}
