/* ================================================
   AveryT3ch Seasonal Services — Design System
   Spearmint Glassmorphism Theme
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* Spearmint Palette (Light text reversal) */
  --spearmint: #15a070;
  --spearmint-light: #2bc490;
  --spearmint-dark: #0b7550;
  --dark-mint: #e8f7f3;
  --darker-mint: #ffffff;
  --mid-mint: #d0efea;
  --frost-white: #121c17; /* Dark text */
  --ice-blue: #0076a8;
  --ice-blue-dark: #004d70;
  --warm-gold: #c28800;
  --soft-red: #d13232;

  /* Glass Components */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-bg-strong: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(63, 212, 160, 0.4);
  --glass-border-strong: rgba(63, 212, 160, 0.8);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --glass-blur: blur(16px);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
}

/* ── Season Themes (Clear White Sky + Clouds) ── */
body.theme-winter, body.theme-summer {
  /* Common clear sky and SVG clouds pattern for both seasons */
  --season-gradient: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.8' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,144C672,160,768,224,864,240C960,256,1056,224,1152,192C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") repeat-x top, linear-gradient(180deg, #60a5fa 0%, #a0cbf7 25%, #ffffff 100%);
  --hero-overlay: radial-gradient(ellipse at 30% 20%, rgba(110, 198, 255, 0.2) 0%, transparent 60%),
                  radial-gradient(ellipse at 70% 80%, rgba(63, 212, 160, 0.2) 0%, transparent 50%);
}

/* Base Winter Accents */
body.theme-winter {
  --accent: #2e8bc0;
  --accent-light: #6ec6ff;
  --particle-color: rgba(180, 220, 255, 0.85);
}

/* Night Mode Overrides */
body.night-mode {
  --season-gradient: linear-gradient(180deg, #020810 0%, #06101c 35%, #0a1f2e 100%);
  --frost-white: #e8f7f3; /* Light text for night */
  --glass-bg: rgba(15, 25, 20, 0.4);
  --glass-bg-strong: rgba(10, 20, 15, 0.8);
  --glass-border: rgba(63, 212, 160, 0.2);
}
body.night-mode .beaming-sun { display: none !important; }

/* Special Weather Effects */
body.weather-heatwave { filter: sepia(0.3) saturate(1.4); }
body.weather-negative::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  box-shadow: inset 0 0 100px rgba(100, 180, 255, 0.3); border: 15px solid rgba(255,255,255,0.05);
}
body.weather-heatwave::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  box-shadow: inset 0 0 100px rgba(255, 100, 0, 0.15);
}


/* Base Summer Accents */
body.theme-summer {
  --accent: #d97706;
  --accent-light: #f59e0b;
  --particle-color: rgba(245, 158, 11, 0.85);
}

/* Beaming Sun for Summer */
.beaming-sun {
  position: fixed;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ffea00 10%, #ffaa00 50%, transparent 70%);
  border-radius: 50%;
  box-shadow: 0 0 120px 60px rgba(255, 200, 0, 0.5);
  z-index: 1; /* Under nav, over canvas */
  pointer-events: none;
  display: none;
  animation: beam-pulse 4s infinite alternate;
}
body.theme-summer .beaming-sun {
  display: block;
}
@keyframes beam-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 150px 80px rgba(255, 180, 0, 0.6); }
}



/* ── Global 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);
  background: var(--season-gradient, linear-gradient(135deg, #061410 0%, #0a1f18 100%));
  background-attachment: fixed;
  color: var(--frost-white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ensure glass blocks have a dark tint behind them on light themes for readability */
body.theme-summer, body.theme-winter {
  background-color: #061410;
}
.booking-page-container {
  background: rgba(2, 15, 10, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid rgba(63, 212, 160, 0.1);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── canvas for particles ── */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

.text-spearmint { color: var(--spearmint); }
.text-accent { color: var(--accent, var(--spearmint)); }
.text-muted { color: rgba(20, 60, 45, 0.65); }
.text-gold { color: var(--warm-gold); }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--spearmint);
}

.nav-logo span {
  color: #121c17;
}

.nav-logo .season-icon {
  font-size: 1.1rem;
  margin-left: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(20, 40, 30, 0.7);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--spearmint);
  background: rgba(63, 212, 160, 0.1);
}

.nav-cta {
  background: transparent !important;
  color: var(--spearmint) !important;
  border: 1.5px solid var(--spearmint) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 50px !important;
  transition: all var(--transition-smooth) !important;
}

