/* ==========================================================================
   Glow Esthetic - Core Design System & Styling
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens / Variables --- */
:root {
  /* Elegant Color Palette */
  --bg-primary: #FFF5F7;          /* Soft rose-cream */
  --bg-secondary: #FFFFFF;        /* Pure white for containers */
  --bg-accent-light: #FFF0F2;     /* Lighter rose for subtle highlights */
  --border-color: #FCDADF;        /* Soft pinkish border */
  
  --text-main: #2C2526;           /* Luxurious dark charcoal */
  --text-muted: #6B5E60;          /* Soft grey-brown for body text */
  --text-light: #A89B9D;          /* Lighter text for secondary details */
  
  --primary: #C96B6D;             /* Main rose-gold / terracotta accent */
  --primary-light: #ECA8A9;       /* Lighter rose accent */
  --primary-dark: #A94E50;        /* Deep berry accent */
  --gold: #C9A84C;                /* Muted gold for premium highlights */
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Layout and Effects */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(201, 107, 109, 0.04);
  --shadow-md: 0 10px 30px rgba(201, 107, 109, 0.08);
  --shadow-lg: 0 20px 50px rgba(201, 107, 109, 0.15);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.page-content {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-content.loaded {
  opacity: 1;
  transform: translateY(0);
}

.page-content.leaving {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.4s ease-in,
              transform 0.4s ease-in;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

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

button {
  font-family: var(--font-sans);
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
}

/* --- Layout Components --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  width: 100%;
}

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

.page-hero-section {
  padding-top: 150px;
  padding-bottom: 6rem;
}

/* --- Navigation & Header --- */
.header {
  background: rgba(255, 245, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(201, 107, 109, 0.05);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(255, 245, 247, 0.96);
  padding: 0.2rem 0;
  box-shadow: 0 10px 35px rgba(201, 107, 109, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--primary);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Language Selector */
.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  gap: 4px;
}

.lang-btn {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  color: var(--text-light);
}

.lang-btn.active {
  background: var(--primary-light);
  color: white;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(201, 107, 109, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 107, 109, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary-light);
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.btn-secondary:hover {
  background: var(--bg-accent-light);
  border-color: var(--primary);
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 5px;
}

.nav-menu-btn span {
  width: 26px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Mobile Menu overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 1001;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  transition: var(--transition-smooth);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: var(--text-light);
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-nav-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 107, 109, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.mobile-nav-link::after {
  content: '→';
  font-size: 1rem;
  opacity: 0.3;
  transform: translateX(-5px);
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--primary);
  padding-left: 8px;
}

.mobile-nav-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFF0F1 0%, #FCE4E4 50%, #F7CDD0 100%);
  overflow: hidden;
  padding-top: 100px;
}

.hero-background-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236,168,169,0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  pointer-events: none;
}

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

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}

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

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

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.95);
  animation: scaleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-img-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  opacity: 0.2;
  filter: blur(20px);
  animation: blobMorph 12s ease-in-out infinite alternate;
}

.hero-image {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  border: 4px solid var(--bg-secondary);
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes blobMorph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  50% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 60%; }
  100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-weight: 300;
}

/* --- Services Section --- */
.services-tabs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

.tabs-scroll {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 6px;
  border-radius: var(--radius-full);
  max-width: 100%;
}

.tab-pill {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  white-space: nowrap;
}

.tab-pill.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(201, 107, 109, 0.2);
}

.tab-pill:hover:not(.active) {
  background: var(--bg-accent-light);
  color: var(--primary);
}

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

.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-icon {
  font-size: 2rem;
}

.service-time {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--border-color);
  padding-top: 1.5rem;
}

.service-book-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-book-btn:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* --- FAQ Section --- */
.faq-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
  gap: 1rem;
}

.faq-trigger span {
  font-family: var(--font-sans);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 1.5rem;
}

.faq-item.open .faq-content {
  max-height: 300px; /* Safe upper bound */
  padding: 0 1.5rem 1.5rem;
}

.faq-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* --- Contact & Location --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

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

