/*
Theme Name: Nadia Hair & Beauty v2
Theme URI: https://nadiahairbeauty.com
Author: Quantum AI WebApps Digital LLC
Author URI: https://quantumai.digital
Description: Custom luxury theme for Nadia Hair & Beauty Studio — v2 with special offers booking, sticky mobile bar, smart WhatsApp, before/after sliders.
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nadia-theme
Tags: salon, beauty, hair, custom-theme
*/

/* ============================================
   DESIGN SYSTEM — LIGHT LUXURY THEME
   ============================================ */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
  /* Backgrounds */
  --bg-primary: #FAFAF7;
  --bg-secondary: #F3F1EC;
  --bg-card: #FFFFFF;
  --bg-hero: #F8F6F1;

  /* Text */
  --text-primary: #1A1A1A;
  --text-body: #2D2D2D;
  --text-secondary: #6B6B6B;
  --text-light: #999999;

  /* Gold Accents */
  --gold: #C8A45C;
  --gold-light: #D4B574;
  --gold-dark: #A07D3A;
  --gold-bg: rgba(200,164,92,0.08);
  --gold-border: rgba(200,164,92,0.15);

  /* Functional */
  --whatsapp: #25D366;
  --border: #E8E5DF;
  --border-light: #F0EDE7;
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-card: 0 1px 8px rgba(0,0,0,0.04);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 48px;
  --space-xl: 80px;
  --section-padding: 80px 0;

  /* Layout */
  --container: 1200px;
  --container-wide: 1400px;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.35s cubic-bezier(.25,.46,.45,.94);
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: none;
}

ul, ol { list-style: none; }

::selection {
  background: var(--gold);
  color: #fff;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }


/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 500;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

p:last-child { margin-bottom: 0; }


/* --- LAYOUT UTILITIES --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 48px;
}

:root {
  --section-padding: 80px 0;
}

/* All content sections get generous vertical spacing */
section.reveal,
section.section-alt {
  padding: 80px 0;
}

/* Branch info sections on branch pages */
section.branch-info {
  padding: 80px 0;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.text-center { text-align: center; }
.hidden { display: none !important; }


/* --- SECTION HEADERS --- */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 32px;
  text-align: center;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(250, 250, 247, 0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
}

.nav-logo img {
  height: 44px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* Branches Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  transition: color var(--transition);
}

.nav-dropdown-toggle:hover {
  color: var(--gold);
}

.nav-dropdown-toggle svg {
  width: 10px;
  height: 10px;
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 6px);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-body);
}

.nav-dropdown-menu a:hover {
  background: var(--gold-bg);
  color: var(--gold);
}

.nav-dropdown-menu a .branch-label {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* Nav CTA & Phone */
.nav-phone {
  color: var(--gold) !important;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0 !important;
}

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 10px 28px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }


/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  padding: 16px 40px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  box-shadow: 0 4px 14px rgba(200,164,92,0.25);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,164,92,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 15px 40px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-secondary:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-ghost:hover {
  gap: 12px;
  color: var(--gold-dark);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-body);
  padding: 14px 36px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  padding: 16px 40px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}


/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  padding: 130px 0 60px;
  background: var(--bg-hero);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.75;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin: 16px 0 28px;
}

.hero-proof .stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-urgency {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-style: italic;
}

.hero-image {
  position: relative;
}

/* Hero image carousel */
.hero-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hero-carousel img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide:first-child {
  position: relative;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Carousel dots */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-dot.active {
  background: var(--gold);
}

/* Fallback single image (no carousel) */
.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}


/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}

.trust-strip-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-item .trust-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}


/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: var(--space-lg);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: #fff;
  padding: 4px 12px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
}

.service-card-body {
  padding: 24px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.service-card-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}

.service-card-link:hover {
  gap: 10px;
}

/* CTA Card: View All Services */
.service-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  min-height: 420px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border: none;
  color: #fff;
}

.service-card-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(160, 125, 58, 0.25);
}

.service-card-cta h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.service-card-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.service-card-cta .btn {
  background: #fff;
  color: var(--gold-dark);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
}

.service-card-cta .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--gold-dark);
}

/* ============================================
   HERO COPY ROTATION
   ============================================ */
