/* assets/css/styles.css - VIBRANT GLOW DESIGN - STRICT PALETTE ONLY */

/* ------------ Root + Reset ------------ */
:root {
  --peach: #fccdb7;
  --blush: #f5c6bc;
  --cream: #fff8f0;
  --deep-plum: #4a2c3d;
  --rich-chocolate: #3d2517;
  --burgundy: #8b3a3a;
  --warm-brown: #9d6b53;
  --glow-peach: rgba(252, 205, 183, 0.6);
  --glow-plum: rgba(74, 44, 61, 0.4);
  --max-width: 1120px;
  --radius-soft: 20px;
  --radius-blob: 60% 40% 30% 70% / 60% 30% 70% 40%;
  --shadow-soft: 0 20px 50px rgba(74, 44, 61, 0.15);
  --shadow-card: 0 10px 30px rgba(74, 44, 61, 0.12);
  --shadow-glow: 0 0 30px var(--glow-peach), 0 0 60px var(--glow-peach);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--rich-chocolate);
  background: linear-gradient(135deg, #f5e6dc 0%, #ecddd0 50%, #f5e6dc 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* ------------ Typography with Glow Effects ------------ */
h1, h2, h3 {
  margin: 0 0 0.75rem;
  color: var(--rich-chocolate);
}

h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(252, 205, 183, 0.4);
}

.hero-subtitle,
.subtitle {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
}

/* ADJUSTED H2 - smaller and tighter */
h2 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(1.75rem, 2.5vw, 2.1rem);
  font-weight: 600;
  color: var(--burgundy);
  text-shadow: 0 2px 10px rgba(139, 58, 58, 0.25);
  animation: headerGlow 3s ease-in-out infinite alternate;
  text-align: center;
  margin-bottom: 1rem;
}

@keyframes headerGlow {
  0% {
    text-shadow: 0 2px 10px rgba(139, 58, 58, 0.25), 0 0 20px rgba(252, 205, 183, 0.2);
  }
  100% {
    text-shadow: 0 2px 10px rgba(139, 58, 58, 0.35), 0 0 30px rgba(252, 205, 183, 0.4);
  }
}

/* ADJUSTED H3 - smaller */
h3 {
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--warm-brown);
}

/* ------------ Layout Helpers ------------ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  padding-top: 0;
}

/* ------------ Animated Background Elements ------------ */
@keyframes floatBlob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.blob-decoration {
  position: absolute;
  border-radius: var(--radius-blob);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  animation: floatBlob 20s ease-in-out infinite;
  filter: blur(40px);
}

/* ------------ CURVED DIVIDERS with COLORS ------------ */
.section-divider {
  position: relative;
  width: 100%;
  height: 80px;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Wave fill colors matching brand palette */
.wave-peach {
  fill: var(--peach);
}

.wave-blush {
  fill: var(--blush);
}

.wave-cream {
  fill: var(--cream);
}

/* ------------ HEADER with DARK GRADIENT LOGO BACKDROP ------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(135deg, #5a3c4e 0%, #4a2c3d 100%);
  border-bottom: 2px solid rgba(252, 205, 183, 0.3);
  box-shadow: 0 4px 20px rgba(74, 44, 61, 0.3), 0 0 40px rgba(252, 205, 183, 0.15);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* DARK GRADIENT BACKDROP BEHIND LOGO */
.logo-link {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(29, 16, 25, 0.9) 0%, rgba(20, 10, 16, 0.95) 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 3px rgba(252, 205, 183, 0.1);
}

.logo-link::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(252, 205, 183, 0.3), rgba(139, 58, 58, 0.2));
  z-index: -1;
  opacity: 0.6;
  filter: blur(8px);
  animation: logoBackdropGlow 3s ease-in-out infinite alternate;
}

@keyframes logoBackdropGlow {
  0% {
    opacity: 0.6;
    filter: blur(8px);
  }
  100% {
    opacity: 0.9;
    filter: blur(12px);
  }
}

