/* ============================================================
   Sun Shine Ladies Beauty Salon & Spa — style.css
   Premium Feminine Beauty Salon Website Stylesheet
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES (THEME VARIABLES) ===== */
:root {
  /* Core Brand Colors */
  --color-blush:        hsl(350, 85%, 91%);
  --color-rose-light:   hsl(345, 75%, 82%);
  --color-rose:         hsl(340, 70%, 62%);
  --color-rose-deep:    hsl(335, 65%, 48%);
  --color-pink-dark:    hsl(330, 55%, 38%);
  --color-peach:        hsl(18, 90%, 88%);
  --color-lavender:     hsl(270, 45%, 88%);
  --color-lavender-mid: hsl(270, 35%, 72%);
  --color-cream:        hsl(38, 80%, 96%);
  --color-warm-white:   hsl(30, 60%, 98%);
  --color-rose-gold:    hsl(20, 60%, 72%);
  --color-gold:         hsl(40, 80%, 58%);

  /* Text Colors */
  --text-dark:          hsl(330, 30%, 18%);
  --text-medium:        hsl(330, 20%, 35%);
  --text-soft:          hsl(330, 15%, 52%);
  --text-light:         hsl(330, 10%, 68%);
  --text-on-dark:       hsl(30, 60%, 97%);

  /* Background */
  --bg-base:            hsl(340, 80%, 97%);
  --bg-section-alt:     hsl(270, 40%, 96%);

  /* Glass & Card */
  --glass-bg:           rgba(255, 255, 255, 0.65);
  --glass-border:       rgba(255, 255, 255, 0.85);
  --card-bg:            rgba(255, 255, 255, 0.90);
  --card-shadow:        0 8px 32px rgba(180, 60, 100, 0.10);
  --card-shadow-hover:  0 20px 50px rgba(180, 60, 100, 0.20);

  /* Gradients */
  --grad-primary:       linear-gradient(135deg, hsl(340,70%,62%), hsl(20,70%,65%));
  --grad-hero:          linear-gradient(135deg, hsl(340,75%,92%), hsl(18,85%,90%), hsl(270,45%,93%));
  --grad-section:       linear-gradient(160deg, hsl(345,80%,96%) 0%, hsl(270,40%,96%) 50%, hsl(18,80%,96%) 100%);
  --grad-footer:        linear-gradient(135deg, hsl(330,50%,28%), hsl(335,45%,22%), hsl(340,40%,18%));

  /* Typography */
  --font-heading:       'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:          'Poppins', 'Inter', system-ui, sans-serif;

  /* Spacing */
  --sp-xs:    0.375rem;
  --sp-sm:    0.75rem;
  --sp-md:    1.25rem;
  --sp-lg:    2rem;
  --sp-xl:    3rem;
  --sp-2xl:   5rem;
  --sp-3xl:   8rem;

  /* Border Radius */
  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.75rem;
  --radius-xl:  2.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow:   500ms ease;

  /* Navbar height */
  --nav-height: 76px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-base);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

address { font-style: normal; }

/* Focus Styles for Accessibility */
:focus-visible {
  outline: 3px solid var(--color-rose);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    hsl(340, 80%, 97%) 0%,
    hsl(270, 50%, 96%) 33%,
    hsl(18, 85%, 96%) 66%,
    hsl(345, 75%, 97%) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
}

/* ===== DESKTOP BACKGROUND IMAGE ===== */
@media (min-width: 1024px) {
  .bg-canvas {
    /* Replace animated gradient with the floral template image on desktop */
    background: url('images/desktop-ui-template.png') center center / cover no-repeat;
    animation: none;
  }

  /* Soft luminous overlay to keep content legible while the image shines through */
  .bg-canvas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      160deg,
      rgba(255, 240, 245, 0.38) 0%,
      rgba(255, 250, 255, 0.22) 40%,
      rgba(245, 235, 255, 0.32) 80%,
      rgba(255, 235, 245, 0.42) 100%
    );
    pointer-events: none;
    z-index: 0;
  }

  /* Keep blobs rendering above the overlay */
  .blob {
    z-index: 1;
  }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animated Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  will-change: transform;
}

.blob-1 {
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: radial-gradient(circle, hsl(345, 85%, 85%), transparent 70%);
  top: -10%;
  left: -10%;
  animation: blobMove1 25s ease-in-out infinite;
}

.blob-2 {
  width: clamp(250px, 38vw, 500px);
  height: clamp(250px, 38vw, 500px);
  background: radial-gradient(circle, hsl(270, 55%, 85%), transparent 70%);
  top: 20%;
  right: -8%;
  animation: blobMove2 30s ease-in-out infinite;
}

.blob-3 {
  width: clamp(200px, 30vw, 420px);
  height: clamp(200px, 30vw, 420px);
  background: radial-gradient(circle, hsl(18, 80%, 87%), transparent 70%);
  bottom: 15%;
  left: 15%;
  animation: blobMove3 22s ease-in-out infinite;
}

.blob-4 {
  width: clamp(180px, 28vw, 380px);
  height: clamp(180px, 28vw, 380px);
  background: radial-gradient(circle, hsl(340, 70%, 87%), transparent 70%);
  bottom: -5%;
  right: 20%;
  animation: blobMove4 35s ease-in-out infinite;
}

