/* 
  =========================================
  THE BEAUTY WIZARD SALON & SPA
  Premium Luxury Redesign - Rose Gold & Botanical Green
  =========================================
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

/* --- CUSTOM VARIABLES (FEMALE COLOR PSYCHOLOGY & LOGO PALETTE) --- */
:root {
  /* Main Backgrounds - Warm Ivory & Blush Rose */
  --bg-warm-light: hsl(36, 25%, 98%);     /* Warm Creamy Ivory */
  --bg-blush-soft: hsl(345, 40%, 97%);     /* Soft Blush Pink */
  --bg-champagne: hsl(36, 30%, 95%);      /* Warm Luxury Champagne */
  
  /* Text and Structured Blocks - Royal Botanical Green & Charcoal */
  --botanical-green: hsl(102, 33%, 27%);   /* Extracted Logo Olive Green: #3B5B2E */
  --botanical-dark: hsl(102, 35%, 15%);    /* Deep Botanical Forest Green */
  --botanical-light: hsl(102, 25%, 45%);   /* Soft Sage Green */
  
  /* Interactive Accents - Vibrant Butterfly Magenta/Pink */
  --primary-pink: hsl(336, 85%, 55%);      /* Extracted Butterfly Pink: #E91E63 */
  --primary-pink-hover: hsl(336, 95%, 45%);/* Richer Magenta */
  --primary-pink-glow: hsla(336, 85%, 55%, 0.25);
  
  /* Luxury Gold Highlights */
  --rose-gold: hsl(20, 45%, 68%);          /* Glamour Rose Gold */
  --rose-gold-glow: hsla(20, 45%, 68%, 0.2);
  
  /* Readable Text */
  --text-dark: hsl(120, 15%, 12%);         /* Elegant dark charcoal green for body */
  --text-muted: hsl(120, 10%, 42%);        /* Soft gray green */
  --text-light: hsl(0, 0%, 98%);
  
  /* Card Backgrounds */
  --bg-card: rgba(255, 255, 255, 0.82);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  
  /* Borders */
  --glass-border: rgba(212, 175, 55, 0.12); /* Champagne Gold borders */
  --glass-border-hover: rgba(233, 30, 99, 0.25); /* Pink hover borders */
  
  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;
  
  /* Shadows & Glows */
  --glow-soft: 0 10px 35px rgba(212, 175, 55, 0.06);
  --glow-gold: 0 12px 40px rgba(204, 153, 102, 0.14);
  --glow-pink: 0 12px 30px rgba(233, 30, 99, 0.18);
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(14px, 0.8vw + 4px, 18px); /* Dynamic base font size scaling to fit any window screen beautifully */
}

body {
  background-color: var(--bg-warm-light);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--botanical-dark);
}

p {
  font-weight: 400; /* Increased to standard readable weight for maximum premium visibility */
  letter-spacing: 0.01em;
  color: var(--text-dark);
}

.text-gradient-pink {
  background: linear-gradient(135deg, var(--botanical-dark) 20%, var(--primary-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--botanical-green) 20%, var(--rose-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--botanical-dark);
}

.section-title p {
  color: var(--primary-pink);
  font-size: 0.95rem;
  margin-top: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title::after {
  content: '✨';
  display: block;
  font-size: 1.2rem;
  color: var(--rose-gold);
  margin-top: 1.2rem;
}

/* --- CUSTOM CURSOR --- */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--primary-pink);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.08s ease, background-color 0.2s ease;
  box-shadow: 0 0 10px var(--primary-pink);
}

.custom-cursor-glow {
  width: 32px;
  height: 32px;
  border: 1px solid var(--rose-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.12s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.25s ease;
  box-shadow: 0 0 12px var(--rose-gold-glow);
}

/* Cursor trail element */
.sparkle-trail {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.75;
  animation: fadeOutSparkle 0.7s linear forwards;
}

@keyframes fadeOutSparkle {
  0% {
    transform: scale(1) translateY(0);
    opacity: 0.8;
  }
  100% {
    transform: scale(0) translateY(-15px);
    opacity: 0;
  }
}

@media (max-width: 1280px) {
  .custom-cursor, .custom-cursor-glow {
    display: none;
  }
}

/* --- GLASSMORPHISM & UTILITIES --- */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glow-soft);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glow-gold);
  transform: translateY(-5px);
}

