/* ============================================================
   THE LUXE EVETTE — Luxury Beauty & Spa
   Premium CSS Theme
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --gold: #c8a45e;
  --gold-light: #d4b978;
  --gold-dark: #a88a3e;
  --gold-glow: rgba(200, 164, 94, 0.25);
  --rose: #c4919b;
  --rose-light: #d4a5ad;
  --cream: #f5f0e8;
  --bg-primary: #0a0a0a;
  --bg-card: #111111;
  --bg-elevated: #161616;
  --bg-section-alt: #0e0e0e;
  --text-primary: #ffffff;
  --text-secondary: #c0c0c0;
  --text-muted: #777777;
  --border: rgba(200, 164, 94, 0.15);
  --border-strong: rgba(200, 164, 94, 0.35);
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Montserrat', sans-serif;
  --accent-font: 'Great Vibes', cursive;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 24px rgba(200, 164, 94, 0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--body-font);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 { font-family: var(--heading-font); color: var(--text-primary); line-height: 1.3; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.hidden { display: none !important; }

::selection { background: var(--gold); color: var(--bg-primary); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* --- Preloader --- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { width: 80px; margin: 0 auto 1.5rem; animation: pulse 1.5s ease-in-out infinite; }
.preloader-bar { width: 160px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.preloader-fill { width: 0; height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 2px; animation: loadBar 1.8s ease-in-out forwards; }

@keyframes loadBar { to { width: 100%; } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(0.95); } }

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 1.25rem 0;
  background: transparent;
  transition: all var(--transition);
}
.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 50px; width: auto; transition: height var(--transition); }
.navbar.scrolled .nav-logo img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-secondary); position: relative; padding: 0.25rem 0;
  transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary) !important; padding: 0.6rem 1.5rem;
  border-radius: 50px; font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--bg-primary) !important; }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 101;
}
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--text-primary);
  position: absolute; left: 0; transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenBurns 25s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1%, -1%); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.5) 40%,
    rgba(10, 10, 10, 0.8) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.hero-particle {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: floatParticle 6s ease-in-out infinite;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}
.hero-content {
  position: relative; z-index: 3; text-align: center;
  padding: 2rem; max-width: 700px;
}
.hero-welcome {
  font-family: var(--accent-font); font-size: 1.5rem; color: var(--gold-light);
  margin-bottom: 0.25rem;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700;
  color: var(--text-primary); letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #fff 30%, var(--gold-light) 70%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-bottom: 1rem;
}
.hero-divider span:first-child,
.hero-divider span:last-child {
  display: block; width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-divider span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-divider .lotus { color: var(--gold); font-size: 1.2rem; }
.hero-tagline {
  font-size: 1.15rem; color: var(--gold); letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 400; margin-bottom: 0.5rem;
}
.hero-location {
  font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem;
}
.hero-btn {
  display: inline-block; padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 50px; position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-btn:hover {
  transform: translateY(-3px); box-shadow: 0 8px 30px rgba(200, 164, 94, 0.35);
  color: var(--bg-primary);
}
.hero-btn::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.hero-btn:active::after { width: 300px; height: 300px; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center;
  color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px; margin-top: 0.5rem;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* Hero text reveal animation */
.reveal-hero {
  opacity: 0; transform: translateY(30px);
  animation: revealUp 0.8s ease forwards;
}
.reveal-hero:nth-child(1) { animation-delay: 0.3s; }
.reveal-hero:nth-child(2) { animation-delay: 0.5s; }
.reveal-hero:nth-child(3) { animation-delay: 0.7s; }
.reveal-hero:nth-child(4) { animation-delay: 0.9s; }
.reveal-hero:nth-child(5) { animation-delay: 1.1s; }
.reveal-hero:nth-child(6) { animation-delay: 1.3s; }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Section Shared Styles --- */
section { padding: 6rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  font-family: var(--accent-font); font-size: 1.2rem; color: var(--gold);
  margin-bottom: 0.25rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
  margin-bottom: 0.75rem;
}
.title-line {
  display: flex; justify-content: center; margin-bottom: 1rem;
}
.title-line span {
  display: block; width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-subtitle {
  font-size: 0.95rem; color: var(--text-muted); max-width: 550px; margin: 0 auto;
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* --- Services --- */
.services { background: var(--bg-section-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem;
  position: relative; overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,164,94,0.05) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 1.5rem; color: var(--gold); margin-bottom: 0.25rem;
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.2) rotate(15deg); }

.service-card h3 {
  font-size: 1.15rem; font-weight: 600; color: var(--text-primary);
}
.service-note {
  font-size: 0.75rem; color: var(--text-muted); font-style: italic;
  min-height: 1.1em;
}
.service-price {
  font-size: 0.95rem; color: var(--text-secondary); margin-top: 0.25rem;
}
.service-price strong { color: var(--gold); font-size: 1.1rem; }

.service-btn {
  margin-top: auto; padding: 0.6rem 1.8rem;
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold); border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer;
  transition: all var(--transition);
}
.service-btn:hover {
  background: var(--gold); color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(200, 164, 94, 0.3);
}

