/* ============================================================
   SOUL SYNAPWELL — Design System & Styles
   Color Palette: Sky Blue (#5BA4D9) + White (#FFFFFF)
   Typography: 'Playfair Display' (serif) + 'Inter' (sans-serif)
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary palette */
  --sky-50:  #f0f7ff;
  --sky-100: #e0efff;
  --sky-200: #b9dfff;
  --sky-300: #7cc4f7;
  --sky-400: #5BA4D9;
  --sky-500: #3b8bc4;
  --sky-600: #2a6fa3;
  --sky-700: #1e5580;
  --sky-800: #163d5c;
  --sky-900: #0f2a40;

  /* Accent warm */
  --gold-300: #f5d990;
  --gold-400: #e8c556;
  --gold-500: #d4a833;

  /* Neutrals */
  --white:    #ffffff;
  --gray-50:  #fafbfc;
  --gray-100: #f3f5f7;
  --gray-200: #e5e8ec;
  --gray-300: #cdd2d8;
  --gray-400: #9aa3b0;
  --gray-500: #6b7685;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --gray-800: #1a202c;

  /* Semantic */
  --bg-primary:   var(--white);
  --bg-secondary: var(--sky-50);
  --text-heading:  var(--gray-800);
  --text-body:     var(--gray-600);
  --text-muted:    var(--gray-400);
  --accent:        var(--sky-400);
  --accent-dark:   var(--sky-600);
  --accent-light:  var(--sky-200);

  /* Spacing */
  --section-pad-y: clamp(4rem, 8vw, 7rem);
  --section-pad-x: clamp(1.25rem, 5vw, 6rem);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-primary);
  overflow-x: hidden;
}

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

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sky-400);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--sky-300);
  border-radius: 2px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.7;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.55s; }
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 10px 30px rgba(91,164,217,0.1);
  padding: 0.6rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-logo:hover img {
  transform: scale(1.05);
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sky-400);
  letter-spacing: -0.01em;
}
.nav-logo-text span {
  color: var(--sky-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}
.navbar:not(.scrolled) .nav-links a {
  color: var(--white);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sky-400);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--sky-400);
}
.navbar:not(.scrolled) .nav-links a:hover {
  color: var(--sky-200);
}

.nav-cta {
  background: var(--sky-400) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(91,164,217,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: linear-gradient(135deg, var(--sky-400), var(--sky-500)) !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(91,164,217,0.5) !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar:not(.scrolled) .nav-toggle span {
  background: var(--white);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ============================================================
   HERO SECTION — Split-screen inspired by Noora Health
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

.hero-image-side {
  position: relative;
  width: 55%;
  overflow: hidden;
}
.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-image-side img {
  transform: scale(1);
}

/* Gradient overlay on image */
.hero-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(91,164,217,0.15) 0%,
    rgba(91,164,217,0.05) 50%,
    transparent 100%
  );
}

.hero-content-side {
  width: 45%;
  background: linear-gradient(160deg, var(--sky-400) 0%, var(--sky-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

/* Decorative organic shapes */
.hero-content-side::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.hero-content-side::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-content .section-label {
  color: var(--sky-200);
  margin-bottom: 1rem;
}
.hero-content .section-label::before {
  background: rgba(255,255,255,0.4);
}

.hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-content h1 em {
  font-style: italic;
  display: block;
  font-size: 0.9em;
  opacity: 0.9;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--white);
  color: var(--sky-500);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(91,164,217,0.4);
}
.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}

/* Floating scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}
.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* ============================================================
   IMPACT STATS — Large number ticker
   ============================================================ */
.stats-section {
  padding: var(--section-pad-y) 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--sky-400);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-number .stat-suffix {
  font-size: 0.6em;
  color: var(--sky-300);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ============================================================
   ABOUT SECTION — Split layout with image
   ============================================================ */
.about-section {
  padding: var(--section-pad-y) 0;
  background: radial-gradient(circle at top right, var(--sky-100) 0%, var(--white) 60%);
  position: relative;
  overflow: hidden;
}

/* Decorative accent shape */
.about-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--sky-200);
  border-radius: 50%;
  opacity: 0.3;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}
.about-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(91,164,217,0.15);
}
/* Decorative colored block behind image */
.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 100%;
  height: 100%;
  background: var(--sky-400);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

