/* ============================================================
   DENSPARK STUDIO — services.css
   Colors: White bg, Black/Blue nav+footer, Primary Blue btns
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --black:       #0a0a0a;
  --dark:        #0F172A;
  --navy:        #0F172A;
  --dark-gray:   #1e1e1e;
  --mid-gray:    #6b6b6b;
  --light-gray:  #f4f4f4;
  --border:      #e4e4e4;

  --blue-primary:   #1a56db;
  --blue-hover:     #1245b5;
  --blue-light:     #3B82F6;
  --blue-dark:      #1240A8;
  --blue:           #1a56db; /* alias — keeps btn-book rule working */

  --nav-bg:      #0a0a0a;
  --footer-bg:   #0a0a0a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --max-w:      1280px;
  --radius:     4px;
  --nav-h:      72px;        /* used in navbar height calculations  */
  --transition: 0.25s ease;  /* used throughout navbar + components */

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  height: 64px;
}
.nav-container {
  max-width: 1320px; margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-text {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 600; letter-spacing: 0.12em; color: var(--white);
}
.logo-sub { font-size: 0.6rem; letter-spacing: 0.25em; color: var(--blue-light); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 0.875rem; font-weight: 400; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85); padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1.5px; background: var(--blue-light);
  transform: scaleX(0); transition: transform var(--transition); border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 12px; }

/* ── Book Now button ─────────────────────────────────────── */
.btn-book {
  background: #2563b0;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background var(--transition), transform 0.1s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.btn-book:hover {
  background: #1d50a0;
  transform: translateY(-1px);
}