/* --- Policies --- */
.policies { background: var(--bg-primary); }

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem; max-width: 900px; margin: 0 auto;
}
.policy-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.policy-card:hover {
  border-color: var(--border-strong); transform: translateX(4px);
}
.policy-icon { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; margin-top: 0.3rem; }
.policy-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* --- Gallery --- */
.gallery { background: var(--bg-section-alt); }

.gallery-upload {
  text-align: center; margin-bottom: 2rem;
}
.upload-btn {
  display: inline-block; padding: 0.7rem 2rem;
  background: transparent; color: var(--gold);
  border: 1.5px dashed var(--gold); border-radius: 50px;
  font-weight: 600; font-size: 0.85rem; cursor: pointer;
  letter-spacing: 0.05em; transition: all var(--transition);
}
.upload-btn:hover {
  background: var(--gold); color: var(--bg-primary);
}
#galleryInput { display: none; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.gallery-card {
  position: relative; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover {
  transform: scale(1.03); box-shadow: var(--shadow-gold);
}
.gallery-card img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.08); }

.gallery-card .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-card:hover .card-overlay { opacity: 1; }
.card-overlay .caption-text {
  color: var(--text-primary); font-size: 0.85rem; font-weight: 500;
}

.gallery-card .card-remove {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(200, 164, 94, 0.85); color: var(--bg-primary);
  border: none; font-size: 1rem; cursor: pointer; line-height: 28px; text-align: center;
  opacity: 0; transition: opacity var(--transition);
  z-index: 5;
}
.gallery-card:hover .card-remove { opacity: 1; }

/* Gallery edit controls (admin mode) */
.gallery-edit {
  padding: 0.5rem; background: var(--bg-elevated);
  display: flex; gap: 0.3rem; flex-wrap: wrap;
}
.gallery-edit select {
  flex: 1; min-width: 70px; padding: 0.25rem 0.35rem;
  background: var(--bg-primary); color: var(--gold);
  border: 1px solid var(--border); border-radius: 4px;
  font-size: 0.7rem; cursor: pointer;
}
.gallery-edit .caption-edit {
  width: 100%; margin-top: 0.3rem; padding: 0.25rem 0.4rem;
  background: var(--bg-primary); color: var(--text-primary);
  border: 1px solid var(--border); border-radius: 4px;
  font-size: 0.75rem; font-family: inherit; outline: none;
}
.gallery-edit .caption-edit:focus { border-color: var(--gold); }

.gallery-empty {
  text-align: center; color: var(--text-muted); font-style: italic;
  padding: 3rem 0;
}

/* Gallery image effects */
.fx-fade img { opacity: 0.5; }
.fx-grayscale img { filter: grayscale(100%); }
.fx-sepia img { filter: sepia(80%); }
.fx-bright img { filter: brightness(1.3); }
.fx-contrast img { filter: contrast(1.4); }
.fx-saturate img { filter: saturate(1.8); }
.fx-blur img { filter: blur(3px); }
.fx-invert img { filter: invert(1); }
.fx-vintage img { filter: sepia(0.4) contrast(1.15) saturate(1.2); }
.fx-warm img { filter: sepia(0.2) saturate(1.4) brightness(1.05); }
.fx-cool img { filter: saturate(0.8) brightness(1.1) hue-rotate(15deg); }
.fx-dramatic img { filter: contrast(1.5) brightness(0.9) saturate(1.3); }
.fx-rotate-l img { transform: rotate(-90deg); }
.fx-rotate-r img { transform: rotate(90deg); }
.fx-flip-h img { transform: scaleX(-1); }
.fx-flip-v img { transform: scaleY(-1); }
.fx-crop { aspect-ratio: 1/1; }
.fx-crop img { height: 100% !important; object-fit: cover; }