.nav-cta:hover {
  box-shadow: 0 0 28px rgba(63, 212, 160, 0.45) !important;
  transform: translateY(-1px);
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--spearmint), var(--spearmint-light)) !important;
  border-color: transparent !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--spearmint);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ── Glass Card ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63, 212, 160, 0.4), transparent);
}

.glass-card-strong {
  background: var(--glass-bg-strong);
  border-color: var(--glass-border-strong);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--spearmint-dark) 0%, var(--spearmint) 50%, var(--spearmint-light) 100%);
  color: var(--darker-mint);
  box-shadow: 0 4px 20px rgba(63, 212, 160, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(63, 212, 160, 0.55);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--spearmint);
  border: 1.5px solid var(--glass-border-strong);
}

.btn-ghost:hover {
  background: rgba(63, 212, 160, 0.1);
  border-color: var(--spearmint);
  transform: translateY(-2px);
}

.btn-danger {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, #d4920a, var(--warm-gold));
  color: #1a1000;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 190, 60, 0.4);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.82rem; }
.btn-full { width: 100%; }

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

/* ── Form Elements ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(20, 40, 30, 0.8);
  letter-spacing: 0.3px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08); /* Liquid glass base */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1.5px solid rgba(63, 212, 160, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #ffffff; /* High contrast for visibility */
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-smooth);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-input::placeholder { color: rgba(150, 200, 180, 0.45); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--spearmint);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(63, 212, 160, 0.15), 0 0 20px rgba(63, 212, 160, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.form-input.error { border-color: var(--soft-red); box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15); }
.form-error { font-size: 0.8rem; color: var(--soft-red); margin-top: 3px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233fd4a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: #ffffff;
  color: var(--frost-white);
}

/* ── Section Layouts ── */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.container-sm { max-width: 700px; margin: 0 auto; }
.container-md { max-width: 860px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: rgba(63, 212, 160, 0.12);
  border: 1px solid rgba(63, 212, 160, 0.3);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--spearmint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--frost-white);
  margin-bottom: 0.75rem;
}

.section-title span { color: var(--spearmint); }

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(20, 40, 30, 0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  z-index: 1;
  background: var(--hero-overlay);
}

.hero-content { max-width: 800px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(63, 212, 160, 0.1);
  border: 1px solid rgba(63, 212, 160, 0.3);
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--spearmint);
  margin-bottom: 2rem;
  animation: fadeInDown 0.7s ease both;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .brand {
  background: linear-gradient(135deg, var(--spearmint), var(--spearmint-light), var(--ice-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(63, 212, 160, 0.4));
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(20, 40, 30, 0.75);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-season-badge {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.4rem;
  background: rgba(63, 212, 160, 0.06);
  border: 1px solid rgba(63, 212, 160, 0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgba(20, 40, 30, 0.65);
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-season-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--spearmint);
  animation: pulse-dot 2s ease infinite;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-smooth);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(63, 212, 160, 0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 30px rgba(63, 212, 160, 0.12);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 12px rgba(63, 212, 160, 0.4));
  animation: float 4s ease-in-out infinite;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--frost-white);
  margin-bottom: 0.5rem;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--spearmint);
}

.service-price.free { color: var(--warm-gold); }
.service-price-label { font-size: 0.78rem; color: rgba(20,60,40,0.5); margin-top: 3px; }

/* ── Time Slot Grid ── */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
}

.slot-btn {
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(63, 212, 160, 0.25);
  background: rgba(255, 255, 255, 0.08); /* Liquid glass */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-smooth);
}

.slot-btn:hover:not(.unavailable) {
  border-color: var(--spearmint);
  background: rgba(63, 212, 160, 0.1);
  color: var(--spearmint);
}

.slot-btn.active {
  border-color: var(--spearmint);
  background: rgba(63, 212, 160, 0.2);
  color: var(--spearmint);
  box-shadow: 0 0 15px rgba(63, 212, 160, 0.2);
}

.slot-btn.unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ── Order Card ── */
.order-summary {
  padding: 2rem;
}

.order-number-display {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--spearmint);
  letter-spacing: 3px;
  margin-bottom: 0.25rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(63, 212, 160, 0.08);
  font-size: 0.95rem;
}

.detail-row:last-child { border-bottom: none; }
.detail-label { color: rgba(20, 60, 40, 0.65); }
.detail-value { color: var(--frost-white); font-weight: 500; }
.detail-price {
  color: var(--spearmint);
  font-size: 1.5rem;
  font-weight: 800;
}