.blob-5 {
  width: clamp(150px, 22vw, 320px);
  height: clamp(150px, 22vw, 320px);
  background: radial-gradient(circle, hsl(30, 80%, 88%), transparent 70%);
  top: 55%;
  left: 45%;
  animation: blobMove1 28s ease-in-out infinite reverse;
}

@keyframes blobMove1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -60px) scale(1.08); }
  66%       { transform: translate(-30px, 40px) scale(0.94); }
}
@keyframes blobMove2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-50px, 50px) scale(1.06); }
  66%       { transform: translate(30px, -30px) scale(0.96); }
}
@keyframes blobMove3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(60px, -40px) scale(1.10); }
}
@keyframes blobMove4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-40px, 60px) scale(0.92); }
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ===== TYPOGRAPHY UTILITIES ===== */
.text-center { text-align: center; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-rose);
  text-align: center;
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: var(--sp-md);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.8;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}

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

.section {
  padding: var(--sp-3xl) 0;
  position: relative;
}

/* ===== BUTTON STYLES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
}

.btn:hover::after {
  background: rgba(255,255,255,0.12);
}

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(180, 60, 100, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(180, 60, 100, 0.45);
}

.btn-outline {
  background: rgba(255,255,255,0.85);
  color: var(--color-rose-deep);
  border: 2px solid var(--color-rose);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--color-rose);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(180, 60, 100, 0.3);
}

.btn-sm {
  padding: 0.55rem 1.35rem;
  font-size: 0.84rem;
}

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

.btn-facebook {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 1.35rem;
  background: linear-gradient(135deg, #1877F2 0%, #0a58ca 100%);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.28);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-facebook svg {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.12));
}

.btn-facebook:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.40);
  background: linear-gradient(135deg, #2d87f3 0%, #1565d8 100%);
  color: #ffffff;
}

/* Pulse animation for primary CTA */
.pulse-anim {
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(180,60,100,0.35); }
  50%       { box-shadow: 0 4px 30px rgba(180,60,100,0.55), 0 0 0 8px rgba(180,60,100,0.08); }
}

/* ===== GLASSMORPHISM CARD ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: all var(--transition-normal);
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 245, 248, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(220, 130, 160, 0.18);
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 248, 252, 0.95);
  box-shadow: 0 4px 24px rgba(180, 60, 100, 0.12);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--color-rose);
  line-height: 1;
  display: inline-block;
  animation: logoSpin 8s linear infinite;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-rose-deep);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: var(--radius-full);
  transform: translateX(-50%);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-rose-deep);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

/* Book Appointment Button in Navbar */
.btn-book-nav {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  background: var(--grad-primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 3px 14px rgba(180, 60, 100, 0.32);
  transition: all var(--transition-normal);
}

.btn-book-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 60, 100, 0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(220, 130, 160, 0.3);
  margin-left: auto;
  transition: all var(--transition-fast);
}

.hamburger:hover {
  background: var(--color-blush);
}

.ham-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-rose-deep);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.open .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255, 245, 248, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(220, 130, 160, 0.2);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) ease, box-shadow var(--transition-slow);
}

.mobile-nav.open {
  max-height: 600px;
  box-shadow: 0 10px 30px rgba(180, 60, 100, 0.12);
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: var(--sp-md) var(--sp-lg) var(--sp-lg);
  gap: 0.25rem;
}

.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-link:hover {
  background: var(--color-blush);
  color: var(--color-rose-deep);
  padding-left: 1.4rem;
}

.btn-book-mobile {
  display: block;
  text-align: center;
  padding: 0.85rem;
  background: var(--grad-primary);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-top: var(--sp-sm);
  box-shadow: 0 4px 16px rgba(180, 60, 100, 0.3);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

/* Hero Content */
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-rose-deep);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(200, 80, 120, 0.25);
  border-radius: var(--radius-full);
  padding: 0.4rem 1.2rem;
  margin-bottom: var(--sp-md);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: var(--sp-sm);
}

.hero-title-alt {
  font-style: italic;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 600;
  margin-top: 0.3rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-style: italic;
  color: var(--color-rose-deep);
  margin-bottom: var(--sp-md);
  line-height: 1.5;
}

.hero-desc {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: var(--sp-lg);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

/* Quick Chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(200, 80, 120, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.chip:hover {
  background: white;
  border-color: var(--color-rose);
  transform: translateY(-1px);
}

.chip-loc { cursor: default; }

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(200, 80, 120, 0.2);
  animation: ringPulse 4s ease-in-out infinite;
}

.hero-img-ring {
  width: 92%;
  height: 92%;
  top: 4%;
  left: 4%;
}

.hero-img-ring-2 {
  width: 84%;
  height: 84%;
  top: 8%;
  left: 8%;
  border-color: rgba(200, 80, 120, 0.12);
  animation-delay: 1s;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.03); opacity: 1; }
}

.hero-img {
  width: 100%;
  max-width: 480px;
  height: 540px;
  object-fit: cover;
  border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
  box-shadow: 0 25px 70px rgba(180, 60, 100, 0.25);
  position: relative;
  z-index: 1;
  animation: heroImgFloat 6s ease-in-out infinite;
}

@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Floating Badges on Hero Image */
.float-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(180, 60, 100, 0.15);
  white-space: nowrap;
}

.float-badge-1 {
  bottom: 18%;
  left: -8%;
  animation: badgeFloat 4s ease-in-out infinite;
}

