/* ==========================================================================
   EXACT SPEC DESIGN SYSTEM & TOKENS
   ========================================================================== */
:root {
  /* Colors */
  --bg-dark-base: #070707;
  --bg-dark-highlight: #0d0d0d;
  --bg-white-base: #ffffff;
  --accent-red: #e50914;
  --accent-red-hover: #b80710;
  --accent-orange-red: #ff3d00;
  --accent-yellow-gold: #ffc107;
  --whatsapp-green: #25d366;
  --whatsapp-green-hover: #1ebd55;
  --text-white: #ffffff;
  --text-black: #000000;
  --text-muted-gray: #a0a0a0;
  
  /* Fonts */
  --font-sans: 'Poppins', 'Inter', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --font-extenda: 'Extenda 30 Deca', 'Bebas Neue', Impact, sans-serif;
  --font-anton: 'Anton', sans-serif;
  --font-canva-sans: 'Canva Sans', 'Poppins', sans-serif;
  --font-gotham: 'Gotham', 'Montserrat', sans-serif;
  --font-mont: 'Mont', 'Montserrat', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-cooper-hewitt: 'Cooper Hewitt', 'Poppins', sans-serif;
  --font-amsterdam: 'Amsterdam Two', 'Alex Brush', cursive;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-gatwick: 'Gatwick', 'Syne', sans-serif;
  
  /* Transition Constants */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
  
  /* Borders and Shadow Gradients */
  --glass-border: rgba(255, 255, 255, 0.05);
  --shadow-dark-section: 0 15px 35px rgba(0, 0, 0, 0.9);
  --shadow-light-card: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-dark-base);
  color: var(--text-white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  line-height: 1.5;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark-base);
}
::-webkit-scrollbar-thumb {
  background: #252525;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

.section-dark {
  background-color: var(--bg-dark-base);
  background-image: url('assets/hero_bg.webp');
  background-repeat: repeat;
  background-size: auto; /* Allow the pattern to tile naturally at its original size */
  background-position: center;
  color: var(--text-white);
  padding: 55px 20px;
  position: relative;
}

.section-white {
  background-color: var(--bg-white-base);
  color: var(--text-black);
  padding: 55px 20px;
  position: relative;
}

/* Helper Utilities */
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-red { color: var(--accent-red); }
.text-white { color: var(--text-white); }
.text-black { color: var(--text-black); }
.font-serif { font-family: var(--font-serif); }
.italic { font-style: italic; }

/* Image Fallbacks styling */
.image-fallback {
  background-color: #1a1a1a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Global Button Designs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.85rem;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--accent-red);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
  border-radius: 4px;
}
.btn-primary:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  font-size: 1rem;
  padding: 12px 35px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.diamond-icon {
  margin: 0 8px;
  color: var(--text-white);
  font-size: 0.8rem;
}

/* ==========================================================================
   1. STICKY TOP BANNER
   ========================================================================== */
.top-banner {
  background-color: var(--accent-red);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.top-banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.banner-text {
  color: var(--text-white);
}

.countdown-timer {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  font-weight: 900;
}

.timer-unit {
  background: var(--text-white);
  color: var(--accent-red);
  padding: 2px 5px;
  border-radius: 2px;
  min-width: 25px;
  text-align: center;
  font-size: 0.85rem;
  display: inline-block;
}

/* ==========================================================================
   SECTION 1: HERO HEADER & VIDEO
   ========================================================================== */
.hero-header-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 200px; /* Reduced from 240px to tighten space above video */
}

.logo-container {
  margin-bottom: 12px; /* Reduced from 25px */
  text-align: center;
}

.salon-logo-hero {
  height: 75px; /* Scaled down from 90px */
  width: auto;
  margin-bottom: 5px; /* Reduced from 20px */
}

.hero-titles {
  max-width: 800px;
  margin-bottom: 20px; /* Reduced from 35px */
  text-align: center;
}

.hero-titles .sub-heading-top {
  font-family: var(--font-anton);
  font-size: 1.2rem;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.hero-titles .main-heading-red {
  font-family: var(--font-anton);
  font-size: 4.8rem;
  letter-spacing: 1px;
  color: var(--accent-red);
  line-height: 0.95;
  margin: 2px 0; /* Reduced from 5px */
}

.hero-titles .sub-heading-bottom {
  font-family: var(--font-anton);
  font-size: 2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.cursive-now {
  font-family: var(--font-amsterdam);
  font-size: 2.2rem; /* Adjusted for handwritten display size */
  color: var(--text-white);
  margin: 2px 0; /* Reduced from 5px */
}

.hero-titles .location-title {
  font-family: var(--font-canva-sans);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-top: 2px; /* Reduced from 5px */
}

.salon-subtag {
  font-family: var(--font-canva-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-muted-gray);
  margin-top: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Centered Video Player with Red Border */
.video-container {
  width: 90%;
  max-width: 600px;
  background: var(--text-black);
  border: 10px solid var(--accent-red);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  aspect-ratio: 16 / 10;
  box-shadow: none; /* Removed heavy shadow overlaying the text */
  z-index: 10;
  overflow: hidden; /* Prevent video controls from coming out of the box */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
  background: rgba(0,0,0,0.6);
  cursor: pointer;
}

.video-play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  color: var(--text-white);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}
.video-overlay:hover .video-play-btn {
  transform: scale(1.15);
  color: var(--accent-red);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 15px;
  font-size: 0.75rem;
  color: var(--text-muted-gray);
  font-weight: 700;
}

.video-visual-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text-black);
  z-index: -1;
}

#promo-video-yt {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border: none;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: 20;
}
.video-container:hover .video-controls,
.video-container.playing .video-controls {
  transform: translateY(0);
}

