/* =========================================================
   NexaGrow Digital — Main Stylesheet
   Colors: Navy #0A1628 | Blue #2563EB | Light #F8FAFC
   Fonts: Inter (body) + Playfair Display (headings)
   ========================================================= */

/* --- Google Fonts are loaded in functions.php --- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0A1628;
  --blue:   #2563EB;
  --blue90: rgba(37,99,235,0.9);
  --blue20: rgba(37,99,235,0.2);
  --blue10: rgba(37,99,235,0.1);
  --light:  #F8FAFC;
  --white:  #ffffff;
  --gray50: #F9FAFB;
  --gray100:#F3F4F6;
  --gray200:#E5E7EB;
  --gray400:#9CA3AF;
  --gray500:#6B7280;
  --gray600:#4B5563;
  --gray700:#374151;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Typography ---- */
h1, h2, h3, .font-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--blue90); box-shadow: 0 8px 24px var(--blue20); transform: translateY(-1px); color: var(--white); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); color: var(--white); }

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.arrow-icon { transition: transform 0.2s; }
a:hover .arrow-icon, button:hover .arrow-icon { transform: translateX(4px); }

/* ---- Navbar ---- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.logo-icon:hover { transform: scale(1.05); }
.logo-icon span { color: var(--blue); font-weight: 700; font-size: 1.25rem; font-family: 'Playfair Display', serif; line-height: 1; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.3s;
}
.logo-text .dot { color: var(--blue); }
#site-header:not(.scrolled) .logo-text { color: var(--white); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  transition: color 0.2s;
}
#site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
.nav-links a:hover { color: var(--blue); }
#site-header:not(.scrolled) .nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--blue) !important; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
}

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { background: var(--blue90) !important; box-shadow: 0 4px 16px var(--blue20); }

.hamburger {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--navy);
  transition: color 0.3s;
}
@media (min-width: 768px) { .hamburger { display: none; } }
#site-header:not(.scrolled) .hamburger { color: var(--white); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray100);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray50);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--blue); }
.mobile-menu .mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 0.875rem;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 1rem;
  border-bottom: none;
}

/* ---- Page Header Sections ---- */
.page-hero {
  background: var(--navy);
  padding: 8rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; width: 50%; height: 100%;
  background: var(--blue10);
  transform: skewX(-12deg) translateX(25%);
}
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.125rem; max-width: 640px; line-height: 1.7; }

/* ---- HOME: Hero ---- */
.home-hero {
  position: relative;
  padding: 8rem 1.5rem 5rem;
  background: var(--navy);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.1;
  mix-blend-mode: luminosity;
}
.home-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 50%, rgba(10,22,40,0.8));
}
.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-badge {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
  background: var(--blue20);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.home-hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.home-hero h1 .accent { color: var(--blue); }
.home-hero p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 600px; line-height: 1.7; margin-bottom: 2.5rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--blue);
  border-radius: 12px;
  margin: -2rem 1.5rem 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(37,99,235,0.3);
  padding: 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-bar { margin: -2rem auto 0; max-width: 1152px; }
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

/* ---- Section Spacing ---- */
.section { padding: 6rem 1.5rem; }
.section-light { background: var(--gray50); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-header h2 { color: var(--navy); margin-bottom: 1rem; }
.section-header p { color: var(--gray600); font-size: 1.0625rem; line-height: 1.7; }
.section-navy .section-header h2 { color: var(--white); }
.section-navy .section-header p { color: var(--gray400); }

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray200);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--blue10);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 28px; height: 28px; color: var(--blue); stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.75rem; }
.service-card p { color: var(--gray600); font-size: 0.9375rem; line-height: 1.6; }

