/* ============================================================
   MALABAR GLOW – PREMIUM SALON WEBSITE STYLESHEET
   Design: Soft Pink / Beige / White / Gold accents
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --pink-light: #fce4ec;
  --pink-mid: #f48fb1;
  --pink-deep: #e91e8c;
  --pink-soft: #f8d4e4;
  --gold: #c9a84c;
  --gold-light: #f5e6c8;
  --gold-bright: #e4b94b;
  --beige: #fdf6f0;
  --beige-dark: #f0e6da;
  --cream: #fffaf7;
  --white: #ffffff;
  --text-dark: #1a1010;
  --text-mid: #4a3535;
  --text-light: #8b6e6e;
  --text-muted: #b39898;
  --border: rgba(201, 168, 76, 0.2);
  --shadow-sm: 0 4px 20px rgba(233, 30, 140, 0.08);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-sans);
}

/* ---- Utility Classes ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}

.section-pad {
  padding: 96px 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-deep), #c2185b);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(233, 30, 140, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--pink-deep);
  border-color: var(--pink-deep);
}

.btn-outline:hover {
  background: var(--pink-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0 24px;
}

.navbar.scrolled {
  background: rgba(255, 250, 247, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}

.navbar.scrolled .nav-logo {
  color: var(--text-dark);
}

.logo-icon {
  color: var(--gold-bright);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--text-mid);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.navbar.scrolled .nav-links a:hover {
  background: var(--pink-light);
  color: var(--pink-deep);
}

.nav-cta {
  display: inline-flex;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--pink-deep), #c2185b);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.3);
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(30, 10, 20, 0.72) 0%,
      rgba(10, 5, 15, 0.55) 50%,
      rgba(100, 20, 60, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 120px 24px 80px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

/* Hero top row – eyebrow + Open Now badge */
.hero-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 400;
  margin-bottom: 0;
}

/* Open Now badge */
.open-now-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px 5px 10px;
  background: rgba(52, 211, 153, 0.18);
  border: 1.5px solid rgba(52, 211, 153, 0.55);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6ee7b7;
  backdrop-filter: blur(6px);
}

.open-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
  animation: dotPulse 1.8s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(52, 211, 153, 0);
  }
}

/* Closed State for Hero Badge */
.open-now-badge.closed {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.55);
  color: #fca5a5;
}

.open-now-badge.closed .open-dot {
  background: #ef4444;
  animation: none;
}

/* Google Review floating card */
.hero-google-card {
  position: absolute;
  bottom: 40px;
  left: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: fadeUp 1.2s ease both;
  cursor: default;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-google-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.google-card-logo {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.google-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-card-rating {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.google-stars {
  font-size: 0.8rem;
  color: #fbbc05;
  letter-spacing: 1px;
}

.google-card-count {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-title em {
  font-style: italic;
  color: var(--pink-mid);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero-services {
  font-size: 0.9rem;
  color: var(--gold-bright);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  min-width: 180px;
}

/* WhatsApp float in hero */
.whatsapp-float {
  position: absolute;
  bottom: 40px;
  right: 30px;
  z-index: 10;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow:
      0 8px 36px rgba(37, 211, 102, 0.8),
      0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: linear-gradient(135deg, var(--pink-deep), #ad1457);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.4);
}

.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-text {
  padding-right: 24px;
}

.about-text .section-label {
  margin-bottom: 8px;
}

.about-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--pink-deep);
  line-height: 1;
  margin-bottom: 4px;
}

.plus {
  font-size: 1.4rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

.about-highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--pink-light);
  color: var(--pink-deep);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--beige);
}

.services-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border: 1px solid var(--pink-light);
  border-radius: 50px;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.tab-btn:hover {
  background: var(--pink-light);
  color: var(--pink-deep);
}

.tab-btn.active {
  background: var(--pink-deep);
  color: white;
  border-color: var(--pink-deep);
  box-shadow: 0 8px 16px rgba(173, 20, 87, 0.2);
}

/* Filtering Animations */
.service-card {
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.service-card.hidden {
  display: none;
}

.service-card.show {
  display: block;
  animation: revealService 0.5s ease forwards;
}

@keyframes revealService {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    visibility 0.4s ease,
    box-shadow 0.3s ease;
  position: relative;
}

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

.service-icon-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 40%,
      rgba(0, 0, 0, 0.4) 100%);
}

.service-body {
  padding: 20px 24px 24px;
  position: relative;
}

.service-icon-badge {
  position: absolute;
  top: -22px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--pink-deep), #c2185b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(233, 30, 140, 0.35);
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  padding-right: 48px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-light);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================================
   OFFERS
   ============================================================ */
