/* ==========================================
   PEACHY PALS PLAYLAND — Main Stylesheet
   Theme: Panda + Bamboo + Peach & Teal
   ========================================== */

/* --- CSS Variables --- */
:root {
  --peach: #FF7043;
  --peach-light: #FFCCBC;
  --peach-lighter: #FFF3E0;
  --peach-dark: #E64A19;
  --teal: #26A69A;
  --teal-light: #80CBC4;
  --teal-dark: #00897B;
  --bamboo: #66BB6A;
  --bamboo-dark: #2E7D32;
  --bamboo-light: #A5D6A7;
  --pink: #F48FB1;
  --pink-light: #FCE4EC;
  --cream: #FFFDE7;
  --cream2: #FFF8E1;
  --white: #ffffff;
  --dark: #3E2723;
  --dark2: #4E342E;
  --gray: #795548;
  --gray-light: #D7CCC8;
  --gray-lighter: #EFEBE9;
  --shadow: 0 4px 24px rgba(62,39,35,0.10);
  --shadow-lg: 0 8px 40px rgba(62,39,35,0.15);
  --shadow-glow: 0 0 30px rgba(255,112,67,0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-heading: 'Bubblegum Sans', cursive;
  --font-body: 'Nunito', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

/* --- 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(--cream);
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: var(--peach-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--peach); }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); line-height: 1.2; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* --- Gradient Text --- */
.txt-gradient {
  background: linear-gradient(135deg, var(--peach), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.5rem; border-radius: 50px; border: 2px solid transparent;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: var(--transition); text-decoration: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: linear-gradient(135deg, var(--peach), var(--peach-dark)); color: #fff; border-color: var(--peach); }
.btn-primary:hover { box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.btn-secondary { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; border-color: var(--teal); }
.btn-secondary:hover { box-shadow: 0 0 30px rgba(38,166,154,0.3); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--peach-dark); border-color: var(--peach-dark); }
.btn-outline:hover { background: var(--peach-dark); color: #fff; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-xl { padding: 0.85rem 2rem; font-size: 1.1rem; }
.btn-danger { background: #e53935; color: #fff; border-color: #e53935; }
.btn-danger:hover { background: #c62828; }
.btn-success { background: var(--bamboo); color: #fff; border-color: var(--bamboo); }

/* Pulsing CTA */
.pulse-soft { animation: pulseSoft 2s infinite; }
@keyframes pulseSoft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,112,67,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(255,112,67,0); }
}

/* --- View Management --- */
.view { display: none; min-height: calc(100vh - var(--nav-height)); }
.view.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================
   BAMBOO DECORATIONS
   ========================================== */
.bamboo-left, .bamboo-right {
  position: fixed; top: 0; width: 40px; height: 100vh; z-index: 0; pointer-events: none;
}
.bamboo-left { left: 0; }
.bamboo-right { right: 0; }
.bamboo-left::before, .bamboo-right::before {
  content: ''; position: absolute; top: 0; width: 8px; height: 100%;
  background: repeating-linear-gradient(to bottom, var(--bamboo) 0px, var(--bamboo) 60px, var(--bamboo-dark) 60px, var(--bamboo-dark) 64px);
  border-radius: 4px; opacity: 0.35;
}
.bamboo-left::before { left: 12px; }
.bamboo-right::before { right: 12px; }
.bamboo-left::after, .bamboo-right::after {
  content: '🌿'; position: absolute; font-size: 1.5rem; opacity: 0.4;
  animation: leafSway 4s ease-in-out infinite;
}
.bamboo-left::after { top: 30%; left: 4px; }
.bamboo-right::after { top: 50%; right: 4px; transform: scaleX(-1); animation-delay: -2s; }
@keyframes leafSway { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }

/* Floating Leaves */
.floating-leaves {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.leaf {
  position: absolute; font-size: 1.2rem; opacity: 0.25;
  animation: leafFall linear infinite;
}
@keyframes leafFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0.3; }
  50% { opacity: 0.2; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* ==========================================
   NAVIGATION
   ========================================== */
.main-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08); height: var(--nav-height);
}
.nav-container {
  max-width: 1300px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; height: 100%; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem; text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 48px; width: 48px; object-fit: contain; }
.logo-text {
  font-family: var(--font-heading); font-size: 1.2rem; color: var(--peach-dark);
  line-height: 1.15;
}
.logo-text small { display: block; font-size: 0.75rem; color: var(--teal); }
.nav-links {
  display: flex; gap: 0.25rem; margin-left: auto;
}
.nav-links a {
  padding: 0.5rem 1rem; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  color: var(--dark2); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { background: var(--peach-lighter); color: var(--peach-dark); }
.nav-cta { display: flex; gap: 0.5rem; margin-left: 1rem; }
.btn-cta-book {
  background: linear-gradient(135deg, var(--peach), var(--peach-dark));
  color: #fff; border: none; padding: 0.5rem 1.2rem; font-size: 0.85rem;
}
.btn-cta-manage {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; border: none; padding: 0.5rem 1.2rem; font-size: 0.85rem;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 0.5rem;
}
.hamburger span { display: block; width: 26px; height: 3px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* Mobile Nav */
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 1500; opacity: 0; transition: opacity 0.3s;
}
.mobile-overlay.open { display: block; opacity: 1; }
.mobile-nav {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100vh;
  background: var(--white); z-index: 1600; padding: 2rem 1.5rem;
  transition: right 0.3s ease; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.mobile-nav.open { right: 0; }
.mobile-close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  font-size: 2rem; cursor: pointer; color: var(--dark);
}
.mobile-nav a {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem;
  border-radius: var(--radius); font-weight: 700; color: var(--dark2); font-size: 1rem;
}
.mobile-nav a:hover { background: var(--peach-lighter); }
.mobile-nav hr { border: none; border-top: 1px solid var(--gray-light); margin: 0.5rem 0; }
.mobile-book { background: var(--peach-lighter) !important; color: var(--peach-dark) !important; }
.mobile-manage { background: var(--teal-light) !important; color: var(--teal-dark) !important; border-radius: var(--radius); padding: 0.75rem; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative; padding: calc(var(--nav-height) + 3rem) 1.5rem 4rem;
  overflow: hidden; min-height: 85vh; display: flex; align-items: center;
}
/* Hero Image Slider */
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(62,39,35,0.7) 0%, rgba(0,77,64,0.6) 100%);
}

.hero-container {
  max-width: 1200px; margin: 0 auto; display: flex;
  align-items: center; gap: 3rem; width: 100%; position: relative; z-index: 2;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-block; padding: 0.4rem 1.2rem; border-radius: 50px;
  background: linear-gradient(135deg, var(--peach), var(--teal));
  font-weight: 800; font-size: 0.85rem; color: #fff; margin-bottom: 1rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1rem; color: #fff; }
.hero h1 .txt-gradient {
  background: linear-gradient(135deg, var(--peach-light), #FFE0B2);
  -webkit-background-clip: text; background-clip: text;
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.9); max-width: 520px; line-height: 1.7; margin-bottom: 1.5rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-info {
  display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.85);
}
.hero-info span { display: flex; align-items: center; gap: 0.4rem; }
.hero-info a { color: rgba(255,255,255,0.95); }

.hero-visual { flex: 0 0 320px; text-align: center; }
.hero-mascot { width: 280px; filter: drop-shadow(0 10px 40px rgba(255,255,255,0.25)); }
.bounce-gentle { animation: bounceGentle 3s ease-in-out infinite; }
@keyframes bounceGentle { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

@media (max-width: 768px) {
  .hero { min-height: auto; padding-bottom: 5rem; }
  .hero-container { flex-direction: column-reverse; text-align: center; }
  .hero-visual { flex: none; }
  .hero-mascot { width: 180px; }
  .hero-btns { justify-content: center; }
  .hero-info { justify-content: center; }
}

/* ==========================================
   SECTIONS (About, Services, etc.)
   ========================================== */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); text-align: center;
  margin-bottom: 0.75rem;
}
.section-desc {
  text-align: center; color: var(--gray); max-width: 650px;
  margin: 0 auto 2.5rem; font-size: 1.05rem; line-height: 1.7;
}

/* About */
.about { padding: 5rem 0; background: var(--cream); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.feature-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  text-align: center; box-shadow: var(--shadow); transition: var(--transition);
  border: 2px solid transparent;
}
.feature-card:hover { border-color: var(--peach-light); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--peach-light), var(--teal-light));
  font-size: 1.5rem; color: var(--peach-dark);
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--dark); }
.feature-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* Services */
/* Services — Cascade Transparency */
.services {
  padding: 5rem 0; position: relative;
  background: url('https://images.unsplash.com/photo-1596461404969-9ae70f2830c1?w=1920&h=1080&fit=crop&auto=format') center/cover no-repeat fixed;
}
.services::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(40,30,55,0.85) 0%, rgba(0,60,60,0.80) 100%);
  z-index: 0;
}
.services > .container { position: relative; z-index: 1; }
.services .section-title { color: #fff; }
.services .section-title .txt-gradient {
  background: linear-gradient(135deg, var(--peach-light), var(--teal-light));
  -webkit-background-clip: text; background-clip: text;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.svc-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); transition: var(--transition); position: relative;
  border: 2px solid var(--teal-light); text-align: center;
}
.svc-card:hover { border-color: var(--teal); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-card.featured {
  border-color: var(--peach); background: linear-gradient(135deg, #FFF3E0 0%, #E0F2F1 100%);
}
.svc-badge {
  position: absolute; top: -12px; right: 20px; background: var(--peach);
  color: #fff; padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 800;
}
.svc-img {
  height: 180px; background-size: cover; background-position: center;
  border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 0 0;
  margin: -2rem -2rem 1.5rem -2rem;
}
.svc-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.svc-price { font-size: 1.5rem; font-weight: 900; color: var(--peach-dark); margin-bottom: 0.75rem; }
.svc-price small { font-size: 0.8rem; font-weight: 600; }
.svc-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.svc-card ul { list-style: none; text-align: left; padding: 0; margin-bottom: 1rem; }
.svc-card li { padding: 0.25rem 0; color: var(--gray); font-size: 0.85rem; }
.svc-card li::before { content: '✓ '; color: var(--bamboo); font-weight: 700; }

/* ==========================================
   PACKAGES
   ========================================== */
.packages-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--peach-lighter) 0%, var(--cream) 50%, #E0F2F1 100%);
}
.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.pkg-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); border: 2px solid transparent;
  cursor: pointer; position: relative;
}
.pkg-card:hover { border-color: var(--peach); transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }
.pkg-card.selected { border-color: var(--peach); box-shadow: var(--shadow-glow); }
.pkg-card-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.pkg-card-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to top, rgba(62,39,35,0.5), transparent);
}
.pkg-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--peach); color: #fff; padding: 0.25rem 0.75rem;
  border-radius: 50px; font-size: 0.75rem; font-weight: 800;
}
.pkg-card-body { padding: 1.5rem; }
.pkg-card-body h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.pkg-card-subtitle { font-size: 0.85rem; color: var(--teal-dark); font-weight: 700; margin-bottom: 0.75rem; }
.pkg-card-body p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.pkg-card-price {
  font-size: 2rem; font-weight: 900; color: var(--peach-dark);
  font-family: var(--font-heading);
}
.pkg-card-price small { font-size: 0.8rem; font-weight: 600; color: var(--gray); }
.pkg-card-includes { list-style: none; padding: 0; margin: 1rem 0; }
.pkg-card-includes li {
  padding: 0.3rem 0; font-size: 0.85rem; color: var(--dark2);
  display: flex; align-items: center; gap: 0.5rem;
}
.pkg-card-includes li::before { content: '🍑'; font-size: 0.75rem; }
.pkg-card-footer { padding: 0 1.5rem 1.5rem; }