.container {
  max-width: 80rem; /* Scaling container width based on root font units to dynamically adapt layout size to window */
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* --- BUTTONS --- */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium-primary {
  background: linear-gradient(135deg, var(--primary-pink) 0%, hsl(330, 95%, 45%) 100%);
  color: var(--text-light);
  border: none;
  box-shadow: 0 5px 20px rgba(233, 30, 99, 0.35);
}

.btn-premium-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
  z-index: -1;
}

.btn-premium-primary:hover::before {
  left: 100%;
}

.btn-premium-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5), var(--glow-pink);
}

.btn-premium-secondary {
  background: transparent;
  color: var(--botanical-dark);
  border: 1.5px solid var(--rose-gold);
}

.btn-premium-secondary:hover {
  background: var(--rose-gold);
  color: var(--text-light);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px var(--rose-gold-glow);
}

/* --- HEADER / NAVBAR --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 0;
  background: transparent;
}

header.scrolled {
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(204, 153, 102, 0.05);
}

/* --- HEADER TOP CONTACT BAR --- */
.header-top-bar {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
  width: 100%;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.top-bar-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.top-bar-item a:hover {
  color: var(--primary-pink);
}

.top-bar-item i {
  color: var(--rose-gold);
  font-size: 0.85rem;
}

/* Scroll transitions */
header.scrolled .header-top-bar {
  margin-top: -35px; /* Pulls it up out of view */
  opacity: 0;
  pointer-events: none;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
}

header.scrolled .nav-wrapper {
  padding: 0.8rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: clamp(75px, 8.5vw, 110px); /* Prominent, bold and highly conspicuous size */
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition-smooth);
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

header.scrolled .logo-img {
  height: clamp(58px, 6vw, 85px); /* Elegant visual transition on page scroll */
}

.footer-logo-img {
  height: clamp(65px, 7.5vw, 95px); /* Highly conspicuous white logo scaling for the dark footer */
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Elegant pure white logo on dark footer */
  opacity: 0.95;
  transition: var(--transition-smooth);
}

.logo:hover .footer-logo-img {
  transform: scale(1.03);
  opacity: 1;
}

nav ul {
  display: flex;
  list-style: none;
  gap: clamp(1rem, 1.8vw, 2.2rem); /* Fluidly scaling gaps to prevent header collision */
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem); /* Fluid font sizing for neat navigation */
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-pink);
  transition: var(--transition-smooth);
}

nav ul li a:hover, nav ul li a.active {
  color: var(--primary-pink);
}

nav ul li a:hover::after, nav ul li a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile Menu Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--botanical-dark);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 9rem;
  background: radial-gradient(circle at 80% 30%, hsla(336, 85%, 55%, 0.05) 0%, hsla(36, 30%, 95%, 0.2) 60%, transparent 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.4rem;
  background: hsla(20, 45%, 68%, 0.12);
  border: 1px solid hsla(20, 45%, 68%, 0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.8rem;
  font-weight: 600;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.8rem;
  color: var(--botanical-dark);
}

.hero-title span {
  color: var(--primary-pink);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.8rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle-backdrop {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, hsla(336, 85%, 55%, 0.15) 0%, transparent 70%);
  z-index: 1;
  animation: floatSlow 10s ease-in-out infinite alternate;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(204, 153, 102, 0.12);
  border: 1.5px solid rgba(255,255,255,0.7);
  aspect-ratio: 3/4;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-picturesque-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.hero-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.2rem;
  background: linear-gradient(to top, rgba(14, 26, 17, 0.9) 0%, rgba(14, 26, 17, 0) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-overlay-tag {
  color: var(--primary-pink);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.hero-overlay-name {
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--text-light);
}

.hero-float-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 0.9rem 1.6rem;
  border-radius: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 10px 30px rgba(204, 153, 102, 0.1);
}

.hero-tag-1 {
  top: 15%;
  left: -30px;
  animation: floatSlow 7s ease-in-out infinite alternate;
}

.hero-tag-2 {
  bottom: 15%;
  right: -30px;
  animation: floatSlow 7s ease-in-out infinite alternate-reverse;
}

.hero-tag-icon {
  background: var(--primary-pink);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.hero-tag-text h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--botanical-dark);
}

.hero-tag-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@keyframes floatSlow {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-12px) scale(1.02);
  }
}

