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

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

:root {
  --primary: #F97316;
  --primary-dark: #EA6A0A;
  --bg: #080808;
  --bg-card: #141414;
  --bg-elevated: #111111;
  --bg-alt: #0f0f0f;
  --border: #252525;
  --border-subtle: #1a1a1a;
  --text: #ffffff;
  --text-muted: #cbcbcb;
  --text-dim: #777;
  --text-dark: #555;
  --text-darker: #444;
  --success: #22C55E;
  --radius: 0.5rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

/* =================== LAYOUT =================== */
.section-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 769px) {
  .section-container { padding-left: 48px; padding-right: 48px; }
}

.section-padding { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 769px) {
  .section-padding { padding-top: 100px; padding-bottom: 100px; }
}

/* =================== TYPOGRAPHY =================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-radius: 9999px;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  color: var(--primary);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.3);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.section-heading {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
}
@media (min-width: 769px) { .section-heading { font-size: 38px; } }

.heading-bar {
  display: block;
  margin-top: 12px;
  margin-bottom: 20px;
  border-radius: 2px;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.6s ease 0.2s;
}
.heading-bar.is-visible { width: 40px; }

/* =================== BUTTONS =================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  border: 2px solid var(--primary);
  border-radius: 9999px;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 180ms ease;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: scale(1.02);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #ffffff;
  border: 2px solid #2a2a2a;
  border-radius: 9999px;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 500;
  transition: all 180ms ease;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-secondary:hover {
  background: #222222;
  border-color: var(--primary);
  color: #F5F5F5;
}

/* =================== ANIMATIONS =================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-fade-up { opacity: 1; transform: none; }
  .heading-bar { width: 40px; }
}

/* =================== NAVBAR =================== */
.apricot-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  transition: all 300ms;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.apricot-nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #1a1a1a;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative;
  font-size: 14px;
  color: #888;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 180ms ease;
  font-family: 'Inter', sans-serif;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link.active { color: #fff; }
.nav-dot {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

/* Services dropdown */
.nav-services { position: relative; }
.nav-services:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #111111;
  border: 1px solid #222222;
  border-radius: 14px;
  padding: 16px;
  width: 480px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: all 220ms cubic-bezier(0.4,0,0.2,1);
}
.nav-dropdown-label {
  font-size: 11px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 8px 12px;
  border-bottom: 1px solid #1e1e1e;
  margin-bottom: 8px;
  display: block;
}
.nav-dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 160ms ease;
  border-left: 2px solid transparent;
}
.nav-dropdown-item:hover {
  background: rgba(249,115,22,0.08);
  border-left-color: var(--primary);
}
.nav-dropdown-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--primary); flex-shrink: 0; }
.nav-dropdown-name { font-size: 13px; color: #ccc; font-weight: 500; }
.nav-dropdown-desc { font-size: 11px; color: #555; }
.nav-dropdown-footer {
  border-top: 1px solid #1e1e1e;
  margin-top: 8px;
  padding-top: 12px;
}
.nav-dropdown-all { font-size: 12px; color: var(--primary); font-weight: 500; text-decoration: none; padding: 0 8px; }
.nav-book-btn { padding: 10px 20px !important; font-size: 14px !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px; height: 16px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 250ms;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.72);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 1001;
  width: 85vw;
  max-width: 320px;
  background: #0f0f0f;
  border-left: 1px solid #1e1e1e;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(0.25,0.1,0.25,1);
  display: flex;
  flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #1a1a1a;
}
.nav-drawer-close {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.drawer-link {
  display: block;
  padding: 16px 24px;
  font-size: 16px;
  color: #888;
  font-weight: 500;
  border-bottom: 1px solid #141414;
  text-decoration: none;
  transition: all 180ms;
  font-family: 'Inter', sans-serif;
}
.drawer-link:hover { color: #fff; border-left: 3px solid var(--primary); padding-left: 21px; }
.drawer-services-toggle {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
.drawer-services-list { display: none; }
.drawer-services-list.open { display: block; }
.drawer-sub-link {
  display: block;
  padding: 12px 24px 12px 40px;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid #141414;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.drawer-divider { height: 1px; background: #1a1a1a; margin: 8px 24px; }
.drawer-cta { padding: 16px 24px; }
.drawer-cta .btn-primary { width: 100%; text-align: center; justify-content: center; }
.drawer-contact {
  padding: 20px 24px;
  margin-top: auto;
}
.drawer-contact a {
  display: block;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-book-btn { display: none !important; }
  .nav-hamburger { display: flex; }
  .nav-overlay { display: block; }
  .nav-drawer { display: flex; }
}

/* =================== HERO =================== */
.hero-section {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 80vh;
  min-height: 480px;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.hero-overlay-1 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(5,8,20,0.78) 0%, rgba(5,8,20,0.55) 35%, transparent 55%);
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(5,8,20,0.45) 0%, rgba(5,8,20,0.15) 55%, rgba(5,8,20,0.0) 75%, rgba(5,8,20,0.85) 100%);
}
.hero-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}
.hero-inner { max-width: 540px; }
.hero-inner h1 {
  font-weight: 800;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}
.hero-inner p { font-size: 16px; color: #e9e9e9; line-height: 1.6; max-width: 400px; margin-bottom: 28px; }
.hero-buttons { display: flex; flex-direction: row; gap: 12px; }

@media (max-width: 768px) {
  .hero-section { height: 70vh !important; min-height: 380px; }
  .hero-overlay-1, .hero-overlay-2 { display: none !important; }
  .hero-content-wrapper { align-items: flex-start; }
  .hero-inner { padding-top: 80px; max-width: 100%; }
  .hero-inner h1 { font-size: 28px; line-height: 1.12; margin-bottom: 12px; }
  .hero-inner p { font-size: 15px; margin-bottom: 20px; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { padding: 10px 16px; font-size: 12px; white-space: nowrap; }
}

/* =================== SOCIAL PROOF =================== */
.social-proof-section {
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  background: #0a0a0a;
}
.social-proof-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
  position: relative;
}
.social-proof-item + .social-proof-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: #1c1c1c;
}
.social-proof-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(249,115,22,0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-proof-text { font-size: 14px; color: #888; font-family: 'Inter', sans-serif; }
.social-proof-mobile {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.social-proof-mobile-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  background: #141414;
  border: 1px solid #1c1c1c;
  border-radius: 12px;
  padding: 20px;
}
.social-proof-mobile-item .social-proof-icon { margin: 0 auto; }
.social-proof-mobile .social-proof-text { font-size: 12px; line-height: 1.35; }
@media (max-width: 768px) {
  .social-proof-desktop { display: none; }
  .social-proof-mobile { display: grid; }
}

/* =================== SERVICES GRID =================== */
.services-section { position: relative; overflow: hidden; background: #0a0a0a; }
.services-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.svc-card.is-visible { opacity: 1; transform: translateY(0); }
.svc-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
}
.svc-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card:hover .svc-img { transform: scale(1.05); }
.svc-text { padding: 14px 0 0; }
.svc-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 250ms ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.svc-desc {
  font-size: 14px;
  color: #cbcbcb;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: color 200ms ease;
}
.svc-card:hover .svc-link { color: var(--primary-dark); }
.svc-arrow { transition: transform 200ms ease; }
.svc-card:hover .svc-arrow { transform: translateX(3px); }

@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .svc-img-wrap { border-radius: 10px; }
  .svc-name { font-size: 14px; }
  .svc-desc { font-size: 13px; }
  .svc-link { font-size: 12px; }
  .svc-text { padding-top: 10px; }
}

/* =================== WHY CHOOSE US =================== */
.why-section { background: #0f0f0f; }
.why-grid {
  display: grid;
  grid-template-columns: 52fr 48fr;
  gap: 48px;
  align-items: stretch;
}
.why-stat-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px;
  transition: opacity 500ms ease, transform 500ms ease, background 200ms ease;
  cursor: default;
}
.why-stat-row.is-visible { opacity: 1; transform: translateY(0); }
.why-stat-row:hover { background: rgba(249,115,22,0.04); }
.why-stat-number { font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1; }
.why-stat-title { font-size: 15px; font-weight: 600; color: #fff; margin-top: 4px; font-family: 'Plus Jakarta Sans', sans-serif; }
.why-stat-desc { font-size: 13px; color: #cbcbcb; line-height: 1.6; margin-top: 4px; max-width: 340px; }
.why-img-wrap img { width: 100%; height: auto; object-fit: contain; border-radius: 16px; }
.why-instructor-card {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 22px 26px;
  flex-shrink: 0;
}
.why-instructor-badge {
  display: inline-block;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.why-instructor-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; font-family: 'Plus Jakarta Sans', sans-serif; }
.why-instructor-desc { font-size: 14px; color: #cbcbcb; line-height: 1.55; }

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .why-stat-row { padding: 20px 0; }
  .why-stat-number { font-size: 24px; }
  .why-stat-desc { max-width: 100%; }
  .why-instructor-card { padding: 18px 20px; }
}

/* =================== PRICING =================== */
.pricing-section { background: #0a0a0a; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.pricing-card { padding: 28px 24px; border-radius: 20px; display: flex; flex-direction: column; position: relative; }
.pricing-card-green { background: #111111; border: 1px solid #252525; }
.pricing-card-featured {
  background: linear-gradient(160deg, #1c1410 0%, #120e0a 60%, #0f0a06 100%);
  border: 1.5px solid rgba(249,115,22,0.5);
  transform: scale(1.03);
  z-index: 1;
}
.pricing-card-block { background: #111111; border: 1px solid #252525; }
.pricing-badge-green {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: #22C55E;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  padding: 4px 12px;
  margin-bottom: 20px;
  width: fit-content;
}
.pricing-badge-popular {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 0 10px 10px;
}
.pricing-badge-orange {
  display: inline-block;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  color: var(--primary);
  font-size: 11px;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  padding: 4px 12px;
  margin-bottom: 20px;
  width: fit-content;
}
.pricing-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; font-family: 'Plus Jakarta Sans', sans-serif; }
.pricing-subtitle { font-size: 14px; color: #cbcbcb; margin-bottom: 24px; }
.pricing-amount { font-size: 44px; font-weight: 800; color: var(--primary); line-height: 1; }
.pricing-amount-white { font-size: 44px; font-weight: 800; color: #fff; line-height: 1; }
.pricing-per { font-size: 13px; color: #cbcbcb; margin-left: 10px; padding-bottom: 6px; }
.pricing-divider-orange { height: 1px; background: rgba(249,115,22,0.15); margin: 24px 0; }
.pricing-divider { height: 1px; background: #1e1e1e; margin: 24px 0; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; }
.pricing-feature span { font-size: 14px; color: #cbcbcb; line-height: 1.4; }
.pricing-cta-strip {
  background: #141414;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0 0;
  flex-wrap: wrap;
  gap: 16px;
}
.pricing-save { font-size: 13px; color: #22C55E; font-weight: 600; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card { padding: 24px 20px; }
  .pricing-card-featured { transform: scale(1); order: -1; }
  .pricing-card-block { order: 0; }
  .pricing-card-green { order: -2; }
  .pricing-cta-strip { flex-direction: column; text-align: left; padding: 22px 20px; }
  .pricing-cta-strip .btn-primary { width: 100%; text-align: center; justify-content: center; }
}

/* =================== AREAS =================== */
.areas-section { background: var(--bg); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.area-card { text-align: center; }
.area-img { width: 100%; max-width: 260px; height: auto; object-fit: contain; margin: 0 auto 16px; transition: transform 400ms ease-out; }
.area-card:hover .area-img { transform: scale(1.04); }
.area-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.area-name svg { color: var(--primary); }
.area-desc { font-size: 14px; color: #cbcbcb; line-height: 1.4; }
.areas-note {
  margin-top: 32px;
  display: inline-flex;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 13px;
  background: #141414;
  border: 1px solid #222;
  color: #cbcbcb;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}
.areas-note a { color: var(--primary); font-weight: 500; }
.areas-note a:hover { text-decoration: underline; }

@media (max-width: 768px) { .areas-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }

/* =================== REVIEWS =================== */
.reviews-section { background: var(--bg); overflow: hidden; }
.reviews-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 16px;
}
@media (min-width: 769px) {
  .reviews-header { flex-direction: row; align-items: flex-end; }
}
.reviews-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 4px;
}
.reviews-scroll:active { cursor: grabbing; }
.reviews-scroll::-webkit-scrollbar { display: none; }
.reviews-scroll { -ms-overflow-style: none; scrollbar-width: none; }
@media (min-width: 769px) {
  .reviews-scroll { padding-left: 48px; padding-right: 48px; }
}
.review-card-wrapper {
  flex-shrink: 0;
  width: calc(25% - 15px);
  scroll-snap-align: start;
}
@media (max-width: 900px) { .review-card-wrapper { width: calc(50% - 10px); } }
@media (max-width: 600px) { .review-card-wrapper { width: 85vw; } }

.review-card {
  background: #131313;
  border: 1px solid #222222;
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  flex-shrink: 0;
  transition: border-color 250ms ease, background 250ms ease;
}
.review-card:hover { background: #181818; border-color: rgba(249,115,22,0.3); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-tag {
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  color: var(--primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 12px;
  width: fit-content;
}
.review-text { font-size: 14px; color: #cbcbcb; line-height: 1.7; flex: 1; }
.review-author { margin-top: 18px; padding-top: 14px; border-top: 1px solid #1e1e1e; }
.review-name { font-size: 14px; font-weight: 600; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; }
.review-location { font-size: 12px; color: #cbcbcb; margin-top: 2px; }
.review-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #141414;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms ease;
}
.review-nav-btn:hover { background: #1e1e1e; border-color: var(--primary); }
.review-nav-btn:hover svg { stroke: var(--primary); }
.review-nav-btn:active { transform: scale(0.93); }
.review-arrows { display: flex; align-items: center; gap: 10px; }
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.reviews-rating-stars { display: flex; gap: 4px; }
.reviews-rating-number { font-size: 18px; font-weight: 700; color: #fff; margin-left: 4px; }
.reviews-rating-dot { font-size: 18px; color: #333; }
.reviews-rating-text { font-size: 14px; color: #cbcbcb; }

/* =================== CHARITY =================== */
.charity-section { background: var(--bg); position: relative; overflow: hidden; }
.charity-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.charity-stats { display: flex; align-items: stretch; gap: 20px; margin-bottom: 36px; }
.charity-stat-number { font-size: 28px; font-weight: 800; color: var(--primary); }
.charity-stat-label { font-size: 11px; color: #cbcbcb; text-transform: uppercase; letter-spacing: 0.07em; }
.charity-stat-divider { width: 1px; background: #1e1e1e; align-self: stretch; margin: 0 4px; }
.charity-float { animation: floatCharity 4s ease-in-out infinite; }
@keyframes floatCharity { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.charity-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .charity-layout { display: flex; flex-direction: column-reverse; gap: 32px; }
  .charity-float { max-height: 280px; }
  .charity-glow { width: 280px; height: 280px; opacity: 0.7; }
}
@media (prefers-reduced-motion: reduce) { .charity-float { animation: none; } }

/* =================== FAQ + FINAL CTA =================== */
.faq-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  align-items: stretch;
}
@media (max-width: 1024px) { .faq-grid { grid-template-columns: 300px 1fr; } }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 280px 1fr; } }
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

.faq-cta-card {
  border-radius: 18px;
  border: 1px solid #242424;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 420px;
  position: relative;
}
.faq-item {
  border-bottom: 1px solid #1a1a1a;
  padding: 16px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #e9e9e9;
  font-weight: 500;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  gap: 12px;
  font-family: 'Inter', sans-serif;
}
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 200ms;
}
.faq-item.open .faq-icon { border-color: var(--primary); }
.faq-plus-v { transition: opacity 200ms; }
.faq-item.open .faq-plus-v { opacity: 0; }
.faq-answer {
  font-size: 14px;
  color: #cbcbcb;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding-top 300ms ease;
  padding-top: 0;
}
.faq-item.open .faq-answer { max-height: 400px; padding-top: 12px; }

/* =================== BOTTOM CTA =================== */
.bottom-cta { background: var(--bg); padding: 80px 0; }
.bottom-cta h2 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.bottom-cta p { font-size: 16px; color: #666; margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto; text-align: center; }
.bottom-cta-buttons { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
@media (max-width: 768px) { .bottom-cta h2 { font-size: 30px; } }

/* =================== FOOTER =================== */
footer { background: #050505; border-top: 1px solid #141414; padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 48px;
}
.footer-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; color: #fff; text-decoration: none; }
.footer-logo span { color: var(--primary); }
.footer-tagline { font-size: 13px; color: #444; margin-top: 12px; margin-bottom: 20px; }
.footer-about { font-size: 13px; color: #333; line-height: 1.65; max-width: 240px; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #141414;
  border: 1px solid #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 200ms;
  text-decoration: none;
}
.footer-social-icon:hover { background: #1e1e1e; border-color: var(--primary); color: var(--primary); }
.footer-heading { font-size: 12px; color: #555; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 13px; color: #666; text-decoration: none; transition: color 150ms; font-family: 'Inter', sans-serif; }
.footer-link:hover { color: var(--primary); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; text-decoration: none; }
.footer-contact-label { font-size: 12px; color: #888; display: block; }
.footer-contact-value { font-size: 13px; color: #ccc; font-weight: 500; display: block; }
.footer-contact-note { font-size: 11px; color: #444; display: block; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid #111;
  margin-top: 48px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 12px; color: #333; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal-link { font-size: 12px; color: #333; text-decoration: none; transition: color 150ms; }
.footer-legal-link:hover { color: var(--primary); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-grid > div { display: flex; flex-direction: column; align-items: center; }
  .footer-about { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

/* =================== PAGE HERO =================== */
.page-hero { background: #0a0a0a; padding-top: 80px; padding-bottom: 60px; }
.page-hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.page-hero p { font-size: 17px; color: #777; max-width: 560px; line-height: 1.75; margin-top: 16px; }
@media (max-width: 768px) { .page-hero h1 { font-size: 32px; } .page-hero p { font-size: 15px; } }

/* =================== COOKIE CONSENT =================== */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 3000;
  background: #111111;
  border-top: 1px solid #222222;
  padding: 16px 48px;
  transform: translateY(100%);
  transition: transform 400ms cubic-bezier(0.4,0,0.2,1);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.cookie-text { font-size: 13px; color: #666; flex: 1; }
.cookie-text a { color: var(--primary); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-close-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .cookie-bar { padding: 20px 24px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-buttons { flex-wrap: wrap; gap: 8px; }
}

/* =================== BOOKING POPUP =================== */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
}
.booking-overlay.show { display: block; }
.booking-modal {
  position: fixed;
  z-index: 2001;
  background: #111111;
  border: 1px solid #252525;
  padding: 36px 36px 32px;
  overflow-y: auto;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  max-width: calc(100vw - 40px);
  max-height: 90vh;
  border-radius: 20px;
  display: none;
}
.booking-modal.show { display: block; }
.booking-progress { display: flex; gap: 6px; margin-bottom: 28px; }
.booking-progress-bar { flex: 1; height: 3px; border-radius: 2px; background: #222; }
.booking-progress-bar.past { background: var(--primary); }
.booking-progress-bar.current { background: rgba(249,115,22,0.4); }
.booking-option {
  background: #1a1a1a;
  border: 1px solid #252525;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  transition: all 180ms;
  width: 100%;
  font-family: 'Inter', sans-serif;
}
.booking-option:hover { border-color: rgba(249,115,22,0.4); background: #1e1e1e; }
.booking-option.selected { background: rgba(249,115,22,0.08); border-color: var(--primary); }
.booking-option-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.booking-option-dot.grey { background: #555; }
.booking-input {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 12px 15px;
  color: #fff;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color 200ms;
  font-family: 'Inter', sans-serif;
}
.booking-input:focus { border-color: var(--primary); }
.booking-input.error { border-color: #E24B4A; }
.booking-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.booking-error-msg { font-size: 11px; color: #E24B4A; margin-top: 2px; display: none; }
.booking-error-msg.show { display: block; }
.booking-summary {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #1e1e1e;
}
.booking-summary-row:last-child { border-bottom: none; }
.booking-summary-label { font-size: 12px; color: #555; }
.booking-summary-value { font-size: 13px; color: #ccc; font-weight: 500; }
.booking-success { text-align: center; padding: 20px 0; }
.booking-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

@media (max-width: 480px) {
  .booking-modal {
    top: auto !important;
    bottom: 0; left: 0; right: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
  }
}

/* =================== ABOUT PAGE =================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
}
.about-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-stat-item { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.about-stat-number { font-size: 40px; font-weight: 800; color: var(--primary); font-family: 'Plus Jakarta Sans', sans-serif; }
.about-stat-label { font-size: 12px; color: #555; text-transform: uppercase; letter-spacing: 0.08em; }
.about-stat-divider {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: #1e1e1e;
}

@media (max-width: 768px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-stats-row { display: grid !important; grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-stat-divider { display: none; }
}

/* =================== CONTACT PAGE =================== */
.contact-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 36px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* =================== LEGAL PAGES =================== */
.legal-page { max-width: 800px; margin: 0 auto; padding: 100px 48px; }
.legal-page h1 { font-size: 40px; font-weight: 800; color: #fff; margin-top: 16px; font-family: 'Plus Jakarta Sans', sans-serif; }
.legal-date { font-size: 13px; color: #555; margin-top: 8px; }
.legal-bar { width: 40px; height: 3px; background: var(--primary); border-radius: 2px; margin-top: 16px; }
.legal-section h2 { font-size: 22px; font-weight: 600; color: #fff; margin-top: 40px; margin-bottom: 12px; font-family: 'Plus Jakarta Sans', sans-serif; }
.legal-section h3 { font-size: 16px; font-weight: 600; color: #ccc; margin-top: 16px; margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
.legal-text { font-size: 15px; color: #777; line-height: 1.85; }
.legal-list { list-style: none; padding: 0; margin: 12px 0; }
.legal-list li {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  padding: 4px 0 4px 20px;
  position: relative;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
@media (max-width: 768px) {
  .legal-page { padding: 80px 20px; }
  .legal-page h1 { font-size: 30px; }
  .legal-text { font-size: 14px; }
}

/* =================== SERVICE DETAIL PAGES =================== */
.spt-hero-grid {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 56px;
  align-items: center;
}
.spt-hero-img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.spt-hero-img-wrap { display: flex; justify-content: flex-end; }
.spt-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.spt-three-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.spt-cta-strip {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 16px;
}
.breadcrumb { font-size: 12px; margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: #555; text-decoration: none; transition: color 200ms; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: #333; }
.breadcrumb-current { color: #666; }
.spt-tag {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #888;
  font-size: 12px;
  border-radius: 9999px;
  padding: 4px 12px;
  display: inline-block;
}
.spt-checklist-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #1a1a1a;
}
.spt-check-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spt-checklist-title { font-size: 14px; font-weight: 600; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; }
.spt-checklist-detail { font-size: 12px; color: #666; line-height: 1.5; margin-top: 2px; }
.spt-step-number { font-size: 32px; font-weight: 800; color: var(--primary); opacity: 0.4; line-height: 1; }
.spt-step-title { font-size: 15px; font-weight: 600; color: #fff; margin-top: 4px; font-family: 'Plus Jakarta Sans', sans-serif; }
.spt-step-detail { font-size: 13px; color: #666; line-height: 1.6; margin-top: 4px; }
.spt-for-you-card, .spt-not-for-card {
  background: #141414;
  border: 1px solid #252525;
  border-radius: 14px;
  padding: 28px;
}
.spt-redirect-hint {
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 13px;
  color: #888;
}
.spt-redirect-hint a { color: var(--primary); text-decoration: none; }

@media (max-width: 768px) {
  .spt-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .spt-hero-img { max-height: 220px; max-width: 100%; border-radius: 12px; }
  .spt-hero-img-wrap { justify-content: center; }
  .spt-two-col { grid-template-columns: 1fr; gap: 36px; }
  .spt-three-cards { grid-template-columns: 1fr; gap: 12px; }
  .spt-cta-strip { flex-direction: column; text-align: center; }
  .spt-cta-strip .btn-primary { width: 100%; text-align: center; justify-content: center; }
  .spt-hero-grid h1 { font-size: 30px !important; }
}

/* =================== SERVICES HUB =================== */
.services-table-wrap {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #222;
  background: #141414;
}
.services-table { width: 100%; min-width: 600px; border-collapse: collapse; }
.services-table thead tr { background: #1a1a1a; }
.services-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.services-table tbody tr { border-bottom: 1px solid #1e1e1e; }
.services-table tbody tr:nth-child(even) { background: #161616; }
.services-table td { padding: 16px 20px; }
.services-table-name { font-size: 14px; color: #fff; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; }
.services-table-value { font-size: 13px; color: #777; }
.services-not-sure {
  background: #141414;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 56px 40px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.services-not-sure h3 { font-size: 32px; font-weight: 700; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; }
.services-not-sure p { font-size: 16px; color: #666; max-width: 440px; margin: 12px auto 28px; }
