@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --navy:     #0D1B2A;
  --navy-mid: #162336;
  --navy-light: #1e3250;
  --gold:     #C8A96A;
  --gold-light: #dfc08a;
  --gold-dark:  #a88a4a;
  --white:    #FFFFFF;
  --off-white:#F8F9FB;
  --charcoal: #1E293B;
  --gray:     #64748B;
  --light-gray: #E2E8F0;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ─── Utilities ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
}
.section-title.light { color: var(--white); }
.gold-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.5rem 0 2rem;
}
.gold-rule.center { margin: 1.5rem auto 2rem; }

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 1.5rem 0;
}
.nav.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
}
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo-name span { color: var(--gold); }
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200,169,106,0.8);
  margin-top: 0.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-cta {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 1px;
  font-size: 0.75rem !important;
  letter-spacing: 0.12em !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 2rem; right: 2rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,0.92) 0%,
    rgba(13,27,42,0.75) 50%,
    rgba(13,27,42,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 8rem 0 6rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform var(--transition);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(200,169,106,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-stats {
  position: absolute;
  bottom: 4rem;
  right: 0;
  display: flex;
  gap: 0;
  opacity: 0;
  animation: fadeLeft 1s ease 1.2s forwards;
}
.hero-stat {
  padding: 1.5rem 2rem;
  border-left: 1px solid rgba(200,169,106,0.2);
  text-align: center;
}
.hero-stat:first-child { border-left: none; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}

/* ─── About ──────────────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.about-image-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 180px;
  height: 180px;
  border: 2px solid var(--gold);
  opacity: 0.3;
  pointer-events: none;
}
.about-image-badge {
  position: absolute;
  bottom: -24px;
  left: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-image-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
}
.about-image-badge small {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.about-content { padding-left: 1rem; }
.about-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 2rem;
}
.about-feature {
  padding: 1rem 0;
  border-top: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
}
.about-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Specializations ─────────────────────────────────────────── */
.specializations {
  padding: 7rem 0;
  background: var(--off-white);
}
.specializations-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.spec-card {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}
.spec-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.6;
}
.spec-card:hover .spec-card-img { transform: scale(1.08); opacity: 0.4; }
.spec-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(13,27,42,0.98) 0%, rgba(13,27,42,0.5) 70%, transparent 100%);
  transform: translateY(0);
  transition: all var(--transition);
}
.spec-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}
.spec-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.spec-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.spec-services {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
.spec-card:hover .spec-services {
  opacity: 1;
  max-height: 200px;
}
.spec-services li {
  font-size: 0.75rem;
  color: rgba(200,169,106,0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.05em;
}
.spec-services li::before {
  content: '';
  width: 4px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.spec-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.spec-card:hover .spec-link { gap: 0.75rem; }

/* ─── Approach ───────────────────────────────────────────────── */
.approach {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.approach-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}
.approach-header .section-title { color: var(--white); }
.approach-header p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1rem;
}
.approach-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
}
.approach-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,169,106,0.08);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.approach-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.approach-step:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(200,169,106,0.2);
}
.approach-step:hover::before { transform: scaleX(1); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(200,169,106,0.12);
  line-height: 1;
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  letter-spacing: -0.02em;
}
.step-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  opacity: 0.75;
  transition: opacity var(--transition);
}
.approach-step:hover .step-img { opacity: 1; }
.step-img-placeholder {
  width: 100%;
  height: 160px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(200,169,106,0.15), rgba(13,27,42,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-img-placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(200,169,106,0.4);
}
.step-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.approach-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.approach-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ─── Why Neertha ────────────────────────────────────────────── */
.why {
  padding: 7rem 0;
  background: var(--white);
}
.why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}
.why-header p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 5rem;
}
.why-card {
  position: relative;
  overflow: hidden;
}
.why-card-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.why-card:hover .why-card-img { transform: scale(1.06); }
.why-card-img-placeholder {
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card:nth-child(1) .why-card-img-placeholder {
  background: linear-gradient(135deg, #0D1B2A 0%, #162336 100%);
}
.why-card:nth-child(2) .why-card-img-placeholder {
  background: linear-gradient(135deg, #1e3250 0%, #0D1B2A 100%);
}
.why-card:nth-child(3) .why-card-img-placeholder {
  background: linear-gradient(135deg, #162336 0%, #1e3250 100%);
}
.why-card-img-placeholder svg {
  width: 64px;
  height: 64px;
  color: rgba(200,169,106,0.4);
}
.why-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background var(--transition);
}
.why-card:hover .why-card-overlay {
  background: linear-gradient(to top, rgba(13,27,42,0.98) 0%, rgba(13,27,42,0.6) 60%, rgba(13,27,42,0.2) 100%);
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.why-card:hover p { max-height: 120px; }
.why-advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--light-gray);
}
.advantage-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--light-gray);
  transition: background var(--transition);
}
.advantage-item:last-child { border-right: none; }
.advantage-item:hover { background: var(--off-white); }
.advantage-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  transition: all var(--transition);
}
.advantage-item:hover .advantage-icon {
  background: var(--gold);
  color: var(--navy);
}
.advantage-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.advantage-item p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── CTA ────────────────────────────────────────────────────── */
.cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/step1-discovery.webp');
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.96) 0%,
    rgba(13,27,42,0.82) 60%,
    rgba(22,35,54,0.9) 100%
  );
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-content .section-title { color: var(--white); font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin: 1.75rem 0 3rem;
  font-weight: 300;
}
.cta-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(200,169,106,0.15);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin: 1.25rem 0 2rem;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200,169,106,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  font-size: 0.9rem;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a, .footer-contact-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ─── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  padding: 12rem 0 5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.page-hero-bg-accent {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,106,0.07) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(200,169,106,0.4); }
.breadcrumb .current { color: var(--gold); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 1.25rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 580px;
  line-height: 1.85;
  font-weight: 300;
}