.logo-link:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(20, 10, 16, 0.95) 0%, rgba(29, 16, 25, 0.9) 100%);
}

.logo-link:hover::before {
  opacity: 1;
  filter: blur(15px);
}

.site-logo {
  display: block;
  width: 220px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(252, 205, 183, 0.4)) brightness(1.05);
  transition: filter 0.3s ease;
}

.logo-link:hover .site-logo {
  filter: drop-shadow(0 4px 15px rgba(252, 205, 183, 0.7)) brightness(1.1);
}

@media (max-width: 767px) {
  .site-logo {
    width: 160px;
  }
  
  .header-inner {
    padding: 0.7rem 1.5rem;
  }
  
  .logo-link {
    padding: 0.4rem 0.8rem;
  }
}

/* Nav + menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  margin-left: auto;
  transition: transform 0.2s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

.menu-line {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--cream);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 0 8px rgba(252, 205, 183, 0.5);
}

.menu-line + .menu-line {
  margin-top: 5px;
}

.site-nav {
  margin-left: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(74, 44, 61, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: var(--peach);
  transition: width 0.3s ease-out;
  box-shadow: 0 0 10px var(--glow-peach);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--peach);
  text-shadow: 0 0 15px var(--glow-peach), 0 2px 8px rgba(74, 44, 61, 0.5);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

/* Header WhatsApp button with Glow */
.header-cta {
  margin-left: auto;
}

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 2px solid rgba(252, 205, 183, 0.6);
  background: linear-gradient(135deg, var(--peach), var(--blush));
  color: var(--deep-plum);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(252, 205, 183, 0.4), 0 0 30px var(--glow-peach);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 8px 20px rgba(252, 205, 183, 0.4), 0 0 30px var(--glow-peach);
  }
  50% {
    box-shadow: 0 8px 20px rgba(252, 205, 183, 0.5), 0 0 45px var(--glow-peach);
  }
}

.btn-whatsapp-header:hover,
.btn-whatsapp-header:focus-visible {
  background: linear-gradient(135deg, var(--blush), var(--peach));
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px rgba(252, 205, 183, 0.6), 0 0 50px var(--glow-peach);
}

/* Mobile header layout */
@media (max-width: 767px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    padding-top: 5rem;
    background: linear-gradient(135deg, #5a3c4e 0%, #4a2c3d 100%);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease-out, opacity 0.25s ease-out, visibility 0.25s;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .nav-link {
    font-size: 1.25rem;
  }

  .header-cta {
    margin-left: 0.75rem;
  }
}

@media (max-width: 480px) {
  .header-cta {
    display: none;
  }
}

