/* ==========================================================================
   HSR Driving School — Stylesheet
   Palette: deep navy + muted gold on a warm cream ground (posh, understated)
   ========================================================================== */

:root {
  --navy: #14213d;
  --navy-dark: #0a1220;
  --navy-soft: #1c2c4f;
  --gold: #c6a664;
  --gold-light: #e4d5b7;
  --cream: #faf7f1;
  --cream-dark: #f1ebdf;
  --white: #ffffff;
  --charcoal: #262626;
  --grey: #6b7280;
  --grey-light: #9ca3af;
  --border: #e6e0d4;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 6px;
  --shadow: 0 10px 30px rgba(10, 18, 32, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 18, 32, 0.15);
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--navy { background: var(--navy); color: var(--gold-light); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--alt { background: var(--cream-dark); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.section-head p { color: var(--grey); font-size: 1.02rem; }
.section--navy .section-head p { color: rgba(255,255,255,0.7); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold); }
.topbar-links { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-links span { display: inline-flex; align-items: center; gap: 6px; }

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.brand-logo {
  height: 68px;
  width: auto;
  display: block;
}
.brand-logo--footer { height: 54px; }
.brand-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.main-nav ul { display: flex; gap: 34px; align-items: center; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(198,166,100,0.18), transparent 55%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 110px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(198,166,100,0.05) 0 2px, transparent 2px 60px);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero-eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.hero h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h2 em {
  color: var(--gold);
  font-style: normal;
  border-bottom: 2px solid var(--gold);
}
.hero p.lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--gold);
}
.hero-stats div span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,166,100,0.35);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(6px);
}
.hero-panel h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.hero-panel p.small {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 22px;
}
.hero-panel ul { display: flex; flex-direction: column; gap: 12px; }
.hero-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.85);
  font-size: 0.94rem;
}
.hero-panel li .tick {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h2 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }
.breadcrumb { margin-top: 18px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--gold); }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all 0.3s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold-light); }
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--grey); font-size: 0.94rem; }
.card a.more { display: inline-block; margin-top: 14px; color: var(--gold); font-weight: 600; font-size: 0.85rem; border-bottom: 1px solid var(--gold); }

.stats-strip {
  background: var(--navy);
  padding: 44px 0;
}
.stats-strip .grid-4 { text-align: center; }
.stats-strip strong {
  display: block;
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 2rem;
}
.stats-strip span {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Why choose / features with icon left ---------- */
.feature-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.feature-row .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.feature-row h4 { font-size: 1.02rem; margin-bottom: 4px; }
.feature-row p { color: var(--grey); font-size: 0.92rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-media {
  background: linear-gradient(150deg, var(--navy), var(--navy-soft));
  border-radius: var(--radius);
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.split-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(198,166,100,0.08) 0 2px, transparent 2px 60px);
}
.split-media .badge {
  position: relative;
  text-align: center;
  color: var(--gold-light);
}
.split-media .badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--gold);
}
.split-media .badge span { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Pricing tables ---------- */
.price-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-card__head {
  background: var(--navy);
  color: var(--white);
  padding: 26px 28px;
  text-align: center;
}
.price-card__head h3 { color: var(--white); margin-bottom: 4px; }
.price-card__head span { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.price-card__body { padding: 10px 28px 28px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  gap: 14px;
}
.price-row:last-child { border-bottom: none; }
.price-row .label { font-weight: 600; color: var(--navy); }
.price-row .tag {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 3px;
  font-weight: 500;
}
.price-row .amount {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  white-space: nowrap;
}
.price-note {
  text-align: center;
  color: var(--grey);
  font-size: 0.88rem;
  margin-top: 28px;
}

.addon-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.addon-table th, .addon-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.addon-table th { background: var(--cream-dark); color: var(--navy); font-weight: 600; }
.addon-table tr:last-child td { border-bottom: none; }
.addon-table td.amount { text-align: right; font-weight: 600; color: var(--navy); font-family: var(--font-head); }

/* ---------- Testimonials ---------- */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
}
.testi-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 0.9rem; }
.testi-card p.quote { color: var(--charcoal); font-size: 0.95rem; margin-bottom: 20px; font-style: italic; }
.testi-card .who { display: flex; align-items: center; gap: 12px; }
.testi-card .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; font-family: var(--font-head);
}
.testi-card .who strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testi-card .who span { font-size: 0.78rem; color: var(--grey); }

