/* =====================================================
   NailAtelier – Main Stylesheet
   ===================================================== */

/* ─── Variables ───────────────────────────────────────── */
:root {
  --gold:       #C9A96E;
  --gold-light: #e8d5b0;
  --gold-dark:  #a88040;
  --rose:       #B76E79;
  --dark:       #1A1A1A;
  --dark-2:     #2D2D2D;
  --cream:      #FDF8F2;
  --light:      #F9F3EE;
  --white:      #FFFFFF;
  --gray:       #6B7280;
  --gray-light: #E5E7EB;
  --border:     #E8DDD2;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Lato', sans-serif;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.12);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
}

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

img { max-width: 100%; height: auto; }

/* ─── Preloader ─────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-logo {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
}
.preloader-a { color: var(--gold); }

/* ─── Navbar ─────────────────────────────────────────────── */
#mainNav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 80px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.navbar-brand .brand-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.brand-logo span { color: var(--gold); }

.navbar-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: 0.9rem; right: 0.9rem; }

.nav-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(201,169,110,0.4);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.5);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 0.65rem 1.8rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark-custom {
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-dark-custom:hover {
  background: var(--dark-2);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── Section Styles ──────────────────────────────────────── */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.section-divider.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0E0A06 0%, #1E1208 55%, #1A1A1A 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="0.5" fill="%23C9A96E" opacity="0.3"/><circle cx="80" cy="80" r="0.5" fill="%23C9A96E" opacity="0.3"/><circle cx="50" cy="10" r="0.3" fill="%23C9A96E" opacity="0.2"/></svg>') repeat;
  opacity: 0.5;
}

.hero-bg-shape {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 130%;
  background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(183,110,121,0.1) 100%);
  border-radius: 50% 0 0 50%;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .gold { color: var(--gold); }
.hero-title .italic { font-style: italic; }

.hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  height: 500px;
}

.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-2);
}
.hero-img.large { grid-row: 1 / 3; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(201,169,110,0.2), rgba(183,110,121,0.15));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 2.5rem;
}
.hero-img-placeholder small { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 0.5rem; }