/* ── Badges & Status ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-paid { background: rgba(63, 212, 160, 0.15); color: var(--spearmint); border: 1px solid rgba(63, 212, 160, 0.3); }
.badge-pending { background: rgba(255, 190, 60, 0.15); color: var(--warm-gold); border: 1px solid rgba(255, 190, 60, 0.3); }
.badge-cancelled { background: rgba(255, 107, 107, 0.15); color: var(--soft-red); border: 1px solid rgba(255, 107, 107, 0.3); }
.badge-completed { background: rgba(100, 200, 255, 0.15); color: var(--ice-blue); border: 1px solid rgba(100, 200, 255, 0.3); }
.badge-confirmed { background: rgba(63, 212, 160, 0.10); color: var(--spearmint); border: 1px solid rgba(63, 212, 160, 0.25); }

/* ── Alert / Note Box ── */
.alert {
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.alert-info { background: rgba(63, 212, 160, 0.08); border: 1px solid rgba(63, 212, 160, 0.25); color: rgba(20, 40, 30, 0.85); }
.alert-warning { background: rgba(255, 190, 60, 0.1); border: 1px solid rgba(255, 190, 60, 0.3); color: #ffda8a; }
.alert-success { background: rgba(63, 212, 160, 0.12); border: 1px solid rgba(63, 212, 160, 0.4); color: var(--spearmint); }
.alert-danger { background: rgba(255, 107, 107, 0.1); border: 1px solid rgba(255, 107, 107, 0.3); color: var(--soft-red); }

/* ── PayPal Note Box ── */
.paypal-note-box {
  background: rgba(0, 70, 160, 0.15);
  border: 1.5px solid rgba(100, 160, 255, 0.35);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.paypal-note-label {
  font-size: 0.85rem;
  color: rgba(20, 60, 150, 0.8);
  margin-bottom: 0.5rem;
}

.paypal-order-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #64a0ff;
  letter-spacing: 4px;
}

.copy-btn {
  background: rgba(100, 160, 255, 0.1);
  border: 1px solid rgba(100, 160, 255, 0.3);
  color: #a0c8ff;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 0.5rem;
}

.copy-btn:hover { background: rgba(100, 160, 255, 0.2); }
.copy-btn.copied { color: var(--spearmint); border-color: var(--spearmint); background: rgba(63, 212, 160, 0.1); }

.bold-black {
  color: #000 !important;
  font-weight: 800 !important;
}

/* ── PayPal Button ── */
.paypal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #003087, #0070ba);
  color: #fff;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 25px rgba(0, 112, 186, 0.4);
  width: 100%;
  border: none;
  cursor: pointer;
}

.paypal-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 112, 186, 0.6);
  background: linear-gradient(135deg, #003f9e, #0085d4);
}

.paypal-logo { font-size: 1.5rem; }

/* ── Payment Method Buttons ── */
.method-btn {
  background: rgba(255, 255, 255, 0.08); /* Liquid glass */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(63, 212, 160, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.method-btn:hover {
  background: rgba(63, 212, 160, 0.1);
  border-color: var(--spearmint);
  transform: translateY(-2px);
}

.method-btn.active {
  background: rgba(63, 212, 160, 0.2);
  border-color: var(--spearmint);
  box-shadow: 0 0 25px rgba(63, 212, 160, 0.25);
  color: var(--spearmint);
}

/* ── Stripe Button ── */
.stripe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #635bff, #8a7cff);
  color: #fff;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 25px rgba(99, 91, 255, 0.4);
  width: 100%;
  border: none;
  cursor: pointer;
}

.stripe-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(99, 91, 255, 0.6);
  background: linear-gradient(135deg, #5345ff, #7a6cff);
}

/* ── Admin Dashboard ── */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 70px);
  gap: 0;
}

.sidebar {
  background: rgba(5, 12, 10, 0.95);
  border-right: 1px solid var(--glass-border);
  padding: 2rem 1.25rem;
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow-y: auto;
  z-index: 100;
}

.sidebar-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(20, 60, 40, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
}

.sidebar-nav {
  list-style: none;
  margin-bottom: 2rem;
}

.sidebar-nav li a, .sidebar-nav li button {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: rgba(150, 200, 180, 0.65);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  background: transparent;
  text-align: left;
}

.sidebar-nav li a:hover, .sidebar-nav li button:hover,
.sidebar-nav li a.active, .sidebar-nav li button.active {
  background: rgba(63, 212, 160, 0.1);
  color: var(--spearmint);
}

.sidebar-nav .icon { font-size: 1.1rem; width: 20px; text-align: center; }

.admin-content {
  padding: 2rem;
  overflow-y: auto;
}

.admin-panel { display: none; }
.admin-panel.active { display: block; }

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--spearmint);
}

.stat-label { font-size: 0.82rem; color: rgba(150, 200, 180, 0.55); margin-top: 3px; }