/* ---- Why Us (split layout) ---- */
.split-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .split-section { flex-direction: row; gap: 5rem; } }
.split-img { position: relative; flex: 1; }
.split-img img { border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,0.12); width: 100%; }
.split-img::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: var(--gray100);
  border-radius: 16px;
  z-index: -1;
  transform: rotate(-2deg);
}
.split-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid var(--gray100);
  display: flex; align-items: center; gap: 1rem;
  z-index: 10;
}
.split-badge-icon {
  width: 48px; height: 48px;
  background: var(--blue10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.split-badge-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.split-badge-num { font-weight: 700; color: var(--navy); font-size: 1.25rem; font-family: 'Playfair Display', serif; }
.split-badge-label { font-size: 0.8rem; color: var(--gray500); }
.split-content { flex: 1; }
.split-content h2 { color: var(--navy); margin-bottom: 1rem; }
.split-content p { color: var(--gray600); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 2rem; }
.check-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.check-item span { color: var(--navy); font-weight: 500; font-size: 1.0625rem; }
.text-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--blue); font-weight: 600;
  transition: color 0.2s;
}
.text-link:hover { color: var(--navy); }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
/* 4 testimonials on contact/about */
.testimonials-grid.cols-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .testimonials-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray200);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.stars { color: #F59E0B; font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote { color: var(--gray700); font-size: 0.9375rem; line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}
.author-name { font-weight: 700; color: var(--navy); font-size: 0.9375rem; }
.author-role { color: var(--gray500); font-size: 0.8125rem; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--navy);
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px; height: 600px;
  background: var(--blue20);
  border-radius: 50%;
  filter: blur(80px);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px; height: 500px;
  background: var(--blue10);
  border-radius: 50%;
  filter: blur(80px);
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1.25rem; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.125rem; max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }

/* ---- About Page ---- */
.divider { width: 80px; height: 4px; background: var(--blue); border-radius: 2px; margin: 1rem 0 1.5rem; }
.values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
.value-card {
  background: var(--white);
  border: 1px solid var(--gray100);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}
.value-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.value-icon {
  width: 56px; height: 56px;
  background: var(--blue10);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { color: var(--gray600); font-size: 0.9375rem; line-height: 1.6; }

.team-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { }
.team-img-wrap { position: relative; overflow: hidden; border-radius: 12px; margin-bottom: 1.25rem; aspect-ratio: 4/5; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-img-wrap::after { content: ''; position: absolute; inset: 0; background: rgba(10,22,40,0.2); transition: opacity 0.3s; }
.team-card:hover .team-img-wrap::after { opacity: 0; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.375rem; font-weight: 700; color: var(--navy); }
.team-role { color: var(--blue); font-weight: 500; }

/* ---- Services Page ---- */
.service-detail {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .service-detail { flex-direction: row; gap: 6rem; } }
.service-detail.reverse { }
@media (min-width: 1024px) { .service-detail.reverse { flex-direction: row-reverse; } }

.service-detail-content { flex: 1; }
.service-detail-icon {
  width: 80px; height: 80px;
  background: var(--blue10);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px var(--blue10);
}
.service-detail-icon svg { width: 40px; height: 40px; stroke: var(--blue); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.service-detail-content h2 { color: var(--navy); margin-bottom: 1rem; }
.service-detail-content > p { color: var(--gray600); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 2rem; }
.features-label { font-weight: 700; color: var(--navy); font-size: 1.0625rem; margin-bottom: 1rem; }
.features-list { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; }
.features-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--gray700); font-weight: 500; }
.feature-check {
  width: 22px; height: 22px;
  background: var(--blue20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-check svg { width: 12px; height: 12px; stroke: var(--blue); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.service-detail-visual { flex: 1; width: 100%; }
.service-visual-box {
  background: var(--gray100);
  border-radius: 24px;
  padding: 2rem;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, var(--blue) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.15;
}
.service-visual-inner {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid var(--gray100);
  width: 80%; height: 80%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.service-visual-inner svg { width: 100px; height: 100px; stroke: var(--blue20); fill: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; }

.service-divider { border: none; border-top: 1px solid var(--gray100); margin: 5rem 0; }

/* Process Section */
.process-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid::before {
    content: '';
    position: absolute;
    top: 3rem; left: 10%; right: 10%;
    height: 1px;
    background: rgba(255,255,255,0.1);
  }
}
.process-step { position: relative; z-index: 1; }
.process-num {
  width: 6rem; height: 6rem;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 30px var(--blue20);
}
.process-num span { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--white); }
.process-step h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 0.75rem; text-align: center; }
.process-step p { color: var(--gray400); text-align: center; line-height: 1.6; font-size: 0.9375rem; }

/* ---- Contact Page ---- */
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 1024px) { .contact-layout { flex-direction: row; gap: 5rem; align-items: flex-start; } }
.contact-info { flex: 0 0 auto; }
@media (min-width: 1024px) { .contact-info { width: 340px; } }

.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-label { font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.contact-item-value { color: var(--gray600); font-size: 0.9375rem; line-height: 1.5; }
.contact-item-value a { color: var(--gray600); transition: color 0.2s; }
.contact-item-value a:hover { color: var(--blue); }

.map-placeholder {
  background: var(--gray200);
  border-radius: 12px;
  height: 256px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.map-pin-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.875rem;
  display: flex; align-items: center; gap: 0.4rem;
  white-space: nowrap;
}
.map-pin-label svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray400);
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--blue); color: var(--white); }
.social-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Contact Form */
.contact-form-wrap {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray100);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.contact-form-wrap h2 { color: var(--navy); margin-bottom: 0.5rem; font-size: 2rem; }
.contact-form-wrap > p { color: var(--gray600); margin-bottom: 2rem; }