/* --- ABOUT SANCTUARY SECTION --- */
.about-section {
  background: linear-gradient(180deg, var(--bg-warm-light) 0%, var(--bg-blush-soft) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-backdrop {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--rose-gold);
  border-radius: 28px;
  z-index: 1;
}

.about-picturesque-wrapper {
  width: 100%;
  height: 440px;
  border-radius: 28px;
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--glow-gold);
}

.about-picturesque-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-picturesque-wrapper:hover .about-picturesque-img {
  transform: scale(1.05);
}

.about-content h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--botanical-dark);
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.about-highlight-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-highlight-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--botanical-green);
  font-weight: 700;
}

.about-highlight-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- SERVICES SECTION --- */
.services-tabs-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  box-shadow: var(--glow-soft);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary-pink);
  color: var(--text-light);
  border-color: var(--primary-pink);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.25);
}

/* Category Showcase Banner in Services Section */
.services-category-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 3rem;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(204, 153, 102, 0.08);
}

.showcase-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: hsla(336, 85%, 55%, 0.08);
  border: 1px solid hsla(336, 85%, 55%, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-pink);
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-title {
  font-size: 2.2rem;
  line-height: 1.25;
  color: var(--botanical-dark);
}

.showcase-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.showcase-visual {
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.services-category-showcase:hover .showcase-img {
  transform: scale(1.04);
}

@media (max-width: 991px) {
  .services-category-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.2rem;
  }
  .showcase-visual {
    height: 240px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: hsla(20, 45%, 68%, 0.08);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--rose-gold);
  font-size: 1.4rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background: linear-gradient(135deg, var(--primary-pink), hsl(330, 95%, 45%));
  color: var(--text-light);
  transform: rotate(6deg) scale(1.08);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.25);
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  color: var(--botanical-dark);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
  line-height: 1.6;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.4rem;
  margin-top: auto;
}

.service-price {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--botanical-green);
}

.service-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-add-btn {
  background: transparent;
  border: 1.5px solid var(--rose-gold);
  color: var(--rose-gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.service-add-btn:hover {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
  color: var(--text-light);
  box-shadow: 0 0 10px var(--primary-pink);
}

/* --- INTERACTIVE GLOW QUIZ --- */
.quiz-section {
  background: radial-gradient(circle at 10% 80%, hsla(20, 45%, 68%, 0.05) 0%, hsla(345, 40%, 97%, 0.5) 60%, transparent 100%);
}

.quiz-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.quiz-card {
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}

.quiz-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-pink), var(--rose-gold));
  transition: var(--transition-smooth);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: slideInFade 0.5s ease-out forwards;
}

@keyframes slideInFade {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.quiz-question-number {
  color: var(--primary-pink);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.quiz-question-text {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-family: var(--font-display);
  color: var(--botanical-dark);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quiz-option {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border);
  padding: 1.2rem 1.6rem;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.quiz-option-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.quiz-option:hover {
  border-color: var(--rose-gold);
  background: rgba(255, 255, 255, 0.95);
}

.quiz-option.selected {
  border-color: var(--primary-pink);
  background: hsla(336, 85%, 55%, 0.04);
}

.quiz-option.selected .quiz-option-indicator {
  border-color: var(--primary-pink);
  background: var(--primary-pink);
}

.quiz-nav-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.8rem;
}

.quiz-result-card {
  text-align: center;
}

.quiz-result-magic-icon {
  font-size: 3rem;
  color: var(--rose-gold);
  margin-bottom: 1.2rem;
  animation: rotateMagic 12s linear infinite;
}

@keyframes rotateMagic {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.quiz-result-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  color: var(--botanical-dark);
}

.quiz-result-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-recommended-package {
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px dashed var(--rose-gold);
  border-radius: 18px;
  padding: 1.8rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.quiz-recommended-package h4 {
  color: var(--primary-pink);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.quiz-recommended-package-name {
  font-size: 1.6rem;
  font-family: var(--font-display);
  margin-bottom: 0.4rem;
  color: var(--botanical-dark);
}

.quiz-recommended-package-price {
  font-size: 1.45rem;
  color: var(--botanical-green);
  font-weight: 800;
}

.quiz-picturesque-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--glow-gold);
  border: 2px solid rgba(255,255,255,0.7);
  margin: 0 auto;
}

.quiz-picturesque-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- THE WIZARDRY PACKAGE BUILDER --- */
.builder-section {
  background: linear-gradient(180deg, var(--bg-warm-light) 0%, var(--bg-champagne) 100%);
}

.package-builder-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: start;
}

.builder-services-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.builder-service-card {
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.builder-service-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.builder-service-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.builder-service-card.selected .builder-service-checkbox {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
}

.builder-service-card.selected .builder-service-checkbox::after {
  content: '✓';
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: bold;
}

.builder-service-info h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  color: var(--botanical-dark);
}

.builder-service-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.builder-service-right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.builder-service-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--botanical-green);
}

