:root {
  --primary: #1e3a5f;
  --primary-light: #2a5080;
  --accent: #c0392b;
  --accent-hover: #a93226;
  --bg: #f4f6f8;
  --surface: #ffffff;
  --border: #dce1e7;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --green: #27ae60;
  --red: #e74c3c;
  --yellow: #f39c12;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font: inherit; }

/* ── TOP BAR ─────────────────────────────────────── */
.top-bar {
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.4rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
.top-bar-left a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.top-bar a { color: #cde; }
.top-bar a:hover { color: #fff; }
.lang-toggle {
  display: flex;
  gap: 0.25rem;
}
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.7);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  font-size: 0.8rem;
  transition: all 0.2s;
}
.lang-btn.active,
.lang-btn:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.nav-logo-text small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  color: #fff;
}
.nav-links .btn-book {
  background: var(--accent);
  color: #fff !important;
  margin-left: 0.5rem;
}
.nav-links .btn-book:hover {
  background: var(--accent-hover);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.25rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── CONTAINER ───────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── HERO / CAROUSEL ─────────────────────────────── */
.carousel {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--primary);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.carousel-slide .slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: absolute;
  inset: 0;
}
.carousel-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.carousel-overlay h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.carousel-overlay p {
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 1.5rem;
  opacity: 0.92;
}
.carousel-btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-dark {
  background: var(--primary);
  color: #fff;
}
.btn-dark:hover { background: var(--primary-light); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.carousel-arrow:hover { background: rgba(255,255,255,0.4); }
.carousel-arrow.prev { left: 1rem; }
.carousel-arrow.next { right: 1rem; }
.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ── SECTIONS ────────────────────────────────────── */
.section { padding: 4rem 0; }
.section-light { background: var(--surface); }
.section-alt { background: var(--bg); }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.section-divider {
  width: 52px;
  height: 4px;
  background: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ── SERVICES GRID ───────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── CONTACT STRIP ───────────────────────────────── */
.contact-strip {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.contact-strip h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.contact-strip p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
}
.contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 0.9rem 1.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s;
  flex: 1 1 0;
  min-width: 150px;
  max-width: 260px;
}
.contact-option:hover { background: rgba(255,255,255,0.22); }
.contact-option .icon { font-size: 1.4rem; flex-shrink: 0; }

/* ── MAP ─────────────────────────────────────────── */
.map-section { padding: 0; }
.map-section iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: #111827;
  color: #9ca3af;
  padding: 2.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col p,
.footer-col a {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #9ca3af;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
}

/* ── PAGE HERO ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.page-hero p {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 580px;
  margin: 0 auto;
}

/* ── GALLERY GRID ────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.gallery-item-info {
  padding: 0.75rem 1rem;
}
.gallery-item-info h4 { font-size: 0.95rem; font-weight: 600; }
.gallery-item-info p { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ── LIGHTBOX ────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ── CALENDAR ────────────────────────────────────── */
.calendar-section { padding: 2rem 0 4rem; }
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.calendar-nav button {
  background: var(--primary);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-nav h3 {
  font-size: 1.2rem;
  font-weight: 600;
  min-width: 200px;
  text-align: center;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  max-width: 560px;
  margin: 0 auto;
}
.cal-header {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.5rem 0;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s;
  border: 2px solid transparent;
  position: relative;
  min-height: 44px;
}
.cal-day.empty { background: none; cursor: default; }
.cal-day.past { background: var(--bg); color: var(--text-muted); cursor: default; opacity: 0.5; }
.cal-day.available { background: #d4edda; color: #155724; }
.cal-day.available:hover { background: var(--green); color: #fff; transform: scale(1.05); }
.cal-day.partial { background: #fff3cd; color: #856404; }
.cal-day.partial:hover { background: var(--yellow); color: #fff; transform: scale(1.05); }
.cal-day.booked { background: #f8d7da; color: #721c24; cursor: not-allowed; }
.cal-day.blocked { background: #e2e3e5; color: #6c757d; cursor: not-allowed; }
.cal-day.today { border-color: var(--primary); font-weight: 700; }
.cal-day span { font-size: 0.65rem; margin-top: 2px; }

.calendar-legend {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.skylift-select {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.skylift-chip {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 2px solid var(--border);
  background: var(--surface);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s;
}
.skylift-chip.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* ── MODAL ───────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface);
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.modal-header h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1;
  padding: 0.2rem;
}
.modal-close:hover { color: var(--text); }

/* ── FORMS ───────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--accent-hover); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.35rem;
}
.payment-option {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
}
.payment-option:hover { border-color: var(--primary-light); }
.payment-option.selected { border-color: var(--primary); background: #eef4fb; }
.payment-option .pay-icon { font-size: 1.5rem; margin-bottom: 0.2rem; }
.payment-option .pay-name { font-size: 0.78rem; font-weight: 600; }

.price-summary {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.price-summary .total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.35rem;
}

/* ── ABOUT PAGE ──────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-text ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.about-text ul li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.about-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  margin: 3rem 0;
}
.stat-item {
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ── CONTACT PAGE ────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-info-item .ci-icon {
  font-size: 1.4rem;
  min-width: 36px;
  text-align: center;
}
.contact-info-item .ci-content h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}
.contact-info-item .ci-content a,
.contact-info-item .ci-content p {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
.contact-info-item .ci-content a:hover { color: var(--primary); text-decoration: underline; }

.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-form-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* ── ADMIN ───────────────────────────────────────── */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
.admin-login-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  text-align: center;
}
.admin-login-card h2 { color: var(--primary); margin-bottom: 0.5rem; }
.admin-login-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 220px;
  background: var(--primary);
  color: #fff;
  padding: 1.5rem 0;
  flex-shrink: 0;
}
.admin-sidebar .logo {
  padding: 0 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1rem;
}
.admin-nav { list-style: none; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: all 0.15s;
}
.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.admin-nav a .nav-icon { font-size: 1.1rem; min-width: 20px; }
.admin-content { flex: 1; padding: 2rem; background: var(--bg); overflow: auto; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-section h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.88rem;
}
.data-table th {
  background: var(--primary);
  color: #fff;
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
}
.data-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg); }

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-pending { background: #fff3cd; color: #856404; }
.badge-confirmed { background: #d4edda; color: #155724; }
.badge-cancelled { background: #f8d7da; color: #721c24; }

.admin-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.admin-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; color: var(--primary); }

.action-btn {
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}
.action-btn:hover { opacity: 0.8; }
.btn-confirm { background: var(--green); color: #fff; }
.btn-cancel { background: var(--red); color: #fff; }
.btn-delete { background: #6c757d; color: #fff; }

.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.upload-area:hover { border-color: var(--primary); }
.upload-area p { color: var(--text-muted); font-size: 0.9rem; }
.upload-area input { display: none; }

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}
.stat-card .s-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.stat-card .s-label { font-size: 0.82rem; color: var(--text-muted); }

/* ── ALERTS ──────────────────────────────────────── */
.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.alert-success { background: #d4edda; color: #155724; border-left: 4px solid var(--green); }
.alert-error { background: #f8d7da; color: #721c24; border-left: 4px solid var(--red); }
.alert-info { background: #d1ecf1; color: #0c5460; border-left: 4px solid #17a2b8; }

/* ── RESPONSIVE ──────────────────────────────────── */
/* ── SKYLIFT PAGE LAYOUT ─────────────────────────── */
.skylift-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  nav { position: relative; }
  .nav-inner { position: relative; }
  .carousel { height: 380px; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .payment-options { grid-template-columns: 1fr 1fr 1fr; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .admin-nav { display: flex; flex-wrap: wrap; padding: 0 0.5rem; }
  .admin-nav a { flex: 1; min-width: 120px; padding: 0.5rem 0.75rem; }
  .skylift-layout-grid { grid-template-columns: 1fr; }
  .contact-options { flex-direction: column; align-items: stretch; }
  .contact-option { max-width: 100%; }
  .top-bar-left a:last-child { display: none; }
}