.hero-copy-slide {
  display: none;
  animation: fadeInUp 0.6s ease-out;
}

.hero-copy-slide.active {
  display: block;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   VALUE CARDS (Why Choose Us / Nadia Difference)
   ============================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: var(--space-lg);
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.value-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--gold-border);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-bg);
  border-radius: 50%;
  font-size: 1.6rem;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 500;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ============================================
   REVIEWS CAROUSEL
   ============================================ */
/* Reviews auto-scroll wrapper */
.reviews-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-lg);
}

.reviews-track {
  display: flex;
  gap: 28px;
  animation: reviewsScroll 30s linear infinite;
  width: max-content;
  padding: 8px 0 20px;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 380px;
  min-width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-text {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.review-branch {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 2px;
}


/* ============================================
   BRANCH/LOCATION CARDS
   ============================================ */
.branch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.branch-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.branch-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.branch-card-img {
  height: 300px;
  overflow: hidden;
}

.branch-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.branch-card:hover .branch-card-img img {
  transform: scale(1.04);
}

.branch-card-body {
  padding: 28px;
}

.branch-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 500;
}

.branch-card-addr {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.branch-card-services {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.branch-card-hours {
  margin-bottom: 20px;
}

.branch-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 4px 0;
  color: var(--text-secondary);
}

.branch-hours-row span:last-child {
  color: var(--text-body);
  font-weight: 500;
}


/* ============================================
   ABOUT / MEET NADIA
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.about-img::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-subtitle {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 0 16px 24px;
  margin: 28px 0;
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-dark);
  line-height: 1.5;
}


/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--border));
}

.tl-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 32px;
}

.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 3px var(--gold-bg);
}

.tl-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.tl-title {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 6px;
}

.tl-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
}


/* ============================================
   GALLERY
   ============================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 10px 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
}


/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  border: none;
  transition: background 0.3s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  border: none;
  transition: background 0.3s;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
}


/* ============================================
   PRICING TABLES
   ============================================ */
.pricing-category {
  margin-bottom: 48px;
}

.pricing-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-bg);
}

.pricing-category-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
}

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

.pricing-table tr {
  border-bottom: 1px solid var(--border-light);
}

.pricing-table tr:last-child { border-bottom: none; }

.pricing-table td {
  padding: 14px 0;
  font-size: 0.9rem;
}

.pricing-table td:first-child {
  color: var(--text-body);
}

.pricing-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}

.pricing-table .sub-header td {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.85rem;
  padding-top: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 8px;
}

.pricing-branch-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-light);
  background: var(--bg-secondary);
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 8px;
}


/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  font-family: var(--font-body);
}

.faq-question h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--transition);
}

.faq-question:hover h3 {
  color: var(--gold);
}

.faq-toggle {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-question.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer.open {
  max-height: 300px;
  padding-top: 14px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}


/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-bg) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-light);
}

.cta-section h2 {
  margin-bottom: 14px;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-risk-reversal {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================
   GRAND SLAM OFFER (Value Stack)
   ============================================ */
.offer-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.offer-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(200,164,92,0.1);
}

.offer-card h2 {
  margin-bottom: 8px;
}

.offer-list {
  text-align: left;
  margin: 28px 0;
}

.offer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
}

.offer-item:last-child { border-bottom: none; }

.offer-item-name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body);
}

.offer-item-name .check {
  color: var(--gold);
  font-weight: 700;
}

.offer-item-value {
  color: var(--text-light);
  font-size: 0.82rem;
  font-style: italic;
}

.offer-total {
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid var(--gold-border);
  margin-top: 8px;
}

.offer-total-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.offer-total-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
}

.offer-urgency {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 16px;
  font-style: italic;
}


/* ============================================
   SPECIAL OFFERS — COMBO DEALS (Table + Cards)
   ============================================ */

/* Mobile: stacked cards */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.offer-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.offer-card-v2:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.offer-card-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
}

.offer-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.offer-card-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}

.offer-card-duration {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.82rem;
}