/* Page Header */
/* Page Header — Photo Background */
.page-header {
  padding: calc(var(--nav-height) + 2rem) 1.5rem 2rem;
  text-align: center; position: relative;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85f82e?w=1920&h=1080&fit=crop&auto=format') center/cover no-repeat;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(62,39,35,0.75), rgba(0,77,64,0.65));
}
.page-header h1 { font-size: 2.4rem; margin-bottom: 0.5rem; position: relative; z-index: 1; color: #fff; }
.page-header p { color: rgba(255,255,255,0.9); font-size: 1.1rem; position: relative; z-index: 1; }

/* ==========================================
   REVIEWS
   ========================================== */
/* Reviews — Cascade Transparency */
.reviews-section {
  padding: 5rem 0; position: relative;
  background: url('https://images.unsplash.com/photo-1472162072942-cd5147eb3902?w=1920&h=1080&fit=crop&auto=format') center/cover no-repeat fixed;
}
.reviews-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(40,30,55,0.85) 0%, rgba(0,60,60,0.80) 100%);
  z-index: 0;
}
.reviews-section > .container { position: relative; z-index: 1; }
.reviews-section .section-title { color: #fff; }
.reviews-section .section-title .txt-gradient {
  background: linear-gradient(135deg, var(--peach-light), var(--teal-light));
  -webkit-background-clip: text; background-clip: text;
}
.reviews-section .btn-outline { color: #fff; border-color: rgba(255,255,255,0.6); }
.reviews-section .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); border-left: 4px solid var(--peach);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { color: #FFB300; margin-bottom: 0.75rem; font-size: 1.1rem; }
.review-card p { color: var(--dark2); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.review-author { font-size: 0.85rem; color: var(--gray); font-weight: 700; }

/* ==========================================
   CONTACT
   ========================================== */
.contact-section { padding: 5rem 0; background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); padding: 1.25rem; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-item i { font-size: 1.5rem; color: var(--peach); flex-shrink: 0; margin-top: 0.2rem; }
.contact-item a { color: var(--peach-dark); }

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  color: var(--gray-light); padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { height: 64px; margin-bottom: 0.75rem; }
.footer-brand p { color: var(--gray-light); font-size: 0.9rem; }
.footer-links h4 { color: var(--peach-light); margin-bottom: 0.75rem; font-family: var(--font-heading); }
.footer-links a { display: block; color: var(--gray-light); padding: 0.2rem 0; font-size: 0.9rem; }
.footer-links a:hover { color: var(--peach); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; }
.admin-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.15); color: var(--gray-light);
  padding: 0.4rem 1rem; border-radius: 50px; cursor: pointer; font-size: 0.8rem;
  font-family: var(--font-body); transition: var(--transition);
}
.admin-btn:hover { border-color: var(--peach); color: var(--peach); }

/* ==========================================
   BOOKING WIZARD
   ========================================== */
.booking-container { padding-top: 2rem; padding-bottom: 4rem; }
.steps-bar {
  display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.step {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem;
  border-radius: 50px; background: var(--gray-lighter); font-size: 0.85rem;
  font-weight: 700; color: var(--gray); transition: var(--transition);
}
.step.active { background: var(--peach); color: #fff; }
.step.done { background: var(--bamboo); color: #fff; }
.step-num {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 0.75rem;
}
.booking-step { display: none; animation: fadeIn 0.4s ease; }
.booking-step.active { display: block; }
.booking-step h2 { font-size: 1.8rem; margin-bottom: 1.5rem; text-align: center; }

/* Calendar */
.datetime-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .datetime-picker { grid-template-columns: 1fr; } }
.calendar-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow);
}
.calendar-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem;
}
.calendar-header h3 { font-size: 1.2rem; }
.cal-nav {
  background: var(--peach-lighter); border: none; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: var(--transition); color: var(--peach-dark);
}
.cal-nav:hover { background: var(--peach); color: #fff; }
.calendar-days {
  display: grid; grid-template-columns: repeat(7, 1fr); text-align: center;
  font-size: 0.75rem; font-weight: 800; color: var(--gray); margin-bottom: 0.5rem;
}
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 0.85rem; font-weight: 700; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent;
}
.cal-day:hover:not(.disabled):not(.blocked) { background: var(--peach-lighter); }
.cal-day.today { border-color: var(--teal); }
.cal-day.selected { background: var(--peach) !important; color: #fff !important; }
.cal-day.disabled { color: var(--gray-light); cursor: default; opacity: 0.4; }
.cal-day.blocked { background: #ffcdd2; color: #c62828; cursor: not-allowed; text-decoration: line-through; }
.cal-day.has-booking { background: var(--teal-light); }
.cal-day.empty { cursor: default; }

.timeslot-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow);
}
.timeslot-wrap h3 { margin-bottom: 0.5rem; }
.selected-date-label { color: var(--gray); font-size: 0.9rem; margin-bottom: 1rem; }
.timeslots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.time-slot {
  padding: 0.75rem; border-radius: var(--radius); background: var(--gray-lighter);
  text-align: center; cursor: pointer; font-weight: 700; transition: var(--transition);
  border: 2px solid transparent;
}
.time-slot:hover:not(.disabled) { border-color: var(--peach); background: var(--peach-lighter); }
.time-slot.selected { background: var(--peach); color: #fff; border-color: var(--peach-dark); }
.time-slot.disabled { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

.step-nav {
  display: flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; flex-wrap: wrap;
}

/* Booking Form */
.booking-form { max-width: 700px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.35rem;
  color: var(--dark2);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.7rem 1rem; border: 2px solid var(--gray-light);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--peach); outline: none; box-shadow: 0 0 0 3px rgba(255,112,67,0.15);
}

/* Payment */
.payment-summary {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto;
}
.payment-methods { max-width: 600px; margin: 0 auto; }
.payment-methods h3 { margin-bottom: 1rem; text-align: center; }
.pay-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.75rem; margin-bottom: 1.5rem; }
.pay-option {
  display: flex; align-items: center; gap: 0.5rem; padding: 1rem;
  border: 2px solid var(--gray-light); border-radius: var(--radius);
  cursor: pointer; transition: var(--transition); font-weight: 700; font-size: 0.9rem;
  background: var(--white);
}
.pay-option:hover { border-color: var(--peach); }
.pay-option:has(input:checked) { border-color: var(--peach); background: var(--peach-lighter); }
.pay-option input { display: none; }
.pay-option i { font-size: 1.3rem; color: var(--peach-dark); }
.payment-instructions {
  background: var(--cream2); border-radius: var(--radius); padding: 1.25rem;
  font-size: 0.9rem; line-height: 1.7; min-height: 60px;
}