/* Size classes */
.sz-small img { max-width: 75%; margin: 0 auto; }
.sz-medium img { max-width: 100%; }
.sz-large { grid-column: span 2; }
.sz-large img { height: 300px; }

/* Texture overlays */
.tex-noise::after,
.tex-paper::after,
.tex-linen::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border-radius: var(--radius-sm); z-index: 3;
}
.tex-noise::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.tex-paper::after {
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
  opacity: 0.6;
}
.tex-linen::after {
  background: repeating-linear-gradient(45deg, transparent, transparent 1px, rgba(200,164,94,0.03) 1px, rgba(200,164,94,0.03) 2px);
  opacity: 0.7;
}

/* --- Booking --- */
.booking { background: var(--bg-primary); }

.booking-wrapper {
  max-width: 680px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}

/* Progress bar */
.booking-progress {
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem 2rem; background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.prog-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  position: relative;
}
.prog-circle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-primary); transition: all var(--transition);
}
.prog-circle span {
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  transition: color var(--transition);
}
.prog-step p {
  font-size: 0.65rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500;
  white-space: nowrap;
}
.prog-step.active .prog-circle {
  border-color: var(--gold); background: var(--gold);
}
.prog-step.active .prog-circle span { color: var(--bg-primary); }
.prog-step.active p { color: var(--gold); }
.prog-step.done .prog-circle {
  border-color: var(--gold); background: var(--gold);
}
.prog-step.done .prog-circle span { color: var(--bg-primary); }
.prog-step.done .prog-circle span::after { content: '\2713'; }
.prog-line {
  flex: 1; height: 2px; background: var(--border);
  margin: 0 0.75rem; margin-bottom: 1.5rem;
  position: relative;
}
.prog-line::after {
  content: ''; position: absolute; top: 0; left: 0;
  height: 100%; width: 0; background: var(--gold);
  transition: width 0.5s ease;
}
.prog-line.filled::after { width: 100%; }

/* Form steps */
#bookingForm { padding: 2rem; }
.form-step { display: none; animation: fadeSlideIn 0.4s ease; }
.form-step.active { display: block; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-title {
  font-size: 1.5rem; margin-bottom: 0.25rem; color: var(--text-primary);
}
.step-desc {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem;
}

/* Form elements */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; margin-bottom: 0.35rem;
  font-size: 0.85rem; font-weight: 500; color: var(--text-primary);
}
.group-label {
  display: block; margin-bottom: 0.5rem;
  font-size: 0.85rem; font-weight: 500; color: var(--text-primary);
}
.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.7rem 1rem;
  background: var(--bg-primary); color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 94, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group small {
  display: block; margin-top: 0.3rem;
  font-size: 0.75rem; color: var(--text-muted);
}

/* ─── Custom date & time picker (centered modal) ─── */
.dp-field-wrap { position: relative; }
#bk_date_display { cursor: pointer; }

.date-picker {
  position: fixed; inset: 0; z-index: 450;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; background: rgba(0, 0, 0, 0.65);
  opacity: 0; transition: opacity var(--transition);
}
.date-picker.open { opacity: 1; }
.date-picker[hidden] { display: none; }

.dp-panel {
  width: 100%; max-width: 360px; max-height: 88vh; overflow-y: auto;
  padding: 1.1rem;
  background: var(--bg-elevated); border: 1px solid var(--border-strong);
  border-radius: var(--radius); box-shadow: var(--shadow);
  transform: translateY(10px); transition: transform var(--transition);
}
.date-picker.open .dp-panel { transform: translateY(0); }

.dp-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.75rem;
}
.dp-title {
  font-family: var(--heading-font); font-size: 1rem;
  color: var(--cream); letter-spacing: 0.02em;
}
.dp-nav {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-card); color: var(--gold);
  border: 1px solid var(--border); font-size: 1.2rem; line-height: 1;
  cursor: pointer; transition: all var(--transition);
}
.dp-nav:hover:not(:disabled) { background: var(--gold); color: var(--bg-primary); }
.dp-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.dp-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
  margin-bottom: 0.3rem;
}
.dp-weekdays span {
  text-align: center; padding: 0.2rem 0;
  font-size: 0.7rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.04em;
}

