/* =============================================
   Custom Properties
============================================= */
:root {
  --teal:        #0D9488;
  --teal-dark:   #0F766E;
  --teal-darker: #115E59;
  --teal-light:  #CCFBF1;
  --teal-xlight: #F0FDFA;
  --gold:        #D97706;
  --gold-light:  #FEF3C7;
  --gold-dark:   #B45309;
  --terracotta:  #C1714B;
  --zellige: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg transform='translate(40,40)'%3E%3Cpolygon points='0,-34 7,-7 34,0 7,7 0,34 -7,7 -34,0 -7,-7' fill='none' stroke='%230D9488' stroke-width='1' opacity='0.22'/%3E%3Crect x='-24' y='-24' width='48' height='48' transform='rotate(45)' fill='none' stroke='%23D97706' stroke-width='0.8' opacity='0.15'/%3E%3Ccircle r='4' fill='none' stroke='%230D9488' stroke-width='0.8' opacity='0.12'/%3E%3C/g%3E%3C/svg%3E");
  --dark:        #0F172A;
  --dark-2:      #1E293B;
  --gray:        #64748B;
  --gray-light:  #CBD5E1;
  --light:       #F8FAFC;
  --white:       #FFFFFF;

  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-teal: 0 8px 30px rgba(13,148,136,0.25);

  --radius:      16px;
  --radius-sm:   8px;
  --radius-lg:   24px;
  --radius-full: 9999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

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

/* =============================================
   Typography helpers
============================================= */
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.15; }

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.section__sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.text-accent {
  color: var(--teal);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

h1 em, h2 em, h3 em {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

/* =============================================
   Layout
============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.hidden { display: none !important; }

/* =============================================
   Buttons
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(13,148,136,0.35);
}

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--hero-orange {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(217,119,6,0.45);
}
.btn--hero-orange:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(217,119,6,0.5);
}

.btn--hero-white {
  background: var(--white);
  color: var(--teal-darker);
  border-color: var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.btn--hero-white:hover {
  background: var(--teal-xlight);
  border-color: var(--teal-xlight);
  color: var(--teal-darker);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.16);
}

.btn--full { width: 100%; }

.btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; }

/* =============================================
   Navigation
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}

.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.nav.scrolled .nav__logo-name { color: var(--teal); }

.nav__logo-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.nav.scrolled .nav__logo-tag { color: var(--gray); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.nav.scrolled .nav__links a { color: var(--dark); }

.nav__links a:not(.nav__cta):hover { color: var(--teal-light); }
.nav.scrolled .nav__links a:not(.nav__cta):hover { color: var(--teal); }

.nav__cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 4px 16px rgba(217,119,6,0.35) !important;
}
.nav__cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-2px) !important;
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1001;
}

.nav.menu-open .nav__toggle span { background: var(--white); }

.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav.scrolled .nav__toggle span { background: var(--dark); }

/* =============================================
   Hero
============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(13,148,136,0.93) 0%,
      rgba(15,118,110,0.88) 45%,
      rgba(217,119,6,0.72) 100%),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920&q=80')
      center / cover no-repeat;
  z-index: -1;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--zellige);
  background-size: 80px 80px;
  opacity: 0.18;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.shape-1 {
  width: 600px; height: 600px;
  background: var(--gold-light);
  top: -200px; right: -100px;
}

.shape-2 {
  width: 400px; height: 400px;
  background: var(--teal-light);
  bottom: -150px; left: -100px;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero__content { color: var(--white); }

.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.35;
  margin-bottom: 20px;
  color: var(--white);
}

.hero__title em {
  color: #FCD34D;
  font-style: italic;
}

.hero__sub {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { display: flex; flex-direction: column; gap: 2px; }

.stat strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.stat span {
  font-size: 0.72rem;
  opacity: 0.7;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat__div {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.3);
}

/* Hero image */
.hero__image { display: flex; justify-content: center; }

.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero__image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero__image-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.badge-icon { font-size: 1.5rem; }

.hero__image-badge strong {
  display: block;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--dark);
}

.hero__image-badge small {
  display: block;
  color: var(--gray);
  font-size: 0.72rem;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.4);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.3); }
}

/* =============================================
   About
============================================= */
.about { background: var(--white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image { position: relative; }

.about__image-frame {
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Moroccan arch outline ring */
.about__image-frame::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px 999px calc(var(--radius) + 6px) calc(var(--radius) + 6px);
  border: 3px solid var(--gold);
  opacity: 0.4;
  pointer-events: none;
}

.about__image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 0;
  display: block;
}

.about__exp-badge {
  position: absolute;
  top: 20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-teal);
  border: 4px solid var(--white);
}

.about__exp-badge strong {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  line-height: 1;
}

.about__exp-badge span {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
  line-height: 1.35;
}

.about__text {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1.04rem;
  line-height: 1.78;
}

.about__features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--dark-2);
  font-size: 0.95rem;
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--teal-light);
  color: var(--teal-darker);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* =============================================
   Why Us
============================================= */
.why {
  background: var(--teal-xlight);
  position: relative;
}

.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--zellige);
  background-size: 80px 80px;
  background-repeat: repeat;
  pointer-events: none;
  opacity: 0.6;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why__card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
}