.testi-placeholder {
  border: 1.5px dashed var(--gold-light);
  border-radius: var(--radius);
  padding: 46px 30px;
  text-align: center;
  color: var(--grey);
  background: var(--cream-dark);
}
.testi-placeholder strong { display: block; color: var(--navy); margin-bottom: 8px; font-family: var(--font-head); font-size: 1.1rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius);
  padding: 50px 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--white);
}
.cta-banner h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.7); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 16px;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--grey); margin-top: 14px; font-size: 0.94rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--charcoal);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,166,100,0.15);
}
.form-note { font-size: 0.82rem; color: var(--grey-light); margin-top: 6px; }
.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: 3px;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: #eaf4ec; color: #2f6b3a; }
.form-status.err { background: #fbe9e9; color: #9c2b2b; }

/* ---------- Contact info blocks ---------- */
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-line { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-line .icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem;
}
.contact-line strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 3px; }
.contact-line span, .contact-line a { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.contact-line a:hover { color: var(--gold); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.site-footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.03em; }
.site-footer ul li { margin-bottom: 11px; font-size: 0.9rem; }
.site-footer a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Book a Lesson / Call Me Back forms ---------- */
.booking-section {
  background:
    radial-gradient(ellipse at top left, rgba(198,166,100,0.1), transparent 55%),
    var(--navy);
  padding: 90px 0;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  max-width: 980px;
  margin: 0 auto;
}
.booking-card {
  background: var(--cream);
  border-radius: 22px;
  padding: 42px 38px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}
.booking-card h3 { font-size: 1.4rem; margin-bottom: 26px; }
.bf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.booking-card.single .bf-grid { grid-template-columns: 1fr; }
.booking-field input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--cream-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
}
.booking-field input::placeholder { color: var(--grey-light); }
.booking-field input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.booking-submit {
  width: 100%;
  margin-top: 8px;
  padding: 17px;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(198,166,100,0.3);
  transition: all 0.25s ease;
}
.booking-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

@media (max-width: 800px) {
  .booking-grid { grid-template-columns: 1fr; }
}

/* ---------- Pass Student Marquee ---------- */
.marquee-section { padding: 70px 0 60px; }
.marquee-viewport {
  overflow: hidden;
  width: 100%;
  margin: 40px 0 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
}
.marquee-viewport:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 170px;
  width: 128px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
@media (max-width: 600px) {
  .marquee-track img { height: 130px; width: 98px; }
}

/* ---------- Gallery Page ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: "Passed \2713";
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(10,18,32,0.78);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,18,32,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(88vw, 520px);
  max-height: 84vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(198,166,100,0.3); }
.lightbox-close { top: 22px; right: 24px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
  .lightbox-nav { width: 38px; height: 38px; font-size: 1.1rem; }
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 900;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 240px; }
  .grid-3, .grid-4, .price-tables, .form-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 700px) {
  .grid-3, .grid-4, .grid-2, .price-tables, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .topbar .container { justify-content: center; text-align: center; }
  .cta-banner { flex-direction: column; text-align: center; }
  .stats-strip .grid-4 { gap: 24px; }
}

/* ---------- Small phones ---------- */
.btn-text-short { display: none; }

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 11px 18px; font-size: 0.82rem; }
  .header-actions { gap: 8px; }
  .btn-header .btn-text-full { display: none; }
  .btn-header .btn-text-short { display: inline; }
  .brand { gap: 8px; }
  .brand-logo-wrap { padding: 6px 9px; }
  .brand-logo { height: 48px; }
  .nav-toggle { padding: 9px; }
  .nav-toggle span { width: 20px; }
  .booking-card { padding: 30px 22px; }
}

/* ---------- Mobile nav drawer ---------- */
.main-nav.open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 20px 24px 28px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}
.main-nav.open ul { flex-direction: column; align-items: flex-start; gap: 16px; }