.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dp-day {
  aspect-ratio: 1 / 1; padding: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--text-secondary);
  border: 1px solid transparent; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.85rem; cursor: pointer;
  transition: all 0.2s;
}
.dp-day:hover:not(.dp-disabled):not(.dp-empty) {
  border-color: var(--gold); color: var(--cream);
}
.dp-day.dp-selected {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary); font-weight: 600; border-color: var(--gold);
}
.dp-day.dp-disabled {
  color: var(--text-muted); opacity: 0.35;
  cursor: not-allowed; text-decoration: line-through;
}
.dp-empty { cursor: default; }

.dp-time-row {
  margin-top: 0.85rem; padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.dp-time-row label {
  display: block; margin-bottom: 0.3rem;
  font-size: 0.8rem; color: var(--text-primary);
}
.dp-time-row select { cursor: pointer; }

.dp-actions { display: flex; gap: 0.5rem; margin-top: 0.85rem; }
.dp-clear, .dp-confirm {
  flex: 1; padding: 0.6rem; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.85rem; cursor: pointer;
  transition: all var(--transition);
}
.dp-clear {
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border);
}
.dp-clear:hover { border-color: var(--gold); color: var(--cream); }
.dp-confirm {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary); border: none; font-weight: 600;
}
.dp-confirm:hover:not(:disabled) { box-shadow: var(--shadow-gold); }
.dp-confirm:disabled { opacity: 0.4; cursor: not-allowed; }

/* ─── Service-address autocomplete suggestions ─── */
.addr-suggest {
  list-style: none; margin: 0.4rem 0 0; padding: 0;
  max-height: 280px; overflow-y: auto;
  background: var(--bg-elevated); border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
}
.addr-suggest[hidden] { display: none; }
.addr-suggest .addr-item {
  padding: 0.6rem 0.85rem; font-size: 0.85rem; color: var(--text-secondary);
  cursor: pointer; border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}
.addr-suggest .addr-item:last-child { border-bottom: none; }
.addr-suggest .addr-item:hover,
.addr-suggest .addr-item.active {
  background: rgba(200, 164, 94, 0.12); color: var(--cream);
}
.addr-suggest .addr-note {
  padding: 0.6rem 0.85rem; font-size: 0.8rem; color: var(--text-muted); cursor: default;
}

.signature-input {
  font-family: var(--accent-font) !important; font-size: 1.3rem !important;
  color: var(--gold) !important; letter-spacing: 0.02em;
}

.form-divider {
  text-align: center; margin: 1.5rem 0; position: relative;
}
.form-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--border);
}
.form-divider span {
  position: relative; background: var(--bg-card);
  padding: 0 1rem; font-size: 0.8rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500;
}

/* Checkboxes */
.checkbox-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.5rem;
}
.check-item {
  display: flex; align-items: center; gap: 0.5rem;
  cursor: pointer; font-size: 0.85rem; color: var(--text-secondary);
  padding: 0.3rem 0;
}
.check-item input { display: none; }
.checkmark {
  width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0;
  border: 1.5px solid var(--border-strong);
  background: var(--bg-primary); position: relative;
  transition: all 0.2s ease;
}
.check-item input:checked + .checkmark {
  background: var(--gold); border-color: var(--gold);
}
.check-item input:checked + .checkmark::after {
  content: '\2713'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem; color: var(--bg-primary); font-weight: 700;
}

/* Radio buttons */
.radio-row { display: flex; gap: 1.5rem; margin-top: 0.25rem; }
.radio-item {
  display: flex; align-items: center; gap: 0.5rem;
  cursor: pointer; font-size: 0.85rem; color: var(--text-secondary);
}
.radio-item input { display: none; }
.radiomark {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--border-strong);
  background: var(--bg-primary); position: relative;
  transition: all 0.2s ease;
}
.radio-item input:checked + .radiomark {
  border-color: var(--gold);
}
.radio-item input:checked + .radiomark::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}

