/* ============================================================
   ConnectedKiwi — styles.css
   Palette: deep navy #0a1628, teal #0eb8a0, warm white #f5f0e8
   Fonts: Playfair Display (headings), DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@400;500;600&display=swap');

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

:root {
  --navy:      #0a1628;
  --navy-mid:  #112240;
  --navy-light:#1a3458;
  --teal:      #0eb8a0;
  --teal-dark: #0a9082;
  --teal-glow: rgba(14,184,160,0.15);
  --cream:     #f5f0e8;
  --cream-mid: #ede7d9;
  --text:      #e8e2d8;
  --text-dim:  #8fa3b8;
  --white:     #ffffff;
  --danger:    #e05555;
  --warn:      #f0a22a;
  --success:   #27ae60;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

img { display: block; max-width: 100%; }

/* ---- Utility --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

.tag {
  display: inline-block;
  background: var(--teal-glow);
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
}

.hidden { display: none !important; }

/* ---- Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

.btn-primary {
  background: var(--teal);
  color: var(--navy);
}
.btn-primary:hover { background: var(--teal-dark); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal-glow); }

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 2px solid rgba(143,163,184,0.3);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(143,163,184,0.6); }

.btn-large { padding: 18px 40px; font-size: 18px; border-radius: 12px; }

/* ---- Nav ------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 15px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); text-decoration: none; }
.nav-cta { padding: 10px 22px; font-size: 15px; }
.nav-links a.nav-cta, .nav-links a.nav-cta:hover { color: var(--white); }

/* ---- Hero ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.45);
  transition: opacity 0.6s;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.3) 0%,
    rgba(10,22,40,0.1) 40%,
    rgba(10,22,40,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 80px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-eyebrow .tag { font-size: 12px; }
.hero-badge {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.4s both;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,0.35);
  border-bottom: 2px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
  margin-top: 4px;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ---- Value strip ----------------------------------------------------- */
.value-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}
.value-items {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 500;
}
.value-item .icon {
  font-size: 22px;
}
.value-item strong { color: var(--white); }

/* ---- How it works ---------------------------------------------------- */
.how-it-works { background: var(--navy); }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(28px, 5vw, 48px);
  color: var(--white);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.step-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.step-card:hover {
  border-color: rgba(14,184,160,0.4);
  transform: translateY(-3px);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(14,184,160,0.18);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p { color: var(--text-dim); font-size: 15px; }

/* ---- Gallery --------------------------------------------------------- */
.gallery-section { background: var(--navy-mid); overflow: hidden; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 200px 200px;
  gap: 8px;
  border-radius: 14px;
  overflow: hidden;
}
.gallery-grid .g1 { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery-grid .g2 { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-grid .g3 { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-grid .g4 { grid-column: 6 / 10; grid-row: 2 / 3; }
.gallery-grid .g5 { grid-column: 10 / 13; grid-row: 2 / 3; }
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.8) saturate(0.9);
}
.gallery-img:hover { transform: scale(1.04); filter: brightness(0.95) saturate(1.1); }

/* ---- Pricing card ---------------------------------------------------- */
.pricing-section { background: var(--navy); }
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--navy-mid);
  border: 1px solid rgba(14,184,160,0.3);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(14,184,160,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin: 16px 0 4px;
}
.pricing-price sup { font-size: 36px; vertical-align: super; }
.pricing-per { color: var(--text-dim); font-size: 16px; margin-bottom: 32px; }
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.pricing-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Booking section ------------------------------------------------- */
.booking-section {
  background: var(--navy-mid);
  scroll-margin-top: 80px;
}
.booking-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}
.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.step-indicator .circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(143,163,184,0.3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dim);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.step-indicator .label {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.step-indicator.active .circle {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
}
.step-indicator.active .label { color: var(--teal); }
.step-indicator.done .circle {
  background: rgba(14,184,160,0.15);
  border-color: var(--teal);
  color: var(--teal);
}
.step-indicator.done .label { color: var(--text-dim); }
.step-connector {
  flex: 1;
  min-width: 48px;
  height: 2px;
  background: rgba(143,163,184,0.2);
  margin-bottom: 20px;
  transition: background 0.3s;
}
.step-connector.done { background: var(--teal); }

/* Booking card */
.booking-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
}
.booking-card h2 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 8px;
}
.booking-card .sub {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 32px;
}