/* ------------ Hero Section with haloglow-hero.webp ------------ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(80vh, 720px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: var(--cream);
  background: linear-gradient(135deg, #3d2517 0%, #5a3c4e 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/haloglow-hero.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61, 37, 23, 0.65) 0%,
    rgba(74, 44, 61, 0.75) 100%
  );
  z-index: 1;
}

.hero picture,
.hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 2;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.75rem 4.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--cream);
  text-align: left;
}

.hero-eyebrow {
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin: 0 0 0.8rem;
  color: var(--peach);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(61, 37, 23, 0.8), 0 0 20px var(--glow-peach);
  animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% {
    text-shadow: 0 2px 10px rgba(61, 37, 23, 0.8), 0 0 20px var(--glow-peach);
  }
  100% {
    text-shadow: 0 2px 10px rgba(61, 37, 23, 0.8), 0 0 35px var(--glow-peach);
  }
}

.hero h1 {
  color: var(--cream);
  text-shadow: 0 4px 20px rgba(61, 37, 23, 0.9), 0 0 30px var(--glow-peach);
  animation: titleGlow 3s ease-in-out infinite alternate;
  text-align: left;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 4px 20px rgba(61, 37, 23, 0.9), 0 0 30px var(--glow-peach);
  }
  100% {
    text-shadow: 0 4px 20px rgba(61, 37, 23, 0.9), 0 0 45px var(--glow-peach);
  }
}

.hero-subtitle {
  margin: 0 0 0.85rem;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(61, 37, 23, 0.8);
  text-align: left;
}

.hero-intro {
  max-width: 34rem;
  margin: 0 0 1.75rem;
  color: var(--cream);
  text-shadow: 0 2px 10px rgba(61, 37, 23, 0.8);
  font-size: 1.05rem;
  text-align: left;
}

.hero-subtext {
  margin-top: 0.75rem;
  color: rgba(255, 248, 240, 0.95);
  font-size: 0.9rem;
  text-shadow: 0 2px 8px rgba(61, 37, 23, 0.8);
  text-align: left;
}

.hero-note {
  margin-top: 1.25rem;
  color: rgba(255, 248, 240, 0.95);
  font-size: 0.9rem;
  text-shadow: 0 2px 8px rgba(61, 37, 23, 0.8);
  text-align: left;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ------------ PAGE HERO BANNER (NO BACKGROUND IMAGE) ------------ */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: linear-gradient(135deg, #3d2517 0%, #5a3c4e 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61, 37, 23, 0.75) 0%,
    rgba(74, 44, 61, 0.85) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-hero-content h1 {
  margin: 0 0 1rem;
  color: var(--cream);
  text-shadow: 0 4px 20px rgba(61, 37, 23, 0.9), 0 0 40px var(--glow-peach);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.page-hero-content .hero-subtitle {
  margin: 0;
  color: var(--cream);
  text-shadow: 0 2px 15px rgba(61, 37, 23, 0.9);
  font-size: 1.4rem;
  opacity: 0.95;
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 400px;
    max-height: 500px;
  }
  
  .page-hero-content {
    padding: 0 1.5rem;
  }
  
  .page-hero-content h1 {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
  }
  
  .page-hero-content .hero-subtitle {
    font-size: 1.1rem;
  }
}

/* CTA buttons with Enhanced Glow - WHITE TEXT ON SECONDARY */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, #fccdb7 0%, #f5c6bc 100%);
  color: var(--deep-plum);
  box-shadow: 0 10px 30px rgba(252, 205, 183, 0.4), 0 0 40px var(--glow-peach);
  border: 2px solid rgba(252, 205, 183, 0.8);
  animation: buttonGlow 2s ease-in-out infinite alternate;
}