.float-badge-2 {
  top: 20%;
  right: -6%;
  animation: badgeFloat 4s ease-in-out infinite 1.5s;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.fb-icon { font-size: 1.1rem; }

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  background: var(--color-rose);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.4; }
}

.scroll-text {
  font-size: 0.7rem;
  color: var(--text-soft);
  letter-spacing: 0.1em;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(180, 60, 100, 0.2);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--grad-primary);
  color: white;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 30px rgba(180, 60, 100, 0.35);
  font-size: 1.8rem;
  line-height: 1;
}

.about-img-badge p {
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.4rem;
  line-height: 1.3;
}

.about-text {
  font-size: 0.97rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: var(--sp-lg);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm);
}

.highlight-card {
  background: var(--card-bg);
  border: 1px solid rgba(220, 130, 160, 0.18);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(180, 60, 100, 0.07);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(180, 60, 100, 0.15);
  border-color: rgba(200, 80, 120, 0.3);
}

.h-icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(340,80%,95%), hsl(270,50%,95%));
  border: 2px solid rgba(200, 80, 120, 0.12);
  margin-left: auto;
  margin-right: auto;
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.highlight-card p {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(220, 130, 160, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(180, 60, 100, 0.07);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(200, 80, 120, 0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  margin-bottom: var(--sp-sm);
  display: flex;
  justify-content: center;
}

.svc-emoji {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(340,80%,95%), hsl(270,50%,95%));
  border-radius: 50%;
  border: 2px solid rgba(200, 80, 120, 0.12);
  overflow: hidden;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: var(--sp-sm);
}

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-rose-deep);
  background: rgba(200, 80, 120, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.pricing-note {
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(180, 60, 100, 0.08);
}

.pricing-note p {
  font-size: 1rem;
  color: var(--text-medium);
}

.pricing-note strong {
  color: var(--color-rose-deep);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-section {
  background: transparent;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.why-card {
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: var(--sp-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(340,80%,95%), hsl(270,50%,95%));
  border: 2px solid rgba(200, 80, 120, 0.12);
  margin-left: auto;
  margin-right: auto;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ===== OFFERS SECTION ===== */
.offers-section {
  background: transparent;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.offer-card {
  background: var(--card-bg);
  border: 1px solid rgba(220, 130, 160, 0.18);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(180, 60, 100, 0.08);
  transition: all var(--transition-normal);
}

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

.offer-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(180,60,100,0.3);
}

.offer-cta-card {
  background: var(--grad-primary);
  border-color: transparent;
}

.offer-cta-card h3,
.offer-cta-card p {
  color: white !important;
}

.offer-cta-card .btn-primary {
  background: white;
  color: var(--color-rose-deep);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.offer-cta-card .btn-primary:hover {
  background: var(--color-cream);
}

.offer-icon {
  font-size: 2.5rem;
  margin: var(--sp-sm) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(340,80%,95%), hsl(18,74%,93%));
  border: 2px solid rgba(200, 80, 120, 0.12);
}

/* ====== ICON IMAGE UNIVERSAL RULE ====== */
.icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 50%;
}

.offer-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.offer-card p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: var(--sp-md);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(180, 60, 100, 0.1);
}

.gallery-large {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-large-vert {
  grid-column: span 1;
  grid-row: span 2;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(120, 20, 60, 0.7), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--sp-md);
}

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

.gallery-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
}

.gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  font-size: 1.5rem;
  color: white;
  opacity: 0;
  transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 5, 15, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-lg);
}

.lightbox[hidden] { display: none; }

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
}

#lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
}

.lightbox-close {
  top: -50px;
  right: -10px;
}

.lightbox-prev {
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -55px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(200, 80, 120, 0.5);
  border-color: rgba(200, 80, 120, 0.4);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: transparent;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: var(--sp-sm) 0 var(--sp-xl);
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testi-card {
  min-width: calc(33.333% - 1rem);
  margin: 0 0.5rem;
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  flex-shrink: 0;
}

.testi-stars {
  font-size: 1.1rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

.testi-text {
  font-size: 0.93rem;
  color: var(--text-medium);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding-top: var(--sp-sm);
  border-top: 1px solid rgba(200, 80, 120, 0.12);
}

.testi-avatar {
  font-size: 1.8rem;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(340,80%,94%), hsl(270,50%,94%));
  border-radius: 50%;
  border: 2px solid rgba(200, 80, 120, 0.15);
  flex-shrink: 0;
}

.testi-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testi-service {
  display: block;
  font-size: 0.76rem;
  color: var(--color-rose);
  font-weight: 500;
}

/* Slider Buttons */
.testi-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: var(--color-rose-deep);
  border: 2px solid rgba(200, 80, 120, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(180, 60, 100, 0.12);
  transition: all var(--transition-normal);
  z-index: 10;
  cursor: pointer;
}

.testi-prev { left: -22px; }
.testi-next { right: -22px; }

.testi-btn:hover {
  background: var(--grad-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}

/* Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.testi-dot {
  width: 8px;
  height: 8px;
  background: rgba(200, 80, 120, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

.testi-dot.active {
  background: var(--color-rose);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-xl);
  align-items: start;
}

/* Contact Info */
.contact-info {
  padding: var(--sp-xl);
}

.contact-salon-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-rose-deep);
  margin-bottom: var(--sp-lg);
  line-height: 1.3;
}

.contact-item {
  display: flex;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
  align-items: flex-start;
}

.contact-ico {
  font-size: 1.3rem;
  line-height: 1.5;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-rose);
  margin-bottom: 0.3rem;
}