/* ─── Hero Visual Collage ──────────────────────────────────── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: orbPulse 8s ease-in-out infinite alternate;
}
.hero-orb-1 { width:480px;height:480px;background:rgba(201,169,110,.13);top:-120px;right:5%; }
.hero-orb-2 { width:320px;height:320px;background:rgba(183,110,121,.09);bottom:0;left:38%;animation-delay:3s; }
@keyframes orbPulse { from{opacity:.6;transform:scale(1)} to{opacity:1;transform:scale(1.12)} }

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 176px;
  gap: 1rem;
  height: 560px;
  position: relative;
}

.hero-main-img {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.hero-main-img img { width:100%;height:100%;object-fit:cover;transition:transform .7s ease; }
.hero-main-img:hover img { transform:scale(1.04); }

.hero-side-imgs { display:flex;flex-direction:column;gap:1rem; }
.hero-side-img {
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  position: relative;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.hero-side-img img { width:100%;height:100%;object-fit:cover;transition:transform .5s ease; }
.hero-side-img:hover img { transform:scale(1.06); }
.hero-side-label {
  position:absolute;bottom:10px;left:10px;
  background:rgba(0,0,0,.6);color:#fff;
  font-size:.62rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;
  padding:3px 10px;border-radius:50px;backdrop-filter:blur(8px);
}

/* Floating booking card on main image */
.hero-booking-card {
  position: absolute;
  bottom: 20px; left: 16px; right: 16px;
  background: rgba(10,8,5,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .3s, border-color .3s;
  text-decoration: none;
}
.hero-booking-card:hover { transform:translateY(-3px); border-color:rgba(201,169,110,.55); }
.hero-booking-icon {
  width:42px;height:42px;border-radius:12px;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#fff;display:flex;align-items:center;justify-content:center;
  font-size:1rem;flex-shrink:0;
}
.hero-booking-title { color:#fff;font-weight:700;font-size:.84rem;line-height:1.2; }
.hero-booking-sub   { color:rgba(255,255,255,.5);font-size:.71rem; }
.hero-booking-arrow {
  margin-left:auto;width:30px;height:30px;border-radius:50%;
  background:var(--gold);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:.7rem;flex-shrink:0;transition:background .2s;
}
.hero-booking-card:hover .hero-booking-arrow { background:var(--gold-dark); }

/* Floating rating pill */
.hero-rating-pill {
  position: absolute;
  top: -14px; right: -14px;
  background: linear-gradient(135deg,var(--gold),#e0bb84);
  color: #fff;
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 6px 24px rgba(201,169,110,.5);
  white-space: nowrap;
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* Decorative gold line accent */
.hero-visual::before {
  content:'';
  position:absolute;
  left:-16px; top:10%; bottom:10%;
  width:3px;
  background:linear-gradient(180deg,transparent,var(--gold),transparent);
  border-radius:2px;
  opacity:.5;
}

/* ─── Service Cards ───────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--light), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
}

.service-category-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

.service-body { padding: 1.5rem; }
.service-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.service-desc {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.service-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
}
.service-meta i { color: var(--gold); margin-right: 4px; }
.service-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.service-price small { font-size: 0.7rem; color: var(--gray); font-family: var(--font-body); font-weight: 400; }

/* ─── Category Tabs ──────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-tab {
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--dark);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ─── Testimonials ───────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testimonial-service { font-size: 0.75rem; color: var(--gold); }
.stars { color: #f4c542; font-size: 0.85rem; }

/* ─── Feature Boxes ──────────────────────────────────────── */
.feature-box {
  text-align: center;
  padding: 2rem 1.5rem;
}
.feature-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 25px rgba(201,169,110,0.35);
}
.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.feature-text { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ─── Gallery Grid ───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(26,26,26,0.5); }
.gallery-overlay-icon {
  color: var(--white);
  font-size: 1.5rem;
  transform: scale(0);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-overlay-icon { transform: scale(1); }

/* ─── Booking Form ───────────────────────────────────────── */
.booking-section { background: var(--cream); }
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.booking-steps {
  display: flex;
  gap: 0;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.booking-step {
  flex: 1;
  padding: 1rem;
  text-align: center;
  position: relative;
  opacity: 0.5;
  transition: all var(--transition);
}
.booking-step.active { opacity: 1; background: var(--white); }
.booking-step.done { opacity: 0.7; }
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--gray);
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.3rem;
}
.booking-step.active .step-num { background: var(--gold); color: var(--white); }
.booking-step.done .step-num { background: #22c55e; color: var(--white); }
.step-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; display: block; color: var(--gray); }
.booking-step.active .step-label { color: var(--dark); }

.form-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
  outline: none;
}

/* ─── Price Summary Box ──────────────────────────────────── */
.price-summary {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.price-row.total {
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 0.8rem;
  font-weight: 700;
  font-size: 1rem;
}
.price-row .amount { font-weight: 700; color: var(--gold); }

/* ─── Dashboard ──────────────────────────────────────────── */
.dashboard-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1f0f 100%);
  padding: 3rem 0;
  color: var(--white);
}
.booking-history-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 1rem;
  transition: box-shadow var(--transition);
}
.booking-history-card:hover { box-shadow: var(--shadow); }
.booking-history-card .card-header-custom {
  background: var(--light);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking-ref { font-size: 0.75rem; color: var(--gray); }

/* ─── Contact ─────────────────────────────────────────────── */
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,169,110,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.95rem; color: var(--white); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  height: 100%;
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  background: var(--white);
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-question .faq-icon { color: var(--gold); transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}
.faq-answer.open { max-height: 300px; padding: 1rem 1.5rem 1.5rem; }

/* ─── About ───────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
}
.team-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  font-family: var(--font-head);
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; }
.team-role { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }

/* ─── Footer ──────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 5rem 0 3rem; }
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 280px; }

.social-links { display: flex; gap: 0.7rem; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact { list-style: none; }
.footer-contact li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }

/* ─── Back to Top ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 900;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(201,169,110,0.4);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ─── Flash Toast ─────────────────────────────────────────── */
.flash-toast-wrapper {
  position: fixed;
  top: 90px; right: 20px;
  z-index: 9000;
  max-width: 360px;
}
.flash-toast { border-radius: var(--radius); }

/* ─── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1f0f 100%);
  padding: 5rem 0 4rem;
  color: var(--white);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb {
  background: none;
  justify-content: center;
  font-size: 0.85rem;
}
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.page-hero .breadcrumb-item a { color: var(--gold); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.6); }

/* ─── Auth Pages ──────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, #2d1f0f 100%);
  display: flex;
  align-items: center;
  padding: 2rem 0;
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  max-width: 480px;
  margin: 0 auto;
}
.auth-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 0.3rem;
}
.auth-logo span { color: var(--gold); }
.auth-subtitle { text-align: center; color: var(--gray); font-size: 0.9rem; margin-bottom: 2rem; }

/* ─── Confirmation Page ───────────────────────────────────── */
.confirmation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.confirmation-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(34,197,94,0.35);
}
.booking-ref-box {
  background: var(--light);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
}
.booking-ref-number {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ─── Service Detail ──────────────────────────────────────── */
.service-detail-hero {
  background: var(--light);
  padding: 3rem 0;
}
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.price-breakdown-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* ─── Time Slots ──────────────────────────────────────────── */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.6rem;
}
.time-slot {
  padding: 0.5rem;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  color: var(--dark);
}
.time-slot:hover { border-color: var(--gold); color: var(--gold); }
.time-slot.selected { background: var(--gold); border-color: var(--gold); color: var(--white); }
.time-slot.unavailable { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

/* ─── Payment Method ──────────────────────────────────────── */
.payment-method-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.payment-method-card:hover { border-color: var(--gold); }
.payment-method-card.selected { border-color: var(--gold); background: rgba(201,169,110,0.08); }
.payment-method-card input { display: none; }
.payment-method-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.payment-method-name { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* ─── Misc ─────────────────────────────────────────────────── */
.text-gold { color: var(--gold) !important; }
.bg-gold { background: var(--gold) !important; }
.bg-cream { background: var(--cream) !important; }
.bg-light-custom { background: var(--light) !important; }

.badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px; border-radius: 50px; padding: 0.3em 0.7em; }

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
  margin: 2rem 0;
}