/* Orders Table */
.orders-table-wrap { overflow-x: auto; border-radius: var(--radius-md); }

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: rgba(2, 40, 25, 0.85); /* Dark Green Aesthetic */
  color: #3fd4a0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1.1rem 1rem;
  text-align: left;
  border-bottom: 2px solid rgba(63, 212, 160, 0.3);
}

td {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid rgba(63, 212, 160, 0.12);
  font-size: 0.9rem;
  color: rgba(220, 255, 245, 0.95);
  vertical-align: middle;
}

tr:hover td { background: rgba(63, 212, 160, 0.08); }

.table-actions { display: flex; gap: 0.4rem; flex-wrap: wrap; }

/* Season Toggle */
.season-toggle-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.season-btn {
  flex: 1;
  min-width: 200px;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--glass-border);
  background: rgba(10, 30, 22, 0.5);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-smooth);
  font-family: var(--font-heading);
  color: var(--frost-white);
}

.season-btn:hover { border-color: rgba(63, 212, 160, 0.5); background: rgba(63, 212, 160, 0.08); transform: translateY(-2px); }
.season-btn.active-season { border-color: var(--spearmint); background: rgba(63, 212, 160, 0.12); box-shadow: 0 0 25px rgba(63, 212, 160, 0.15); }
.season-btn.active-winter { border-color: #6ec6ff; background: rgba(110, 198, 255, 0.08); box-shadow: 0 0 25px rgba(110, 198, 255, 0.15); }


.season-btn .season-emoji { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.season-btn .season-name { font-size: 1.1rem; font-weight: 700; }
.season-btn .active-label { font-size: 0.75rem; color: var(--spearmint); margin-top: 4px; }

/* Schedule List */
.schedule-list { display: flex; flex-direction: column; gap: 0.75rem; }

.schedule-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(10, 30, 22, 0.4);
  transition: all var(--transition-fast);
}

.schedule-item:hover { border-color: rgba(63, 212, 160, 0.3); }
.schedule-time { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--spearmint); min-width: 80px; }
.schedule-service { font-weight: 600; }
.schedule-address { font-size: 0.82rem; color: rgba(150, 200, 180, 0.55); }

/* ── Loading Spinner ── */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(63, 212, 160, 0.2);
  border-top-color: var(--spearmint);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}

/* ── Step Indicator ── */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid rgba(63, 212, 160, 0.25);
  color: rgba(150, 200, 180, 0.5);
  transition: all var(--transition-smooth);
}

.step.active .step-num {
  background: var(--spearmint);
  border-color: var(--spearmint);
  color: var(--dark-mint);
  box-shadow: 0 0 18px rgba(63, 212, 160, 0.4);
}

.step.done .step-num {
  background: rgba(63, 212, 160, 0.2);
  border-color: var(--spearmint);
  color: var(--spearmint);
}

.step-label { font-size: 0.72rem; color: rgba(150, 200, 180, 0.5); }
.step.active .step-label { color: var(--spearmint); }

.step-line {
  width: 50px; height: 2px;
  background: rgba(63, 212, 160, 0.15);
  margin: 0 6px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

/* ── 404 / Error ── */
.page-center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

/* ── Footer ── */
footer {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--spearmint);
  margin-bottom: 0.5rem;
}

.footer-logo span { color: var(--frost-white); }
.footer-tagline { color: rgba(150, 200, 180, 0.4); font-size: 0.85rem; margin-bottom: 1.5rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a { color: rgba(150, 200, 180, 0.5); font-size: 0.88rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--spearmint); }

.footer-copy { color: rgba(100, 150, 130, 0.4); font-size: 0.78rem; }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(63, 212, 160, 0.5); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 6px rgba(63, 212, 160, 0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(63, 212, 160, 0.3); }
  50%       { box-shadow: 0 0 40px rgba(63, 212, 160, 0.6); }
}

.animate-fade-up { animation: fadeInUp 0.7s ease both; }
.animate-fade-in { animation: fadeIn 0.6s ease both; }
.animate-glow { animation: glow-pulse 3s ease infinite; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; position: fixed; left: 0; top: 70px; width: 260px; height: calc(100vh - 70px); z-index: 900; }
  .sidebar.open { display: block; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 70px 0 0 0;
    background: rgba(6, 20, 16, 0.97);
    backdrop-filter: blur(20px);
    padding: 2rem;
    z-index: 999;
    gap: 0.5rem;
  }
  .nav-links.open a { font-size: 1.1rem; padding: 0.8rem 1rem; }
  .nav-hamburger { display: flex; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 4rem); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { padding: 0.85rem 1.5rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
