/* ── LENIS SMOOTH SCROLL ────────────────────────────────────── */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ── FONTS ──────────────────────────────────────────────────── */
@font-face {
  font-family: 'Acumin';
  src: url('AcuminVariableConcept.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('Nunito-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('Nunito-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('Nunito-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('Nunito-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('Nunito-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neurial Grotesk';
  src: url('NeurialGrotesk-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neurial Grotesk';
  src: url('NeurialGrotesk-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neurial Grotesk';
  src: url('NeurialGrotesk-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neurial Grotesk';
  src: url('NeurialGrotesk-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neurial Grotesk';
  src: url('NeurialGrotesk-Extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Myriad Pro';
  src: url('MyriadPro-Regular_0.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('Inter-V.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Artificial';
  src: url('artifictrial-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --blue:   #074fa5;
  --blue-d: #1240B0;
  --blue-l: #3B6FEF;
  --red:    #E03030;
  --cream:  #fffeec;
  --ink:    #134286;
  --muted:  #5A5E6B;
  --border: #D8D6D0;
  --white:  #FFFFFF;
  --radius: 11px;
  --shadow: 0 8px 32px rgba(26,80,216,0.13);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── UTILITY ────────────────────────────────────────────────── */
.container { width: 92%; max-width: 1080px; margin: 0 auto; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(26,80,216,.1);
  color: var(--blue);
}
.tag.red { background: rgba(224,48,48,.1); color: var(--red); }

/* ── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── POPUP FORM ─────────────────────────────────────────────── */
#pp-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}
#pp-popup-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
#pp-popup {
  background: #fff;
  border-radius: 20px;
  width: 460px;
  max-width: 100%;
  overflow: hidden;
  transform: translateY(28px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
  opacity: 0;
  position: relative;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
}
.pp-popup-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  flex: 1;
  min-height: 0;
  padding: 22px 28px 26px;
}
#pp-popup-backdrop.open #pp-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.pp-popup-header {
  background: linear-gradient(90deg,#28AAE1 0%,#4DB8B8 35%,#7CCB63 70%,#C3D12E 100%);
  padding: 22px 28px 18px;
  position: relative;
}
.pp-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pp-popup-badge .dot {
  width: 7px;
  height: 7px;  
  border-radius: 50%;
  background: #5EE896;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
.pp-popup-header h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.pp-popup-header h3 em { color: #daff00; font-style: normal; }
.pp-popup-header p { font-size: 13px; color: rgba(255,255,255,0.8); margin: 0; }
#pp-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
#pp-popup-close:hover { background: rgba(255,255,255,0.35); }
.pp-slots-bar {
  background: #FFF8ED;
  border: 1px solid #FFD166;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #9A6200;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pp-slots-bar .dot{
      
           width: 7px;
  height: 7px;
  border-radius: 50%;

  background: #9A6200;

  animation: pulse-dot 1.4s ease-in-out infinite;

}

.pp-form-row { margin-bottom: 13px; }
.pp-form-row label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #5A5E6B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.pp-form-row input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #D8D6D0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: #134286;
  background: #F2F0EB;
  transition: border 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.pp-form-row input:focus {
  outline: none;
  border-color: #074fa5;
  box-shadow: 0 0 0 3px rgba(7,79,165,0.12);
  background: #fff;
}
.pp-form-row select {
  width: 100%;
  padding: 10px 36px 10px 13px;
  border: 1.5px solid #D8D6D0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: #134286;
  background-color: #F2F0EB;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
}

.pp-form-row select:focus {
  outline: none;
  border-color: #074fa5;
  box-shadow: 0 0 0 3px rgba(7,79,165,0.12);
  background-color: #fff;
}

.pp-form-row select:disabled {
  background-color: #f0f4fb;
  color: #5a6880;
  cursor: default;
  pointer-events: none;
  opacity: 1;
}
.pp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pp-time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.pp-time-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 10px;
  border-radius: 10px;
  border: 1.5px solid #D8D6D0;
  background: #F2F0EB;

  font-size: 12px;
  font-weight: 600;
  color: #5A5E6B;

  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
}

.pp-time-btn i {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.pp-time-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.pp-time-title {
  font-size: 14px;
  font-weight: 700;
}

.pp-time-content small {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 3px;
}

.pp-time-btn:hover {
  border-color: #074fa5;
  color: #074fa5;
  background: #fff;
}

.pp-time-btn.selected {
  background: #074fa5;
  color: #fff;
  border-color: #074fa5;
}

.pp-submit {
  width: 100%;
  padding: 14px;
  background: #074fa5;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 6px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.pp-form-note {
  text-align: center;
  font-size: 12px;
  color: #5A5E6B;
  margin-top: 9px;
}
#pp-success {
  display: none;
  text-align: center;
  padding: 16px 0 8px;
}
.pp-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E8F5E9;
  color: #388E3C;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
#pp-success h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #134286;
  margin-bottom: 8px;
}
#pp-success p { font-size: 14px; color: #5A5E6B; }
.wa-confirm-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.wa-confirm-btn:hover { background: #1da851; }

@media (max-width: 480px) {
  .pp-form-grid { grid-template-columns: 1fr; }
  .pp-popup-body { padding: 18px 18px 22px; }
  .pp-popup-header { padding: 18px 18px 14px; }
}

/* ── NAV ────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 55px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-top: 8px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 13px;
  border-radius: 8px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--blue); background: rgba(26,80,216,.06); }
.nav-cta {
  background: linear-gradient(90deg, #69cbed 0%, #0978ba 100%);
  color: #daff00;
  border: none;
  border-radius: 13px;
  padding: 10px 30px;
  font-size: 15.5px;
  font-weight: 500;
  transition: background .5s, transform .4s;
  cursor: pointer;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #2B91D6, #37C4B9);
  transform: translateY(-1px);
}
@media (max-width: 900px) { .nav-links { display: none; } }
@media (max-width: 480px) {
  .logo-img { height: 42px; }
  .nav-cta { padding: 9px 16px; font-size: 13px; border-radius: 10px; }
}

/* ── HERO ───────────────────────────────────────────────────── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

.hero {
  background: url('images/hero-bg-image.webp') center center / cover no-repeat;
  color: var(--white);
  padding: 50px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 110% 0%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 30px;
  overflow: hidden;
}
.hero h1 em { color: #daff00; font-style: normal; }
.hero-sub-heading {
  margin-bottom: 10px;
  font-style: italic;
  font-size: clamp(16px, 2.5vw, 20px);
}
.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
}
.hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-top: 3px;
  display: block;
}

/* hero booking card */
.hero-card {
  background: var(--blue);
  border-radius: 20px;
  padding: 32px 28px 28px;
  color: var(--white);
  position: relative;
  bottom: -1px;
}
.card-header { margin-bottom: 20px; }
.card-header h3 {
  font-family: 'Acumin', sans-serif;
  font-weight: 800;
  font-size: 28px;
}
.card-header p {
  font-size: 15px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

/* booking form */
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-row input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: border .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-row input:focus {
  outline: none;
  border-color: #7bb8ff;
  box-shadow: 0 0 0 3px rgba(123, 184, 255, 0.18);
}
.form-row input::placeholder { color: #AAA; }
.time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.time-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 12px;
  border: 1.5px solid var(--border);

  background: var(--cream);
  color: var(--muted);

  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.25s ease,
    box-shadow 0.35s ease;
}

.time-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
  transform: translateY(-2px);
}

.time-btn.selected {
  background: #daff00;
  color: var(--blue);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(26,80,216,.25);
}

.time-btn i {
  font-size: 22px;
  flex-shrink: 0;
}

.time-btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.time-btn-title {
  font-size: 14px;
  font-weight: 600;
}

.time-btn small {
  font-size: 11px;
  opacity: .85;
  margin-top: 2px;
}

#f-package {
  width: 100%;
  padding: 11px 45px 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background-color: var(--cream);

  /* Custom dropdown arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;

  transition: border .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

#f-package:focus {
  outline: none;
  border-color: #7bb8ff;
  box-shadow: 0 0 0 3px rgba(123, 184, 255, 0.18);
}

/* DATE FIELD WRAP */
.date-wrap {
  position: relative;
  width: 100%;
}

/* DATE INPUT */
#f-date {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;

  font-family: inherit;
  font-size: 15px;

  color: var(--ink);
  background: var(--cream);

  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;
  position: relative;
  z-index: 2;
}

/* Hide native date text when empty (desktop webkit) */
#f-date:not([data-has-value])::-webkit-datetime-edit,
#pp-date:not([data-has-value])::-webkit-datetime-edit {
  color: transparent;
}

/* Fake placeholder span — shown when no value */
.fake-placeholder {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 15px;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.15s;
}

/* Hide fake placeholder once a date is picked */
#f-date[data-has-value] + .fake-placeholder,
#pp-date[data-has-value] + .fake-placeholder {
  display: none;
}

.submit-btn {
  width: 100%;
  padding: 15px;

  background: #daff00;
  color: var(--blue);

  border: none;
  border-radius: 12px;

  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;

  margin-top: 10px;

  transition:
    background 0.5s ease,
    transform .2s ease,
    box-shadow .35s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #2B91D6, #37C4B9);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,80,216,.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.slots-bar {
  background: rgba(255,255,255,.15);
  color: #daff00;

  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;

  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;

  padding: 7px 14px;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 15px;

  backdrop-filter: blur(6px);
}

.slots-bar .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;

  background: #daff00;

  animation: pulse-dot 1.4s ease-in-out infinite;
}

/* hero wave */
.hero-wave {
  display: block;
  width: 100%;
  height: 80px;
  margin-top: 0;
  line-height: 0;
}

/* success state */
.success-state { display: none; text-align: center; padding: 20px 0; }
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E8F5E9;
  color: #388E3C;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.success-state h3 {
  font-family: 'Acumin', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--white);
}
.success-state p { font-size: 14px; color: var(--white); }

/* ── MARQUEE BAND ────────────────────────────────────────────── */
.marquee-band {
  background: var(--cream);
  width: 100%;
  margin-top: -10px;
  overflow: hidden;
}
.marquee-band svg { width: 100%; height: 75px; display: block; rotate: 1deg; }

/* ── SECTION DEFAULTS ────────────────────────────────────────── */
section { padding: 80px 0; }

.section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0978ba;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Neurial Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 4vw, 51px);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #8db912;
  margin-bottom: 14px;
}

.book-section-title{
    font-family: 'Neurial Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 4vw, 51px);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #8db912;
  margin-bottom: 14px; 
}

.section-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: #666666;
  max-width: 650px;
  line-height: 1.55;
}
.section-sub--gap { margin-top: 15px; }

/* ── WHY SECTION ─────────────────────────────────────────────── */

.section-wrapper{
    padding-top: 0px!important;
    padding-bottom: 80px!important;
}

.why-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  position: relative;
  overflow: hidden;

  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 48px;
  border: 1.5px solid var(--border);

  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;

  z-index: 1;
}

/* Gradient Layer */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    #69cbed 0%,
    #0978ba 100%
  );

  opacity: 0;
  transition: opacity 0.5s ease;

  z-index: -1;
}