/* ── Hamburger ───────────────────────────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px;
  border-radius: 7px;
  transition: background var(--transition);
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: #c8d9ee; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── SERVICES MEGA MENU ──────────────────────────────────── */
.services-chevron {
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid #7fa3d4;
  border-bottom: 1.5px solid #7fa3d4;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.has-mega:hover .services-chevron,
.has-mega.open  .services-chevron {
  transform: rotate(-135deg) translateY(2px);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #0e1f3d;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 22px;
  width: 660px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}

.mega-arrow {
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 13px; height: 13px;
  background: #0e1f3d;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.has-mega:hover .mega-menu,
.has-mega.open  .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Hide desktop mega completely on mobile */
@media (max-width: 900px) {
  .has-mega .mega-menu { display: none !important; }
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mega-column h4 {
  font-size: 10px; font-weight: 600; color: #4a90d9;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin: 0 0 10px; padding-bottom: 7px;
  border-bottom: 1px solid rgba(74,144,217,0.2);
}
.mega-column a {
  display: block; color: #a8c2e0; font-size: 12.5px;
  padding: 4px 0; text-decoration: none;
  transition: color 0.15s, padding-left 0.15s; line-height: 1.5;
}
.mega-column a:hover { color: #ffffff; padding-left: 6px; }
.mega-footer {
  margin-top: 18px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 10px; color: #3d6a9c;
  letter-spacing: 1px; text-transform: uppercase; text-align: center;
}

/* ── Mobile menu ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  background: #0a1628;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 0 20px 24px;
  max-height: calc(100vh - 64px); /* never taller than the viewport */
  overflow-y: auto;               /* scroll if content overflows    */
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: block; }

.mobile-nav-links { list-style: none; padding: 8px 0 0; margin: 0; }

.mobile-nav-links > li > a,
.mobile-services-toggle {
  display: flex; align-items: center; justify-content: space-between;
  color: #c8d9ee; font-size: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none; cursor: pointer;
  background: none; border-left: none; border-right: none; border-top: none;
  width: 100%; font-family: inherit;
  transition: color 0.2s;
}
.mobile-nav-links > li > a:hover,
.mobile-services-toggle:hover { color: #ffffff; }

.mobile-services-chevron {
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 2px solid #4a90d9;
  border-bottom: 2px solid #4a90d9;
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.mobile-services-toggle.open .mobile-services-chevron,
.mobile-services-item.open .mobile-services-chevron {
  transform: rotate(-135deg);
}

/* Mobile mega accordion */
.mobile-mega {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 0 0 12px;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}
.mobile-services-item.open .mobile-mega {
  max-height: 1200px;           /* enough room for all links        */
  opacity: 1;
  padding: 8px 0 4px 12px;
}
.mobile-mega .mega-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
.mobile-mega .mega-column h4 { font-size: 10px; }
.mobile-mega .mega-column a {
  font-size: 12px; padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-mega .mega-column a:last-child { border-bottom: none; }

/* Mobile CTA */
.btn-book-mobile {
  display: block; margin-top: 16px;
  background: #2563b0; color: #ffffff;
  text-align: center; padding: 13px; border-radius: 9px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  letter-spacing: 0.5px; border: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition);
}
.btn-book-mobile:hover { background: #1d50a0; }

.mobile-info {
  display: flex; justify-content: space-between;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-info span { font-size: 11px; color: #3d6a9c; }


/* ═══ WHAT WE DO DROPDOWN — matches Services mega-menu style ═══ */
.nav-dropdown { position: relative; }

.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--t) var(--ease);
  white-space: nowrap;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
}
.nav-drop-btn::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--blue-light);
  transform: scaleX(0);
  transition: transform var(--t);
  border-radius: 2px;
}
.nav-drop-btn:hover,
.nav-drop-btn[aria-expanded="true"] { color: var(--white); }
.nav-drop-btn:hover::after,
.nav-drop-btn[aria-expanded="true"]::after { transform: scaleX(1); }

.nav-drop-chevron {
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid #7fa3d4;
  border-bottom: 1.5px solid #7fa3d4;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.nav-drop-btn[aria-expanded="true"] .nav-drop-chevron {
  transform: rotate(-135deg) translateY(2px);
}

.nav-drop-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 660px;
  background: #0e1f3d;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  z-index: 1001;
}
.nav-drop-panel::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 13px; height: 13px;
  background: #0e1f3d;
  border-left: 1px solid rgba(255,255,255,.1);
  border-top: 1px solid rgba(255,255,255,.1);
}
.nav-drop-panel.open,
.nav-dropdown:hover .nav-drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-drop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.nav-drop-col h5 {
  font-size: 10px;
  font-weight: 600;
  color: #4a90d9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(74,144,217,.2);
}
.nav-drop-col a {
  display: block;
  color: #a8c2e0;
  font-size: 12.5px;
  padding: 4px 0;
  text-decoration: none;
  transition: color .15s, padding-left .15s;
  line-height: 1.5;
}
.nav-drop-col a:hover { color: #ffffff; padding-left: 6px; }
.nav-drop-footer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 10px;
  color: #3d6a9c;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 900px) {
      .nav-dropdown { display: none; }
      .mobile-whatwedo-item { display: list-item; }
    }

/* ── Responsive breakpoint ───────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-book  { display: none; }
  .menu-toggle { display: flex; }
}

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  position: relative; height: 70vh; min-height: 480px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 8s var(--ease-out) forwards;
  will-change: transform;
}
@keyframes heroZoom { to { transform: scale(1); } }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.75) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: 0 2rem 4rem;
  animation: heroFadeUp 1s var(--ease-out) 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.55); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.bc-sep { color: rgba(255,255,255,0.3); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem); font-weight: 300;
  color: var(--white); line-height: 1; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.page-hero-title em { font-style: italic; color: #7eb4ff; }
.page-hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.68); max-width: 560px; line-height: 1.7;
}
.page-hero-scroll {
  position: absolute; bottom: 2rem; right: 2.5rem;
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.45); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  z-index: 2; animation: heroFadeUp 1s var(--ease-out) 0.7s both;
}
.scroll-line {
  width: 40px; height: 1px; background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; inset: 0; background: var(--white);
  animation: scrollLine 1.8s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ── Services Strip ────────────────────────────────────────── */
.services-strip {
  background: var(--dark); overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.services-strip-inner {
  display: flex; align-items: center;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 0 1.5rem; gap: 0;
}
.services-strip-inner::-webkit-scrollbar { display: none; }
.strip-item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.25rem; color: rgba(255,255,255,0.5);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  white-space: nowrap; cursor: pointer; transition: color 0.25s; flex-shrink: 0;
}
.strip-item:hover { color: var(--white); }
.strip-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.strip-sep { color: rgba(255,255,255,0.15); font-size: 1rem; flex-shrink: 0; line-height: 1; }

/* ── Services Section ──────────────────────────────────────── */
.services-section { padding: 0 0 80px; }

.sv-block {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 420px; overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.sv-block--flip { direction: rtl; }
.sv-block--flip > * { direction: ltr; }

/* Image Side */
.sv-img-side { position: relative; overflow: hidden; }
.sv-img-wrap {
  position: relative; width: 100%; height: 100%;
  min-height: 420px; overflow: hidden; cursor: pointer;
}

/* Carousel */
.sv-carousel { position: relative; width: 100%; height: 100%; }
.sv-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
}
.sv-slide.active { opacity: 1; }
.sv-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sv-img-tint {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.22); pointer-events: none; z-index: 2;
}
.sv-num {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5); z-index: 3;
}
.sv-block--flip .sv-num { left: auto; right: 1.25rem; }