.offers {
  background: var(--cream);
}

.offers-grid {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 4px 40px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  scroll-snap-type: x mandatory;
  scroll-padding: 0 20px;
}

.offers-grid::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.offer-card {
  flex: 0 0 80%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.3);
  scroll-snap-align: center;
}

.offer-card--bridal {
  border-top: 5px solid var(--pink-deep);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 240, 245, 0.8));
}

.offer-card--glow {
  border-top: 5px solid var(--gold);
}

.offer-card--firsttime {
  border-top: 5px solid #4285f4;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  .offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    padding: 20px 0;
  }

  .offer-card {
    flex: none;
    scroll-snap-align: none;
  }

  .offer-indicators {
    display: none;
  }
}

.offer-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink-light);
  transition: var(--transition);
  cursor: pointer;
}

.indicator-dot.active {
  background: var(--pink-deep);
  width: 24px;
  border-radius: 10px;
}

.offer-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
}

.offer-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--pink-deep);
  margin-bottom: 20px;
}

.offer-card--bridal .offer-icon {
  background: var(--gold-light);
  color: var(--gold);
}

.offer-card--firsttime .offer-icon {
  background: #e8f5e9;
  color: #2e7d32;
}

.offer-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.offer-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}

.offer-price .original {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.offer-price .discounted {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pink-deep);
}

.offer-price .promo-big {
  font-size: 1.8rem;
  color: #2e7d32;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.offer-list li i {
  color: var(--pink-deep);
  font-size: 0.8rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--text-dark);
}

.gallery .section-label {
  color: var(--gold);
}

.gallery .section-title {
  color: var(--white);
}

.gallery .section-title em {
  color: var(--pink-mid);
}

/* ============================================================
   COMPARISON SLIDER & GALLERY LAYOUT
   ============================================================ */
/* ============================================================
   COMPARISON SLIDER & GALLERY LAYOUT (CENTERED)
   ============================================================ */
.slider-centered-outer {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-slider-wrap {
  position: relative;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  user-select: none;
  background: var(--beige-dark);
}

.comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.comparison-slider img.fade-out {
  opacity: 0;
}

.img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
  /* initial value */
}

.img-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Labels */
.label {
  position: absolute;
  bottom: 20px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.label-after {
  right: 20px;
  z-index: 1;
}

.label-before {
  left: 20px;
  z-index: 3;
}

/* Handle styling */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  z-index: 4;
  pointer-events: none;
  transform: translateX(-50%);
}

.handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
}

/* The actual input range overlay */
.slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

/* Navigation Controls */
.slider-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.slider-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--pink-light);
  background: var(--white);
  color: var(--pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.slider-nav-btn:hover {
  background: var(--pink-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.slider-counter {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  letter-spacing: 1px;
}

.comparison-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  font-family: var(--font-sans);
}

/* ============================================================
   REVIEWS – INFINITE SCROLL CAROUSEL
   ============================================================ */
.reviews {
  background: var(--beige);
  overflow: hidden;
}

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.rating-stars {
  font-size: 1.4rem;
  color: var(--gold-bright);
  letter-spacing: 2px;
}

.rating-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* Carousel wrapper – edge fades */
.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 16px 0 48px;
  /* soft fade on both edges */
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
}

/* The scrolling track */
.reviews-carousel {
  display: flex;
  gap: 24px;
  width: max-content;
  /* grow to fit all cards side-by-side */
  animation: reviewsScroll 38s linear infinite;
}

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

@keyframes reviewsScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

  /* scroll exactly one full set (50% = original half) */
}

/* Individual cards */
.review-card {
  flex: 0 0 340px;
  /* fixed width, no shrink */
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: default;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--pink-light);
  line-height: 1;
  pointer-events: none;
}

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

.review-stars {
  font-size: 1rem;
  color: var(--gold-bright);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-deep), #c2185b);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

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

/* Responsive: slightly narrower cards on mobile */
@media (max-width: 600px) {
  .review-card {
    flex: 0 0 280px;
    padding: 20px;
  }

  .reviews-carousel {
    gap: 16px;
    animation-duration: 28s;
  }
}

/* ============================================================
   APPOINTMENT
   ============================================================ */
.appointment {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--cream) 60%);
}

.appt-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.appt-text .section-title {
  margin-bottom: 12px;
}