/* ─── Responsive ──────────────────────────────────────────── */

/* ── Tablets (≤ 991px) ──────────────────────────── */
@media (max-width: 991.98px) {
  body { padding-top: 70px; }
  #mainNav { height: 70px; }

  /* Hero */
  .hero { padding-top: 70px; min-height: auto; padding-bottom: 60px; }
  .hero-image-grid { display: none; }
  .hero-stats { gap: 1.5rem; }

  /* Sections */
  .section-padding { padding: 70px 0; }
  .section-padding-sm { padding: 45px 0; }

  /* Footer */
  .footer-top { padding: 3.5rem 0 2rem; }

  /* Page hero */
  .page-hero { padding: 4rem 0 3rem; }

  /* Service detail */
  .service-detail-img { height: 320px; }

  /* Admin panel covered separately in admin.css */
}

/* ── Large phones / small tablets (≤ 767px) ─────── */
@media (max-width: 767.98px) {
  /* Hero */
  .hero { padding-bottom: 50px; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
  .hero-text { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero-badge { font-size: 0.65rem; letter-spacing: 1.5px; padding: 0.35rem 0.85rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; justify-content: center; margin-top: 2rem; }
  .stat-number { font-size: 1.6rem; }
  .stat-label  { font-size: 0.7rem; }

  /* Section */
  .section-padding { padding: 60px 0; }
  .section-padding-sm { padding: 40px 0; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem) !important; }

  /* Booking */
  .booking-steps { display: none; }
  .time-slots-grid { grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 0.5rem; }

  /* Services */
  .filter-tabs { gap: 0.35rem; }
  .filter-tab { padding: 0.4rem 0.85rem; font-size: 0.73rem; }
  .service-img { height: 190px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }

  /* Auth */
  .auth-card { padding: 1.5rem; }

  /* Contact */
  .contact-info-card { padding: 1.5rem; }
  .contact-form-card { padding: 1.5rem; }

  /* Confirmation */
  .confirmation-card { padding: 1.5rem; }
  .booking-ref-number { font-size: 1.5rem; }

  /* Page hero */
  .page-hero { padding: 3rem 0 2rem; }
  .page-hero h1 { font-size: clamp(1.7rem, 6vw, 2.5rem); }

  /* Service detail */
  .service-detail-img { height: 240px; }
  .price-breakdown-card { padding: 1.25rem; }

  /* Footer */
  .footer-top { padding: 3rem 0 1.5rem; }
  .footer-brand p { max-width: 100%; }
  .footer-logo { font-size: 1.5rem; }
  .footer-bottom .row > [class*="col-"] { text-align: center !important; }

  /* Flash toast */
  .flash-toast-wrapper { left: 12px; right: 12px; max-width: 100%; top: 78px; }

  /* Dashboard */
  .dashboard-hero { padding: 2rem 0; }
}

/* ── Small phones (≤ 575px) ─────────────────────── */
@media (max-width: 575.98px) {
  /* Hero */
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.4rem) !important; }
  .hero-badge { font-size: 0.6rem; letter-spacing: 1px; }
  .hero-stats { gap: 0.9rem; }
  .stat-number { font-size: 1.4rem; }

  /* CTA buttons in hero */
  .hero .btn-gold,
  .hero .btn-outline-gold { padding: 0.6rem 1.1rem; font-size: 0.78rem; }

  /* Sections */
  .section-padding { padding: 50px 0; }
  .section-padding-sm { padding: 32px 0; }

  /* Services */
  .service-body { padding: 1.1rem; }
  .service-name { font-size: 1.1rem; }
  .service-img { height: 170px; }

  /* Gallery - 2 columns stays, gap tighter */
  .gallery-grid { gap: 0.4rem; }

  /* Auth */
  .auth-card { padding: 1.2rem 1rem; }
  .auth-card .auth-logo { font-size: 1.6rem; }

  /* Confirmation */
  .confirmation-card { padding: 1.25rem 1rem; }
  .booking-ref-number { font-size: 1.25rem; letter-spacing: 1px; }
  .confirmation-icon { width: 65px; height: 65px; font-size: 1.5rem; }

  /* Contact */
  .contact-info-card { padding: 1.25rem 1rem; }
  .contact-form-card { padding: 1.25rem 1rem; }

  /* Page hero */
  .page-hero { padding: 2.5rem 0 1.8rem; }

  /* Service detail */
  .service-detail-img { height: 200px; }
  .price-breakdown-card { padding: 1rem; }

  /* Footer */
  .footer-top { padding: 2.5rem 0 1.5rem; }
  .footer-heading { margin-bottom: 1rem; }
  .social-links { margin-bottom: 0.5rem; }

  /* Misc */
  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 70px; right: 16px; }
  .back-to-top { right: 16px; bottom: 16px; }

  /* FAQ */
  .faq-question { padding: 1rem 1.1rem; font-size: 0.88rem; }
  .faq-answer { padding: 0 1.1rem; }
  .faq-answer.open { padding: 0.8rem 1.1rem 1.2rem; }

  /* Booking steps hidden */
  .booking-steps { display: none; }

  /* Price summary */
  .price-summary { padding: 1.1rem; }
  .price-row { font-size: 0.85rem; }
}