/* Calendar */
.calendar-wrapper {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cal-nav {
  background: none;
  border: none;
  color: var(--teal);
  font-size: 20px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background var(--transition);
  line-height: 1;
}
.cal-nav:hover { background: var(--teal-glow); }
.cal-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 12px;
}
.cal-dow {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  padding: 6px 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  position: relative;
  color: var(--text);
  border: none;
  background: transparent;
}
.cal-day:hover:not(.disabled):not(.other-month) {
  background: var(--teal-glow);
  color: var(--teal);
}
.cal-day.other-month { color: rgba(143,163,184,0.25); pointer-events: none; }
.cal-day.disabled {
  color: rgba(143,163,184,0.25);
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-day.today {
  font-weight: 700;
  color: var(--teal);
}
.cal-day.selected-start,
.cal-day.selected-end {
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  z-index: 1;
}
.cal-day.in-range {
  background: rgba(14,184,160,0.12);
  color: var(--teal);
  border-radius: 0;
}
.cal-day.selected-start { border-radius: 8px 0 0 8px; }
.cal-day.selected-end { border-radius: 0 8px 8px 0; }
.cal-day.selected-start.selected-end { border-radius: 8px; }

/* Price summary */
.price-summary {
  background: rgba(14,184,160,0.07);
  border: 1px solid rgba(14,184,160,0.2);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding: 5px 0;
  color: var(--text-dim);
}
.price-row.total {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 10px;
  padding-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.price-row.total span:last-child { color: var(--teal); }

/* Addons */
.addons-section {
  margin-bottom: 28px;
}
.addons-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.addon-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.6;
  margin-bottom: 8px;
  cursor: not-allowed;
}
.addon-card input[type=checkbox] { width: 18px; height: 18px; cursor: not-allowed; opacity: 0.5; }
.addon-info { flex: 1; }
.addon-info strong { font-size: 14px; color: var(--text); display: block; }
.addon-info small { font-size: 12px; color: var(--text-dim); }
.addon-price { font-size: 13px; color: var(--text-dim); white-space: nowrap; }
.coming-soon-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warn);
  border: 1px solid var(--warn);
  border-radius: 4px;
  padding: 2px 7px;
  flex-shrink: 0;
}

/* Date selection hint */
.date-hint {
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 16px;
  min-height: 20px;
}

/* Step 2 — Details form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,184,160,0.12);
}
.form-group input.error,
.form-group textarea.error {
  border-color: var(--danger);
}
.form-group .field-error {
  font-size: 12px;
  color: var(--danger);
}
.form-group textarea { min-height: 90px; }

/* Step 3 — Summary */
.order-summary {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
}
.order-summary h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-dim);
}
.summary-row:last-child { border-bottom: none; }
.summary-row span:last-child { color: var(--text); font-weight: 500; }
.summary-row.total-row {
  margin-top: 6px;
  padding-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.summary-row.total-row span:last-child { color: var(--teal); }

/* Payment placeholder */
.payment-placeholder {
  background: var(--navy-mid);
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 28px;
  text-align: center;
}
.payment-placeholder .payment-icon { font-size: 36px; margin-bottom: 12px; }
.payment-placeholder h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.payment-placeholder p {
  font-size: 14px;
  color: rgba(143,163,184,0.7);
}
.fake-card-row {
  margin-top: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  pointer-events: none;
}
.fake-card-row .card-icon { font-size: 20px; }
.fake-card-row span {
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
}

/* Step nav buttons */
.step-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Error / message banners */
.msg-banner {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.msg-banner.error {
  background: rgba(224,85,85,0.12);
  border: 1px solid rgba(224,85,85,0.35);
  color: #f0a0a0;
}
.msg-banner.success {
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.35);
  color: #7de0a7;
}
.msg-banner.info {
  background: rgba(14,184,160,0.1);
  border: 1px solid rgba(14,184,160,0.25);
  color: var(--teal);
}
.msg-banner-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* Confirmation screen */
.confirmation {
  text-align: center;
  padding: 20px 0;
}
.confirm-icon {
  width: 80px; height: 80px;
  background: rgba(14,184,160,0.12);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 28px;
}
.confirmation h2 { font-size: 30px; color: var(--white); margin-bottom: 12px; }
.confirmation p { color: var(--text-dim); font-size: 16px; max-width: 400px; margin: 0 auto 8px; }
.booking-ref {
  display: inline-block;
  background: var(--teal-glow);
  border: 1px solid rgba(14,184,160,0.35);
  border-radius: 8px;
  padding: 8px 20px;
  font-family: monospace;
  font-size: 16px;
  color: var(--teal);
  margin: 16px 0;
  letter-spacing: 0.08em;
}
.confirmation .dates-confirmed {
  color: var(--text);
  font-size: 17px;
  margin: 8px 0 28px;
}

/* Spinner */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- FAQ ------------------------------------------------------------- */
.faq-section { background: var(--navy); }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-radius: 10px; overflow: hidden; }
.faq-q {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--navy-light); }
.faq-arrow {
  color: var(--teal);
  font-size: 20px;
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 14px 22px 20px;
}
.faq-item { margin-bottom: 6px; }