.control-btn {
  background: transparent;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.control-btn:hover {
  color: var(--accent-red);
}

.progress-bar-container {
  flex-grow: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  width: 1%;
  background: var(--accent-red);
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
}

/* ==========================================================================
   SECTION 2: STAR MAKEOVER & OFFERS
   ========================================================================== */
.hero-poster-section {
  padding-top: 240px; /* Leaves space for overlapping video container centered precisely */
  padding-bottom: 40px; /* Reduced from 80px to decrease empty bottom space */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.poster-meta-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  font-family: var(--font-poppins);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-black);
  margin-bottom: 25px;
  padding: 0 10px;
}

.poster-image-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4 / 3;
  margin-bottom: 35px;
  background-color: var(--bg-white-base);
}

.poster-watermark {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  width: fit-content;
  text-align: left;
}

.watermark-line {
  font-family: var(--font-extenda);
  font-size: clamp(4rem, 22vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: 1px;
  color: #d94125; /* Exact red color from design */
  text-transform: uppercase;
}

.hero-portrait-cutout {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 100%;
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 2;
  /* Visual SVG fallback silhouette */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c4271b' opacity='0.08'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z'/%3E%3C/svg%3E");
}

.exclusive-badge {
  position: absolute;
  bottom: 25px;
  left: 20px;
  width: 90px;
  height: 90px;
  background-color: #1e1e1e;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-white);
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.badge-border-dashed {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1.5px dashed var(--text-white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: rotate-badge 20s linear infinite; /* Smooth rotating dashed border! */
  transform-origin: center center;
}

.badge-curved-text-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  pointer-events: none;
  z-index: 1;
}

.badge-curved-text {
  font-family: var(--font-poppins);
  font-size: 8.5px;
  font-weight: 800;
  fill: var(--text-white);
  letter-spacing: 2.2px; /* Spaces characters evenly around circle */
  text-transform: uppercase;
}

.exclusive-badge .badge-percent {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-red);
  line-height: 1;
  margin: 0;
  z-index: 3; /* Rendered on top of rotating text path */
}

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

/* Horizontal Service Banner */
.scrolling-ticker {
  align-self: stretch; /* Stretch to fill parent's width in flexbox */
  margin-left: -20px;
  margin-right: -20px;
  background-color: var(--accent-red);
  color: var(--text-white);
  padding: 10px 0;
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-bottom: 50px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap; /* Keep content on a single line */
}

.ticker-content {
  display: block;
}

/* Irresistible Offers Block */
.offers-container {
  width: 100%;
  max-width: 600px;
  margin-bottom: 0; /* Remove bottom margin since it is at the end of the section */
}

.offers-header-text {
  font-family: var(--font-poppins);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-black);
}