/* Dots */
.sv-dots {
  position: absolute; bottom: 1.25rem; left: 50%;
  transform: translateX(-50%); display: flex; gap: 6px; z-index: 3;
}
.sv-dot-btn {
  width: 6px; height: 6px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.4); padding: 0; cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.sv-dot-btn.active { background: #ffffff; transform: scale(1.3); }

/* Content Side */
.sv-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 4vw, 4rem);
  background: #ffffff;
}
.sv-block:nth-child(even) .sv-content { background: #f8f8f8; }
.sv-eye {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue-primary); margin-bottom: 0.5rem;
}
.sv-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 400;
  color: var(--black); line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 0.9rem;
}
.sv-title em { font-style: italic; color: var(--blue-primary); }
.sv-desc {
  font-size: 0.88rem; color: var(--mid-gray);
  line-height: 1.75; margin: 0 0 1.25rem; max-width: 460px;
}
.sv-feats {
  list-style: none; margin: 0 0 1.75rem; padding: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.sv-feats li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 500; color: var(--dark-gray);
}
.sv-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue-primary); flex-shrink: 0;
}
.sv-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue-primary);
  border: 1px solid var(--blue-primary); padding: 0.6rem 1.2rem;
  border-radius: var(--radius); background: transparent; align-self: flex-start;
  transition: background 0.2s ease, color 0.2s ease; text-decoration: none;
}
.sv-btn:hover { background: var(--blue-primary); color: #ffffff; }

/* Responsive */
@media (max-width: 768px) {
  .sv-block,
  .sv-block--flip { grid-template-columns: 1fr; direction: ltr; }
  .sv-block--flip > * { direction: ltr; }
  .sv-img-wrap { min-height: 260px; }
  .sv-num { left: 1rem; right: auto; }
  .sv-content { padding: 2rem 1.5rem; }
}

/* ── Reveal Animation ──────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Marquee ───────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden; background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.1rem 0;
}
.marquee-track { display: flex; overflow: hidden; }
.marquee-content {
  display: flex; align-items: center; gap: 1rem;
  white-space: nowrap; animation: marquee 28s linear infinite; flex-shrink: 0;
}
.marquee-content span {
  font-family: var(--font-display); font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.45); letter-spacing: 0.06em; font-style: italic;
}
.marquee-content .dot { color: var(--blue-primary); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Pricing Section ───────────────────────────────────────── */
.pricing-section {
  position: relative; padding: 100px 0;
  background: var(--light-gray); overflow: hidden;
}
.pricing-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 16rem); font-weight: 600;
  color: rgba(0,0,0,0.03); white-space: nowrap;
  pointer-events: none; user-select: none; letter-spacing: -0.02em;
}
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-primary); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 400;
  color: var(--black); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.section-title em { font-style: italic; color: var(--blue-primary); }
.section-sub {
  font-size: 0.95rem; color: var(--mid-gray);
  max-width: 480px; margin: 0 auto; line-height: 1.7;
}

