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

:root {
  --navy: #0B1F3A;
  --navy-mid: #122848;
  --navy-light: #1A3558;
  --gold: #C9922A;
  --gold-light: #E0A83C;
  --gold-pale: #FBF3E4;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-100: #F0F2F7;
  --gray-200: #DDE2EC;
  --gray-400: #8A97B0;
  --gray-600: #4A5D78;
  --text: #0B1F3A;
  --text-muted: #4A5D78;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(11,31,58,0.08);
  --shadow-lg: 0 12px 48px rgba(11,31,58,0.14);
  --shadow-gold: 0 8px 24px rgba(201,146,42,0.25);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(11,31,58,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  border: 2px solid var(--gold);
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
  box-shadow: var(--shadow-gold) !important;
}

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

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,146,42,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,53,88,0.8) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,146,42,0.15);
  border: 1px solid rgba(201,146,42,0.35);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-trust {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off-white);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-logo {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  transition: var(--transition);
}
.trust-logo:hover { color: var(--navy); }

/* ── PAIN POINTS ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.pain-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: var(--transition);
  border-left: 4px solid var(--gray-200);
}
.pain-card:hover {
  background: var(--white);
  border-left-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pain-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 64px;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 8px; left: 16px;
  line-height: 1;
}
.pain-card p {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  padding-top: 20px;
  line-height: 1.6;
}

.pain-closer {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
}
.pain-closer span { color: var(--gold); }

/* ── SERVICES ── */
.services-bg { background: var(--navy); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  background: rgba(201,146,42,0.08);
  border-color: rgba(201,146,42,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.service-icon {
  width: 48px; height: 48px;
  background: rgba(201,146,42,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 16px;
  transition: var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* ── WHY CALVIX ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.why-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.why-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
}

.why-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--navy); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  border-top: 3px solid var(--gold);
}

.testimonial-quote {
  font-size: 40px;
  color: var(--gold);
  font-family: var(--font-head);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.testimonial-role {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--gold-pale);
  border-top: 1px solid rgba(201,146,42,0.2);
  border-bottom: 1px solid rgba(201,146,42,0.2);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,146,42,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-400);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}
.footer-logo span { color: var(--gold); }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,146,42,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-photo {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  border: 1px solid var(--gray-200);
}

.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.stats-row {
  display: flex;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin: 32px 0;
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}
.contact-info p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.contact-detail:hover { border-color: var(--gold); }

.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-label { font-size: 12px; color: var(--text-muted); }
.contact-detail-value { font-size: 15px; font-weight: 600; color: var(--navy); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,146,42,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── CARD ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open a { color: var(--text-muted); }
  .nav-links.open .nav-cta { display: inline-flex; width: fit-content; }
  .nav-toggle { display: flex; }
  .hero { padding: 120px 0 72px; }
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 3/2; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.6s cubic-bezier(0.4,0,0.2,1) forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ── DROPDOWN MEGA MENU ── */
.nav-item { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-arrow {
  font-size: 10px;
  transition: var(--transition);
  display: inline-block;
}

.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  z-index: 2000;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: calc(100% + 8px);
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--gray-200);
  border-top: 1px solid var(--gray-200);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  padding: 16px;
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  color: var(--text);
}

.nav-dropdown-item:hover {
  background: var(--gold-pale);
}

.nav-dropdown-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.nav-dropdown-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
  transition: var(--transition);
}

.nav-dropdown-item:hover .nav-dropdown-title { color: var(--gold); }

.nav-dropdown-sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.nav-dropdown-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid var(--gray-100);
  background: var(--off-white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.nav-dropdown-footer a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-dropdown-footer a:hover { color: var(--navy); }

.nav-dropdown-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: var(--transition);
}
.nav-dropdown-cta:hover {
  background: var(--gold-light) !important;
  color: var(--white) !important;
}

/* ── HAMBURGER ACTIVE STATE ── */
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE DROPDOWN ── */
@media (max-width: 768px) {
  .nav-dropdown {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--gray-100);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    display: none;
    margin: 8px 0;
    border-radius: var(--radius);
  }

  .has-dropdown.open .nav-dropdown { display: block; }
  .has-dropdown.open .nav-arrow { transform: rotate(180deg); }

  .nav-dropdown::before { display: none; }

  .nav-dropdown-grid {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 2px;
  }

  .nav-dropdown-item { padding: 10px 12px; }

  .nav-dropdown-footer {
    flex-direction: column;
    gap: 8px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .nav-dropdown-cta { text-align: center; width: 100%; }

  .nav-links.open { max-height: 90vh; overflow-y: auto; }
}

/* ── SVG ICON SIZING ── */
.service-icon svg,
.feature-icon svg,
.contact-detail-icon svg,
.nav-dropdown-icon svg,
.why-card svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.service-icon {
  color: var(--gold-light);
}

.feature-icon {
  color: var(--navy);
}

.contact-detail-icon {
  color: var(--gold);
}

.nav-dropdown-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo {
  flex-direction: column;
  gap: 12px;
  color: var(--gray-400);
  font-size: 14px;
  font-family: var(--font-body);
}

.about-photo svg {
  width: 64px;
  height: 64px;
  color: var(--gray-400);
}