@keyframes buttonGlow {
  0% {
    box-shadow: 0 10px 30px rgba(252, 205, 183, 0.4), 0 0 40px var(--glow-peach);
  }
  100% {
    box-shadow: 0 10px 30px rgba(252, 205, 183, 0.5), 0 0 60px var(--glow-peach);
  }
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #f5c6bc 0%, #fccdb7 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(252, 205, 183, 0.6), 0 0 70px var(--glow-peach);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 248, 240, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(74, 44, 61, 0.3), 0 0 30px rgba(252, 205, 183, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 248, 240, 0.3);
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(74, 44, 61, 0.4), 0 0 40px rgba(252, 205, 183, 0.3);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

@media (max-width: 767px) {
  .hero {
    min-height: 65vh;
    max-height: 700px;
  }

  .hero-content {
    padding: 3.25rem 1.4rem 3.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-secondary {
    width: auto;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 3rem 1.25rem 3.25rem;
  }

  .hero-intro {
    font-size: 0.95rem;
  }
}

/* ------------ Home Sections with Rich Backgrounds ------------ */
.home-section {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
}

.home-section:nth-of-type(odd) {
  background: linear-gradient(135deg, #ecddd0 0%, #d9c4b4 100%);
}

.home-section:nth-of-type(even) {
  background: linear-gradient(135deg, #c4a89a 0%, #b89585 100%);
}

/* CENTER SECTION TEXT */
.home-section p {
  margin: 0 auto 0.9rem;
  color: var(--rich-chocolate);
  text-align: center;
  max-width: 800px;
}

/* Add animated decorative blobs */
.home-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-blob);
  opacity: 0.15;
  z-index: 0;
  animation: floatBlob 25s ease-in-out infinite;
  filter: blur(60px);
}

.home-section:nth-of-type(odd)::before {
  background: radial-gradient(circle, #fccdb7, #f5c6bc);
  top: -200px;
  right: -150px;
}

.home-section:nth-of-type(even)::before {
  background: radial-gradient(circle, rgba(139, 58, 58, 0.4), rgba(157, 107, 83, 0.4));
  bottom: -200px;
  left: -150px;
}

.home-section .container {
  position: relative;
  z-index: 1;
}

/* Cards with Glow and Hover Animations - REDUCED PADDING */
.difference-grid,
.stages-grid,
.tourist-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2rem;
}

.difference-card,
.stage-card,
.tourist-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 240, 0.95) 100%);
  border-radius: var(--radius-soft);
  padding: 1.2rem 1.4rem;
  box-shadow: 0 10px 30px rgba(74, 44, 61, 0.15), 0 0 30px rgba(252, 205, 183, 0.2);
  border: 2px solid rgba(139, 58, 58, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.difference-card::before,
.stage-card::before,
.tourist-card::before {
  content: '';
  position: absolute;
  inset: -100%;
  background: linear-gradient(45deg, transparent 30%, rgba(252, 205, 183, 0.3) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.difference-card:hover,
.stage-card:hover,
.tourist-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(139, 58, 58, 0.3), 0 0 60px var(--glow-peach);
  border-color: rgba(139, 58, 58, 0.5);
}

.difference-card:hover::before,
.stage-card:hover::before,
.tourist-card:hover::before {
  opacity: 1;
  inset: -50%;
}

.difference-card h3 {
  color: var(--burgundy);
  text-shadow: 0 2px 8px rgba(139, 58, 58, 0.2);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.stage-card h3 {
  color: var(--warm-brown);
  text-shadow: 0 2px 8px rgba(157, 107, 83, 0.2);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.tourist-card h3 {
  color: var(--burgundy);
  text-shadow: 0 2px 8px rgba(139, 58, 58, 0.2);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.difference-card p,
.stage-card p,
.tourist-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.treatment-list {
  margin: 0.85rem 0 0.4rem;
  padding-left: 1.1rem;
}

.treatment-list li {
  margin-bottom: 0.35rem;
  color: var(--rich-chocolate);
  font-size: 0.9rem;
}

.home-visit-address {
  margin-top: 0.65rem;
  color: var(--rich-chocolate);
  font-size: 0.9rem;
}

.home-book-cta {
  margin-top: 1.1rem;
}

/* Responsive grids - 3 COLUMNS FOR WIDER CARDS */
@media (min-width: 720px) {
  .difference-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tourist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 480px) and (max-width: 719px) {
  .difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tourist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ------------ SERVICES PAGE with Glow ------------ */
.services-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, #ecddd0 0%, #d9c4b4 50%, #ecddd0 100%);
}

.services-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.service-category {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 240, 0.98) 100%);
  border-radius: var(--radius-soft);
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(74, 44, 61, 0.2), 0 0 40px rgba(252, 205, 183, 0.3);
  border: 2px solid rgba(139, 58, 58, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-category::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(252, 205, 183, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-category:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(139, 58, 58, 0.35), 0 0 70px var(--glow-peach);
  border-color: rgba(139, 58, 58, 0.5);
}

.service-category:hover::after {
  opacity: 1;
}

.service-category h2 {
  margin: 0 0 1.75rem;
  font-size: 1.75rem;
  color: var(--burgundy);
  padding-bottom: 1rem;
  border-bottom: 3px solid rgba(139, 58, 58, 0.35);
  text-shadow: 0 2px 10px rgba(139, 58, 58, 0.25), 0 0 20px rgba(252, 205, 183, 0.3);
  animation: headerGlow 3s ease-in-out infinite alternate;
  text-align: left;
}

.service-category-highlight {
  background: linear-gradient(135deg, rgba(252, 205, 183, 0.35) 0%, rgba(245, 198, 188, 0.35) 100%);
  border: 3px solid var(--peach);
  box-shadow: 0 20px 50px rgba(252, 205, 183, 0.4), 0 0 50px var(--glow-peach);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(139, 58, 58, 0.15);
  transition: all 0.3s ease;
}

.service-list li:hover {
  padding-left: 0.75rem;
  background: linear-gradient(90deg, rgba(252, 205, 183, 0.2), transparent);
  border-radius: 8px;
  border-bottom-color: rgba(139, 58, 58, 0.25);
  box-shadow: 0 0 15px rgba(252, 205, 183, 0.3);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-name {
  font-size: 1.05rem;
  color: var(--rich-chocolate);
  flex: 1;
  font-weight: 500;
}

.service-price {
  font-weight: 700;
  color: var(--burgundy);
  margin-left: 1rem;
  font-size: 1.15rem;
  text-shadow: 0 1px 5px rgba(139, 58, 58, 0.2);
}

.service-subsection {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 2px solid rgba(157, 107, 83, 0.25);
}

.service-subsection h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--warm-brown);
  text-shadow: 0 1px 5px rgba(157, 107, 83, 0.2);
}

.service-detail {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(92, 52, 46, 0.85);
}

.service-note {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--rich-chocolate);
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(252, 205, 183, 0.25), rgba(245, 198, 188, 0.25));
  border-radius: 12px;
  border-left: 4px solid var(--burgundy);
  box-shadow: 0 5px 15px rgba(139, 58, 58, 0.15);
}

.category-intro {
  font-size: 0.95rem;
  color: var(--rich-chocolate);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.walk-in-notice {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--burgundy);
  text-align: center;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, rgba(252, 205, 183, 0.3), rgba(245, 198, 188, 0.3));
  border-radius: var(--radius-soft);
  border: 2px solid var(--peach);
  margin-top: 2rem;
  box-shadow: 0 10px 25px rgba(252, 205, 183, 0.4), 0 0 40px var(--glow-peach);
  animation: noticeGlow 3s ease-in-out infinite alternate;
}

@keyframes noticeGlow {
  0% {
    box-shadow: 0 10px 25px rgba(252, 205, 183, 0.4), 0 0 40px var(--glow-peach);
  }
  100% {
    box-shadow: 0 10px 25px rgba(252, 205, 183, 0.5), 0 0 60px var(--glow-peach);
  }
}

.service-details {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex: 1;
}

.service-duration {
  font-size: 0.9rem;
  color: var(--warm-brown);
  font-style: italic;
  font-weight: 400;
}

.service-description {
  width: 100%;
  margin: 0.5rem 0 0 0;
  font-size: 0.9rem;
  color: rgba(92, 52, 46, 0.85);
  line-height: 1.5;
}

.service-list li {
  flex-wrap: wrap;
}

.service-list li > .service-price {
  align-self: flex-start;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .walk-in-notice {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
  
  .service-details {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .service-duration {
    font-size: 0.85rem;
  }
  
  .service-description {
    font-size: 0.85rem;
  }
}

/* ------------ CONTACT PAGE ------------ */
.contact-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, #ecddd0 0%, #d9c4b4 50%, #ecddd0 100%);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.contact-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 240, 0.98) 100%);
  border-radius: var(--radius-soft);
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(74, 44, 61, 0.2), 0 0 40px rgba(252, 205, 183, 0.3);
  border: 2px solid rgba(139, 58, 58, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-block::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(252, 205, 183, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.contact-block:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(139, 58, 58, 0.35), 0 0 70px var(--glow-peach);
  border-color: rgba(139, 58, 58, 0.45);
}

.contact-block:hover::after {
  opacity: 1;
}

.contact-block h2 {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  color: var(--burgundy);
  padding-bottom: 1rem;
  border-bottom: 3px solid rgba(139, 58, 58, 0.35);
  text-shadow: 0 2px 10px rgba(139, 58, 58, 0.25), 0 0 20px rgba(252, 205, 183, 0.3);
  text-align: left;
}

.contact-methods {
  margin-top: 1.5rem;
}

.contact-item {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(252, 205, 183, 0.2), rgba(245, 198, 188, 0.2));
  border-radius: 12px;
  border-left: 4px solid var(--burgundy);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(139, 58, 58, 0.1);
}

.contact-item:hover {
  background: linear-gradient(135deg, rgba(252, 205, 183, 0.3), rgba(245, 198, 188, 0.3));
  transform: translateX(8px);
  border-left-width: 6px;
  box-shadow: 0 8px 20px rgba(139, 58, 58, 0.2), 0 0 25px rgba(252, 205, 183, 0.3);
}

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

.contact-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--burgundy);
}

.contact-item-note {
  font-size: 0.85rem;
  color: var(--warm-brown);
  margin-top: 0.25rem;
  opacity: 0.95;
}

.contact-link {
  color: var(--deep-plum);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--burgundy);
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(139, 58, 58, 0.3);
}