/* Desktop: table view */
.offers-table {
  display: none;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offers-table thead {
  background: var(--text-primary);
  color: #fff;
}

.offers-table th {
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.offers-table td {
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}

.offers-table tbody tr:last-child td {
  border-bottom: none;
}

.offers-table tbody tr:hover {
  background: var(--gold-bg);
}

.offer-price-cell {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.05rem;
}

.offer-dur-cell {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .offers-grid { display: none; }
  .offers-table { display: table; }
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  padding: 64px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 48px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.footer-socials a:hover svg {
  fill: #fff;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-links a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-bottom {
  max-width: var(--container-wide);
  margin: 32px auto 0;
  padding: 20px 48px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-light);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.7rem;
  color: var(--text-light);
}

.footer-legal a:hover {
  color: var(--gold);
}


/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform var(--transition);
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 997;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.back-to-top:hover svg {
  fill: #fff;
}


/* ============================================
   BOOKING WIZARD
   ============================================ */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-overlay.active {
  display: flex;
}

.booking-modal {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.booking-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-header h2 {
  font-size: 1.3rem;
}

.booking-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.booking-close:hover {
  background: var(--gold);
  color: #fff;
}

/* Progress Bar */
.wizard-progress {
  padding: 0 32px;
  margin: 20px 0;
}

.wizard-progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.wizard-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s;
}

.wizard-step-label {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 8px;
  text-align: center;
}

/* Wizard Steps */
.wizard-step {
  display: none;
  padding: 24px 32px 32px;
}

.wizard-step.active {
  display: block;
}

.wizard-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

/* Branch selection cards in wizard */
.wizard-branch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wizard-branch-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}

.wizard-branch-card:hover {
  border-color: var(--gold-border);
}

.wizard-branch-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-bg);
}

.wizard-branch-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.wizard-branch-info {
  padding: 16px;
}

.wizard-branch-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}

.wizard-branch-info p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0;
}

.wizard-branch-info .service-count {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 6px;
}

/* Service category grid in wizard */
.wizard-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.wizard-category-btn {
  padding: 16px 12px;
  text-align: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-card);
  font-family: var(--font-body);
}

.wizard-category-btn:hover {
  border-color: var(--gold-border);
}

.wizard-category-btn.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.wizard-category-btn.selected .cat-name {
  color: #fff;
}

.wizard-category-btn.selected .cat-from {
  color: rgba(255,255,255,0.8);
}

.wizard-category-btn .cat-icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.wizard-category-btn .cat-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.5px;
}

.wizard-category-btn .cat-from {
  font-size: 0.65rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* Service checkboxes in wizard */
.wizard-service-list {
  max-height: 400px;
  overflow-y: auto;
}

.wizard-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
}

.wizard-service-item:last-child { border-bottom: none; }

.wizard-service-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex: 1;
}

.wizard-service-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s;
}

.wizard-service-item input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.wizard-service-item input[type="checkbox"]:checked::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.wizard-service-name {
  font-size: 0.88rem;
  color: var(--text-body);
}

.wizard-service-duration {
  font-size: 0.72rem;
  color: var(--text-light);
}

.wizard-service-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}

/* Running total */
.wizard-total {
  background: var(--bg-secondary);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wizard-total-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.wizard-total-amount {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
}

.wizard-total-duration {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Calendar */
.wizard-calendar {
  margin-bottom: 20px;
}

.wizard-cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.wizard-cal-header h4 {
  font-family: var(--font-display);
  font-size: 1rem;
}

.wizard-cal-nav {
  display: flex;
  gap: 8px;
}

.wizard-cal-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.wizard-cal-nav button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.wizard-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.wizard-cal-day-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
}

.wizard-cal-day {
  padding: 10px;
  font-size: 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-body);
}

.wizard-cal-day:hover:not(.disabled):not(.selected) {
  background: var(--gold-bg);
  color: var(--gold);
}

.wizard-cal-day.selected {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
}

.wizard-cal-day.disabled {
  color: var(--border);
  cursor: default;
}

.wizard-cal-day.today {
  border: 1px solid var(--gold-border);
}

/* Time slots */
.wizard-time-section h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
  margin-top: 16px;
}

.wizard-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.wizard-time-slot {
  padding: 10px;
  text-align: center;
  font-size: 0.82rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-body);
  font-family: var(--font-body);
  background: var(--bg-card);
}

.wizard-time-slot:hover:not(.selected) {
  border-color: var(--gold-border);
  color: var(--gold);
}