.builder-service-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.builder-cart {
  position: sticky;
  top: 110px;
  padding: 2.5rem 2.2rem;
  border-color: var(--rose-gold);
}

.builder-cart h3 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1rem;
  color: var(--botanical-dark);
}

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

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-height: 230px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  padding-right: 0.3rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(204, 153, 102, 0.08);
}

.cart-item-name {
  color: var(--text-dark);
}

.cart-item-price {
  color: var(--botanical-green);
  font-weight: 600;
}

.cart-summary {
  border-top: 1px solid var(--glass-border);
  padding-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cart-summary-row.total {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--botanical-dark);
}

.cart-summary-row.total .price {
  color: var(--primary-pink);
}

/* --- PORTFOLIO GALLERY --- */
.portfolio {
  overflow: hidden;
  background: var(--bg-warm-light);
}

.portfolio-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden; /* Prevents gallery track overflow from spilling beyond page frames */
}

.portfolio-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: grab;
}

.portfolio-track:active {
  cursor: grabbing;
}

.portfolio-slide {
  flex: 0 0 calc(33.333% - 1.333rem);
  min-width: 290px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 420px;
  box-shadow: var(--glow-gold);
  border: 1px solid var(--glass-border);
}

.portfolio-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-slide:hover .portfolio-slide-img {
  transform: scale(1.06);
}

.portfolio-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.2rem;
  background: linear-gradient(to top, rgba(14, 26, 17, 0.95) 0%, rgba(14, 26, 17, 0) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateY(12px);
  transition: var(--transition-smooth);
}

.portfolio-slide:hover .portfolio-slide-overlay {
  transform: translateY(0);
}

.portfolio-slide-tag {
  color: var(--primary-pink);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.portfolio-slide-title {
  font-size: 1.35rem;
  font-family: var(--font-display);
  color: var(--text-light);
}

.portfolio-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--glass-border);
  color: var(--botanical-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  box-shadow: var(--glow-soft);
}

.slider-btn:hover {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* --- REVIEWS SECTION --- */
.reviews {
  background: linear-gradient(180deg, var(--bg-warm-light) 0%, var(--bg-blush-soft) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.review-card {
  padding: 3rem 2.5rem;
  position: relative;
}

.review-quote-mark {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(204, 153, 102, 0.15);
  line-height: 1;
  pointer-events: none;
}

.review-stars {
  color: var(--rose-gold);
  display: flex;
  gap: 0.3rem;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.review-text {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 400; /* Enhanced readability weight */
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
}

.review-author-avatar-svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 5px rgba(204, 153, 102, 0.15));
}

.review-author-info h4 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--botanical-dark);
}

.review-author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- INTERACTIVE BOOKING FORM --- */
.booking-section {
  background: var(--bg-warm-light);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.booking-content h2 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--botanical-dark);
}