.form-row { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-weight: 500; color: var(--navy); font-size: 0.9375rem; }
.form-group label .req { color: #EF4444; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--gray50);
  border: 1px solid var(--gray200);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue10);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-group .error-msg { color: #EF4444; font-size: 0.8125rem; display: none; }
.form-group.has-error input, .form-group.has-error textarea { border-color: #EF4444; }
.form-group.has-error .error-msg { display: block; }

.form-submit { width: 100%; margin-top: 0.5rem; }

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success.show { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.success-icon {
  width: 80px; height: 80px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.success-icon svg { width: 40px; height: 40px; stroke: #10B981; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--navy); }
.form-success p { color: var(--gray600); max-width: 400px; line-height: 1.6; }
.form-success button { background: none; border: none; cursor: pointer; color: var(--blue); font-weight: 500; font-size: 1rem; font-family: 'Inter', sans-serif; margin-top: 0.5rem; text-decoration: underline; }

/* ---- Footer ---- */
#site-footer { background: var(--navy); color: var(--white); padding: 5rem 1.5rem 2.5rem; }
.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 0.7fr 0.7fr 1fr; } }

.footer-brand .logo-text { color: var(--white); }
.footer-tagline { color: var(--gray400); font-size: 0.875rem; line-height: 1.6; max-width: 280px; margin: 1rem 0 1.5rem; }
.footer-socials { display: flex; gap: 0.625rem; }
.footer-social {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray400);
  transition: background 0.2s, color 0.2s;
}
.footer-social:hover { background: var(--blue); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.footer-col h3 { font-family: 'Playfair Display', serif; font-size: 1.0625rem; font-weight: 600; margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { color: var(--gray400); font-size: 0.9375rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-contact-items { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-item svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { color: var(--gray400); font-size: 0.875rem; line-height: 1.5; }
.footer-contact-item a { transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { color: var(--gray500); font-size: 0.875rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--gray500); font-size: 0.875rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gray400); }

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---- Responsive Helpers ---- */
@media (max-width: 1023px) {
  .split-img { width: 100%; }
  .split-badge { right: 0.5rem; bottom: -1rem; }
}
@media (max-width: 767px) {
  .section { padding: 4rem 1.25rem; }
  .cta-banner { padding: 4rem 1.25rem; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .stats-bar { margin: -1rem 1rem 0; padding: 1.5rem; }
}