.wizard-time-slot.selected {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  font-weight: 600;
}

/* Form inputs in wizard */
.wizard-input-group {
  margin-bottom: 16px;
}

.wizard-input-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.wizard-input-group input,
.wizard-input-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.wizard-input-group input:focus,
.wizard-input-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.wizard-input-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Booking summary */
.wizard-summary {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}

.wizard-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.88rem;
}

.wizard-summary-row .label {
  color: var(--text-secondary);
}

.wizard-summary-row .value {
  color: var(--text-primary);
  font-weight: 500;
}

.wizard-summary-services {
  margin: 12px 0;
  padding: 12px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}

.wizard-summary-service {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.85rem;
}

.wizard-summary-service .name { color: var(--text-body); }
.wizard-summary-service .price { color: var(--gold-dark); font-weight: 600; }

.wizard-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0 0;
  font-size: 1rem;
}

.wizard-summary-total .label {
  font-weight: 600;
  color: var(--text-primary);
}

.wizard-summary-total .value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.15rem;
}

/* Wizard footer navigation */
.wizard-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wizard-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.wizard-back:hover { color: var(--gold); }

.wizard-next {
  background: var(--gold);
  color: #fff;
  padding: 12px 32px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.wizard-next:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.wizard-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}


/* ============================================
   BOOKING WIZARD — INLINE MODE (page-book.php)
   ============================================ */
.booking-inline .booking-overlay {
  position: static;
  background: none;
  backdrop-filter: none;
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.booking-inline .booking-modal {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  max-height: none;
  overflow-y: visible;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.booking-inline .booking-close {
  display: none;
}


/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 130px 0 60px;
  text-align: center;
  background: var(--bg-hero);
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--gold-bg) 0%, transparent 70%);
  pointer-events: none;
}

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

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}


/* ============================================
   PAGE CONTENT (default page template)
   ============================================ */
.page-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
}

.page-content h3 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
}

.page-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.page-content ul,
.page-content ol {
  list-style: disc;
  margin: 0 0 20px 24px;
}

.page-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.page-content a {
  color: var(--gold);
  text-decoration: underline;
}

.page-content a:hover {
  color: var(--gold-dark);
}


/* ============================================
   BLOG / GUIDES
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-meta {
  font-size: 0.72rem;
  color: var(--text-light);
}


/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.contact-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-detail {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-detail a {
  color: var(--text-body);
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group select option {
  background: var(--bg-card);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}


/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */

/* Tablet (768px) */
@media (max-width: 1024px) {
  .container, .container-wide { padding: 0 32px; }
  .nav-inner { padding: 14px 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-image img { height: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wizard-category-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  .container, .container-wide { padding: 0 20px; }
  .section { padding: 60px 0; }

  /* GLOBAL FONT SIZE INCREASE ON MOBILE - SIGNIFICANTLY BIGGER */
  body { font-size: 20px; /* significantly larger */ }
  h1 { font-size: 2.4rem; /* extra large headings */ }
  h2 { font-size: 1.85rem; /* much larger section titles */ }
  h3 { font-size: 1.35rem; }
  h4 { font-size: 1.2rem; }
  p { font-size: 1.1rem; /* noticeably larger paragraph text */ }
  a { font-size: 1.1rem; }
  button { font-size: 1.05rem; }
  label { font-size: 1.1rem; }
  span { font-size: 1rem; }
  li { font-size: 1.1rem; }
  td, th { font-size: 1rem; }

  /* Nav mobile - CENTERED with larger text */
  .nav-inner {
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 250, 247, 0.98);
    backdrop-filter: blur(24px);
    padding: 24px 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: center; /* center menu items */
    align-items: center; /* center items */
    width: 100%;
  }
  .nav-links a {
    font-size: 1.2rem; /* much larger nav text */
    font-weight: 500;
    padding: 14px 0;
    display: block;
    width: 100%;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  /* Dropdown in mobile */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: auto;
    background: transparent;
  }

  /* Hero - MOBILE: Image first, then copy */
  .hero { padding: 60px 0; }
  .hero-inner {
    padding: 0 20px;
    display: flex;
    flex-direction: column-reverse; /* Image first, then content */
    gap: 32px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-carousel {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .hero-image img { height: 300px; }

  /* Trust strip */
  .trust-strip-inner {
    gap: 20px;
    padding: 0 20px;
    justify-content: space-between;
  }

  /* Cards */
  .services-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .branch-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 200px; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Booking wizard */
  .wizard-branch-grid { grid-template-columns: 1fr; }
  .wizard-category-grid { grid-template-columns: repeat(2, 1fr); }
  .wizard-time-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-header { padding: 20px; }
  .wizard-step { padding: 20px; }
  .wizard-footer { padding: 16px 20px; }

  /* Footer - MUCH LARGER fonts & CENTERED */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px;
    text-align: center; /* center footer content */
  }
  .footer-grid h3 {
    font-size: 1.45rem; /* extra large footer headers */
    font-weight: 600;
    margin-bottom: 12px;
  }
  .footer-grid a, .footer-grid p {
    font-size: 1.25rem; /* extra large footer text */
    line-height: 1.9;
    margin: 8px 0;
  }
  .footer-grid ul {
    list-style: none;
    padding: 0;
  }
  .footer-grid li {
    margin: 12px 0;
    font-size: 1.2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    font-size: 1.2rem; /* extra large footer bottom text */
    align-items: center;
    gap: 16px;
  }
  .footer-legal {
    justify-content: center;
    gap: 20px;
    font-size: 1.1rem;
  }
  .footer-legal a {
    font-size: 1.1rem;
  }

  /* Footer contact items centered on mobile */
  .footer-contact-item {
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  /* Offer */
  .offer-card { padding: 28px 20px; }

  /* Page hero */
  .page-hero { padding: 130px 20px 60px; }

  /* CTA */
  .cta-section { padding: 60px 0; }

  /* Form elements - larger for mobile */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    font-size: 1.1rem;
    padding: 14px 16px;
    line-height: 1.5;
  }

  /* Buttons - bigger touch targets */
  .btn {
    font-size: 1.1rem;
    padding: 14px 24px;
    min-height: 50px;
  }

  /* Service cards and pricing */
  .service-card-title { font-size: 1.2rem; }
  .service-card-price { font-size: 1rem; }
  .service-card-desc { font-size: 1rem; }

  /* Booking wizard text */
  .wizard-step h3 { font-size: 1.3rem; }
  .wizard-category-btn { font-size: 0.95rem; }
  .wizard-service-name { font-size: 1.05rem; }
  .wizard-service-price { font-size: 1.05rem; }
}

/* Small mobile (480px) - EXTRA LARGE FONTS */
@media (max-width: 480px) {
  body { font-size: 22px; /* even larger */ }
  h1 { font-size: 2.5rem; /* huge headings */ }
  h2 { font-size: 2rem; /* very large */ }
  h3 { font-size: 1.4rem; }
  p, a, button { font-size: 1.15rem; /* bigger everything */ }

  .hero h1 { font-size: 2.4rem; /* extra large hero */ }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; text-align: center; font-size: 1.1rem; padding: 14px 20px; }
  .trust-strip-inner { flex-direction: column; align-items: center; gap: 12px; font-size: 1.05rem; }
  .wizard-category-grid { grid-template-columns: 1fr 1fr; }
  .wizard-time-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { gap: 8px; }
  .gallery-item { height: 160px; }

  /* Extra readable on small screens */
  .section-label { font-size: 0.9rem; }
  .section-title { font-size: 1.9rem; }

  /* Branch card image taller on small screens */
  .branch-card-img { height: 220px; }
}


/* ============================================
   SERVICES PAGE — REDESIGNED
   ============================================ */

/* Sticky Quick Nav */
.services-quicknav {
  position: sticky;
  top: 68px;
  z-index: 100;
  background: rgba(250,250,247,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}

.quicknav-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.quicknav-scroll::-webkit-scrollbar { display: none; }

.quicknav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  white-space: nowrap;
  transition: all var(--transition);
}

.quicknav-pill:hover,
.quicknav-pill.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.quicknav-icon { font-size: 1rem; }

/* Service Sections */
.service-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-light);
}

.service-section-alt {
  background: var(--bg-secondary);
}

.service-section:last-of-type {
  border-bottom: none;
}

/* Service Header — Image + Info */
.service-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}