/* ─── Services Page ──────────────────────────────────────────── */
.services-detail {
  padding: 7rem 0;
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.service-block-img-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-block-img-placeholder svg {
  width: 80px;
  height: 80px;
  color: rgba(200,169,106,0.3);
}
.service-block-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 400;
  color: rgba(13,27,42,0.08);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}
.service-block p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.service-list { display: flex; flex-direction: column; gap: 0; }
.service-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.service-list li svg { color: var(--gold); flex-shrink: 0; }

/* ─── About Page ─────────────────────────────────────────────── */
.about-page-content {
  padding: 7rem 0;
}
.about-values {
  padding: 7rem 0;
  background: var(--off-white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.value-card {
  background: var(--white);
  padding: 2.5rem;
  transition: all var(--transition);
  border-top: 3px solid transparent;
}
.value-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(13,27,42,0.08);
}
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin: 1rem 0 0.75rem;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ─── Approach Page ──────────────────────────────────────────── */
.approach-page-detail {
  padding: 7rem 0;
}
.approach-step-detail {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--light-gray);
  position: relative;
}
.approach-step-detail:last-child { border-bottom: none; }
.approach-step-detail::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 100%;
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
}
.approach-step-detail:last-child::before { display: none; }
.step-number-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  background: var(--white);
}
.step-detail-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.step-detail-img-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-detail-img-placeholder svg {
  width: 60px;
  height: 60px;
  color: rgba(200,169,106,0.35);
}
.step-detail-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}
.step-detail-content p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.9;
}

/* ─── Contact Page ───────────────────────────────────────────── */
.contact-section {
  padding: 7rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-info > p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 3rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-detail-text a, .contact-detail-text span {
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: color var(--transition);
}
.contact-detail-text a:hover { color: var(--gold); }
.contact-form-wrap {
  background: var(--off-white);
  padding: 3rem;
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--light-gray);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold); color: var(--navy); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}
.form-success svg { color: var(--gold); margin: 0 auto 1rem; display: block; }

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-content { padding-left: 0; }
  .spec-grid,
  .why-grid { grid-template-columns: 1fr 1fr; }
  .approach-timeline { grid-template-columns: 1fr 1fr; }
  .why-advantages { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-stats { display: none; }
  .service-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block.reverse { direction: ltr; }
  .approach-step-detail { grid-template-columns: 60px 1fr; }
  .approach-step-detail .step-detail-img,
  .approach-step-detail .step-detail-img-placeholder { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 1.25rem; }
  .about-features { grid-template-columns: 1fr; }
  .spec-grid,
  .why-grid { grid-template-columns: 1fr; }
  .approach-timeline { grid-template-columns: 1fr; }
  .why-advantages { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ─── WhatsApp Float Button ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}
.wa-float .wa-bubble {
  background: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}
.wa-float:hover .wa-bubble {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.wa-float .wa-bubble svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.wa-float .wa-label {
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.55rem 1rem 0.55rem 1.2rem;
  border-radius: 2rem 0 0 2rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  order: -1;
  border: 1px solid rgba(200,169,106,0.25);
  border-right: none;
}
.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}
.wa-float .wa-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
@media (max-width: 480px) {
  .wa-float { bottom: 1.25rem; right: 1.25rem; }
  .wa-float .wa-bubble { width: 50px; height: 50px; }
  .wa-float .wa-bubble svg { width: 24px; height: 24px; }
  .wa-float .wa-label { display: none; }
}