.offers-header-red {
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--accent-red);
  margin-top: -3px;
  margin-bottom: 25px;
}

.offer-white-card {
  border: 2px solid var(--accent-red);
  background: var(--bg-white-base);
  padding: 30px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  text-align: center;
}

.offer-white-card.border-thick {
  border-width: 3px;
}

.offer-card-tag {
  font-family: var(--font-poppins);
  color: var(--text-muted-gray);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.offer-card-tag.font-dark {
  color: var(--text-black);
}

.offer-card-headline {
  font-family: var(--font-poppins);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-black);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.offer-card-headline.text-red-headline {
  color: var(--accent-red);
}

.countdown-bar-red {
  font-family: var(--font-poppins);
  background-color: var(--accent-red);
  color: var(--text-white);
  padding: 10px 15px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.countdown-bar-red .timer-unit {
  background: var(--text-white);
  color: var(--accent-red);
}

.limited-time-text {
  font-family: var(--font-poppins);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--accent-red);
}

/* ==========================================================================
   SECTION 3: SERVICES LIST (DARK TEXTURED BG)
   ========================================================================== */
.services-list-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-header-logo {
  width: 100%;
  max-width: 600px;
  text-align: left;
  margin-bottom: 30px;
}

.salon-logo-sm {
  height: 38px;
  width: auto;
  margin-bottom: 10px;
}

.services-vertical-list {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-card-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.service-card-title {
  font-family: var(--font-gotham);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  white-space: nowrap;
}

.title-red-line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--accent-red);
}

.service-card-box {
  width: 100%;
  height: 200px;
  background-color: var(--accent-red);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 1; /* Establishes stacking context for children */
}

.service-card-box::after {
  content: '';
  position: absolute;
  bottom: -3px; /* Center the thin glow bar on the bottom edge of the card */
  left: 50%;
  transform: translateX(-50%);
  width: 85%; /* Slightly narrower than the card so the ends taper off horizontally */
  height: 6px; /* Thin glow line core */
  background-color: #dfffa6; /* Ultra-bright core color */
  border-radius: 50%; /* Tapers the left and right ends into an elliptical profile */
  box-shadow: 
    0 0 8px rgba(0, 255, 170, 0.95),  /* High intensity inner glow */
    0 0 20px rgba(0, 255, 170, 0.85), /* Medium radius glow */
    0 0 35px rgba(0, 255, 170, 0.65), /* Large ambient glow bleeding up/down */
    0 0 50px rgba(0, 255, 170, 0.35); /* Soft ambient lighting glow */
  pointer-events: none;
  z-index: 2; /* Stacks on top of card background, behind model cutout (z-index: 5) */
  opacity: 0.95;
}

.card-bg-watermark {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.08);
  font-family: var(--font-sans);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 1px;
}

/* Inset faded photo panels */
.model-cutout {
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 180px;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  border-radius: 6px;
}