.service-header-reversed {
  direction: rtl;
}

.service-header-reversed > * {
  direction: ltr;
}

.service-header-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-header-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.service-header-img:hover img {
  transform: scale(1.04);
}

.service-badge-new {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #fff;
  padding: 4px 14px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
}

.service-header-info {
  padding: 8px 0;
}

.service-header-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.service-header-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.service-header-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-header-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.service-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-meta-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

.service-meta-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}

.service-header-cta {
  margin-top: 4px;
}

/* Service Pricing */
.service-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-pricing-group {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.service-pricing-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-bg);
}

.service-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.service-pricing-row:last-child {
  border-bottom: none;
}

.service-pricing-name {
  font-size: 0.88rem;
  color: var(--text-body);
  flex: 1;
}

.service-pricing-dur {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-left: 8px;
}

.service-pricing-price {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
  margin-left: 16px;
}

.service-branch-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 20px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.service-branch-note svg {
  color: var(--gold);
  flex-shrink: 0;
}

.service-branch-note a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

/* Services page responsive */
@media (max-width: 768px) {
  .service-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-header-reversed {
    direction: ltr;
  }
  .service-header-img img {
    height: 240px;
  }
  .service-pricing {
    grid-template-columns: 1fr;
  }
  .service-section {
    padding: 40px 0;
  }
  .services-quicknav {
    top: 60px;
  }
}


/* ============================================
   MOBILE MENU FIXES
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    align-items: flex-start !important;
    padding: 20px 24px !important;
    gap: 4px !important;
  }

  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    padding: 10px 0;
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    padding: 10px 0;
    width: 100%;
    justify-content: center;
  }

  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center;
  }

  .nav-dropdown-menu a {
    padding: 8px 0;
    font-size: 0.75rem;
    justify-content: center;
  }

  .nav-phone {
    margin-top: 8px;
    font-size: 0.9rem !important;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
    width: 100%;
    padding: 14px 28px !important;
  }
}


/* ============================================
   FOOTER — LARGER FONT SIZES
   ============================================ */
.footer-heading {
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-links a {
  font-size: 0.88rem;
  padding: 5px 0;
}

.footer-contact-item {
  font-size: 0.88rem;
}

.footer-brand p {
  font-size: 0.88rem;
}

.footer-copy {
  font-size: 0.78rem;
}

.footer-legal a {
  font-size: 0.78rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 48px 0 20px;
  }

  .footer-heading {
    font-size: 1.05rem;
  }

  .footer-links a {
    font-size: 0.92rem;
    padding: 6px 0;
  }

  .footer-contact-item {
    font-size: 0.92rem;
  }
}


/* ============================================
   WHITESPACE FIXES — REDUCE EXCESSIVE GAPS
   ============================================ */

/* Trust strip — tighter */
.trust-strip {
  padding: 20px 0;
}

/* CTA section — tighter */
.cta-section {
  padding: 60px 0;
}

/* Reduce hero bottom margin on mobile */
@media (max-width: 768px) {
  .hero {
    padding: 110px 0 40px;
  }

  .page-hero {
    padding: 110px 20px 40px;
  }

  section.reveal,
  section.section-alt {
    padding: 48px 0;
  }

  section.branch-info {
    padding: 48px 0;
  }

  .section {
    padding: 48px 0;
  }
}


/* ============================================
   GALLERY OVERLAY FIX (was using wrong class)
   ============================================ */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
}


/* ============================================
   STICKY MOBILE BOOK BAR
   ============================================ */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: 8px 12px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  gap: 8px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .mobile-book-bar {
    display: flex;
  }
  /* Push content up so it's not hidden behind bar */
  body {
    padding-bottom: 72px;
  }
  /* Hide mobile book bar when booking modal is open */
  .booking-overlay.active ~ .mobile-book-bar,
  body.booking-open .mobile-book-bar {
    display: none !important;
  }
  /* Give modal extra bottom padding so wizard footer isn't cut off */
  .booking-modal {
    max-height: 85vh;
    margin-bottom: 72px;
  }
  /* Push cookie consent bars behind our bar */
  .cookie-law-info-bar,
  .cli-modal-container,
  #cookie-law-info-bar,
  #cookieNotice,
  .cc-window,
  .cky-consent-container,
  [class*="cookie-consent"],
  [class*="cookie-notice"],
  [id*="cookie"] {
    bottom: 64px !important;
    z-index: 99999 !important;
  }
  /* Hide old WhatsApp float on mobile — bar replaces it */
  .wa-float {
    bottom: 80px;
  }
}