/* Confirmation */
.confirmation-box {
  max-width: 600px; margin: 0 auto; text-align: center;
  background: var(--white); border-radius: var(--radius-xl); padding: 3rem 2rem;
  box-shadow: var(--shadow-lg); border: 3px solid var(--bamboo);
}
.confirmation-box h2 { font-size: 2rem; color: var(--bamboo-dark); margin-bottom: 1rem; }
.confirmation-code {
  font-size: 2rem; font-family: var(--font-heading); color: var(--peach-dark);
  background: var(--peach-lighter); padding: 0.75rem 2rem; border-radius: var(--radius);
  display: inline-block; margin: 1rem 0; letter-spacing: 3px;
}

/* ==========================================
   MANAGE BOOKING
   ========================================== */
.manage-container { padding-top: 2rem; padding-bottom: 4rem; }
.lookup-box {
  max-width: 500px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-lg); text-align: center;
}
.lookup-box h2 { margin-bottom: 0.5rem; }
.lookup-box > p { color: var(--gray); margin-bottom: 1.5rem; font-size: 0.95rem; }
.lookup-box .form-group { text-align: left; }

.lookup-results { max-width: 700px; margin: 2rem auto 0; }
.booking-result-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow); margin-bottom: 1rem; border-left: 5px solid var(--peach);
}
.booking-result-card.confirmed { border-left-color: var(--bamboo); }
.booking-result-card.cancelled { border-left-color: #e53935; opacity: 0.7; }
.booking-result-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem;
  flex-wrap: wrap; gap: 0.5rem;
}
.booking-status {
  padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.75rem;
  font-weight: 800; text-transform: uppercase;
}
.status-pending { background: #FFF3E0; color: #E65100; }
.status-confirmed { background: #E8F5E9; color: #2E7D32; }
.status-cancelled { background: #FFEBEE; color: #C62828; }
.booking-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  font-size: 0.9rem;
}
.booking-detail-grid dt { font-weight: 700; color: var(--gray); }
.booking-detail-grid dd { margin-bottom: 0.5rem; }
.booking-actions { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }

.edit-booking-box {
  max-width: 600px; margin: 2rem auto 0;
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   ADMIN PORTAL
   ========================================== */
.admin-login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
}
.admin-login-box {
  background: var(--white); border-radius: var(--radius-xl); padding: 3rem;
  box-shadow: var(--shadow-lg); text-align: center; max-width: 400px; width: 100%;
}
.admin-login-box h2 { margin-bottom: 0.5rem; }
.admin-login-box > p { color: var(--gray); margin-bottom: 1.5rem; }
.pin-input-wrap { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.pin-input {
  width: 56px; height: 64px; text-align: center; font-size: 1.8rem; font-weight: 800;
  border: 3px solid var(--gray-light); border-radius: var(--radius); font-family: var(--font-body);
  transition: var(--transition);
}
.pin-input:focus { border-color: var(--peach); outline: none; box-shadow: 0 0 0 3px rgba(255,112,67,0.2); }
.error-msg { color: #e53935; font-weight: 700; font-size: 0.9rem; }

/* Admin Dashboard */
.admin-header {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: calc(var(--nav-height) + 1rem) 0 1rem; color: #fff;
}
.admin-header-inner { display: flex; justify-content: space-between; align-items: center; }
.admin-header h1 { font-size: 1.6rem; }
.admin-body { padding: 2rem 0 4rem; }

.admin-tabs {
  display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.admin-tab {
  padding: 0.6rem 1.5rem; border-radius: 50px; background: var(--gray-lighter);
  border: 2px solid transparent; font-weight: 700; cursor: pointer;
  font-family: var(--font-body); font-size: 0.9rem; transition: var(--transition);
}
.admin-tab:hover { border-color: var(--peach-light); }
.admin-tab.active { background: var(--peach); color: #fff; border-color: var(--peach-dark); }
.admin-panel { display: none; animation: fadeIn 0.3s ease; }
.admin-panel.active { display: block; }

.admin-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.stat-card {
  background: var(--white); border-radius: var(--radius); padding: 1.25rem;
  box-shadow: var(--shadow); text-align: center;
}
.stat-card .stat-num { font-size: 2rem; font-weight: 900; color: var(--peach-dark); font-family: var(--font-heading); }
.stat-card .stat-label { font-size: 0.85rem; color: var(--gray); }

.admin-filter { margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.admin-filter select {
  padding: 0.5rem 1rem; border-radius: var(--radius); border: 2px solid var(--gray-light);
  font-family: var(--font-body);
}
.admin-bookings-list .booking-result-card { cursor: pointer; }
.admin-bookings-list .booking-result-card:hover { box-shadow: var(--shadow-lg); }

.admin-panel-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem;
}
.admin-packages-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.admin-pkg-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.admin-pkg-img { height: 120px; background-size: cover; background-position: center; }
.admin-pkg-body { padding: 1.25rem; }
.admin-pkg-body h3 { margin-bottom: 0.25rem; }
.admin-pkg-body .price { font-size: 1.3rem; font-weight: 900; color: var(--peach-dark); }
.admin-pkg-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; }

.admin-cal-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
@media (max-width: 768px) { .admin-cal-wrap { grid-template-columns: 1fr; } }
.admin-date-detail {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow);
}

/* ==========================================
   MODAL
   ========================================== */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 2000; align-items: center; justify-content: center; padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-xl); padding: 2rem;
  max-width: 600px; width: 100%; max-height: 85vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close {
  position: absolute; top: 1rem; right: 1rem; background: var(--gray-lighter);
  border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: #ffcdd2; color: #e53935; }

/* ==========================================
   TOAST NOTIFICATIONS
   ========================================== */
#toast-container {
  position: fixed; top: calc(var(--nav-height) + 1rem); right: 1rem;
  z-index: 3000; display: flex; flex-direction: column; gap: 0.5rem;
}
.toast {
  padding: 0.75rem 1.5rem; border-radius: var(--radius); color: #fff;
  font-weight: 700; font-size: 0.9rem; box-shadow: var(--shadow);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 3s forwards;
  max-width: 350px;
}
.toast-success { background: var(--bamboo); }
.toast-error { background: #e53935; }
.toast-info { background: var(--teal); }
@keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateX(100%); } }

/* ==========================================
   CONFETTI
   ========================================== */
#confetti-container {
  position: fixed; inset: 0; pointer-events: none; z-index: 2500; overflow: hidden;
}
.confetti-piece {
  position: absolute; width: 10px; height: 10px; top: -20px;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ==========================================
   UTILITY & RESPONSIVE
   ========================================== */
.no-bookings-msg {
  text-align: center; padding: 3rem; color: var(--gray);
  font-size: 1.1rem; font-weight: 600;
}

@media (max-width: 480px) {
  :root { --nav-height: 60px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-sub { font-size: 1rem; }
  .section-title { font-size: 1.6rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .steps-bar { gap: 0.25rem; }
  .step { padding: 0.35rem 0.6rem; font-size: 0.75rem; }
  .step-label { display: none; }
  .pin-input { width: 48px; height: 56px; font-size: 1.4rem; }
}