.contact-address {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1rem;
  color: var(--rich-chocolate);
}

.contact-note {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(92, 52, 46, 0.85);
  padding: 1rem;
  background: rgba(252, 205, 183, 0.2);
  border-radius: 12px;
}

.contact-services-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.contact-services-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--rich-chocolate);
}

.contact-services-list li::before {
  content: '\u2726';
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-size: 1.2rem;
  animation: sparkle 2s ease-in-out infinite;
}

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

.location-features,
.booking-info {
  margin-top: 1.5rem;
}

.location-features h3,
.booking-info h3 {
  color: var(--warm-brown);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 5px rgba(157, 107, 83, 0.2);
}

.location-features ul,
.booking-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-features li,
.booking-info li {
  margin-bottom: 0.5rem;
  color: var(--rich-chocolate);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ------------ MAP SECTION ------------ */
.map-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, rgba(252, 205, 183, 0.2) 0%, rgba(139, 58, 58, 0.08) 100%);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--burgundy);
  text-shadow: 0 2px 10px rgba(139, 58, 58, 0.25), 0 0 20px rgba(252, 205, 183, 0.3);
}

.map-section p {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--rich-chocolate);
}

.map-container {
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(139, 58, 58, 0.3), 0 0 50px var(--glow-peach);
  border: 3px solid rgba(139, 58, 58, 0.4);
}