/* Release text */
.release-text {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.release-text p {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7;
}
.release-text strong { color: var(--gold); }

/* Fee result */
.fee-result {
  margin: 1rem 0; padding: 1rem 1.25rem;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-sm); display: none;
  animation: fadeSlideIn 0.3s ease;
}
.fee-result.show { display: block; }
.fee-result .fee-amount { font-size: 1.3rem; color: var(--gold); font-weight: 700; }
.fee-result .fee-detail { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.3rem; }
.fee-result .fee-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; font-style: italic; }
.fee-result.error { border-color: #e74c3c; }
.fee-result.error .fee-amount { color: #e74c3c; font-size: 0.9rem; font-weight: 500; }

/* Review card */
.review-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.5rem; margin-bottom: 1.5rem;
}
.review-section { margin-bottom: 1.25rem; }
.review-section:last-child { margin-bottom: 0; }
.review-section h4 {
  font-size: 0.9rem; color: var(--gold); margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border); padding-bottom: 0.35rem;
}
.review-row {
  display: flex; justify-content: space-between; padding: 0.25rem 0;
  font-size: 0.85rem;
}
.review-row .label { color: var(--text-muted); }
.review-row .value { color: var(--text-primary); font-weight: 500; text-align: right; }
.review-row.total { border-top: 1px solid var(--border); padding-top: 0.5rem; margin-top: 0.5rem; }
.review-row.total .label { color: var(--gold); font-weight: 600; }
.review-row.total .value { color: var(--gold); font-weight: 700; font-size: 1.1rem; }

/* Buttons */
.btn-calc, .btn-next, .btn-back, .btn-submit {
  width: 100%; padding: 0.85rem; border: none; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; letter-spacing: 0.05em;
  transition: all var(--transition); margin-top: 0.5rem;
}
.btn-calc {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-calc:hover {
  background: var(--gold); color: var(--bg-primary);
}
.btn-next, .btn-submit {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary); text-transform: uppercase;
}
.btn-next:hover, .btn-submit:hover {
  box-shadow: 0 4px 20px rgba(200, 164, 94, 0.35);
  transform: translateY(-2px);
}
.btn-next:disabled, .btn-submit:disabled {
  opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none;
}
.btn-back {
  background: transparent; color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-back:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.25); }

.step-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }

.booking-disclaimer {
  text-align: center; max-width: 600px; margin: 1.5rem auto 0;
  font-size: 0.75rem; color: var(--text-muted);
}

/* --- Footer --- */
.footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 3rem 0 2rem; text-align: center;
}
.footer-brand { margin-bottom: 1.5rem; }
.footer-logo { height: 60px; margin: 0 auto 0.75rem; }
.footer-tagline { font-family: var(--accent-font); font-size: 1.1rem; color: var(--gold); }
.footer-area { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }
.footer-contact { margin: 1.5rem 0; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.footer-contact-item { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-contact-item:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; justify-content: center; margin-top: 0.5rem; }
.social-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-elevated); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: var(--gold); color: var(--bg-primary);
  transform: translateY(-3px); box-shadow: 0 6px 15px var(--gold-glow);
  border-color: var(--gold);
}
.footer-bottom { margin-top: 1.5rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-credit { margin-top: 0.25rem; font-style: italic; }

/* --- Admin Gear --- */
.admin-gear {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(200, 164, 94, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.admin-gear:hover { transform: rotate(45deg) scale(1.1); box-shadow: 0 6px 25px rgba(200, 164, 94, 0.45); }
.admin-gear svg { stroke: var(--bg-primary); }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 5rem; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card); color: var(--gold);
  border: 1px solid var(--border); cursor: pointer;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); color: var(--bg-primary); }

/* --- Admin Panel --- */
.admin-panel {
  position: fixed; top: 0; right: -380px; width: 360px; max-width: 90vw;
  height: 100vh; z-index: 200;
  background: var(--bg-card); border-left: 1px solid var(--border);
  box-shadow: -4px 0 30px rgba(0,0,0,0.5);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; flex-direction: column;
}
.admin-panel.open { right: 0; }

.admin-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.admin-header h3 { font-size: 1.1rem; margin: 0; }
.admin-close-btn {
  background: none; border: none; color: var(--text-muted);
  font-size: 1.5rem; cursor: pointer; transition: color 0.2s;
}
.admin-close-btn:hover { color: var(--text-primary); }