.contact-icon-wrapper {
  background: var(--bg-accent-light);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.contact-value a:hover {
  color: var(--primary);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 380px;
}

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

/* --- Footer --- */
.footer {
  background: linear-gradient(135deg, #FCE4E4 0%, #FFF5F7 100%);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-main);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-legal-bar {
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social-btn.instagram {
  color: var(--text-muted);
}
.footer-social-btn.instagram:hover {
  background: #E1306C;
  color: white;
  border-color: #E1306C;
  transform: translateY(-3px);
}

.footer-social-btn.whatsapp {
  color: var(--text-muted);
}
.footer-social-btn.whatsapp:hover {
  background: #25D366;
  color: white;
  border-color: #25D366;
  transform: translateY(-3px);
}

.footer-compliance {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-compliance a:hover {
  text-decoration: underline;
  color: var(--primary);
}

/* Floating WhatsApp Button */
.whatsapp-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition-bounce);
}

.whatsapp-floating:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-floating svg {
  fill: white;
  width: 32px;
  height: 32px;
}

/* --- Responsive: Tablet (≤992px) --- */
@media (max-width: 992px) {
  /* Layout */
  .container {
    padding: 0 1.5rem;
  }

  section {
    padding: 5rem 0;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-image-wrapper {
    max-width: 380px;
    margin: 0 auto;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .map-wrapper {
    min-height: 320px;
  }

  /* About */
  .about-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

}

/* --- Responsive: Mobile (≤768px) --- */
@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .nav-menu-btn {
    display: flex;
  }
  .nav-container {
    height: 65px;
  }
  .logo-title {
    font-size: 1.7rem;
  }

  /* Layout */
  .container {
    padding: 0 1.2rem;
  }
  section {
    padding: 4.5rem 0;
  }
  .page-hero-section {
    padding-top: 100px;
    padding-bottom: 4rem;
  }

  /* Hero */
  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 4rem;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 18px;
  }
  .hero-image {
    max-width: 300px;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 3rem;
  }
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  /* Services Tabs */
  .tabs-scroll {
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: var(--radius-lg);
    padding: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .tabs-scroll::-webkit-scrollbar {
    height: 0;
  }
  .tab-pill {
    font-size: 0.8rem;
    padding: 0.5rem 1.1rem;
  }

  /* Service Cards */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-card {
    min-height: auto;
    padding: 2rem;
  }

  /* About page */
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .team-img {
    height: 220px;
  }

  /* Contact Form */
  .contact-form-wrapper {
    padding: 1.75rem !important;
  }

  /* Footer */
  .footer {
    padding: 3.5rem 0 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .footer-legal-bar {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1rem;
  }
  .footer-compliance {
    justify-content: center;
  }

  /* WhatsApp button */
  .whatsapp-floating {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
  .whatsapp-floating svg {
    width: 26px;
    height: 26px;
  }
}

/* --- Responsive: Small Phones (≤480px) --- */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  section {
    padding: 3.5rem 0;
  }

  /* Hero */
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .hero-btns a,
  .hero-btns button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }
  .hero-image {
    max-width: 260px;
  }

  /* Nav */
  .logo-title {
    font-size: 1.5rem;
  }
  .logo-subtitle {
    display: none;
  }

  /* Tabs */
  .tabs-scroll {
    gap: 0.5rem;
  }
  .tab-pill {
    font-size: 0.75rem;
    padding: 0.45rem 0.9rem;
  }

  /* Forms */
  .contact-form-wrapper {
    padding: 1.25rem !important;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Footer */
  .footer-socials {
    justify-content: center;
  }
}



/* About Us Layouts */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: center;
}

.about-owner-portrait {
  position: relative;
  max-width: 300px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-md);
  background: var(--bg-secondary);
}

.about-owner-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.value-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 1rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}
.team-info {
  padding: 2rem;
}
.team-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: block;
}
.team-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

@media (max-width: 992px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .about-owner-portrait {
    margin: 0 auto;
  }
}

/* --- Treatments Hero Grid --- */
.treatments-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}

.treatments-hero-right .carousel-track {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(201, 107, 109, 0.18);
  border: 1px solid var(--border-color);
}

.treatments-hero-right .carousel-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .treatments-hero-grid {
    grid-template-columns: 1fr;
  }
  .treatments-hero-right {
    order: -1;
  }
  .treatments-hero-right .carousel-slide img {
    height: 300px;
  }
  .treatments-hero-left .section-header {
    text-align: center !important;
  }
}

/* --- Carousel --- */
.carousel-wrapper {
  max-width: 680px !important;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(201, 107, 109, 0.18);
  border: 1px solid var(--border-color);
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}

.carousel-caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 245, 247, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--primary-dark);
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border-color);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 245, 247, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--primary);
  z-index: 10;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.2rem;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}
.carousel-dot.active {
  background: var(--primary);
  width: 20px;
  border-radius: var(--radius-full);
}

@media (max-width: 768px) {
  .carousel-wrapper { max-width: 100% !important; }
  .carousel-btn { width: 34px; height: 34px; font-size: 1.2rem; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: rgba(255, 245, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(44, 37, 38, 0.12);
  z-index: 10000;
  max-width: 640px;
  width: 90%;
  animation: fadeInUpCookie 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-main);
  margin: 0;
  font-weight: 300;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.cookie-btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cookie-btn-primary {
  background: var(--primary);
  color: white;
  border: none;
}
.cookie-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}
.cookie-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-main);
  transform: translateY(-1px);
}

@keyframes fadeInUpCookie {
  from {
    opacity: 0;
    transform: translate3d(-50%, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 576px) {
  .cookie-banner {
    bottom: 1rem;
    padding: 1.25rem 1.25rem;
  }
  .cookie-content p {
    font-size: 0.8rem;
  }
}