/* Active Hover State */
.why-card.active-hover::before {
  opacity: 1;
}
.why-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin-bottom: 14px;
  color: #0978ba;
}
.why-card h4 {
  font-family: 'Neurial Grotesk', sans-serif;
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 8px;
  color: #0978ba;
}
.why-card p { font-size: 15px; color: #9b9b9b; line-height: 1.5; }

/* split-type helpers */
.why-line  { overflow: hidden; }
.why-line-inner { display: block; will-change: transform; }

/* ── WHAT'S INCLUDED ─────────────────────────────────────────── */

@keyframes wakeup {
  from {
    transform: translateY(-10px);
  }

  to {
    transform: translateY(0px);
  }
}

.hiw-header{
     animation: wakeup 0.8s ease forwards;
}

.included-section {
  background: #0978ba;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
  z-index: 2; /* stay above GSAP-pinned #how-it-works */
}
.included-section::before {
  content: '';
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.10);
  pointer-events: none;
}
.included-section::after {
  content: '';
  position: absolute;
  right: 30px; top: 50%;
  transform: translateY(-50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.inc-orb-left {
  position: absolute;
  left: -80px; bottom: 80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.07);
  pointer-events: none;
}
.included-section .section-label { color: var(--white); }
.included-section .section-title { color: #fff; margin-bottom: 8px; }
.included-section .section-sub   { color: var(--white); max-width: 550px; font-size: 17px; margin-top: 25px; }

.inc-line  { overflow: hidden; }
.inc-line-inner { display: block; will-change: transform; }

/* accordion */
.pkg-accordion { margin-top: 44px; position: relative; z-index: 1; }

.pkg-group { margin-bottom: 0; }
.pkg-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid rgba(255,255,255,0.20);
  gap: 16px;
}
.pkg-group-header:hover .pkg-group-label { color: #daff00; }
.pkg-group-left { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.pkg-group-dash {
  display: inline-block;
  width: 26px; height: 3px;
  background: #daff00;
  border-radius: 2px;
  flex-shrink: 0;
}
.pkg-group-label {
  font-family: 'Neurial Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 3vw, 33px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #daff00;
  transition: color 0.2s;
  white-space: normal;
  word-break: break-word;
  line-height: 1.2;
}
.pkg-group-chevron {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  color: #daff00;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.pkg-group.open .pkg-group-chevron { transform: rotate(180deg); }
.pkg-group-chevron svg { width: 32px; height: 32px; display: block; }

.pkg-group-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1), padding 0.4s ease;
}
.pkg-group.open .pkg-group-body {
  max-height: 3000px;
  padding: 24px 0 32px;
}

/* card grids */
.pkg-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pkg-cards-grid.pkg-wide { grid-template-columns: 1fr; }
.pkg-cards-grid-core {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* standard card */
.pkg-card-new {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #e2e8f0;
  padding: 20px;
  gap: 12px;
}
.pkg-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}
.pkg-card-img-wrap { border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.pkg-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: #c9d8ee;
  transition: transform 0.4s ease;
}
.pkg-card-new:hover .pkg-card-img { transform: scale(1.03); }
.pkg-card-info-core {
  padding: 0 4px 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.pkg-card-info {
  padding: 0 4px 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.pkg-card-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 2vw, 20px);
  color: #05537a;
  line-height: 1.4;
}
.pkg-card-sub {
  font-size: 15px;
  color: #9b9b9b;
  font-style: italic;
  line-height: 1.4;
}
.pkg-card-btn {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 5px;
  border: 1.5px solid #1565C0;
  color: #1565C0;
  background: transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}
.pkg-card-btn:hover { background: #1565C0; color: #fff; }

/* wide card */
.pkg-card-wide {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  padding: 12px 12px 0 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pkg-card-wide:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}
.pkg-card-wide-img-wrap { border-radius: 10px; overflow: hidden; }
.pkg-card-wide-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: #c9d8ee;
  transition: transform 0.4s ease;
}
.pkg-card-wide:hover .pkg-card-wide-img { transform: scale(1.02); }
.pkg-card-wide-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 25px 18px;
}
.pkg-card-wide-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #05537a;
  margin-bottom: 4px;
}
.pkg-card-wide-sub {
  font-size: 16.5px;
  color: #0b4d6d;
  font-style: italic;
  line-height: 21px;
  margin-bottom: 10px;
  margin-top: -10px;
}
.pkg-card-wide-btn,
.pkg-card-btn-core {
  flex-shrink: 0;
  padding: 9px 20px;
  border-radius: 9px;
  border: 1.5px solid #0978ba;
  color: #0978ba;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
  align-self: center;
}
.pkg-card-wide-btn:hover,
.pkg-card-btn-core:hover { background: #1565C0; color: #fff; }

.pkg-cards-bottom{
    padding-top: 16px;
}

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.hiw-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hiw-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #00ADEE;
  margin-bottom: 10px;
}
.hiw-title {
  font-family: 'Neurial Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 4vw, 51px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 23px;
  color: #8db912;
}
.hiw-sub {
  text-align: center;
  max-width: 540px;
  font-size: clamp(14px, 2vw, 17px);
  color: var(--muted);
}