.admin-body {
  flex: 1; overflow-y: auto; padding: 1rem 1.5rem;
}
.admin-save-bar {
  position: sticky; top: 0; z-index: 5;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--gold); border-radius: 12px;
  padding: 0.9rem 1rem; margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.admin-save-note {
  font-size: 0.78rem; color: var(--text-secondary); line-height: 1.4;
  margin: 0 0 0.7rem 0;
}
.admin-save-note strong { color: var(--gold); }
.admin-save-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.admin-btn-save {
  flex: 1; min-width: 140px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: var(--bg-primary) !important; font-weight: 700 !important;
  border: none !important; padding: 0.7rem 1rem !important;
  font-size: 0.85rem !important; letter-spacing: 0.05em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.3s ease; border-radius: 8px !important;
}
.admin-btn-save:hover {
  transform: translateY(-2px); box-shadow: 0 6px 18px var(--gold-glow);
}
.admin-btn-save:active { transform: translateY(0); }
.admin-btn-save.saved {
  background: linear-gradient(135deg, #2d8a4e, #3fb368) !important;
  color: #fff !important;
}
.admin-btn-reset {
  background: transparent !important;
  border: 1px solid var(--border-strong) !important;
  color: var(--text-muted) !important;
  font-size: 0.78rem !important; padding: 0.7rem 1rem !important;
  cursor: pointer; transition: all 0.3s; border-radius: 8px !important;
}
.admin-btn-reset:hover {
  border-color: #c44; color: #c44 !important;
}
.admin-section { margin-bottom: 1.5rem; }
.admin-section h4 {
  font-size: 0.8rem; color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 0.75rem;
  padding-bottom: 0.35rem; border-bottom: 1px solid var(--border);
}
.admin-field { margin-bottom: 0.75rem; }
.admin-field label {
  display: block; font-size: 0.8rem; color: var(--text-secondary);
  margin-bottom: 0.3rem;
}
.admin-field input[type="file"] {
  width: 100%; padding: 0.4rem; background: var(--bg-primary);
  color: var(--text-secondary); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; font-size: 0.8rem;
}
.admin-field input[type="password"] {
  width: 100%; padding: 0.5rem 0.75rem; background: var(--bg-primary);
  color: var(--text-primary); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; font-size: 0.85rem; margin-bottom: 0.5rem;
}
.admin-field input:focus { outline: none; border-color: var(--gold); }
.admin-field select {
  width: 100%; padding: 0.5rem 0.75rem; background: var(--bg-primary);
  color: var(--text-primary); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; font-size: 0.85rem; cursor: pointer;
}
.admin-field select:focus { outline: none; border-color: var(--gold); }

.color-row { display: flex; align-items: center; gap: 0.75rem; }
.color-row input[type="color"] {
  width: 40px; height: 32px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; cursor: pointer; padding: 2px; background: var(--bg-primary);
}
.color-hex { font-size: 0.8rem; color: var(--text-muted); font-family: monospace; }

.admin-btn {
  width: 100%; padding: 0.55rem; border: none; border-radius: 6px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary); font-weight: 600; font-size: 0.8rem;
  cursor: pointer; transition: all 0.2s;
}
.admin-btn:hover { box-shadow: 0 2px 10px rgba(200, 164, 94, 0.3); }
.admin-btn-outline {
  background: transparent; color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.15);
}
.admin-btn-outline:hover {
  color: var(--text-primary); border-color: rgba(255,255,255,0.3);
  box-shadow: none;
}