.booking-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.8rem;
  line-height: 1.7;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.booking-perk {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.booking-perk-icon {
  background: hsla(20, 45%, 68%, 0.1);
  border: 1px solid hsla(20, 45%, 68%, 0.2);
  color: var(--rose-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.booking-perk-text h4 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--botanical-dark);
  margin-bottom: 0.2rem;
}

.booking-perk-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.booking-form-card {
  padding: 3.5rem;
  position: relative;
  border-color: var(--rose-gold);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--botanical-green);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  background: rgba(255,255,255,0.7);
  border: 1.5px solid var(--glass-border);
  color: var(--text-dark);
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 12px var(--primary-pink-glow);
  background: #FFF;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23CC9966'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 1.4rem;
}

.form-submit-btn {
  border: none;
  width: 100%;
  margin-top: 1rem;
}

/* Success Celebration Canvas Overlay */
.booking-success-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 24px;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: fadeIn 0.4s ease-out forwards;
}

.booking-success-content {
  text-align: center;
  padding: 3rem;
  max-width: 440px;
}

.success-magic-wand {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  display: inline-block;
  animation: waveWand 1.5s ease-in-out infinite;
}

@keyframes waveWand {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-25deg) translate(-3px, -3px); }
}

.booking-success-content h3 {
  font-size: 2rem;
  font-family: var(--font-display);
  margin-bottom: 1rem;
  color: var(--botanical-green);
}

.booking-success-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.booking-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9;
}

/* --- DYNAMIC GEOLOCATION LOCATION TRACKER --- */
.location-tracker-section {
  background: linear-gradient(180deg, var(--bg-warm-light) 0%, var(--bg-blush-soft) 100%);
}

.tracker-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: start;
}

.tracker-panel {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.tracker-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(233, 30, 99, 0.1);
  border: 1px solid rgba(233, 30, 99, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--primary-pink);
  font-weight: 600;
  text-transform: uppercase;
}

.tracker-panel h2 {
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--botanical-dark);
}

.tracker-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Geolocation widget box */
.geo-widget {
  padding: 2.5rem;
  background: #FFF;
  border: 1.5px solid var(--rose-gold);
}

.geo-widget-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.geo-widget-icon {
  background: hsla(336, 85%, 55%, 0.1);
  color: var(--primary-pink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.geo-widget-title h3 {
  font-size: 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--botanical-dark);
}

.geo-widget-title p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.geo-btn-group {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.geo-btn-group .btn-premium {
  flex: 1;
}

.geo-result-box {
  background: var(--bg-warm-light);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  display: none; /* Shown via JS */
  animation: fadeIn 0.4s ease-out;
}

.geo-result-icon {
  font-size: 2.2rem;
  color: var(--primary-pink);
  margin-bottom: 0.8rem;
}

.geo-distance-text {
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--botanical-dark);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.geo-time-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* Loading animation inside widget */
.geo-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
}

.geo-spinner {
  width: 40px;
  height: 40px;
  border: 3.5px solid var(--bg-champagne);
  border-top-color: var(--primary-pink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.geo-loading p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Landmark Router Box */
.landmark-router {
  background: var(--bg-blush-soft);
  border-radius: 18px;
  padding: 1.8rem;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.landmark-router label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--botanical-green);
  letter-spacing: 0.05em;
}

.landmark-select {
  background: #FFF;
  border: 1.5px solid var(--glass-border);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23CC9966'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.4rem;
  transition: var(--transition-fast);
}

.landmark-select:focus {
  border-color: var(--primary-pink);
}

.landmark-result {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  border-left: 3px solid var(--rose-gold);
  padding-left: 1rem;
  margin-top: 0.3rem;
  display: none;
}

/* Map frame styles */
.map-container {
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--glow-gold);
  border: 2px solid rgba(255,255,255,0.7);
  position: relative;
}

.map-svg-container {
  width: 100%;
  height: 100%;
  background-color: hsl(102, 15%, 93%);
}

.map-card-popup {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  padding: 1.5rem 1.8rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--rose-gold);
  border-radius: 18px;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  box-shadow: 0 15px 35px rgba(204, 153, 102, 0.15);
  animation: slideUpPopup 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideUpPopup {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.map-card-icon-wrapper {
  background: var(--primary-pink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--text-light);
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.map-card-info h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--botanical-dark);
  margin-bottom: 0.15rem;
}

.map-card-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- FOOTER --- */
footer {
  background: var(--botanical-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 6.5rem 0 3.5rem;
  color: rgba(255,255,255,0.8);
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  color: var(--text-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1.25fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
}

.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-desc p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.05rem;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
}

.footer-column h4::after {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary-pink);
  margin-top: 0.5rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--rose-gold);
  padding-left: 4px;
}