.why__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.why__icon { font-size: 2.5rem; margin-bottom: 16px; }

.why__card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.why__card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.68;
}

/* =============================================
   Packages
============================================= */
.packages { background: var(--white); }

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.package-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.package-card:hover::before,
.package-card.selected::before { transform: scaleX(1); }

.package-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.package-card.selected {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}

.package-card--featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
  transform: scale(1.04);
  background: linear-gradient(160deg, var(--teal-xlight) 0%, var(--white) 55%);
}

.package-card--featured::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.package-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.package-card__header { text-align: center; margin-bottom: 24px; }

.package-card__icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 12px;
}

.package-card__header h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.package-card__header p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.package-card__price {
  text-align: center;
  padding: 20px;
  background: var(--light);
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.package-card__price strong {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--teal);
  line-height: 1;
  display: block;
}

.package-card__price span {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}

.package-card__features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--dark-2);
  font-weight: 500;
}

.package-card__features li span {
  color: var(--teal);
  font-weight: 900;
}

.package-select-btn { width: 100%; }

.package-card.selected .package-select-btn {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* =============================================
   How It Works
============================================= */
.how { background: var(--dark); }

.how .section__eyebrow { color: var(--teal-light); }
.how .section__title   { color: var(--white); }

.how__steps {
  display: flex;
  align-items: flex-start;
}

.how__step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.how__step-num {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: -20px;
  user-select: none;
}

.how__step-icon {
  font-size: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  background: rgba(13,148,136,0.18);
  border: 2px solid rgba(13,148,136,0.4);
  border-radius: 50%;
  margin-bottom: 18px;
}

.how__step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--white);
}

.how__step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.how__connector {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  flex-shrink: 0;
  margin-top: 82px;
  opacity: 0.45;
}

/* =============================================
   Working Hours
============================================= */
.hours { background: var(--teal-xlight); }

.hours__card {
  max-width: 660px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hours__grid { padding: 8px; }

.hours__day {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  gap: 12px;
  transition: background var(--transition);
}

.hours__day:hover { background: var(--teal-xlight); }

.day-name  { font-weight: 700; color: var(--dark); font-size: 0.95rem; }

.day-hours { color: var(--gray); font-size: 0.875rem; }

.day-status {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.day-status--open    { background: #DCFCE7; color: #166534; }
.day-status--limited { background: var(--gold-light); color: var(--gold-dark); }
.day-status--closed  { background: #FEE2E2; color: #991B1B; }

.hours__note {
  border-top: 1px solid var(--gray-light);
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.hours__note span { font-size: 1.1rem; flex-shrink: 0; }

/* =============================================
   Booking Form
============================================= */
.book { background: var(--white); }

.book__wrapper {
  max-width: 540px;
  margin: 0 auto;
}

.book__form {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.form__group { margin-bottom: 22px; }

.form__group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.optional {
  font-weight: 400;
  color: var(--gray);
  font-size: 0.8rem;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13,148,136,0.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: #BFCBD9; }

.form__group small {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--gray);
}

.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2364748B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 44px;
  cursor: pointer;
}

.input-with-icon { position: relative; }

.input-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  pointer-events: none;
  line-height: 1;
}

.input-with-icon input { padding-left: 44px; }

.form__group textarea { resize: vertical; min-height: 96px; }

.form__note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 14px;
}

/* Success state */
.book__success {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border: 2px solid var(--teal-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: successBounce 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes successBounce {
  0%   { transform: scale(0) rotate(-10deg); }
  60%  { transform: scale(1.25) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.book__success h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.book__success p {
  color: var(--gray);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.72;
}

/* =============================================
   Footer
============================================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}

.footer__logo-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  display: block;
  margin-bottom: 16px;
  margin-top: 4px;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.72;
  max-width: 300px;
}

.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links strong,
.footer__contact strong {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer__links a,
.footer__contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover { color: var(--teal-light); }

.footer__contact p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer__bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* =============================================
   Scroll Reveal
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   Responsive — Tablet (≤1024px)
============================================= */
@media (max-width: 1024px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .package-card--featured { transform: none; }

  .how__steps {
    flex-direction: column;
    align-items: center;
    max-width: 360px;
    margin: 0 auto;
    gap: 0;
  }

  .how__connector {
    width: 2px; height: 36px;
    margin: 0;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* =============================================
   Responsive — Mobile (≤768px)
============================================= */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Mobile nav */
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav__links.open { display: flex; }

  .nav__links a {
    font-size: 1.4rem !important;
    color: var(--white) !important;
  }

  .nav__links .nav__cta {
    padding: 14px 32px !important;
    font-size: 1.3rem !important;
  }

  .nav__toggle { display: flex; }

  /* Hero mobile */
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    gap: 0;
  }

  .hero__image { display: none; }
  .hero__actions { justify-content: center; }
  .hero__stats  { justify-content: center; }
  .hero__sub    { margin-left: auto; margin-right: auto; }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Why */
  .why__grid { grid-template-columns: 1fr; }

  /* Form */
  .book__form { padding: 32px 20px; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero__badge   { font-size: 0.72rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn           { width: 100%; justify-content: center; }
  .hero__actions .btn { max-width: 280px; }
}