/* --- Modal --- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  width: 90%; max-width: 400px; text-align: center;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s ease;
}
.modal-overlay.open .modal-card { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.5rem; cursor: pointer;
}
.modal-close:hover { color: var(--text-primary); }

.modal-logo img { height: 60px; margin: 0 auto 1.25rem; }
.modal-card h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.modal-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.modal-card input {
  width: 100%; padding: 0.75rem 1rem; background: var(--bg-primary);
  color: var(--text-primary); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 1rem;
}
.modal-card input:focus { outline: none; border-color: var(--gold); }
.modal-btn {
  width: 100%; padding: 0.8rem; border: none; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: box-shadow 0.3s;
}
.modal-btn:hover { box-shadow: 0 4px 15px rgba(200, 164, 94, 0.35); }
.modal-error { color: #e74c3c; font-size: 0.8rem; margin-top: 0.5rem; min-height: 1.2em; }

/* --- Lightbox --- */
.lightbox {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(0, 0, 0, 0.92); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-content { text-align: center; max-width: 90vw; max-height: 85vh; }
.lb-content img {
  max-width: 100%; max-height: 80vh; object-fit: contain;
  border-radius: var(--radius-sm);
  animation: lbZoomIn 0.3s ease;
}
@keyframes lbZoomIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-caption { color: var(--text-secondary); font-size: 0.9rem; margin-top: 1rem; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: none;
  color: var(--text-primary); font-size: 2rem; cursor: pointer;
  padding: 1rem; transition: color 0.2s;
  z-index: 401;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }
.lb-close { top: 1rem; right: 1.5rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* --- Toast Notifications --- */
.toast-container {
  position: fixed; top: 1.5rem; right: 1.5rem; z-index: 500;
  display: flex; flex-direction: column; gap: 0.75rem;
  pointer-events: none;
}
.toast {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: 0.75rem;
  min-width: 280px; max-width: 400px;
  pointer-events: auto;
  animation: toastIn 0.4s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.out { opacity: 0; transform: translateX(100%); }
.toast-icon { font-size: 1.2rem; flex-shrink: 0; }
.toast-body { flex: 1; }
.toast-title { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.toast-msg { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.15rem; }
.toast.success { border-left: 3px solid #27ae60; }
.toast.success .toast-icon { color: #27ae60; }
.toast.error { border-left: 3px solid #e74c3c; }
.toast.error .toast-icon { color: #e74c3c; }
.toast.info { border-left: 3px solid var(--gold); }
.toast.info .toast-icon { color: var(--gold); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .policies-grid { grid-template-columns: 1fr; }
  .sz-large { grid-column: span 1; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px;
    height: 100vh; background: var(--bg-card);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem; border-left: 1px solid var(--border);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -4px 0 30px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; }
  .nav-cta { padding: 0.75rem 2rem; }

  .hero-content { padding: 1rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-welcome { font-size: 1.2rem; }

  section { padding: 4rem 0; }
  .section-title { font-size: 1.6rem; }

  .booking-progress { padding: 1rem; flex-wrap: nowrap; overflow-x: auto; }
  .prog-step p { font-size: 0.55rem; }
  .prog-circle { width: 30px; height: 30px; }
  .prog-circle span { font-size: 0.7rem; }

  #bookingForm { padding: 1.25rem; }
  .step-nav { grid-template-columns: 1fr; }
  .step-nav .btn-back { order: 2; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .gallery-card img { height: 160px; }

  .scroll-top { right: 4.5rem; bottom: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .gallery-card img { height: 130px; }
}

/* --- Payment Confirmation Step --- */
.payment-confirmed {
  text-align: center; padding: 1rem 0;
}
.payment-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: #fff; font-size: 2rem; line-height: 64px;
  margin: 0 auto 1.25rem;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.payment-amount {
  font-size: 2rem; font-weight: 700; color: var(--gold);
  margin: 1rem 0 0.25rem;
  font-family: var(--heading-font);
}
.btn-cashapp {
  display: inline-block; padding: 1rem 2.5rem; margin: 1rem 0;
  background: linear-gradient(135deg, #00d632, #00c22b);
  color: #fff; font-weight: 700; font-size: 1rem;
  border-radius: 50px; text-transform: uppercase;
  letter-spacing: 0.08em; text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 15px rgba(0, 214, 50, 0.3);
}
.btn-cashapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 214, 50, 0.4);
  color: #fff;
}
.payment-note {
  font-size: 0.8rem; color: var(--text-muted);
  margin-top: 0.75rem; font-style: italic;
}

/* Admin text inputs in admin panel */
.admin-field input[type="text"] {
  width: 100%; padding: 0.5rem 0.75rem; background: var(--bg-primary);
  color: var(--text-primary); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; font-size: 0.85rem; margin-bottom: 0.25rem;
}
.admin-field input[type="text"]:focus { outline: none; border-color: var(--gold); }
.admin-field small a { text-decoration: underline; }

/* Admin-only elements hidden by default, shown via JS when admin logged in */
.admin-only { display: none; }
body.admin-active .admin-only { display: block; }