/* ── Mobile navbar ──────────────────────────────── */
@media (max-width: 991.98px) {
  /* Expanded mobile menu panel */
  #navbarNav {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 0.5rem 0 1rem;
    margin-top: 0;
  }
  [data-theme="dark"] #navbarNav { background: var(--dark); }

  .navbar-nav .nav-link {
    padding: 0.65rem 1rem !important;
    border-radius: 8px;
    margin: 0 0.25rem;
  }
  .navbar-nav .nav-link:hover { background: var(--light); }
  [data-theme="dark"] .navbar-nav .nav-link:hover { background: rgba(255,255,255,.05); }

  /* Theme toggle: full-width pill in mobile menu */
  .nav-item .theme-toggle-btn {
    width: 100%;
    border-radius: 8px;
    height: 40px;
    margin: 0 0.25rem;
    justify-content: flex-start;
    padding: 0 1rem;
    gap: 0.6rem;
    font-size: 0.85rem;
    border-color: var(--border);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .nav-item .theme-toggle-btn::after { content: 'Toggle Theme'; font-family: var(--font-body); }

  /* Book Now full-width on mobile */
  .nav-item .btn-gold.btn-sm { width: calc(100% - 0.5rem); margin: 0.25rem; display: block; text-align: center; border-radius: 50px; }

  /* Dropdown menu in mobile */
  .navbar-nav .dropdown-menu { border: none; box-shadow: none; background: var(--light); margin: 0 0.5rem; border-radius: 8px; }
  [data-theme="dark"] .navbar-nav .dropdown-menu { background: rgba(255,255,255,.05); }
}