/* Alternating cutout positions & control placements */
.haircut-model, .facial-model, .skin-model {
  right: 10px;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

.spa-model, .grooming-model {
  left: 10px;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

.card-controls-row {
  position: absolute;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

/* Even rows control align right, Odd rows control align left */
.service-card-item:nth-child(odd) .card-controls-row {
  left: 35px;
}

.service-card-item:nth-child(even) .card-controls-row {
  right: 35px;
  flex-direction: row-reverse;
}

/* Black pill buttons */
.btn-pill-black {
  background-color: var(--text-black);
  color: var(--text-white);
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 0.75rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 1px;
}
.btn-pill-black:hover {
  background-color: var(--text-white);
  color: var(--accent-red);
}

.pill-badge-black {
  background-color: var(--text-black);
  color: var(--text-white);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-block;
}

.pill-badge-black.red-glow {
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.6);
}

.text-yellow-glow {
  color: var(--accent-yellow-gold);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

/* ==========================================================================
   SECTION 4: TRANSITION BANNERS, PHONE CTA & LEGACY
   ========================================================================== */
.transition-legacy-section {
  padding-top: 40px;
  padding-bottom: 0;
  overflow: hidden; /* Clips any overflowing image background at the bottom boundary */
}

/* Override horizontal banners heights & overlays */
.scrolling-ticker.red-banner {
  background-color: var(--accent-red);
  margin-bottom: 0px;
  z-index: 5;
}

.scrolling-ticker.black-banner {
  background-color: var(--text-black);
  margin-bottom: 50px;
  z-index: 4;
}

/* Phone CTA wrapper */
.phone-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 80px;
}

.phone-cta-title {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.phone-cta-subtitle {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-muted-gray);
  margin-bottom: 20px;
}

.phone-button-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.star-deco {
  font-size: 1.2rem;
  color: var(--text-white);
}

.phone-pill-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--text-white);
  color: var(--text-black);
  border-radius: 50px;
  padding: 12px 35px;
  font-size: 1.4rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255,255,255,0.15);
  transition: var(--transition-smooth);
}
.phone-pill-button:hover {
  background-color: var(--accent-red);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(229,9,20,0.4);
}

.circle-arrow-icon {
  background-color: var(--accent-red);
  color: var(--text-white);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.phone-pill-button:hover .circle-arrow-icon {
  background-color: var(--text-white);
  color: var(--accent-red);
}

/* Legacy Section layout */
.legacy-grid-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.legacy-left-img {
  width: 100%;
}

.legacy-action-portrait {
  width: 125%; /* Expand horizontally to overlap center grid line */
  aspect-ratio: 1024 / 864; /* Maintain exact image aspect ratio */
  height: auto;
  border-radius: 4px;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  margin-top: -30px; /* Pull it up directly to touch the button without overlapping */
  position: relative;
  z-index: 2;
  align-self: end; /* Align to the bottom of the grid row */
}

.legacy-right-text {
  display: flex;
  flex-direction: column;
  text-align: right;
  padding-bottom: 50px; /* Add breathing space below the text */
}

.legacy-title-outline {
  font-family: var(--font-cooper-hewitt);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  /* Text stroke outline styling */
  color: transparent;
  -webkit-text-stroke: 1.2px var(--text-white);
  letter-spacing: 1px;
}

.legacy-paragraph {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-white);
  font-weight: 600;
}

/* ==========================================================================
   SECTION 5: WHAT OUR CLIENTS SAY
   ========================================================================== */
.testimonials-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-main-title {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.title-red {
  color: var(--accent-red);
}

.testimonials-list-layout {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-bottom: 45px;
}

.testimonial-row-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-comment {
  font-family: var(--font-gotham);
  font-size: 1rem;
  color: var(--text-black);
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: center;
}

.review-stars {
  color: var(--accent-yellow-gold);
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-align: center;
}

.review-stars.font-right {
  text-align: center;
}

.author-banner-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.banner-normal {
  flex-direction: row;
}

.banner-reverse {
  flex-direction: row;
}

.author-gradient-banner {
  flex-grow: 1;
  padding: 14px 28px;
  border-radius: 4px;
  color: var(--text-white);
}

.banner-normal .author-gradient-banner {
  background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-orange-red) 55%, transparent 100%);
  text-align: left;
}

.banner-reverse .author-gradient-banner {
  background: linear-gradient(270deg, var(--accent-red) 0%, var(--accent-orange-red) 55%, transparent 100%);
  text-align: right;
}

.author-name-text {
  font-family: var(--font-gatwick);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.author-status-text {
  font-family: var(--font-gotham);
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.author-avatar-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--accent-red);
  flex-shrink: 0;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.banner-normal .author-avatar-circle {
  margin-left: -40px;
}

.banner-reverse .author-avatar-circle {
  margin-right: -40px;
}

/* Testimonial Summary box */
.verified-rating-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 35px;
  width: 100%;
}

.rating-row-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.verified-stars {
  color: var(--accent-yellow-gold);
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.rating-value-bold {
  font-family: var(--font-gotham);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-black);
}