/* ---- Footer ---------------------------------------------------------- */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { font-size: 20px; display: block; margin-bottom: 10px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 240px; line-height: 1.6; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(143,163,184,0.7); font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(143,163,184,0.5);
}

/* ---- Admin ----------------------------------------------------------- */
.admin-page {
  min-height: 100vh;
  background: var(--navy);
  padding: 40px 0 80px;
}
.admin-header {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  margin-bottom: 40px;
}
.admin-header .admin-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
}
.admin-header .admin-title span { color: var(--teal); }
.admin-panel {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 32px;
  margin-bottom: 28px;
}
.admin-panel h2 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.settings-grid .form-group label { font-size: 12px; }
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 20px 22px;
}
.stat-card .stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.stat-card .stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--teal);
  font-weight: 700;
}

/* Bookings table */
.table-wrapper {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.07);
}
.bookings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.bookings-table th {
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 14px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bookings-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text);
  vertical-align: top;
}
.bookings-table tr:last-child td { border-bottom: none; }
.bookings-table tr:hover td { background: rgba(255,255,255,0.02); }
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-badge.confirmed { background: rgba(39,174,96,0.15); color: #7de0a7; }
.status-badge.pending_payment { background: rgba(240,162,42,0.15); color: #f0c060; }
.status-badge.cancelled { background: rgba(224,85,85,0.12); color: #f0a0a0; }
.no-bookings {
  text-align: center;
  padding: 48px;
  color: var(--text-dim);
  font-size: 15px;
}

/* ---- Animations ------------------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp 0.5s ease both; }

/* ---- Responsive ------------------------------------------------------ */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid .g1 { grid-column: 1 / -1; grid-row: auto; height: 220px; }
  .gallery-grid .g2,
  .gallery-grid .g3,
  .gallery-grid .g4,
  .gallery-grid .g5 { grid-column: auto; grid-row: auto; height: 160px; }
}

@media (max-width: 680px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .booking-card { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .step-nav { flex-direction: column; }
  .step-nav .btn { width: 100%; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .admin-panel { padding: 24px 18px; }
  .stepper { gap: 0; }
  .step-indicator .label { display: none; }
}

@media (max-width: 440px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .g1,
  .gallery-grid .g2,
  .gallery-grid .g3,
  .gallery-grid .g4,
  .gallery-grid .g5 { grid-column: auto; height: 180px; }
}

/* ---- Address autocomplete ---- */
.addr-wrap { position: relative; }
.addr-suggest {
  display: none;
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 30;
  background: #fff; border: 1px solid rgba(0,0,0,0.12); border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18); overflow: hidden; max-height: 260px; overflow-y: auto;
}
.addr-suggest.open { display: block; }
.addr-item {
  padding: 11px 14px; font-size: 14px; color: #1a2733; cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.06); line-height: 1.35;
}
.addr-item:last-child { border-bottom: none; }
.addr-item:hover { background: #eef6f4; color: #0f6f5c; }