.footer-newsletter h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
}

.footer-newsletter h4::after {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary-pink);
  margin-top: 0.5rem;
}

.footer-newsletter p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light);
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-input:focus {
  border-color: var(--rose-gold);
  background: rgba(255,255,255,0.1);
}

.newsletter-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-pink);
  color: var(--text-light);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-btn:hover {
  background: var(--primary-pink-hover);
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--primary-pink-glow);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--text-light);
}

/* --- ANIMATIONS AND TRANSITIONS --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1150px) {
  .hero-title {
    font-size: 3.8rem;
  }
  .section-title h2 {
    font-size: 2.8rem;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 3rem;
  }
  .footer-newsletter {
    grid-column: span 3;
    max-width: 500px;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 2rem;
  }
  .hero-tag-1 {
    left: 8%;
  }
  .hero-tag-2 {
    right: 8%;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .about-img-frame {
    order: 2;
  }
  .about-highlights {
    text-align: left;
  }
  .quiz-grid-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .quiz-picturesque-wrapper {
    order: 2;
  }
  .tracker-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .booking-content {
    text-align: center;
  }
  .booking-perks {
    align-items: center;
  }
  .booking-perk {
    max-width: 500px;
    text-align: left;
  }
  .package-builder-layout {
    grid-template-columns: 1fr;
  }
  .builder-cart {
    position: static;
    margin-top: 2rem;
  }
}

/* Mobile-only CTA default styling */
.mobile-only-cta {
  display: none;
}