.rating-sub-text {
  font-family: var(--font-gotham);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--text-black);
  letter-spacing: 1px;
}

.rating-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-black);
}

.rating-sub {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-black);
}

/* ==========================================================================
   SECTION 6: BOOK YOUR CELEBRITY LOOK (DARK TEXTURED BG)
   ========================================================================== */
.lookbook-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 30px; /* Reduced from 80px */
}

.lookbook-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
}

.text-red-title {
  color: var(--accent-red);
}

.lookbook-subtitle {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-white);
  margin-bottom: 45px;
}

.vertical-grid-container {
  width: 100%;
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px; /* Reduced from 50px */
}

.grid-vertical-item {
  aspect-ratio: 2 / 3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.vertical-photo {
  width: 100%;
  height: 100%;
}

.whatsapp-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.miss-out-text {
  font-family: var(--font-mont);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}

.down-arrow-icon {
  color: var(--accent-red);
  margin: 5px 0 10px 0; /* Reduced from 10px 0 20px 0 */
  animation: bounce 1.5s infinite;
}

/* ==========================================================================
   SECTION 7: WHY CHOOSE US (DARK TEXTURED BG)
   ========================================================================== */
.why-choose-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 40px; /* Reduced from 80px */
  padding-bottom: 0; /* Image touches the bottom boundary */
  position: relative;
  z-index: 15;
  overflow: hidden; /* Clips bottom boundary cleanly */
}

.why-choose-title {
  font-family: var(--font-cooper-hewitt);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
}

.text-italic-red {
  color: var(--accent-red);
  font-style: italic;
}

.why-choose-pills-list {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px; /* Reduced from 60px to decrease vertical gap */
}

.choose-pill-badge {
  background-color: var(--accent-red);
  border-radius: 50px;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.25);
  transition: var(--transition-smooth);
}
.choose-pill-badge:hover {
  transform: scale(1.03);
}

.pill-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.pill-text-col {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.pill-bold-header {
  font-family: var(--font-poppins);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.pill-sub-header {
  font-family: var(--font-cooper-hewitt);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-top: 2px;
}

.stylist-portrait-wrap {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1024 / 864; /* Matches image dimensions exactly */
  position: relative;
  margin-top: -40px; /* Pull stylist closer to the pills, removing empty space */
  margin-bottom: 0; /* Keep inside the section */
  z-index: 10;
}

.stylist-cutout-img {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}

/* ==========================================================================
   SECTION 8: FINAL TRANSFORMATION & LOCATION (WHITE BG)
   ========================================================================== */
.transformation-location-section {
  padding-top: 25px !important; /* Tightened gap above the heading */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trans-title-black {
  font-family: var(--font-cooper-hewitt);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  font-style: italic;
  margin-top: 0 !important; /* Remove browser default top margin */
}

.trans-title-red {
  font-family: var(--font-cooper-hewitt);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--accent-red);
  font-style: italic;
  margin-top: -3px;
  margin-bottom: 30px;
}

.book-slot-btn-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 60px;
}

.star-deco-dark {
  font-size: 1.2rem;
  color: var(--text-black);
}

/* Location Card with Thin Black Border */
.location-black-card {
  width: 100%;
  max-width: 500px;
  border: 1px solid var(--text-black);
  background: var(--bg-white-base);
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 25px;
  box-shadow: var(--shadow-light-card);
}

.location-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
}

.tilted-container {
  display: flex;
  gap: 10px;
}

.tilted-badge {
  font-weight: 900;
  font-size: 1rem;
  color: var(--text-white);
  padding: 6px 14px;
}

.tilted-red {
  background-color: var(--accent-red);
  transform: rotate(-6deg);
}

.tilted-black {
  background-color: var(--text-black);
  transform: rotate(3deg);
}

.megaphone-icon {
  color: var(--text-black);
}



.map-graphic-box {
  width: 100%;
  height: 450px; /* Exact height for Google's native rating card overlay */
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}

.map-graphic-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.maps-static-img {
  width: 100%;
  height: 100%;
  background-color: #f0ebe4;
}