#how-it-works{
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1; /* below .included-section (z-index:2) so pin never overlaps packages */
}

/* steps */
.steps-wrapper { max-width: 1080px; margin: 0 auto; }
.steps-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 44px;
}
.steps-line-bg {
  position: absolute;
  top: 46px;
  left: calc(10% + 18px);
  right: calc(10% + 18px);
  height: 4.2px;
  background: #edeaca;
  border-radius: 2px;
  z-index: 0;
}
.steps-line-fill {
  position: absolute;
  top: 46px;
  left: calc(10% + 18px);
  width: 0%;
  height: 4.2px;
  background: #0978ba;
  border-radius: 2px;
  z-index: 1;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.step-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #edeaca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Neurial Grotesk', sans-serif;
  font-weight: 400;
  font-size: 31px;
  color: #999;
  transition: background 0.4s, color 0.4s, transform 0.3s;
  margin-bottom: 20px;
}
.step.active .step-circle {
  background: #0978ba;
  color: #c8f135;
  transform: scale(1.1);
}
.step.done .step-circle {
  background: #0978ba;
  color: var(--white);
}
.step h4 {
  font-family: 'Neurial Grotesk', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #0D47A1;
  margin: 0 0 8px;
  line-height: 1.3;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.step.active h4,
.step.done  h4 { opacity: 1; }
.step p {
  font-size: 14px;
  color: #9b9b9b;
  line-height: 1.4;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.step.active p,
.step.done  p { opacity: 1; }

/* ── PRICE FOOTER BAR ─────────────────────────────────────────── */
.included-footer {
  position: sticky;
  bottom: 2%;
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 25px;
  background: #0978ba;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 1000;
  flex-wrap: wrap;
}
.price-teaser { display: flex; flex-direction: column; gap: 2px; min-width: 140px; }
.price-cross {
  font-size: 14.5px;
  color: rgba(255,255,255);
  font-family: 'Neurial Grotesk', sans-serif;
}
.price-main {
      font-family: 'Neurial Grotesk', sans-serif;
    font-size: 54px;
    font-weight: 600;
    color: #daff00;
    line-height: 1;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    /* align-items: baseline; */
    gap: 6px;
}
.price-onwards {
  font-family: 'Neurial Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 200;
    line-height: 1.3;
    padding-top: 15px;
    color: #fff;
}
.price-desc {
  font-family: 'Neurial Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  margin: 0;
  padding: 0 32px;
}

.price-desc-left{
   font-family: 'Neurial Grotesk', sans-serif;
   color: #fff; 
   font-size: 13px;
   padding-top: 5px;
}

.included-cta {
  flex-shrink: 0;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid #ffffff;
  color: #daff00;
  background: transparent;
  font-family: 'Artificial', sans-serif;
  font-size: 17px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.included-cta:hover { background: #c8f135; color: #1565C0; }
@media (max-width: 860px) {
  .included-footer { display: none !important; }
  
  #why{
    padding-top: 25px!important;
}

}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testi-section { background: var(--white); overflow: hidden; }
.testi-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.testi-line  { overflow: hidden; }
.testi-line-inner { display: block; will-change: transform; }
.testi-nav { display: flex; gap: 10px; }
.testi-nav-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1.5px solid #0978ba;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--blue);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.testi-nav-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.testi-nav-btn svg { width: 21px; height: 21px; }
.testi-header-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.testi-carousel-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 20px;
  padding-top: 25px;
  will-change: transform;
}
.testi-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  border: 1.5px solid #0978ba;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.testi-card.active {
  background: #0978ba;
  border-color: var(--blue);
}
.testi-card-top { display: flex; flex-direction: column; gap: 2px; }
.testi-card-name {
  font-family: 'Neurial Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8db912;
}
.testi-card.active .testi-card-name { color: #c8f135; }
.testi-card-role { font-family: 'Inter', sans-serif; font-size: 12px; color: #9b9b9b; }
.testi-card.active .testi-card-role { color: var(--white); }
.testi-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--blue);
  flex: 1;
}
.testi-card.active .testi-text { color: rgba(255,255,255,0.9); }

/* ── FAQ ──────────────────────────────────────────────────────── */
#faq { background-color: var(--white); }

.faq{
    padding-top: 20px!important;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.faq-list { margin-top: 40px; width: 100%; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-q span {
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 25px);
  flex: 1;
  transition: color .2s;
  color: #6B7280;
}
.faq-q:hover span { color: var(--blue); }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(26,80,216,.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}
.faq-toggle svg {
  width: 23px; height: 23px;
  transition: transform 0.35s ease;
}
.faq-item.open .faq-toggle {
  background: var(--blue);
  color: var(--white);
}
.faq-item.open .faq-toggle svg { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  height: 0;
  opacity: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  padding: 0 48px 0 0;
}
.faq-line  { overflow: hidden; }
.faq-line-inner { display: block; will-change: transform; }

/* ── BOOK CTA SECTION ─────────────────────────────────────────── */
.book-section {
  background: var(--cream);
  padding-top: 64px;
  padding-bottom: 80px;
}
.book-inner {
  display: flex;
  gap: 40px;
}

.book-left{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.book-right{
    padding-top: 15px;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.book-inner .section-title {
  color: #8db912;
}
.book-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 80px;
}
.book-cta-btn {
   display: inline-block;
  padding: 13px 32px;
  border: 1.5px solid #0978ba;
  border-radius: 8px;
  font-family: 'Artificial', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0978ba;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}
.book-cta-btn:hover { background: var(--ink); color: var(--white); }
.book-right-desc {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--muted);
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}
.book-bottom {
  display: flex;
  justify-content: space-between;
}

.book-logo img {
    height: 280px; display: block; }
.book-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.book-feature {
  display: flex;
  gap: 9px;
  font-family: 'Neurial Grotesk', sans-serif;
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 500;
  color: #0978ba;
}
.check {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: #0978ba
  padding-top: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
    
/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #8db912;
  color: rgba(255,255,255);
  font-size: 14px;
}

/* ─ Top grid ─ */
.footer-top {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* ─ Brand col ─ */
.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255);
  margin-bottom: 24px;
  max-width: 280px;
}

/* ─ Social icons ─ */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.footer-social-link:hover {
  background: #0978ba;
  border-color: #0978ba;
  color: #fff;
  transform: translateY(-3px);
}

/* ─ Column headings ─ */
.footer-heading {
  font-family: 'Neurial Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #daff00;
  margin-bottom: 20px;
}

/* ─ Quick / Package links ─ */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: color .18s, padding-left .18s;
  display: inline-block;
}
.footer-links li a:hover {
  color: #daff00;
  padding-left: 5px;
}