@media (max-width: 1280px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    padding: 8rem 2.5rem 3rem;
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(204, 153, 102, 0.08);
    overflow-y: auto; /* Enable scroll if menu items extend beyond screen height */
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.2rem;
  }
  
  nav ul li a {
    font-size: 1.15rem;
    font-weight: 600;
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-only-cta {
    display: block;
    width: 100%;
    margin-top: 1rem;
  }
  
  .mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-title {
    font-size: 3.1rem;
  }
  
  .section-title h2 {
    font-size: 2.3rem;
  }
  
  .quiz-card {
    padding: 2.2rem;
  }
  
  .quiz-question-text {
    font-size: 1.8rem;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  
  .booking-form-card {
    padding: 2.2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-newsletter {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* Tablet / Landscape responsiveness additions */
@media (max-width: 768px) {
  section {
    padding: 4.5rem 0;
  }
  
  .container {
    padding: 0 1.5rem;
  }

  .about-picturesque-wrapper {
    height: 300px;
  }

  .quiz-picturesque-wrapper {
    height: 280px;
  }

  .portfolio-slide {
    height: 320px;
  }

  .hero-card {
    max-width: 320px;
  }
}

/* Very Small Mobile Portrait Responsiveness */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .geo-btn-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .geo-btn-group .btn-premium {
    width: 100%;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .hero-ctas .btn-premium {
    width: 100%;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .section-title h2 {
    font-size: 1.9rem;
  }
  
  .services-tabs-container {
    gap: 0.5rem;
  }
  
  .tab-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.8rem;
  }
  
  .logo-img {
    height: 58px; /* Conspicuous mobile header logo */
  }
  
  .footer-logo-img {
    height: 52px; /* Conspicuous mobile footer logo */
  }
  
  .quiz-card {
    padding: 1.5rem;
  }
  
  .quiz-question-text {
    font-size: 1.4rem;
  }
  
  .booking-form-card {
    padding: 1.5rem;
  }
  
  .map-container {
    height: 320px;
  }
  
  .map-card-popup {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.8rem 1rem;
    gap: 0.8rem;
  }
  
  .map-card-icon-wrapper {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .map-card-info h4 {
    font-size: 0.9rem;
  }
  
  .map-card-info p {
    font-size: 0.75rem;
  }

  .about-picturesque-wrapper {
    height: 220px;
  }

  .quiz-picturesque-wrapper {
    height: 200px;
  }

  .portfolio-slide {
    height: 260px;
  }

  .hero-card {
    max-width: 280px;
  }

  .showcase-visual {
    height: 180px;
  }
}

/* ==========================================================================
   GOOGLE REVIEWS INTEGRATION & VERIFICATION STYLING
   ========================================================================== */

/* Google Reviews Rating Badge styling */
.google-badge-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 3rem;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glow-soft);
  max-width: 680px;
  margin: -1.5rem auto 3.5rem auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.google-badge-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--botanical-dark);
}

.google-badge-icon-svg {
  width: 26px;
  height: 26px;
}

.google-badge-divider {
  width: 1px;
  height: 40px;
  background: rgba(204, 153, 102, 0.25);
}

.google-badge-score-block {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.badge-score {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--botanical-dark);
  line-height: 1;
}

.badge-stars-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.badge-stars {
  color: #F4B400; /* Standard Google Star yellow-gold */
  display: flex;
  gap: 0.15rem;
  font-size: 0.95rem;
}

.badge-review-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Timeline, verification, and badges inside review cards */
.review-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.review-date-stamp {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 450;
}

.review-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--botanical-green);
  background: hsla(102, 33%, 27%, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  border: 1px solid hsla(102, 33%, 27%, 0.12);
  margin-left: 0.6rem;
}

.reviews-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

/* Mobile responsive styling for reviews and badges */
@media (max-width: 600px) {
  .google-badge-container {
    flex-direction: column;
    gap: 1rem;
    border-radius: 24px;
    padding: 1.8rem 1.5rem;
    margin-bottom: 2.5rem;
  }
  .google-badge-divider {
    width: 80%;
    height: 1px;
  }
  .google-badge-score-block {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .reviews-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 0 1rem;
  }
  .reviews-actions .btn-premium {
    text-align: center;
    width: 100%;
  }
}

/* ==========================================================================
   CONTACT DETAILS & MULTI-SCREEN ACCESSIBILITY STYLING
   ========================================================================== */

/* Header Top Bar Responsiveness */
@media (max-width: 768px) {
  .header-top-bar {
    display: none;
  }
  header.scrolled .header-top-bar {
    margin-top: 0;
  }
}

.desktop-only {
  display: flex;
}

@media (max-width: 991px) {
  .desktop-only {
    display: none;
  }
}

/* Footer Contact Column Specific Styling */
.footer-contact-col ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-col ul li {
  display: flex;
  align-items: flex-start;
  list-style: none;
}

.footer-contact-col ul li a,
.footer-contact-col .footer-hours {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.92rem;
  line-height: 1.5;
  transition: var(--transition-fast);
}

.footer-contact-col ul li a:hover {
  color: var(--rose-gold) !important;
}

.footer-contact-col .contact-icon {
  color: var(--primary-pink);
  margin-top: 0.25rem;
  font-size: 0.95rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  transition: var(--transition-fast);
}

.footer-contact-col ul li a:hover .contact-icon {
  color: var(--rose-gold);
  transform: scale(1.1);
}

.footer-hours {
  color: rgba(255, 255, 255, 0.65);
}

.hours-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hours-days {
  display: block;
}

/* Mobile Menu Drawer Contact block styling */
.mobile-menu-contact {
  display: none;
}

@media (max-width: 1280px) {
  .mobile-menu-contact {
    display: block;
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    width: 100%;
  }
  
  .mobile-menu-contact h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--botanical-dark);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .mobile-menu-contact h4::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-pink);
    margin-top: 0.4rem;
  }
  
  .mobile-menu-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 0.88rem;
  }
  
  .mobile-menu-contact-list a {
    text-decoration: none;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-fast);
  }
  
  .mobile-menu-contact-list a:hover {
    color: var(--primary-pink);
  }
  
  .mobile-menu-contact-list i {
    color: var(--primary-pink);
    width: 14px;
    text-align: center;
  }
  
  .mobile-menu-hours {
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
  }
  
  .mobile-menu-hours-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
}