.map-huge-pin-wrapper {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.huge-pin-body {
  width: 25px;
  height: 25px;
  background-color: var(--accent-red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid var(--text-white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.huge-pin-shadow {
  width: 12px;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  margin-top: 8px;
  margin-left: 6px;
}

.our-location-red-circle {
  position: absolute;
  top: 55%;
  left: 41%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent-red);
  color: var(--text-white);
  font-size: 0.55rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(229, 9, 20, 0.4);
  z-index: 6;
  line-height: 1.1;
}

.location-address-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 15px 0 15px;
}

.dotted-pointer-line {
  opacity: 0.8;
}

.address-pill-container {
  background: var(--bg-white-base);
  border: 2.5px solid var(--accent-red);
  border-radius: 50px;
  padding: 12px 20px;
  color: var(--text-black);
  font-family: 'Canva Sans', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  line-height: 1.5;
  text-align: center;
  max-width: 75%;
}

/* ==========================================================================
   SECTION 9: FOOTER (RED BG)
   ========================================================================== */
.main-footer-red {
  background-color: var(--accent-red);
  padding: 50px 20px 0 20px;
  text-align: center;
  position: relative;
}

.footer-logo-white {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}

.salon-logo-footer {
  height: 48px;
  width: auto;
  margin: 0 auto 15px auto;
  display: block;
}

.skyline-graphic-dark {
  width: 100%;
  height: 50px;
  overflow: hidden;
  opacity: 0.9;
  position: relative;
}

.skyline-track {
  display: flex;
  width: 200%;
  height: 100%;
  animation: scrollSkyline 35s linear infinite; /* Smooth infinite scrolling loop */
}

.skyline-track svg {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
}

@keyframes scrollSkyline {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ==========================================================================
   MODAL BOOKING WINDOW
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center; /* Centers card vertically */
  overflow-y: auto;        /* Allows scrolling when card height exceeds viewport */
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  padding: 20px;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-dark-highlight);
  border: 1px solid var(--accent-red);
  border-radius: 8px;
  padding: 40px 30px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 10px 40px rgba(229, 9, 20, 0.25);
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-smooth);
  color: var(--text-white);
  margin: auto; /* Centers card both vertically and horizontally, respecting scroll height */
}
.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--text-muted-gray);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}
.modal-close-btn:hover {
  color: var(--accent-red);
}

.modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-red);
}

.modal-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted-gray);
  letter-spacing: 1px;
  margin-top: 5px;
  text-transform: uppercase;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-white);
}