/* ------------ CTA SECTION ------------ */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(252, 205, 183, 0.4) 0%, rgba(245, 198, 188, 0.4) 50%, rgba(139, 58, 58, 0.2) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: var(--radius-blob);
  background: radial-gradient(circle, rgba(252, 205, 183, 0.7), rgba(139, 58, 58, 0.3));
  opacity: 0.6;
  top: -250px;
  left: -200px;
  z-index: 0;
  animation: floatBlob 30s ease-in-out infinite;
  filter: blur(80px);
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-blob);
  background: radial-gradient(circle, rgba(139, 58, 58, 0.4), rgba(157, 107, 83, 0.3));
  opacity: 0.6;
  bottom: -200px;
  right: -150px;
  z-index: 0;
  animation: floatBlob 25s ease-in-out infinite reverse;
  filter: blur(80px);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 15px rgba(139, 58, 58, 0.3), 0 0 30px rgba(252, 205, 183, 0.4);
}

.cta-section p {
  margin: 0 0 2.5rem;
  font-size: 1.15rem;
  color: var(--rich-chocolate);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 580px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}

/* ------------ Footer with DEEPER AUBERGINE & Lotus Glow ------------ */
.site-footer {
  background: linear-gradient(135deg, #3d2235 0%, #2b1822 100%);
  color: var(--cream);
  padding: 3.5rem 0 0;
  box-shadow: 0 -4px 20px rgba(74, 44, 61, 0.3), 0 0 40px rgba(252, 205, 183, 0.1);
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-logo-col {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  width: 280px;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 2px 10px rgba(252, 205, 183, 0.3));
  transition: all 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
  filter: drop-shadow(0 4px 15px rgba(252, 205, 183, 0.5));
  transform: scale(1.05);
}

.footer-heading {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--peach);
  text-shadow: 0 2px 8px rgba(61, 37, 23, 0.5), 0 0 15px rgba(252, 205, 183, 0.3);
  animation: headerGlow 3s ease-in-out infinite alternate;
}