.contact-item address,
.contact-item p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.contact-item a {
  color: var(--text-medium);
  transition: color var(--transition-fast);
}

.contact-item a:hover {
  color: var(--color-rose-deep);
}

/* Appointment Form */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid rgba(220, 130, 160, 0.18);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  box-shadow: 0 8px 30px rgba(180, 60, 100, 0.08);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--sp-lg);
}

.appt-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group label span {
  color: var(--color-rose);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(200, 80, 120, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  width: 100%;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-rose);
  box-shadow: 0 0 0 3px rgba(200, 80, 120, 0.12);
  background: white;
}

.form-group input.error,
.form-group select.error {
  border-color: hsl(0, 70%, 60%);
}

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

.form-error {
  font-size: 0.75rem;
  color: hsl(0, 70%, 55%);
  display: block;
  min-height: 1em;
}

.form-actions {
  margin-top: 0.25rem;
}

.form-feedback {
  margin-top: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-feedback.success {
  background: rgba(76, 175, 80, 0.1);
  color: hsl(120, 40%, 38%);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-feedback.error-msg {
  background: rgba(220, 53, 69, 0.08);
  color: hsl(0, 60%, 45%);
  border: 1px solid rgba(220, 53, 69, 0.2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--grad-footer);
  color: var(--text-on-dark);
  position: relative;
  padding-top: var(--sp-lg);
}

.footer-waves {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
}

.footer-waves svg {
  width: 100%;
  height: 100%;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-lg) var(--sp-xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
  gap: var(--sp-xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--sp-md);
}

.footer-logo .logo-icon {
  color: var(--color-rose-light);
}

.footer-logo-main {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  display: block;
}

.footer-logo-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  display: block;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-rose-light);
  font-style: italic;
  margin-bottom: var(--sp-sm);
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--sp-md);
  letter-spacing: 0.03em;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-rose-light);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
}

.footer-social p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-md) var(--sp-lg);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-sm);
}

.footer-credit {
  color: rgba(255,255,255,0.55);
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all var(--transition-normal);
  position: relative;
  border: none;
  cursor: pointer;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.float-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-phone {
  background: var(--grad-primary);
}

.float-top {
  background: rgba(90, 30, 60, 0.8);
  backdrop-filter: blur(8px);
}

/* Tooltip on float buttons */
.float-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 10, 20, 0.85);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  backdrop-filter: blur(8px);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-slide {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-fade  { transform: none; }
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-slide { transform: translateX(60px); }

/* Stagger delays for cards */
.reveal-up { transition-delay: var(--delay, 0s); }

.reveal-fade.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-slide.visible {
  opacity: 1;
  transform: none;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .blob,
  .hero-img,
  .float-badge,
  .logo-icon { animation: none !important; }

  .reveal-fade,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-slide {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== PARTICLE SPARKLES (JS generated) ===== */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFade var(--dur, 6s) var(--del, 0s) ease-in-out infinite;
}

@keyframes particleFade {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  50%       { opacity: 0.7; transform: translateY(-30px) scale(1); }
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .services-grid,
  .why-grid,
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl) var(--sp-xl);
  }

  .hero-container {
    gap: var(--sp-xl);
  }
}

/* ===== RESPONSIVE — LARGE MOBILE / SMALL TABLET ===== */
@media (max-width: 768px) {
  :root {
    --sp-2xl: 3.5rem;
    --sp-3xl: 5rem;
  }

  /* Navbar */
  .nav-links { display: none; }
  .btn-book-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--sp-xl) var(--sp-md);
    gap: var(--sp-xl);
  }

  .hero-content {
    order: 1;
  }

  .hero-image-wrap {
    order: 0;
  }

  .hero-desc { margin: 0 auto var(--sp-lg); }

  .hero-btns {
    justify-content: center;
  }

  .hero-chips {
    justify-content: center;
  }

  .hero-img {
    max-width: 320px;
    height: 340px;
    margin: 0 auto;
  }

  .float-badge-1 { left: 2%; bottom: 8%; }
  .float-badge-2 { right: 2%; top: 5%; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .about-img {
    height: 320px;
  }

  .about-img-badge {
    right: 10px;
    bottom: 10px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-large,
  .gallery-large-vert {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Form rows */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: span 1;
  }

  /* Lightbox arrows */
  .lightbox-prev { left: 5px; }
  .lightbox-next { right: 5px; }

  /* Testimonials */
  .testi-card { min-width: calc(80% - 1rem); }
  .testi-prev { left: 0; }
  .testi-next { right: 0; }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
    padding: var(--sp-xl) var(--sp-md);
  }

  /* Pricing note */
  .pricing-note {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-sm);
    padding: var(--sp-md);
  }
}

/* ===== RESPONSIVE — SMALL MOBILE ===== */
@media (max-width: 480px) {
  :root {
    --sp-3xl: 4rem;
  }

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

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .btn {
    padding: 0.75rem 1.6rem;
    font-size: 0.88rem;
  }

  .testi-card { min-width: calc(100% - 1rem); }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: -55px;
    transform: none;
  }

  .lightbox-prev { left: 30%; }
  .lightbox-next { right: 30%; }

  .contact-info {
    padding: var(--sp-md);
  }

  .contact-form-wrap {
    padding: var(--sp-md);
  }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: hsl(340, 50%, 97%); }
::-webkit-scrollbar-thumb {
  background: var(--color-rose-light);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-rose);
}