.about-content .section-title em {
  font-style: italic;
  color: var(--sky-400);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.about-feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--sky-100);
  color: var(--sky-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.15rem;
}
.about-feature p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================================
   SERVICES SECTION — Card layout with hover
   ============================================================ */
.services-section {
  padding: var(--section-pad-y) 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-header .section-label { justify-content: center; }
.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(91,164,217,0.2);
  border-color: var(--sky-300);
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

/* Color accent bar at top of card */
.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-300), var(--sky-500));
}

.service-card-body {
  padding: 1.75rem;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--sky-100), var(--sky-200));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--sky-500);
  transition: transform 0.3s ease;
}
.service-card:hover .service-card-icon {
  transform: rotate(-5deg) scale(1.1);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sky-400);
  transition: gap 0.3s ease, color 0.3s ease;
}
.service-card-link:hover {
  color: var(--sky-600);
  gap: 0.7rem;
}

/* ============================================================
   APPROACH / PHILOSOPHY — Color block with text slider
   ============================================================ */
.approach-section {
  position: relative;
  overflow: hidden;
}

.approach-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 550px;
}

.approach-image {
  position: relative;
  overflow: hidden;
}
.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-content {
  background: linear-gradient(160deg, var(--sky-400), var(--sky-700));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  position: relative;
}

/* Decorative shapes */
.approach-content::before {
  content: '';
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}
.approach-content::after {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  transform: rotate(45deg);
}

.approach-content .section-label {
  color: var(--sky-200);
}
.approach-content .section-label::before {
  background: var(--sky-200);
}

.approach-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.approach-step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.approach-step h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.approach-step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS — Carousel
   ============================================================ */
.testimonials-section {
  padding: var(--section-pad-y) 0;
  background: var(--sky-50);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}
.testimonials-header .section-label { justify-content: center; }

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease-out-expo);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(91,164,217,0.08);
  border: 1px solid var(--gray-100);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--sky-200);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-200), var(--sky-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
}
.testimonial-info p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.testimonial-dot.active {
  background: var(--sky-400);
  width: 28px;
  border-radius: 5px;
}

/* ============================================================
   NEWSLETTER / CTA SECTION
   ============================================================ */
.cta-section {
  padding: var(--section-pad-y) 0;
  background: var(--white);
}

.cta-card {
  background: linear-gradient(160deg, var(--sky-400), var(--sky-600));
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-card p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-form input {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.3s ease;
}
.cta-form input::placeholder {
  color: rgba(255,255,255,0.6);
}
.cta-form input:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.2);
}

.cta-form button {
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--sky-500);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  white-space: nowrap;
}
.cta-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-800);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-brand .nav-logo {
  margin-bottom: 0.5rem;
}
.footer-brand .nav-logo-text {
  color: var(--white);
}
.footer-brand .nav-logo-text span {
  color: var(--sky-300);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--gray-400);
}
.footer-social a:hover {
  background: var(--sky-400);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-column a {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-400);
  padding: 0.3rem 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-column a:hover {
  color: var(--sky-300);
  padding-left: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.footer-bottom a {
  color: var(--sky-400);
  transition: color 0.3s ease;
}
.footer-bottom a:hover {
  color: var(--sky-300);
}

/* ============================================================
   PARTICLES / FLOATING ELEMENTS
   ============================================================ */
.floating-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; }
  .hero-image-side { width: 100%; height: 50vh; }
  .hero-content-side { width: 100%; padding: 3rem 2rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-split { grid-template-columns: 1fr; }
  .approach-image { min-height: 350px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.4s var(--ease-out-expo);
    z-index: 999;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    color: var(--gray-700) !important;
    font-size: 1.1rem;
  }

  .nav-toggle { display: flex; z-index: 1001; }

  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .approach-content { padding: 2.5rem 1.5rem; }

  .cta-card { padding: 2.5rem 1.5rem; }
  .cta-form { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .hero-scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-content-side { padding: 2rem 1.25rem; }
  .hero-buttons { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor .service-card,
body.has-custom-cursor .pricing-card,
body.has-custom-cursor .nav-toggle {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--sky-500);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.3s ease,
              border 0.3s ease;
  transform: translate(-50%, -50%);
  will-change: transform, width, height;
}

.custom-cursor.hover {
  width: 48px;
  height: 48px;
  background-color: rgba(91, 164, 217, 0.1);
  border: 1.5px solid rgba(91, 164, 217, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