.appt-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.appt-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
}

.perk i {
  color: var(--pink-deep);
  font-size: 1.1rem;
}

.appt-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.appt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--pink-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dark);
  margin-top: 4px;
}

@media (min-width: 1400px) {

  .form-note,
  .hero-services,
  .offer-desc,
  .offer-list {
    font-size: 1rem;
  }

  .comparison-note {
    font-size: 1.2rem;
  }

  .section-sub {
    font-size: 1.2rem;
  }

  .section-label {
    font-size: 18px;
  }
}

.error-msg {
  display: block;
  font-size: 0.825rem;
  color: #ef4444;
  /* red */
  margin-top: 4px;
  font-weight: 500;
  display: none;
}

.input-error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}

.input-error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.loc-icon {
  width: 44px;
  height: 44px;
  background: var(--pink-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.loc-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.loc-item p,
.loc-item a {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.loc-item a {
  transition: var(--transition);
}

.loc-item a:hover {
  color: var(--pink-deep);
}

.open-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.open-badge.closed {
  background: #fee2e2;
  color: #b91c1c;
}

.loc-social {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}

.loc-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-mid);
  transition: var(--transition);
}

.loc-social a:hover {
  background: var(--pink-deep);
  color: white;
  transform: scale(1.1);
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-top {
  background: var(--text-dark);
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--pink-deep);
  color: white;
  transform: translateY(-2px);
}

.footer-links-col h5,
.footer-contact-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-links-col a:hover {
  color: var(--pink-mid);
  padding-left: 4px;
}

.footer-contact-col p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-col i {
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-col a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-contact-col a:hover {
  color: var(--pink-mid);
}

.footer-bottom {
  background: #0d0808;
  padding: 18px 0;
}

.footer-bottom p {
  text-align: center;
  color: var(--beige);
}

/* ============================================================
   FLOATING WHATSAPP (fixed, mobile/desktop)
   ============================================================ */
.whatsapp-float-fixed {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  animation: floatPulse 3s ease-in-out infinite;
  transition: var(--transition);
}

.whatsapp-float-fixed i {
  font-size: 1.4rem;
}

.whatsapp-float-fixed:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

@keyframes floatPulse {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* ============================================================
   RESPONSIVE – TABLET (≤900px)
   ============================================================ */
@media (max-width: 960px) {
  .section-pad {
    padding: 72px 0;
  }

  /* Nav */
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 250, 247, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    transform: translateY(-150%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    color: var(--text-mid) !important;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav-links a:hover {
    background: var(--pink-light);
    color: var(--pink-deep) !important;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-text {
    padding-right: 0;
  }

  .about-badge {
    right: 16px;
    bottom: -16px;
  }

  /* Services */
  .services-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 12px;
    margin: 0 -20px 32px;
    width: calc(100% + 40px);
    /* Subtle edge fade */
    mask-image: linear-gradient(to right, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
  }

  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Offers */
  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  /* Gallery */

  /* Appointment */
  .appt-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤600px)
   ============================================================ */
@media (max-width: 600px) {
  :root {
    --nav-h: 64px;
  }

  .section-pad {
    padding: 56px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 100px 16px 64px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .whatsapp-float {
    display: none;
  }

  /* Google review card – smaller on mobile, no overlap */
  .hero-google-card {
    bottom: 24px;
    left: 16px;
    padding: 10px 14px;
    gap: 10px;
    border-radius: 12px;
  }

  .google-card-logo {
    width: 28px;
    height: 28px;
  }

  .google-card-logo svg {
    width: 15px;
    height: 15px;
  }

  .google-card-rating {
    font-size: 0.9rem;
  }

  .google-card-count {
    font-size: 0.68rem;
  }

  /* Open Now badge – smaller text on mobile */
  .open-now-badge {
    font-size: 0.7rem;
    padding: 4px 10px 4px 8px;
  }

  .about-img {
    height: 320px;
  }

  .about-stats {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Transformation Slider - Mobile Taller Layout */
  .comparison-slider {
    aspect-ratio: 4/5;
  }

  .label {
    bottom: 10px;
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .label-after {
    right: 10px;
    left: auto;
  }

  .label-before {
    left: 10px;
    right: auto;
  }

  .appt-form-wrap {
    padding: 24px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .whatsapp-float-fixed span {
    display: none;
  }

  .whatsapp-float-fixed {
    padding: 14px;
    border-radius: 50%;
  }

  .overall-rating {
    flex-direction: column;
    gap: 4px;
  }
}