/* Pricing Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  position: relative; background: var(--white);
  border: 1px solid var(--border); border-radius: 8px; padding: 2rem 1.75rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  transition-delay: var(--delay, 0s);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.pricing-card--featured {
  border-color: var(--blue-primary); background: var(--dark);
  transform: translateY(-8px); box-shadow: 0 24px 60px rgba(26,86,219,0.25);
}
.pricing-card--featured:hover { transform: translateY(-14px); box-shadow: 0 30px 70px rgba(26,86,219,0.3); }
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue-primary); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 20px; white-space: nowrap;
}
.pricing-tier {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: 0.3rem;
}
.pricing-desc { font-size: 0.83rem; color: var(--mid-gray); margin-bottom: 1.5rem; }
.pricing-card--featured .pricing-desc { color: rgba(255,255,255,0.45); }
.pricing-price {
  display: flex; align-items: baseline; gap: 0.25rem;
  margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border);
}
.pricing-card--featured .pricing-price { border-color: rgba(255,255,255,0.1); }
.price-currency { font-size: 0.85rem; font-weight: 600; color: var(--mid-gray); margin-bottom: 4px; }
.pricing-card--featured .price-currency { color: rgba(255,255,255,0.5); }
.price-amount {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--black); line-height: 1; letter-spacing: -0.03em;
}
.pricing-card--featured .price-amount { color: var(--white); }
.price-per { font-size: 0.78rem; color: var(--mid-gray); margin-left: 2px; }
.pricing-card--featured .price-per { color: rgba(255,255,255,0.4); }
.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.87rem; color: var(--dark-gray); }
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.75); }
.pricing-features svg { width: 16px; height: 16px; stroke: var(--blue-primary); flex-shrink: 0; }
.pricing-btn {
  display: block; text-align: center; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.8rem 1.5rem; border-radius: var(--radius);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s, border-color 0.25s, color 0.25s;
}
.pricing-btn--solid {
  background: var(--blue-primary); color: var(--white);
  box-shadow: 0 4px 14px rgba(26,86,219,0.35);
}
.pricing-btn--solid:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,0.4); }
.pricing-btn--outline { background: transparent; color: var(--blue-primary); border: 1.5px solid var(--blue-primary); }
.pricing-btn--outline:hover { background: var(--blue-primary); color: var(--white); transform: translateY(-2px); }
.pricing-note { text-align: center; margin-top: 2.5rem; font-size: 0.9rem; color: var(--mid-gray); }
.pricing-note a { color: var(--blue-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.pricing-note a:hover { color: var(--blue-hover); }

/* ── A-la-carte Pricing ──────────────────────────────────── */
.bp-section { padding: 80px 0; background: #f8f8f6; position: relative; overflow: hidden; }
.bp-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: clamp(5rem,15vw,13rem); font-weight: 700; color: rgba(0,0,0,0.03); white-space: nowrap; pointer-events: none; letter-spacing: -0.02em; font-family: Georgia,serif; }
.bp-container { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.bp-header { text-align: center; margin-bottom: 3rem; }
.bp-eyebrow { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: 0.6rem; }
.bp-title { font-size: clamp(2rem,4.5vw,3rem); font-weight: 400; color: var(--black); line-height: 1.1; letter-spacing: -0.02em; font-family: var(--font-display); margin-bottom: 0.6rem; }
.bp-title em { font-style: italic; color: var(--blue-primary); }
.bp-sub { font-size: 0.9rem; color: var(--mid-gray); max-width: 440px; margin: 0 auto; line-height: 1.7; }
.bp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-bottom: 1.25rem; }
.bp-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 12px; padding: 1.5rem 1.5rem 1.75rem; position: relative; }
.bp-card--accent { border-color: var(--blue-primary); border-width: 1.5px; }
.bp-card-icon { width: 36px; height: 36px; border-radius: 8px; background: #eef3ff; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.bp-card-icon svg { width: 18px; height: 18px; stroke: var(--blue-primary); fill: none; }
.bp-card-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: 0.3rem; }
.bp-card-name { font-size: 1.05rem; font-weight: 500; color: var(--black); margin-bottom: 0.25rem; }
.bp-card-desc { font-size: 0.8rem; color: var(--mid-gray); margin-bottom: 1.2rem; line-height: 1.5; }
.bp-rate-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.45rem 0; border-bottom: 0.5px solid #f0f0f0; font-size: 0.85rem; }
.bp-rate-row:last-of-type { border-bottom: none; }
.bp-rate-label { color: var(--dark-gray); }
.bp-rate-val { font-weight: 500; color: var(--black); font-size: 0.95rem; }
.bp-rate-note { font-size: 0.75rem; color: var(--mid-gray); margin-top: 0.75rem; line-height: 1.5; }
.bp-bottom-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.bp-note-box { background: var(--white); border: 0.5px solid var(--border); border-radius: 12px; padding: 1.25rem 1.5rem; font-size: 0.83rem; color: var(--dark-gray); line-height: 1.65; }
.bp-note-box strong { color: var(--black); font-weight: 500; }
.bp-note-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: 0.5rem; display: block; }
.bp-cta { text-align: center; margin-top: 2.5rem; font-size: 0.88rem; color: var(--mid-gray); }
.bp-cta a { color: var(--blue-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* M-Pesa Box */
.bp-mpesa-box { background: #fff; border: 1.5px solid #1a56db; border-radius: 12px; padding: 1.5rem; margin-top: 1.25rem; }
.bp-mpesa-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.bp-mpesa-icon { width: 40px; height: 40px; background: #eef3ff; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bp-mpesa-icon svg { stroke: #1a56db; width: 20px; height: 20px; }
.bp-mpesa-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #1a56db; display: block; margin-bottom: 0.2rem; }
.bp-mpesa-title { font-size: 1rem; font-weight: 500; color: #111; }
.bp-mpesa-details { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem; }
.bp-mpesa-row { background: #f8f8f6; border-radius: 8px; padding: 0.75rem 1rem; }
.bp-mpesa-key { font-size: 0.72rem; color: #888; display: block; margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.1em; }
.bp-mpesa-val { font-size: 1.3rem; font-weight: 600; color: #111; letter-spacing: 0.05em; }
.bp-mpesa-steps { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; font-size: 0.78rem; color: #666; padding-top: 1rem; border-top: 0.5px solid #eee; }
.bp-mpesa-steps svg { color: #1a56db; flex-shrink: 0; }

/* Book Now */
.bp-book-wrap { text-align: center; margin-top: 2.5rem; }
.bp-book-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: #25D366; color: #fff; border: none; border-radius: 8px; padding: 0.9rem 2rem; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.bp-book-btn:hover { background: #1ebd5a; transform: translateY(-2px); }
.bp-book-note { margin-top: 0.75rem; font-size: 0.8rem; color: #999; }
.bp-card-book-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; margin-top: 1.25rem; padding: 0.7rem 1rem; background: #25D366; color: #fff; border: none; border-radius: 8px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.bp-card-book-btn:hover { background: #1ebd5a; transform: translateY(-2px); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner { background: var(--dark); padding: 80px 0; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 3rem 3.5rem;
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
  border-radius: 12px; position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -60%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.06);
}
.cta-inner::after {
  content: ''; position: absolute; bottom: -80%; left: 5%;
  width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.04);
}
.cta-inner h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400;
  color: var(--white); margin-bottom: 0.5rem; position: relative; z-index: 1;
}
.cta-inner p { font-size: 0.95rem; color: rgba(255,255,255,0.72); max-width: 440px; line-height: 1.65; position: relative; z-index: 1; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: var(--radius); white-space: nowrap;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  position: relative; z-index: 1; flex-shrink: 0;
}
.btn-white { background: var(--white); color: var(--blue-primary); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { background: var(--light-gray); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--footer-bg); color: rgba(255,255,255,0.6); padding-top: 60px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--white); letter-spacing: 0.08em; margin-bottom: 0.85rem; }
.footer-logo span { color: var(--blue-primary); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 280px; color: rgba(255,255,255,0.45); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: background 0.25s, color 0.25s, transform 0.2s; }
.footer-social a:hover { background: var(--blue-primary); color: var(--white); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li, .footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; font-size: 0.78rem; color: rgba(255,255,255,0.3); gap: 1rem; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── Chat Widget ───────────────────────────────────────────── */
.chat-widget { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900; }
.chat-toggle-btn {
  width: 54px; height: 54px; border-radius: 50%; background: var(--blue-primary);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(26,86,219,0.4);
  transition: background 0.25s, transform 0.3s var(--ease-out), box-shadow 0.25s;
  position: relative;
}
.chat-toggle-btn:hover { background: var(--blue-hover); transform: scale(1.08); box-shadow: 0 10px 28px rgba(26,86,219,0.45); }
.chat-toggle-btn svg { width: 22px; height: 22px; }
.chat-badge {
  position: absolute; top: -3px; right: -3px; width: 20px; height: 20px;
  background: #ef4444; border-radius: 50%; font-size: 0.65rem; font-weight: 700;
  color: var(--white); display: none; /* JS controls visibility */
  align-items: center; justify-content: center; border: 2px solid var(--white);
}

/* Chat Window — JS toggles .open class */
.chat-window {
  position: absolute; bottom: calc(100% + 14px); right: 0; width: 320px;
  background: var(--white); border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  overflow: hidden; display: none; flex-direction: column;
  transform-origin: bottom right;
}
.chat-window.open {
  display: flex;
  animation: chatOpen 0.3s var(--ease-out) both;
}
@keyframes chatOpen {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-header { background: var(--dark); padding: 1rem 1.1rem; display: flex; align-items: center; justify-content: space-between; }
.chat-header-info { display: flex; align-items: center; gap: 0.75rem; }
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-primary); font-size: 0.7rem; font-weight: 700; color: var(--white); display: flex; align-items: center; justify-content: center; }
.chat-header h4 { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.chat-status { font-size: 0.72rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.35rem; }
.online-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.chat-close-btn { font-size: 1.3rem; color: rgba(255,255,255,0.45); line-height: 1; padding: 0.2rem; transition: color 0.2s; }
.chat-close-btn:hover { color: var(--white); }
.chat-messages { padding: 1.1rem; min-height: 120px; max-height: 240px; overflow-y: auto; display: flex; flex-direction: column; gap: 0.75rem; background: #f9f9f9; }
.chat-msg { font-size: 0.84rem; line-height: 1.55; padding: 0.6rem 0.85rem; border-radius: 12px; max-width: 85%; }
.chat-msg.received { background: var(--white); color: var(--dark-gray); border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 3px; }
.chat-msg.sent { background: var(--blue-primary); color: var(--white); align-self: flex-end; border-bottom-right-radius: 3px; }
.chat-input-row { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; border-top: 1px solid var(--border); background: var(--white); }
#chatInput { flex: 1; border: 1px solid var(--border); border-radius: 20px; padding: 0.5rem 0.9rem; font-size: 0.84rem; font-family: var(--font-body); color: var(--black); outline: none; transition: border-color 0.2s; background: #f4f4f4; }
#chatInput:focus { border-color: var(--blue-primary); }
#chatSend { width: 34px; height: 34px; border-radius: 50%; background: var(--blue-primary); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.25s, transform 0.2s; }
#chatSend:hover { background: var(--blue-hover); transform: scale(1.08); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .pricing-card--featured { transform: translateY(0); }
  .pricing-card--featured:hover { transform: translateY(-6px); }
  .cta-inner { flex-direction: column; text-align: center; padding: 2.5rem 2rem; }
  .cta-inner p { margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-container { height: 64px; }
  .page-hero { height: 60vh; min-height: 420px; }
  .page-hero-content { padding: 0 1.25rem 2.5rem; }
  .page-hero-scroll { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .chat-window { width: 290px; }
  .services-strip-inner { padding: 0 0.75rem; }
  .strip-item { padding: 0.85rem; }
}

@media (max-width: 480px) {
  .page-hero-title { letter-spacing: -0.01em; }
  .pricing-grid { max-width: 100%; }
  .cta-inner { padding: 2rem 1.25rem; }
  .chat-widget { bottom: 1rem; right: 1rem; }
  .chat-window { width: calc(100vw - 2rem); right: 0; }
}