.form-group input,
.form-group select {
  background: var(--bg-dark-base);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-white);
  padding: 10px 14px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  transition: var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent-red);
}

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

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 768px) {
  .section-dark, .section-white {
    padding: 40px 15px !important;
  }
  .hero-header-section {
    padding-bottom: 160px; /* Reduces blank blank space above video on tablet */
  }
  .hero-poster-section {
    padding-top: 180px; /* Reduces blank space under the video container but keeps a clean gap */
  }
  .hero-titles .main-heading-red { font-size: 3.5rem; }
  .hero-titles .sub-heading-bottom { font-size: 1.4rem; }
  .hero-titles .location-title { font-size: 1.6rem; }
  
  .legacy-grid-section {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .legacy-right-text {
    text-align: center;
    align-items: center;
  }
  .legacy-title-outline {
    text-align: center;
    font-size: 1.8rem;
  }
  .legacy-paragraph {
    text-align: center;
  }
  .phone-cta-container {
    margin-bottom: 25px; /* Pull elements together on mobile */
  }
  .legacy-action-portrait {
    width: 100%;
    aspect-ratio: 1024 / 864;
    height: auto;
    margin-top: -30px; /* Pull stylist's head closer to the phone button CTA */
    background-position: center bottom;
    align-self: end;
  }
  .map-graphic-box {
    height: 400px; /* Taller on mobile for better touch usability and native info card */
  }
  .testimonials-main-title {
    margin-top: 0 !important;
    margin-bottom: 25px !important;
  }
  .testimonials-list-layout {
    gap: 25px !important;
    margin-bottom: 25px !important;
  }
  .verified-rating-box {
    margin-top: 20px !important;
  }
  .lookbook-section {
    padding-bottom: 20px !important;
  }
  .why-choose-section {
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .why-choose-title {
    margin-top: 0 !important;
    margin-bottom: 25px !important;
  }
  .stylist-portrait-wrap {
    margin-top: -20px !important;
  }
  .transformation-location-section {
    padding-top: 20px !important;
  }
  .trans-title-black {
    margin-top: 0 !important;
  }
}

@media (max-width: 540px) {
  .hero-header-section {
    padding-top: 30px !important;
    padding-bottom: 110px !important; /* Reduces vertical blank black space above video on mobile */
  }
  .logo-container {
    margin-bottom: 15px !important;
  }
  .salon-logo-hero {
    height: 55px !important;
    margin-bottom: 0 !important;
  }
  .hero-titles {
    margin-bottom: 25px !important;
  }
  .hero-titles .sub-heading-top {
    font-size: 1rem !important;
    letter-spacing: 4px !important;
  }
  .hero-titles .main-heading-red {
    font-size: 2.8rem !important;
    margin: 2px 0 !important;
  }
  .hero-titles .sub-heading-bottom {
    font-size: 1.1rem !important;
    letter-spacing: 2px !important;
  }
  .cursive-now {
    font-size: 1.6rem !important;
    margin: 0 !important;
  }
  .hero-titles .location-title {
    font-size: 1.3rem !important;
    letter-spacing: 2px !important;
    margin: 0 !important;
  }
  .salon-subtag {
    font-size: 0.65rem !important;
    letter-spacing: 2px !important;
    margin-top: 0 !important;
  }
  .hero-poster-section {
    padding-top: 160px !important; /* Reduces vertical blank space under video on mobile but keeps a clean gap */
  }
  .scrolling-ticker {
    font-size: 0.62rem;
    letter-spacing: 2px;
  }
  .exclusive-badge {
    width: 72px !important;
    height: 72px !important;
    bottom: 15px !important;
    left: 15px !important;
  }
  .exclusive-badge .badge-percent {
    font-size: 1.4rem !important;
  }
  .poster-meta-row {
    flex-direction: row !important;
    justify-content: space-between !important;
    font-size: 0.58rem !important;
    letter-spacing: 1px !important;
  }
  
  .poster-watermark {
    font-size: 3.2rem;
  }
  
  .offer-card-headline {
    font-size: 1.2rem;
  }
  
  .countdown-bar-red {
    font-size: 0.65rem !important;
    padding: 8px 8px !important;
    gap: 4px !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
  }
  
  .service-card-box {
    height: 180px;
  }
  .card-bg-watermark {
    font-size: 3.8rem;
  }
  .model-cutout {
    width: 160px;
    height: 160px;
    top: 10px;
    bottom: 10px;
  }
  .haircut-model, .facial-model, .skin-model {
    right: 10px;
  }
  .spa-model, .grooming-model {
    left: 10px;
  }
  
  .service-card-item:nth-child(odd) .card-controls-row {
    left: 20px;
  }
  .service-card-item:nth-child(even) .card-controls-row {
    right: 20px;
  }
  
  .phone-pill-button {
    font-size: 1.1rem;
    padding: 10px 25px;
  }
  
  .choose-pill-badge {
    padding: 8px 18px;
  }
  
  .location-address-row {
    flex-direction: column;
    gap: 15px;
  }
  .dotted-pointer-line {
    display: none;
  }
  .address-pill-container {
    max-width: 90%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  .top-banner-content {
    font-size: 0.72rem !important;
    gap: 6px !important;
    letter-spacing: 1px !important;
  }
  .timer-unit {
    font-size: 0.72rem !important;
    padding: 1px 4px !important;
    min-width: 20px !important;
  }
}

/* Scroll reveal classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.animate-fade-in {
  animation: fadeIn 1.2s ease-out forwards;
}
.animate-slide-up {
  animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes videoFadeInUp {
  from { opacity: 0; transform: translate(-50%, calc(50% + 20px)); }
  to { opacity: 1; transform: translate(-50%, 50%); }
}

.animate-video-slide {
  animation: videoFadeInUp 1.2s ease-out forwards;
}