/* ─ Contact list ─ */
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
}
.footer-contact li i {
  font-size: 15px;
  color:rgba(255,255,255,0.80);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  transition: color .18s;
}
.footer-contact a:hover {
  color: #daff00;
}

/* ─ Bottom bar ─ */
.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  font-family: 'Inter', sans-serif;
}

/* ── FOOTER RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-desc  { max-width: 100%; }
}
@media (max-width: 600px) {
  .footer-top  { padding: 48px 0 40px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* ── WHATSAPP FLOAT ───────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 200;
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,.4);
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 900px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Package cards: 2-col → 1 on smallest grids */
  .pkg-cards-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* GENERAL */
  section { padding: 52px 0; }
  .section-label{font-size:10px;}

  /* ── NAV ── */
  nav { padding: 10px 0; }

  /* ── HERO ── */
  .hero { 
      background-size: 650%; /* ← CONTROL THIS VALUE */
      background-position: 35% 0%;
      padding: 36px 0 0; 
      
  }
      
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero h1 { font-size: clamp(28px, 8vw, 42px); margin-bottom: 18px; }
  .hero-sub-heading { font-size: 16px; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; line-height: 1.55; }
  .hero-stats {
    gap: 20px;
    margin-bottom: 28px;
    justify-content: flex-start;
  }
  .hero-stat strong { font-size: 24px; }
  .hero-stat span { font-size: 11px; }
  .hero-card {
    padding: 24px 20px 20px;
    border-radius: 20px;
    margin: 0;
  }
  .card-header h3 { font-size: 22px; }
  .card-header p { font-size: 13px; }
  .hero-wave { height: 50px; }

  /* ── MARQUEE ── */
  .marquee-band svg { height: 55px; }

  /* ── WHY SECTION ── */
  .why-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .why-text { text-align: left; }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-card { padding: 24px 22px; }
  .why-card h4 { font-size: 18px; }
  .why-icon { font-size: 28px; width: 40px; height: 40px; margin-bottom: 10px; }

  /* ── WHAT'S INCLUDED ── */
  .included-section { padding: 48px 0 56px; }
  .included-section .section-sub { font-size: 15px; margin-top: 16px; }
  .pkg-accordion { margin-top: 28px; }
  .pkg-group-header { padding: 14px 0; gap: 10px; }
  .pkg-group-dash { width: 18px; height: 2px; }
  .pkg-group-chevron svg { width: 24px; height: 24px; }
  .pkg-cards-grid { grid-template-columns: 1fr; }
  .pkg-cards-grid-core { grid-template-columns: 1fr; }
  .pkg-card-img { height: 160px; }
  .pkg-card-wide-img { height: 180px; }
  .pkg-card-wide-bottom {
    flex-direction: column;
    gap: 12px;
    padding: 14px 16px 16px;
    align-items: flex-start;
  }
  .pkg-card-wide-name { font-size: 18px; }
  .pkg-card-wide-sub { font-size: 14px; }
  .pkg-wide-sub-margin {margin-top:-10px!important;}
  .pkg-card-info-core {
    flex-direction: column;
    gap: 10px;
  }

  /* ── HOW IT WORKS ── */
  .steps-track {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 48px;
    gap: 0;
    padding-left: 16px;
  }
  /* Hide horizontal progress line, replace with vertical */
  .steps-line-bg,
  .steps-line-fill { display: none; }
  /* Vertical line via pseudo-element on wrapper */
  .steps-wrapper { position: relative; }
  .steps-track::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 45px;
    bottom: 45px;
    width: 3px;
    background: #edeaca;
    border-radius: 2px;
    z-index: 0;
  }
  .step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 32px 0;
    gap: 18px;
    width: 100%;
  }
  .step:last-child { padding-bottom: 0; }
  .step-circle {
    width: 60px;
    height: 60px;
    font-size: 20px;
    margin-bottom: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .step-content {
    padding-top: 12px;
    flex: 1;
  }
  .step h4 { font-size: 16px; margin-bottom: 4px; }
  .step p { font-size: 13px; opacity: 1; }
  .step.active p,
  .step.done p { opacity: 1; }

  /* ── TESTIMONIALS ── */
  .testi-section { padding-top:40px; padding-bottom:0px;}
  .testi-carousel-wrapper { height: 280px; }
  .testi-card { width: 280px; padding: 22px 18px; gap: 16px; }
  .testi-card-name { font-size: 14px; }
  .testi-text { font-size: 13px; }
  .testi-header-bottom { margin-bottom: 16px; }

  /* ── FAQ ── */
  .faq-item { padding: 18px 0; }
  .faq-a { font-size: 14px; padding-right: 28px; }
  .faq-list{margin-top:10px;}

  /* ── BOOK CTA ── */
  .book-section { padding-top: 48px; padding-bottom: 56px; }
  .book-inner { 
      flex-direction: column;
      gap: 28px; }
     
  .book-left{
      width: 100%;
      gap: 10px;
      align-items: center;
    justify-content: center;
  }
  
  .book-right{
      width: 100%;
      gap: 20px;
  }
      
  .book-center {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-right: 0;
  }
  .book-right-desc { font-size: 14px; }
  .book-bottom {
    flex-direction: column;
    gap: 24px;
  }
  
  .book-logo img { height: 100px; }
  .book-features {
    margin-right: 0;
    gap: 10px;
  }
  .book-feature { font-size: 15px; }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    bottom: 16px;
    left: 16px;
    padding: 11px 16px;
    font-size: 13px;
  }
  
  #back-to-top{
      bottom: 10px!important;
  }
  
  .scroller-text{
      font-size: 50px!important;
  }
  
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* GENERAL */
  .container { width: 94%; }
  section { padding: 44px 0; }

  /* ── HERO ── */
  .hero { padding: 28px 0 0; }
  .hero h1 { font-size: clamp(26px, 7vw, 34px); margin-bottom: 14px; }
  .hero-sub { font-size: 13.5px; }
  .hero-stats {
    gap: 14px;
    flex-wrap: wrap;
  }
  .hero-stat strong { font-size: 22px; }
  .hero-card { padding: 20px 16px; }
  .card-header h3 { font-size: 20px; }
  .slots-bar { font-size: 7px; padding: 5px 10px; }
  .form-row input { font-size: 14px; padding: 10px 12px; }
  .submit-btn { font-size: 14px; padding: 13px; }

  /* ── PACKAGE GROUP LABEL ── */
  .pkg-group-label { font-size: clamp(13px, 3.5vw, 18px); }
  .pkg-cards-grid,
  .pkg-cards-grid-core { grid-template-columns: 1fr; gap: 12px; }
  .pkg-card-img { height: 140px; }
  .pkg-card-new { padding: 14px; gap: 10px; }
  .pkg-card-name { font-size: 14px; }
  .pkg-card-sub { font-size: 13px; }

  /* ── WHY CARDS ── */
  .why-card { padding: 20px 18px; }
  .why-card h4 { font-size: 16px; }
  .why-card p { font-size: 14px; }

  /* ── HOW IT WORKS ── */
  .steps-track { padding-left: 8px; }
  .steps-track::before { left: 36px; }
  .step-circle { width: 52px; height: 52px; font-size: 17px; }
  .step { gap: 14px; padding-bottom: 28px; }
  .step h4 { font-size: 15px; }

  /* ── TESTIMONIALS ── */
  .testi-carousel-wrapper { height: 260px; }
  .testi-card { width: 260px; padding: 18px 15px; }

  /* ── FAQ ── */
  .faq-q span { font-size: 15px; }

  /* ── BOOK SECTION ── */
  .book-logo img { height: 200px; }
  .book-feature { font-size: 14px; }
  .book-cta-btn { font-size: 14px; padding: 11px 22px; }



  /* ── WA FLOAT ── */
  .wa-float {
    left: 12px;
    bottom: 14px;
    padding: 10px 14px;
    font-size: 12px;
    gap: 7px;
  }
  .wa-float svg { width: 18px; height: 18px; }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — EXTRA-SMALL  (≤ 360px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .hero h1 { font-size: 24px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .pkg-group-label { font-size: 12px; }
  .step-circle { width: 46px; height: 46px; font-size: 15px; }
  .steps-track::before { left: 31px; }
  .testi-card { width: 240px; }
  .testi-carousel-wrapper { height: 250px; }
}

/* ══════════════════════════════════════════════════════════════
   TESTS MODAL
   ══════════════════════════════════════════════════════════════ */

/* ── Tests button ─────────────────────────────────────────────── */
.pkg-card-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pkg-card-info .pkg-card-btns { width: 100%; }
.pkg-card-info-core .pkg-card-btns { flex-shrink: 0; }

.pkg-tests-btn {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 5px;
  border: 1.5px solid #0978ba;
  color: #0978ba;
  background: rgb(255 255 255 / 100%);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pkg-tests-btn::before {
  font-size: 11px;
}
.pkg-tests-btn:hover {
  background: #1565C0;
  color: #fff;
}

/* Large variant for wide card */
.pkg-tests-btn--lg {
  padding: 9px 20px;
  border-radius: 9px;
  font-size: 16px;
}
.pkg-card-wide-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  justify-content: flex-end;
}

/* ── Modal backdrop & container ───────────────────────────────── */
#tests-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
#tests-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
#tests-modal {
  background: #fff;
  border-radius: 22px;
  width: 540px;
  max-width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(32px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
  opacity: 0;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
#tests-modal-backdrop.open #tests-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ── Modal header ─────────────────────────────────────────────── */
.tests-modal-header {
  background: linear-gradient(135deg, #0978ba 0%, #28AAE1 50%, #37C4B9 100%);
  padding: 24px 28px 20px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}
.tests-modal-header-text { flex: 1; min-width: 0; }
.tests-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tests-modal-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #daff00;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
.tests-modal-header h3 {
  font-family: 'Neurial Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 3vw, 22px);
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.tests-modal-header p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-style: italic;
}
#tests-modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
  flex-shrink: 0;
}
#tests-modal-close:hover { background: rgba(255,255,255,0.35); }

/* ── Modal body ───────────────────────────────────────────────── */
.tests-modal-body {
  padding: 0;
  overflow-y: auto;
  flex: 1;
  scroll-behavior: smooth;
}
.tests-modal-body::-webkit-scrollbar { width: 5px; }
.tests-modal-body::-webkit-scrollbar-track { background: #f0f4fa; }
.tests-modal-body::-webkit-scrollbar-thumb { background: #b8d0ec; border-radius: 10px; }

/* ── Filter tabs ──────────────────────────────────────────────── */
.tests-modal-filters {
  display: flex;
  gap: 8px;
  padding: 16px 24px 0;
  flex-wrap: wrap;
}
.tests-modal-filters:empty { display: none; }
.tests-filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid #0978ba;
  color: #0978ba;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.tests-filter-btn:hover {
  background: rgba(9,120,186,0.08);
  transform: translateY(-1px);
}
.tests-filter-btn.active {
  background: #0978ba;
  color: #fff;
  border-color: #0978ba;
  box-shadow: 0 4px 14px rgba(9,120,186,0.3);
}

/* ── Tests content ────────────────────────────────────────────── */
#tests-modal-content {
  padding: 20px 24px 28px;
}
.tests-content-panel { display: none; }
.tests-content-panel.active { display: block; }

/* Coming soon state */
.tests-coming-soon {
  text-align: center;
  padding: 48px 24px;
  color: #9b9b9b;
}
.tests-coming-soon-icon {
  font-size: 40px;
  margin-bottom: 14px;
}
.tests-coming-soon h4 {
  font-family: 'Neurial Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0978ba;
  margin-bottom: 8px;
}
.tests-coming-soon p { font-size: 14px; color: #9b9b9b; }

/* Section heading inside modal */
.tests-section-heading {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0978ba;
  margin: 20px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1.5px solid #e2ecf7;
  display: flex;
  align-items: center;
  gap: 7px;
}

.tests-section-heading:first-child { margin-top: 0; }

/* Individual test item */
.tests-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}
.tests-list li {
  font-size: 14px;
  color: #405070;
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.4;
}
.tests-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #0978ba;
  font-size: 10px;
  top: 8px;
}

/* Tier label inside panel (Basic / Advanced) */
.tests-tier-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg,#0978ba,#28AAE1);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 600px) {
  .tests-modal-header { padding: 20px 20px 16px; }
  #tests-modal-content { padding: 16px 18px 22px; }
  .tests-modal-filters { padding: 14px 18px 0; }
  .tests-list { grid-template-columns: 1fr; }
  .pkg-card-btns { gap: 6px; }
  .pkg-card-wide-actions { gap: 8px; }
  .pkg-tests-btn--lg { font-size: 16px; padding: 9px 20px; }
}
@media (max-width: 400px) {
  .pkg-card-info-core .pkg-card-btns { align-items: flex-start; }
}