/* ==========================================================================
   STAR SPA & OLIVIA SALON INSPIRED PREMIUM UPGRADES
   ========================================================================== */

/* 1. TRUST & EXCELLENCE SHIELD BAR */
.trust-shield-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-warm-light) 0%, var(--bg-champagne) 100%);
  border-bottom: 1px solid var(--glass-border);
}

.trust-shield-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
}

.trust-shield-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 1.8rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glow-soft);
  transition: var(--transition-smooth);
}

.trust-shield-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--glow-gold);
}

.trust-shield-icon {
  background: hsla(20, 45%, 68%, 0.12);
  color: var(--rose-gold);
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.trust-shield-card:hover .trust-shield-icon {
  background: var(--primary-pink);
  color: var(--text-light);
  transform: scale(1.1) rotate(5deg);
}

.trust-shield-info h4 {
  font-family: var(--font-body);
  font-weight: 750;
  font-size: 1.05rem;
  color: var(--botanical-dark);
  margin-bottom: 0.2rem;
}

.trust-shield-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* 2. RITUAL BUNDLES DEALS */
.bundles-container {
  margin-bottom: 5rem;
  background: radial-gradient(circle at 10% 20%, hsla(336, 85%, 55%, 0.02) 0%, transparent 80%);
  padding: 3rem 2rem;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
}

.bundles-title {
  text-align: center;
  margin-bottom: 3rem;
}

.bundles-title h3 {
  font-size: 2rem;
  color: var(--botanical-dark);
  margin-bottom: 0.6rem;
}

.bundles-title p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem;
}

.bundle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2.2rem;
  border-radius: 26px;
  height: 100%;
}

.bundle-card.highlight-gold {
  border: 2px solid var(--rose-gold);
  box-shadow: 0 15px 40px rgba(204, 153, 102, 0.15);
}

.bundle-badge {
  position: absolute;
  top: -14px;
  right: 25px;
  background: linear-gradient(135deg, var(--rose-gold) 0%, #D4AF37 100%);
  color: var(--text-light);
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
}

.bundle-header {
  margin-bottom: 1.5rem;
}

.bundle-header h4 {
  font-size: 1.45rem;
  color: var(--botanical-dark);
  margin-bottom: 0.5rem;
}

.bundle-price {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-pink);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.bundle-price .old-price {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.bundle-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.8rem;
}

.bundle-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
  flex-grow: 1;
}

.bundle-services-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--text-dark);
}

.bundle-services-list li i {
  color: var(--botanical-green);
  font-size: 0.95rem;
}

.bundle-card .btn-premium {
  width: 100%;
}



/* 4. WIZARDRY LOYALTY PROGRESS METER */
.cart-loyalty-meter {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--glass-border);
  padding: 1.2rem;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.3s ease-out;
}

.loyalty-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.loyalty-tier-badge {
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--botanical-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.loyalty-discount-percent {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary-pink);
  background: hsla(336, 85%, 55%, 0.08);
  padding: 0.15rem 0.6rem;
  border-radius: 8px;
}

.loyalty-progress-track {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(102, 102, 102, 0.15);
  border-radius: 10px;
  margin: 1.2rem 0;
}

.loyalty-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--rose-gold) 0%, var(--primary-pink) 100%);
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.loyalty-checkpoint {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--bg-warm-light);
  border: 2px solid rgba(102, 102, 102, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2;
}

.loyalty-checkpoint::after {
  content: attr(data-tier);
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.loyalty-checkpoint.active {
  border-color: var(--primary-pink);
  background: var(--primary-pink);
  box-shadow: 0 0 8px var(--primary-pink-glow);
}

.loyalty-checkpoint.active::after {
  color: var(--primary-pink);
}

.cp-bronze { left: 33.33%; }
.cp-silver { left: 66.66%; }
.cp-gold { left: 100%; }

.loyalty-motivator-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  margin-top: 1.4rem;
}

/* Tablet and mobile overrides for bundles card */
@media (max-width: 768px) {
  .bundles-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .bundles-container {
    padding: 2rem 1.2rem;
  }
  .bundles-title h3 {
    font-size: 1.6rem;
  }
}