/* ===== SELECTION STYLING ===== */
::selection {
  background: rgba(200, 80, 120, 0.2);
  color: var(--color-rose-deep);
}
/* =============================================================
   MOBILE TEMPLATE LAYOUT SYSTEM v2
   Sun Shine Ladies Beauty Salon & Spa
   Visual reference: Mobile-UI-Design.png
   Breakpoint: max-width 767px  |  Range: 320px - 767px
   ============================================================= */

/* Fix horizontal overflow globally */
html { overflow-x: hidden; }

:root {
  --mob-pad-x:        clamp(14px, 4.5vw, 20px);
  --mob-section-gap:  clamp(12px, 3.5vw, 18px);
  --mob-card-radius:  18px;
  --mob-bottom-nav-h: 68px;
  --mob-btn-h:        50px;
  --mob-field-h:      50px;
}

/* Mobile decorative background div - hidden on desktop */
.mobile-background { display: none; }

.mobile-bg-layer,
.mobile-bottom-nav,
.mobile-hero-img-wrap,
.mobile-follow-panel { display: none; }

@media (max-width: 767px) {

  /* =========================================================
     1a. MOBILE IMAGE BACKGROUND LAYER (supplied PNG)
     Fixed, full-screen, pointer-events:none, z-index:-1
     ========================================================= */
  .mobile-background {
    display: block;
    position: fixed;
    inset: 0;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-image:
      linear-gradient(
        rgba(255, 248, 247, 0.04),
        rgba(255, 248, 247, 0.04)
      ),
      url("images/mobile-salon-background.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
  }

  /* 1b. GRADIENT FALLBACK — shows if image fails to load */
  .mobile-bg-layer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: -2;
    background: linear-gradient(
      155deg,
      hsl(340, 78%, 97%) 0%,
      hsl(348, 70%, 96%) 20%,
      hsl(270, 44%, 96%) 55%,
      hsl(18,  76%, 96%) 80%,
      hsl(340, 75%, 97%) 100%
    );
  }

  .bg-canvas { display: none !important; }

  /* Z-INDEX HIERARCHY
     -2  gradient fallback
     -1  image background
      0  (reserved)
      1  main content (header, main, footer)
     20  sticky navbar
     30  bottom nav
     40  mobile menu overlay
  */
  header, main, footer {
    position: relative;
    z-index: 1;
  }

  body {
    background: linear-gradient(180deg, #fff7f5, #fdebed, #f6ebfa);
    position: relative;
    overflow-x: hidden;
    padding-bottom: calc(var(--mob-bottom-nav-h) + env(safe-area-inset-bottom, 0px));
  }

  /* 2. NAVBAR - frosted glass, above content */
  .navbar {
    background: rgba(255, 251, 253, 0.82) !important;
    backdrop-filter: blur(22px) !important;
    -webkit-backdrop-filter: blur(22px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.80) !important;
    box-shadow: 0 2px 16px rgba(180, 60, 100, 0.08) !important;
    height: 60px;
    --nav-height: 60px;
    position: relative;
    z-index: 20;
  }

  .nav-container { padding: 0 var(--mob-pad-x); max-width: 100%; }
  .logo-main { font-size: 1.05rem; }
  .logo-sub  { font-size: 0.52rem; }
  .logo-icon { font-size: 1.25rem; }
  .nav-links, .btn-book-nav { display: none; }

  .hamburger {
    display: flex;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(200, 80, 120, 0.22);
    border-radius: 10px;
    width: 38px;
    height: 38px;
  }

  .mobile-nav {
    top: 60px;
    background: rgba(255, 248, 252, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  /* 3. HERO - transparent so background image shows through */
  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: calc(100svh - 60px);
    min-height: calc(100vh  - 60px);
    padding-top: 60px;
    overflow: hidden;
    background: transparent;  /* let mobile background image show */
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
  }

  /* Hide the split raw portrait (not needed) */
  .mobile-hero-img-wrap { display: none !important; }
  .mobile-hero-portrait  { display: none !important; }

  /* Hero container - column: red-zone (text) top, blue-zone (image) bottom */
  .hero-container {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    flex: 1;
    padding: 20px var(--mob-pad-x) 0;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
    position: static;
    grid-template-columns: unset;
    margin: 0;
  }

  /* Text content - vertically CENTERED in red zone */
  .hero-content {
    flex: 1;                       /* fills top portion */
    display: flex;
    flex-direction: column;
    justify-content: center;       /* vertical centering within its zone */
    text-align: left;
    position: static;
    z-index: auto;
    order: 1;
    overflow: hidden;
    padding-bottom: 12px;
    /* subtle text readability over background image */
    background: rgba(255, 250, 248, 0.18);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 14px;
    padding: 12px 14px 16px;
  }

  /* Image - CENTERED in blue zone, much larger */
  .hero-image-wrap {
    display: flex !important;
    flex: 0 0 auto;
    position: relative;
    width: clamp(200px, 65vw, 290px);   /* larger */
    height: clamp(225px, 72vw, 320px);  /* larger */
    order: 2;
    align-self: center;                 /* centered */
    overflow: visible;
    margin-bottom: 0;
    margin-top: 0;
  }

  /* Ring decorations — scaled for mobile */
  .hero-img-ring {
    display: block !important;
    border-width: 1.5px;
  }

  .hero-img-ring-2 {
    display: block !important;
    border-width: 1px;
  }

  /* Hero image — same organic blob shape as desktop */
  .hero-img {
    width: 100%;
    height: 100%;
    max-width: unset;
    object-fit: cover;
    object-position: top center;
    border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
    box-shadow: 0 16px 48px rgba(180, 60, 100, 0.22);
    animation: heroImgFloat 6s ease-in-out infinite;
  }

  /* Float badges — hidden on mobile */
  .float-badge-1, .float-badge-2 { display: none !important; }

  .hero-badge {
    font-size: clamp(0.72rem, 2.8vw, 0.90rem);
    padding: 0.30rem 0.90rem;
    margin-bottom: 10px;
    letter-spacing: 0.12em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
  }

  .hero-title {
    font-size: clamp(2.0rem, 9vw, 2.8rem);
    line-height: 1.05;
    margin-bottom: 4px;
    color: hsl(335, 62%, 24%);
    word-break: break-word;
    font-weight: 800;
  }

  .hero-title-alt {
    font-size: clamp(1.05rem, 4.4vw, 1.45rem);
    margin-top: 3px;
    display: block;
    font-weight: 600;
  }

  .hero-tagline {
    font-size: clamp(0.82rem, 3.3vw, 1.02rem);
    margin-bottom: 8px;
    line-height: 1.35;
    color: var(--color-rose);
    font-style: italic;
    font-weight: 500;
  }

  .hero-desc {
    font-size: clamp(0.82rem, 3.2vw, 1.0rem);
    line-height: 1.55;
    margin-bottom: 16px;
    color: var(--text-medium);
    word-break: break-word;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    flex-wrap: nowrap;
    margin-bottom: 0;
  }

  .hero-btns .btn {
    font-size: clamp(0.84rem, 3.4vw, 1.0rem);
    padding: 0.62rem 1.35rem;
    border-radius: var(--radius-full);
    width: auto;
    min-width: 0;
    max-width: 100%;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
  }

  .hero-btns .btn svg { width: 15px; height: 15px; }
  .hero-chips  { display: none; }
  .scroll-hint { display: none; }
  .float-badge-1, .float-badge-2 { display: none !important; }

  /* 4. SECTION BASE - translucent glass card (background visible through) */
  .section {
    padding: 16px var(--mob-pad-x);
    margin: var(--mob-section-gap) var(--mob-pad-x);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--mob-card-radius);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 4px 20px rgba(180, 60, 100, 0.07);
    position: relative;
    z-index: 1;
  }

  .section .container { padding: 0; max-width: 100%; }

  .section-label {
    font-size: 0.60rem;
    letter-spacing: 0.18em;
    margin-bottom: 3px;
    text-align: center;
  }

  .section-title {
    font-size: clamp(1.1rem, 4.8vw, 1.55rem);
    text-align: center;
    margin-bottom: 5px;
    line-height: 1.15;
  }

  .section-sub, .section-desc {
    font-size: clamp(0.72rem, 2.8vw, 0.84rem);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.5;
    max-width: 100%;
  }

  /* 5. ABOUT - feature icon strip */
  .about-img-wrap { display: none !important; }
  .about-text     { display: none; }
  .about-grid { display: block !important; grid-template-columns: unset; }
  .about-content { width: 100%; }
  .about-section .section-sub { margin-bottom: 10px; }

  .about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 0;
  }

  .highlight-card {
    background: hsl(345, 80%, 97%);
    border: 1px solid rgba(200, 80, 120, 0.12);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-shadow: none;
    transition: none;
  }

  .highlight-card:hover { transform: none; box-shadow: none; }

  .h-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    border: 1.5px solid rgba(200, 80, 120, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .highlight-card h3 {
    font-size: clamp(0.70rem, 2.7vw, 0.82rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0;
  }

  .highlight-card p {
    font-size: clamp(0.60rem, 2.3vw, 0.72rem);
    color: var(--text-soft);
    line-height: 1.35;
  }

  /* 6. SERVICES - 3 x 2 compact grid */
  .services-section .section-desc { display: none; }

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

  .service-card {
    background: hsl(345, 72%, 97%);
    border: 1px solid rgba(200, 80, 120, 0.10);
    border-radius: 11px;
    padding: 11px 5px 9px;
    text-align: center;
    box-shadow: none;
    transition: none;
  }

  .service-card:hover  { transform: none; box-shadow: none; }
  .service-card::before { display: none; }
  .service-card:nth-child(n+7) { display: none; }

  .svc-emoji {
    font-size: 1.45rem;
    width: 40px;
    height: 40px;
    margin: 0 auto 5px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(200, 80, 120, 0.12);
  }

  .service-name {
    font-size: clamp(0.62rem, 2.4vw, 0.76rem);
    line-height: 1.2;
    margin-bottom: 3px;
    font-weight: 700;
  }

  .service-desc {
    font-size: clamp(0.56rem, 2.1vw, 0.68rem);
    line-height: 1.3;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-soft);
  }

  .service-tag { display: none; }

  .pricing-note {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 10px;
    font-size: 0.78rem;
    margin-top: 10px;
  }

  /* 7. WHY CHOOSE US - hidden on mobile */
  .why-section { display: none !important; }

  /* 8. OFFERS - horizontal scroll carousel */
  .offers-section { overflow: hidden; }
  .offers-section .section-desc { display: none; }

  /* One card at a time — full width, centered, snap */
  .offers-grid {
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
    padding-top: 4px;
    margin: 0;                     /* no negative margin */
    grid-template-columns: unset;
    margin-bottom: 0;
  }

  .offers-grid::-webkit-scrollbar { display: none; }

  .offer-card {
    flex: 0 0 100%;                /* full container width */
    width: 100%;
    max-width: 100%;
    min-width: 0;
    scroll-snap-align: center;     /* snap to center */
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(200, 80, 120, 0.12);
    box-shadow: 0 4px 16px rgba(180, 60, 100, 0.09);
    display: flex;
    flex-direction: column;
    position: static;
    transition: none;
  }

  .offer-card:hover { transform: none; }

  .offer-icon {
    display: block !important;
    width: 100% !important;
    height: 180px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(135deg, hsl(345, 68%, 93%), hsl(18, 74%, 93%)) !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
  }

  .offer-icon .icon-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 0 !important;
    display: block !important;
  }

  .offer-badge {
    position: static;
    display: inline-block;
    transform: none;
    font-size: 0.72rem;
    padding: 3px 12px;
    margin: 12px 14px 0;
    width: fit-content;
    border-radius: 999px;
    box-shadow: none;
  }

  .offer-card h3 {
    font-size: clamp(1.05rem, 4.2vw, 1.35rem);
    line-height: 1.2;
    padding: 8px 14px 5px;
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
  }

  .offer-card p {
    font-size: clamp(0.82rem, 3.2vw, 0.98rem);
    color: var(--text-soft);
    line-height: 1.5;
    padding: 0 14px 10px;
    margin: 0;
    flex: 1;
    text-align: center;
  }

  .offer-card .btn {
    font-size: 0.88rem;
    padding: 0.58rem 1.35rem;
    margin: 0 14px 14px;
    border-radius: 999px;
    align-self: center;             /* center button */
    display: inline-flex;
  }

  .offer-cta-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--grad-primary);
    border-color: transparent;
    position: static;
  }

  .offer-cta-card .offer-icon {
    background: rgba(255, 255, 255, 0.22) !important;
    border-radius: 50% !important;
    width: 80px !important;
    height: 80px !important;
    padding: 0 !important;
    margin: 0 0 12px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .offer-cta-card .offer-icon .icon-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 50% !important;
  }

  .offer-cta-card h3 { color: white !important; font-size: 1.10rem; padding: 0; margin: 0 0 6px; }
  .offer-cta-card p  { color: rgba(255,255,255,0.88) !important; font-size: 0.88rem; padding: 0; margin: 0 0 12px; }
  .offer-cta-card .btn-primary {
    background: white; color: var(--color-rose-deep);
    box-shadow: none; margin: 0;
    padding: 0.55rem 1.4rem; font-size: 0.88rem;
  }

  /* 9. GALLERY - one image at a time, centered, smooth scroll */
  .gallery-section { overflow: hidden; }
  .gallery-section .section-desc { display: none; }

  .gallery-grid {
    display: flex !important;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
    padding-top: 4px;
    margin: 0;                         /* no negative margin */
    grid-template-columns: unset !important;
    grid-auto-rows: unset !important;
  }

  .gallery-grid::-webkit-scrollbar { display: none; }

  .gallery-item {
    flex: 0 0 calc(100% - 2px);        /* full width, one at a time */
    width: 100%;
    height: clamp(180px, 55vw, 240px); /* taller for better view */
    scroll-snap-align: center;          /* snap to center */
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    grid-column: unset !important;
    grid-row: unset !important;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(70, 10, 35, 0.60) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 5px 6px;
    opacity: 1;
    transition: none;
  }

  .gallery-label {
    font-size: 0.58rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    line-height: 1;
  }

  .gallery-zoom { display: none; }

  /* 10. TESTIMONIALS - hidden */
  .testimonials-section { display: none !important; }

  /* 11. CONTACT */
  .contact-section .section-desc { display: none; }

  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-template-columns: unset;
  }

  .contact-info {
    background: hsl(345, 78%, 97%);
    border: 1px solid rgba(200, 80, 120, 0.12);
    border-radius: 12px;
    padding: 13px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .contact-salon-name {
    font-size: clamp(0.82rem, 3.2vw, 0.96rem);
    color: var(--color-rose-deep);
    margin-bottom: 10px;
    font-weight: 700;
    font-family: var(--font-heading);
  }

  .contact-item {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin-bottom: 9px;
  }

  .contact-ico {
    font-size: 0.95rem;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, hsl(345, 68%, 93%), hsl(270, 44%, 93%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 80, 120, 0.14);
  }

  .contact-item strong {
    font-size: 0.70rem;
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1px;
  }

  .contact-item address,
  .contact-item p,
  .contact-item a {
    font-size: clamp(0.68rem, 2.6vw, 0.80rem);
    color: var(--text-medium);
    line-height: 1.42;
    word-break: break-word;
    overflow-wrap: anywhere;
    min-width: 0;
  }

  /* Contact text wrapper fix */
  .contact-item > div,
  .contact-item > span {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  /* Social link buttons in contact info - properly contained, centered */
  .contact-info .btn,
  .contact-info a.btn {
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    white-space: nowrap;
    display: inline-flex;
    margin: 4px auto 0;
  }

  /* Facebook button - salon rose theme on mobile, auto width, centered */
  .btn-facebook {
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.45rem !important;
    margin: 6px 0 0 0 !important;
    padding: 0.58rem 1.25rem !important;
    font-size: 0.84rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #1877F2 0%, #0a58ca 100%) !important;
    border-radius: var(--radius-full) !important;
    border: 1.5px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 3px 12px rgba(24,119,242,0.28) !important;
    white-space: nowrap !important;
    text-decoration: none !important;
  }

  .contact-form-wrap {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(200, 80, 120, 0.12);
    border-radius: 12px;
    padding: 13px;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .form-title {
    font-size: clamp(0.92rem, 3.6vw, 1.10rem);
    color: var(--text-dark);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 10px;
  }

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

  .appt-form .form-row:nth-of-type(2),
  .appt-form .form-row:nth-of-type(3) { grid-template-columns: 1fr; }

  .form-group label { font-size: 0.68rem; font-weight: 600; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    height: var(--mob-field-h);
    padding: 0 11px;
    font-size: 0.80rem;
    border-radius: 9px;
    border: 1.5px solid rgba(200, 80, 120, 0.18);
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    box-sizing: border-box;
  }

  .form-group textarea {
    height: auto;
    min-height: 65px;
    padding: 9px 11px;
    resize: none;
  }

  .form-actions { margin-top: 7px; }

  #appt-submit {
    height: var(--mob-btn-h);
    font-size: clamp(0.78rem, 3vw, 0.90rem);
    border-radius: var(--radius-full);
    width: 100%;
    justify-content: center;
  }

  /* 12. FOOTER - hidden on mobile */
  .footer { display: none !important; }

  /* 13. MOBILE FOLLOW PANEL */
  .mobile-follow-panel {
    display: block;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--mob-card-radius);
    border: 1px solid rgba(200, 80, 120, 0.10);
    box-shadow: 0 3px 18px rgba(180, 60, 100, 0.06);
    padding: 14px var(--mob-pad-x);
    text-align: center;
    margin: var(--mob-section-gap) var(--mob-pad-x);
  }

  .mobile-follow-panel h4 {
    font-family: var(--font-heading);
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
  }

  .mobile-follow-panel > p {
    font-size: 0.72rem;
    color: var(--text-soft);
    margin-bottom: 11px;
  }

  .mobile-social-row {
    display: flex;
    gap: 13px;
    justify-content: center;
  }

  .mob-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.13);
    transition: transform 0.18s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mob-social-btn:active { transform: scale(0.90); }
  .mob-social-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
  .mob-social-fb { background: linear-gradient(135deg, #1877F2, #0a58ca); }
  .mob-social-wa { background: linear-gradient(135deg, #25D366, #128C7E); }

  /* 14. MOBILE BOTTOM NAV */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    height: var(--mob-bottom-nav-h);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(255, 252, 254, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 -4px 24px rgba(180, 60, 100, 0.10);
    align-items: center;
    justify-content: space-around;
    border-radius: 18px 18px 0 0;
  }

  .mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: var(--text-soft);
    font-family: var(--font-body);
    font-size: clamp(0.54rem, 2vw, 0.66rem);
    font-weight: 500;
    padding: 8px 0 5px;
    transition: color 0.18s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mbn-item.mbn-active, .mbn-item:hover { color: var(--color-rose-deep); }
  .mbn-item svg { transition: transform 0.18s ease; }
  .mbn-item.mbn-active svg, .mbn-item:hover svg { transform: translateY(-2px); stroke: var(--color-rose); }

  .mbn-book {
    flex: 0 0 68px;
    padding-bottom: 12px;
    justify-content: flex-end;
    color: var(--color-rose-deep);
    position: relative;
  }

  .mbn-book-circle {
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(180, 60, 100, 0.40);
    border: 3px solid white;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }

  .mbn-book:hover .mbn-book-circle {
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 6px 24px rgba(180, 60, 100, 0.52);
  }

  .mbn-book > span {
    position: relative;
    z-index: 1;
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--color-rose-deep);
  }

  /* 15. HIDE desktop floating buttons */
  .floating-btns { display: none !important; }

  /* 16. OVERFLOW GUARD */
  /* ===== GLASS CARDS OVER BACKGROUND ===== */
  .glass-card {
    background: rgba(255, 255, 255, 0.68) !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
  }

  /* ===== FORM INPUTS OVER BACKGROUND ===== */
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  /* ===== CONTACT INFO CARDS ===== */
  .contact-info {
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .contact-form-wrap {
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

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

  /* ===== ACCESSIBILITY: REDUCED MOTION ===== */
  @media (prefers-reduced-motion: reduce) {
    .floating-petal,
    .background-particle,
    .hero-img {
      animation: none !important;
      transition: none !important;
    }
  }

} /* end @media (max-width: 767px) */

/* ===== DESKTOP PROTECTION: ensure mobile bg never shows above 768px ===== */
@media (min-width: 768px) {
  .mobile-background { display: none !important; }
}

/* Follow panel hidden on desktop */
.mobile-follow-panel { display: none; }

/* TABLET 768px-1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .hero-container { gap: var(--sp-xl); }
  .hero-img { max-width: 340px; height: 380px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .gallery-large, .gallery-large-vert { grid-column: span 1; grid-row: span 1; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* DEBUG MODE */
body.template-debug .hero-section { outline: 2px solid rgba(255, 0, 80, 0.30); }
body.template-debug .section      { outline: 2px solid rgba(0, 100, 255, 0.20); }

/* END MOBILE TEMPLATE LAYOUT SYSTEM v2 */