.mobile-book-bar-phone,
.mobile-book-bar-wa {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: background var(--transition);
}

.mobile-book-bar-phone {
  color: var(--text-primary);
}
.mobile-book-bar-phone:hover {
  background: var(--bg-secondary);
}

.mobile-book-bar-wa {
  color: var(--whatsapp);
}
.mobile-book-bar-wa:hover {
  background: rgba(37, 211, 102, 0.08);
}

.mobile-book-bar-cta {
  flex: 1;
  max-width: 220px;
  padding: 12px 24px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.mobile-book-bar-cta:hover {
  background: var(--gold-dark);
}


/* ============================================
   SMART WHATSAPP CHAT WIDGET
   ============================================ */
.wa-smart-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9998;
  display: none;
  flex-direction: column;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  overflow: hidden;
  animation: waWidgetSlideUp 0.3s ease-out;
}

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

.wa-smart-widget.active {
  display: flex;
}

.wa-smart-widget-header {
  background: #25D366;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-smart-widget-header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}

.wa-smart-widget-header-info {
  flex: 1;
}

.wa-smart-widget-header-info h4 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0;
  font-family: var(--font-body);
}

.wa-smart-widget-header-info p {
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  margin: 2px 0 0;
}

.wa-smart-widget-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.wa-smart-widget-body {
  padding: 16px;
  background: #ECE5DD;
}

.wa-smart-widget-bubble {
  background: #fff;
  padding: 10px 14px;
  border-radius: 0 8px 8px 8px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-body);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  max-width: 90%;
}

.wa-smart-widget-bubble .wa-time {
  display: block;
  text-align: right;
  font-size: 0.68rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.wa-smart-widget-actions {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-smart-widget-actions a {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  font-family: var(--font-body);
  transition: background 0.2s;
}

.wa-smart-widget-actions a:hover {
  background: #1da851;
}

@media (max-width: 768px) {
  .wa-smart-widget {
    bottom: 76px;
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
  }
}


/* ============================================
   BEFORE / AFTER SLIDER
   ============================================ */
.ba-slider-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider .ba-after {
  clip-path: inset(0 50% 0 0);
}

.ba-slider .ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gold);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.ba-slider .ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.ba-slider .ba-handle::before {
  content: '\2039  \203A';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 4;
  letter-spacing: 12px;
  white-space: nowrap;
}

.ba-label {
  position: absolute;
  bottom: 12px;
  padding: 4px 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

.ba-label-before { left: 12px; }
.ba-label-after  { right: 12px; }

.ba-slider-caption {
  text-align: center;
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
}


/* ============================================
   BRANCH PAGE — MOBILE LAYOUT FIX
   ============================================ */
@media (max-width: 768px) {
  /* Branch info grid: stack to single column on mobile */
  .branch-info .branch-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Branch page buttons: normal size, not full-width stretch */
  .branch-info .btn-primary,
  .branch-info .btn-outline {
    font-size: 0.9rem;
    padding: 14px 28px;
    width: auto;
    max-width: 100%;
  }

  /* Branch page CTA row: stack vertically on small screens */
  .branch-info div[style*="display: flex"][style*="gap: 16px"] {
    flex-direction: column;
    gap: 12px !important;
    align-items: stretch;
  }

  /* Map iframe: full width */
  .branch-info iframe {
    width: 100% !important;
    height: 250px !important;
  }

  /* Branch page shop photo: limit height */
  .branch-info .branch-grid > div:last-child {
    max-height: 280px;
  }
  .branch-info .branch-grid > div:last-child img {
    height: 280px;
    object-fit: cover;
  }

  /* Special offers: fix Book Now button sizing on mobile */
  .offer-card-v2 {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 20px;
  }
  .offer-card-v2 .btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .offer-card-name {
    font-size: 0.9rem;
    flex-basis: 100%;
  }
  .offer-card-meta {
    gap: 12px;
  }
}