.footer-text {
  margin: 0 0 0.65rem;
  color: rgba(255, 248, 240, 0.95);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-contact a,
.footer-hours a,
.footer-links a {
  color: var(--cream);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-hours a:hover,
.footer-hours a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--peach);
  text-decoration: underline;
  text-shadow: 0 0 15px var(--glow-peach);
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}

.footer-link-list li:hover {
  transform: translateX(5px);
}

.footer-link-list li:last-child {
  margin-bottom: 0;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 248, 240, 0.2);
  padding: 1.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.85);
}

.footer-bottom-left {
  color: rgba(255, 248, 240, 0.85);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.caramel-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.caramel-credit:hover,
.caramel-credit:focus-visible {
  color: var(--peach);
  text-decoration: underline;
  text-shadow: 0 0 15px var(--glow-peach);
  transform: scale(1.05);
}

/* LOTUS GLOW ANIMATION */
.caramel-logo {
  width: 26px;
  height: auto;
  transition: all 0.5s ease;
  animation: lotusGlow 3s ease-in-out infinite alternate;
}

@keyframes lotusGlow {
  0% {
    filter: drop-shadow(0 0 8px rgba(252, 205, 183, 0.4)) drop-shadow(0 0 12px rgba(252, 205, 183, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(252, 205, 183, 0.7)) drop-shadow(0 0 25px rgba(252, 205, 183, 0.5));
  }
}

.caramel-credit:hover .caramel-logo {
  filter: drop-shadow(0 0 20px rgba(252, 205, 183, 0.9)) drop-shadow(0 0 35px rgba(252, 205, 183, 0.7));
  transform: rotate(360deg) scale(1.15);
}

.footer-privacy-link {
  color: var(--cream);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-privacy-link:hover,
.footer-privacy-link:focus-visible {
  color: var(--peach);
  text-decoration: underline;
  text-shadow: 0 0 15px var(--glow-peach);
}

/* Footer responsive */
@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-logo-col {
    grid-column: 1 / -1;
    justify-content: center;
  }
  
  .footer-logo {
    width: 300px;
  }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem 2.5rem;
  }
  
  .footer-logo-col {
    justify-content: flex-start;
  }
  
  .footer-logo {
    width: 240px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    justify-content: center;
  }
}

/* ------------ Utility / Global ------------ */
a {
  color: var(--deep-plum);
}

a:hover,
a:focus-visible {
  color: var(--burgundy);
}

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

/* Sticky mobile WhatsApp with Enhanced Glow */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--peach), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(252, 205, 183, 0.5), 0 0 40px var(--glow-peach);
  text-decoration: none;
  z-index: 45;
  transition: all 0.3s ease;
  animation: floatWhatsApp 3s ease-in-out infinite;
}

@keyframes floatWhatsApp {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(252, 205, 183, 0.5), 0 0 40px var(--glow-peach);
  }
  50% {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(252, 205, 183, 0.6), 0 0 60px var(--glow-peach);
  }
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 15px 40px rgba(252, 205, 183, 0.7), 0 0 70px var(--glow-peach);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
}

@media (min-width: 768px) {
  .whatsapp-float {
    display: none;
  }
}