/* ── Tiny phones (≤ 390px) ──────────────────────── */
@media (max-width: 390px) {
  .hero-title { font-size: 1.85rem !important; }
  .hero-stats { gap: 0.7rem; }
  .stat-number { font-size: 1.25rem; }

  .filter-tab { padding: 0.35rem 0.7rem; font-size: 0.68rem; }
  .auth-card { margin: 0; border-radius: 12px; }
  .section-padding { padding: 42px 0; }
}

@media print {
  .navbar, .footer, .whatsapp-float, .back-to-top, .flash-toast-wrapper { display: none !important; }
  body { padding-top: 0; }
}

/* ─── Dark Mode Toggle Button ──────────────────────────────── */
.theme-toggle-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: none;
  color: var(--dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all .2s;
  padding: 0;
}
.theme-toggle-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.08); }
[data-theme="dark"] .theme-toggle-btn { color: #EBEBEB; border-color: rgba(255,255,255,.2); }
[data-theme="dark"] .theme-toggle-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Smooth Theme Transitions ─────────────────────────────── */
body, #mainNav,
.service-card, .testimonial-card, .team-card,
.faq-item, .faq-question, .faq-answer,
.auth-card, .booking-card, .booking-history-card,
.contact-form-card, .price-summary, .price-breakdown-card,
.confirmation-card, .filter-tab, .time-slot, .payment-method-card,
.form-control, .form-select, .dropdown-menu, .dropdown-item {
  transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

/* ═══════════════════════════════════════════════════════════
   DARK MODE
   ═══════════════════════════════════════════════════════════ */
[data-theme="dark"] {
  --white:      #111111;
  --cream:      #161616;
  --light:      #1C1C1C;
  --border:     #2C2C2C;
  --dark:       #EBEBEB;
  --dark-2:     #D0D0D0;
  --gray:       #9E9E9E;
  --gray-light: #2A2A2A;
  --shadow:     0 4px 20px rgba(0,0,0,.45);
  --shadow-md:  0 8px 40px rgba(0,0,0,.55);
}

/* Base */
[data-theme="dark"] body { background: #111111; color: #EBEBEB; }
[data-theme="dark"] h1, [data-theme="dark"] h2,
[data-theme="dark"] h3, [data-theme="dark"] h4,
[data-theme="dark"] h5, [data-theme="dark"] h6 { color: #EBEBEB; }
[data-theme="dark"] .text-muted  { color: #9E9E9E !important; }
[data-theme="dark"] .text-dark   { color: #EBEBEB !important; }
[data-theme="dark"] .bg-white    { background: #1C1C1C !important; }
[data-theme="dark"] .bg-light    { background: #1C1C1C !important; }
[data-theme="dark"] .bg-cream    { background: #161616 !important; }
[data-theme="dark"] .border      { border-color: #2C2C2C !important; }
[data-theme="dark"] .section-title { color: #EBEBEB; }

/* Navbar */
[data-theme="dark"] #mainNav                     { background: rgba(15,15,15,.97); border-color: #2C2C2C; }
[data-theme="dark"] .navbar-nav .nav-link        { color: #D0D0D0 !important; }
[data-theme="dark"] .navbar-nav .nav-link:hover,
[data-theme="dark"] .navbar-nav .nav-link.active { color: var(--gold) !important; }
[data-theme="dark"] .brand-logo                  { color: #EBEBEB; }
[data-theme="dark"] .navbar-toggler              { border-color: #2C2C2C; filter: invert(.8); }
[data-theme="dark"] .dropdown-menu               { background: #1A1A1A; border-color: #2C2C2C; box-shadow: 0 8px 32px rgba(0,0,0,.55); }
[data-theme="dark"] .dropdown-item               { color: #EBEBEB; }
[data-theme="dark"] .dropdown-item:hover         { background: #242424; }
[data-theme="dark"] .dropdown-divider            { border-color: #2C2C2C; }

/* Cards */
[data-theme="dark"] .service-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .team-card,
[data-theme="dark"] .auth-card,
[data-theme="dark"] .booking-card,
[data-theme="dark"] .contact-form-card,
[data-theme="dark"] .price-breakdown-card,
[data-theme="dark"] .confirmation-card    { background: #1C1C1C; border-color: #2C2C2C; }
[data-theme="dark"] .booking-history-card { background: #1C1C1C; border-color: #2C2C2C; }
[data-theme="dark"] .booking-history-card .card-header-custom { background: #222; border-color: #2C2C2C; }
[data-theme="dark"] .service-name         { color: #EBEBEB; }
[data-theme="dark"] .service-desc         { color: #9E9E9E; }
[data-theme="dark"] .testimonial-name     { color: #EBEBEB; }
[data-theme="dark"] .testimonial-text     { color: #9E9E9E; }
[data-theme="dark"] .feature-title        { color: #EBEBEB; }
[data-theme="dark"] .feature-text         { color: #9E9E9E; }
[data-theme="dark"] .team-name            { color: #EBEBEB; }

/* FAQ */
[data-theme="dark"] .faq-item     { border-color: #2C2C2C; }
[data-theme="dark"] .faq-question { background: #1C1C1C; color: #EBEBEB; }
[data-theme="dark"] .faq-question:hover { background: #222; }

/* Forms */
[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select         { background: #1C1C1C; border-color: #2C2C2C; color: #EBEBEB; }
[data-theme="dark"] .form-control::placeholder { color: #555; }
[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus   { background: #222; border-color: var(--gold); }
[data-theme="dark"] .form-label          { color: #D0D0D0; }

/* Time slots */
[data-theme="dark"] .time-slot  { background: #1C1C1C; border-color: #2C2C2C; color: #EBEBEB; }
[data-theme="dark"] .time-slot:hover { border-color: var(--gold); color: var(--gold); }

/* Booking steps */
[data-theme="dark"] .booking-steps      { background: #111; border-color: #2C2C2C; }
[data-theme="dark"] .booking-step.active { background: #1C1C1C; }

/* Price summary */
[data-theme="dark"] .price-summary { background: #1C1C1C; border-color: #2C2C2C; }
[data-theme="dark"] .price-row     { color: #EBEBEB; }
[data-theme="dark"] .price-row.total { border-color: #2C2C2C; }

/* Filter tabs */
[data-theme="dark"] .filter-tab         { background: #1C1C1C; border-color: #2C2C2C; color: #EBEBEB; }
[data-theme="dark"] .filter-tab:hover,
[data-theme="dark"] .filter-tab.active  { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Payment method */
[data-theme="dark"] .payment-method-card         { background: #1C1C1C; border-color: #2C2C2C; color: #EBEBEB; }
[data-theme="dark"] .payment-method-card:hover    { border-color: var(--gold); }
[data-theme="dark"] .payment-method-card.selected { border-color: var(--gold); background: rgba(201,169,110,.1); }

/* Alerts */
[data-theme="dark"] .alert-success { background: rgba(34,197,94,.1);  border-color: rgba(34,197,94,.3);  color: #22C55E; }
[data-theme="dark"] .alert-danger  { background: rgba(239,68,68,.1);  border-color: rgba(239,68,68,.3);  color: #EF4444; }
[data-theme="dark"] .alert-warning { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.3); color: #F59E0B; }
[data-theme="dark"] .alert-info    { background: rgba(59,130,246,.1); border-color: rgba(59,130,246,.3); color: #3B82F6; }

/* Booking ref box */
[data-theme="dark"] .booking-ref-box { background: #1C1C1C; border-color: var(--gold); }

/* Dashboard hero stays dark — fine as-is */

/* Contact info card stays dark — fine as-is */
