/* ==========================================================================
   Littlefy Store - CSS Custom Styling (2026 Premium Kids Retail Showroom)
   ========================================================================== */

/* --- CSS Variables & Design System --- */
:root {
  /* Core Color Palette */
  --primary-hue: 0;
  --secondary-hue: 48;
  --accent-hue: 128;
  --blue-hue: 216;
  --purple-hue: 264;
  
  --primary: hsl(var(--primary-hue), 100%, 71%);       /* #FF6B6B */
  --secondary: hsl(var(--secondary-hue), 100%, 62%);   /* #FFD93D */
  --accent: hsl(var(--accent-hue), 48%, 61%);          /* #6BCB77 */
  --blue: hsl(var(--blue-hue), 100%, 65%);             /* #4D96FF */
  --purple: hsl(var(--purple-hue), 100%, 71%);         /* #A66CFF */
  
  /* Neutral Palette */
  --bg: #FFFDF9;                                       /* Warm off-white */
  --text: #222222;                                     /* Deep charcoal */
  --text-muted: #555555;
  --border-color: rgba(34, 34, 34, 0.08);
  
  /* Glassmorphism Defaults */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  
  /* Spacing Heuristics */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

/* Accessible Focus States */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}

/* Skip-to-content Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 20px;
}

/* --- Layout Grid Systems --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.w-full { width: 100%; }

/* --- Typography System --- */
h1, h2, h3, h4 {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
  font-size: 1rem;
  color: var(--text-muted);
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 107, 107, 0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 12px;
  color: var(--text);
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto 32px auto;
  font-size: 1.1rem;
}

/* Color theme utilities */
.color-primary { color: var(--primary) !important; }
.color-secondary { color: var(--secondary) !important; }
.color-accent { color: var(--accent) !important; }
.color-blue { color: var(--blue) !important; }
.color-purple { color: var(--purple) !important; }

/* --- Interactive Ripple & Buttons --- */
.btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #FF5252 100%);
  color: white;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.35);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, #FFC107 100%);
  color: var(--text);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 217, 61, 0.35);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: white !important;
}
.btn-whatsapp:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35) !important;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border-color);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Custom dynamic category themes for buttons */
.btn-theme {
  background: var(--card-theme);
  color: white;
  font-weight: 700;
}
.btn-theme:hover {
  filter: brightness(0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--card-theme);
}

/* JavaScript Ripple Container & Keyframes */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  background-color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.btn-outline .ripple, .btn-secondary .ripple {
  background-color: rgba(0, 0, 0, 0.1);
}
@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --- Scroll Progress Indicator --- */
#scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent), var(--blue));
  z-index: 10000;
  transform-origin: 0 50%;
  transform: scaleX(0);
  transition: transform 0.1s ease;
}

/* --- Sticky Header & Announcement Bar --- */
.announcement-bar {
  background-color: var(--primary);
  color: white;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  z-index: 1001;
  position: relative;
}

.announcement-link {
  font-weight: 700;
  margin-left: 8px;
  border-bottom: 1px dashed white;
}

.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 24px 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

/* Header transition modifications on scroll */
.main-header.shrunk {
  padding: 12px 0;
  background: rgba(255, 253, 249, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(34, 34, 34, 0.04);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Design */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.logo-highlight {
  color: var(--primary);
}

/* --- Navigation System & Mega Menu --- */
.desktop-nav {
  display: block;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 4px;
}

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

/* Mega Menu Dropdown Setup */
.has-mega-menu {
  position: relative;
}

.mega-menu-trigger {
  border: none;
  background: none;
}

.chevron-icon {
  transition: transform 0.3s ease;
}
.has-mega-menu:hover .chevron-icon {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 900px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1000;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.mega-col {
  display: flex;
  flex-direction: column;
}

.mega-title {
  font-size: 0.95rem;
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(0,0,0,0.03);
  padding-bottom: 6px;
  font-weight: 800;
}

.mega-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.mega-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* Header CTAs layout */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-toggle {
  display: none;
}

/* --- Glassmorphism Card System --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-bounce);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.75);
}

/* --- Hero Section & Floating Elements --- */
.hero-section {
  padding: 60px 0 100px 0;
  position: relative;
  background-color: var(--bg);
}

.hero-container {
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.highlight-text {
  color: var(--primary);
  background: linear-gradient(120deg, rgba(255, 217, 61, 0.3) 0%, rgba(255, 107, 107, 0.1) 100%);
  padding: 0 4px;
  border-radius: 6px;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Right Side Assets & Floating UI Cards */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.image-wrapper {
  position: relative;
  width: 90%;
  max-width: 480px;
}

.circle-backdrop {
  position: absolute;
  top: -10px;
  left: -20px;
  width: 105%;
  height: 105%;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 217, 61, 0.15));
  border-radius: 50% 60% 40% 50% / 50% 40% 65% 50%;
  z-index: 0;
  animation: blob-bounce 12s infinite alternate;
}

.hero-main-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 4px solid white;
}

/* Floating Badges Style */
.floating-card {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  font-weight: 700;
  font-size: 0.9rem;
}

.card-tick {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
}
.tick-yellow { background: var(--secondary); color: var(--text); }
.tick-green { background: var(--accent); }
.tick-blue { background: var(--blue); }

.float-card-1 { top: 15%; left: -15%; }
.float-card-2 { bottom: 18%; left: -20%; }
.float-card-3 { top: 40%; right: -12%; }
.float-card-4 { bottom: 8%; right: -5%; }

/* Background Animated Blobs */
.blob-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.35;
}
.blob-primary {
  width: 400px;
  height: 400px;
  background-color: var(--primary);
  top: 10%;
  left: -100px;
}
.blob-secondary {
  width: 350px;
  height: 350px;
  background-color: var(--secondary);
  bottom: 20%;
  right: -100px;
}
.blob-accent {
  width: 400px;
  height: 400px;
  background-color: var(--accent);
  top: 20%;
  left: 20%;
}

/* Bubble float decorations */
.bubble-shapes .bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 107, 107, 0.1) 70%);
  box-shadow: inset -5px -5px 15px rgba(0, 0, 0, 0.05);
  animation: float-bubble 8s infinite ease-in-out;
  z-index: -1;
}

.bubble-1 { width: 60px; height: 60px; left: 10%; top: 45%; }
.bubble-2 { width: 40px; height: 40px; right: 25%; top: 15%; animation-duration: 6s; }
.bubble-3 { width: 80px; height: 80px; right: 10%; bottom: 10%; animation-duration: 10s; }
.bubble-4 { width: 50px; height: 50px; left: 5%; top: 20%; }
.bubble-5 { width: 70px; height: 70px; right: 15%; bottom: 30%; animation-duration: 9s; }

/* --- Stats counters styling --- */
.stats-section {
  padding: 40px 0;
  position: relative;
  z-index: 5;
}

.stat-card {
  padding: 24px;
}

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.stat-num {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --- Why Choose Us Section --- */
.why-choose-section {
  padding: 100px 0;
  background-color: var(--bg);
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Colorful soft backgrounds */
.bg-primary-soft { background-color: rgba(255, 107, 107, 0.1); color: var(--primary); }
.bg-secondary-soft { background-color: rgba(255, 217, 61, 0.15); color: var(--text); }
.bg-accent-soft { background-color: rgba(107, 203, 119, 0.1); color: var(--accent); }
.bg-blue-soft { background-color: rgba(77, 150, 255, 0.15); color: var(--blue); }
.bg-purple-soft { background-color: rgba(166, 108, 255, 0.1); color: var(--purple); }
.bg-pink-soft { background-color: rgba(255, 107, 107, 0.08); color: var(--primary); }

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Product Categories Section --- */
.categories-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg);
}

.categories-grid {
  row-gap: 40px;
}

.category-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--card-theme);
}

.category-img-container {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img {
  transform: scale(1.06);
}

.category-icon {
  position: absolute;
  bottom: -15px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: var(--card-theme);
  border: 3px solid white;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.category-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-name {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text);
}

.subcategory-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.subcategory-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.subcategory-list li::before {
  content: "✨";
  font-size: 0.8rem;
  opacity: 0.7;
}

/* --- Featured Brands Section --- */
.brands-section {
  padding: 60px 0;
  background-color: var(--bg);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 90px;
  text-align: center;
}

.brand-item span {
  font-family: 'Baloo 2', cursive;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.brand-item:hover span {
  color: var(--primary);
  opacity: 1;
}

/* --- Store Gallery (Masonry Grid) --- */
.gallery-section {
  padding: 100px 0;
  background-color: var(--bg);
}

.masonry-gallery {
  column-count: 3;
  column-gap: 24px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 4px solid white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg) !important;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 107, 107, 0.8) 0%, rgba(255, 217, 61, 0.3) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: var(--transition-smooth);
}

.gallery-text {
  color: white;
  font-size: 1.2rem;
  font-family: 'Baloo 2', cursive;
}

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

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

/* --- Customer Testimonials Slider --- */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg);
}

.slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

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

.testimonial-card {
  min-width: 100%;
  flex-shrink: 0;
  text-align: center;
  padding: 40px;
}

.stars {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.author-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Testimonial Buttons */
.slider-controls {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 10px;
  z-index: 10;
}

.slider-btn {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: var(--text);
  transition: var(--transition-bounce);
  pointer-events: auto;
  border: 1px solid var(--border-color);
}

.slider-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

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

.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 5px;
}

/* --- Visit Our Store (Map & Details) --- */
.visit-section {
  padding: 100px 0;
  background-color: var(--bg);
}

.visit-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address-details-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: white;
  margin-top: 28px;
}

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

.address-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 107, 107, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.address-text h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 4px;
}

.address-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.phone-link {
  font-weight: 700;
  color: var(--primary);
}

.visit-ctas {
  display: flex;
  gap: 16px;
}

/* Vector Map Representation */
.map-wrapper {
  padding: 16px;
  background: white;
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.map-svg {
  display: block;
}

.map-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* --- FAQ Accordion --- */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg);
}

.max-width-md {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

/* Summary Trigger */
.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 1.1rem;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: var(--transition-smooth);
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary:hover {
  background: rgba(255, 107, 107, 0.02);
}

/* Summary Chevron Icon */
.faq-summary .chevron-icon {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: var(--text-muted);
}

.faq-item[open] .faq-summary {
  background: rgba(255, 107, 107, 0.04);
  border-bottom: 1px solid var(--border-color);
}

.faq-item[open] .faq-summary .chevron-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Disclosure Content Details */
.faq-content {
  padding: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: white;
}

/* --- Call To Action Section --- */
.cta-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--primary);
  color: white;
  overflow: hidden;
}

.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
  color: white;
}

.cta-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 36px;
}

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

.cta-section .btn-outline {
  border-color: white;
  color: white;
}
.cta-section .btn-outline:hover {
  background: white;
  color: var(--primary);
}

/* --- Footer & Sticky mobile action bars --- */
.main-footer {
  background-color: #FFFDF9;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 80px 0 20px 0;
  position: relative;
  z-index: 5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-about {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-bounce);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  border-color: var(--primary);
}

.footer-title {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-address {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal a {
  margin-left: 12px;
  transition: var(--transition-smooth);
}
.footer-legal a:hover {
  color: var(--primary);
}

/* Back to Top Floating Button */
.back-to-top {
  position: fixed;
  bottom: 85px;
  right: 24px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-bounce);
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(255, 107, 107, 0.45);
}

/* Sticky mobile footer contact bar */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: none;
  grid-template-columns: repeat(3, 1fr);
  z-index: 998;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  transition: var(--transition-smooth);
  border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.action-item:last-child {
  border-right: none;
}

.action-whatsapp {
  background-color: #25D366;
  color: white;
}

/* --- Layout Animations & Keyframes --- */
@keyframes float-bubble {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes blob-bounce {
  0% { border-radius: 50% 60% 40% 50% / 50% 40% 65% 50%; }
  100% { border-radius: 60% 40% 60% 50% / 40% 60% 45% 60%; }
}

.animate-float {
  animation: float-badge 6s infinite ease-in-out;
}
.delay-1 { animation-delay: 1.5s; }
.delay-2 { animation-delay: 3s; }
.delay-3 { animation-delay: 4.5s; }

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

.animate-wiggle {
  animation: logo-wiggle 4s infinite ease-in-out;
}
@keyframes logo-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

/* --- Scroll Reveal and intersection indicators --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Declarative View/Scroll timeline where supported */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    /* Smooth revealing of items as they scroll into view */
    @keyframes reveal-in {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .reveal {
      animation: reveal-in auto linear both;
      animation-timeline: view();
      animation-range: entry 10% entry 40%;
    }
  }
  
  @supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
    /* Sticky header shrink effect */
    @keyframes shrink-header {
      to {
        padding: 12px 0;
        background: rgba(255, 253, 249, 0.85);
        backdrop-filter: blur(16px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid rgba(34, 34, 34, 0.04);
      }
    }
    .main-header {
      animation: shrink-header auto linear both;
      animation-timeline: scroll(block root);
      animation-range: 0px 80px;
    }
    
    /* Scroll progress bar fill */
    @keyframes progress-fill {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    #scroll-progress {
      animation: progress-fill auto linear;
      animation-timeline: scroll(block root);
    }
  }
}

/* Disable animations for users with motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Responsive Breakpoints & Media Queries
   ========================================================================== */

/* 1024px (Laptops & Small Desktops) */
@media (max-width: 1024px) {
  .mega-menu {
    width: 720px;
  }
  .mega-menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* 768px (Tablets) */
@media (max-width: 768px) {
  /* Layout modifications */
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hero-section {
    padding: 30px 0 60px 0;
  }
  .hero-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-visual {
    justify-content: center;
  }
  .image-wrapper {
    width: 85%;
  }
  
  /* Hide desktop menu & show burger trigger */
  .desktop-nav, .header-ctas .btn-outline, .header-ctas .btn-secondary {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text);
    transition: var(--transition-smooth);
  }
  .mobile-nav-toggle:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
  }
  
  .masonry-gallery {
    column-count: 2;
  }
  
  /* Show sticky mobile bar & adjust page margins */
  body {
    padding-bottom: 64px;
  }
  
  .mobile-action-bar {
    display: grid;
  }
  
  .back-to-top {
    bottom: 80px;
    right: 16px;
  }
  
  .visit-section .grid-2 {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* Mobile Drawer Overlay and Navigation Drawer Styles */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: white;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.active {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1001;
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-muted);
}

.drawer-nav {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drawer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-link {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

/* Collapsible Mobile Menu details block */
.drawer-details {
  border-bottom: 1px solid rgba(0,0,0,0.02);
  padding-bottom: 12px;
}

.drawer-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  cursor: pointer;
}

.drawer-summary::-webkit-details-marker {
  display: none;
}

.drawer-summary .chevron-icon {
  transition: transform 0.3s ease;
}

.drawer-details[open] .drawer-summary .chevron-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.drawer-sublinks {
  list-style: none;
  padding-left: 16px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-sublinks a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 425px & 375px (Compact Phones) */
@media (max-width: 425px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .visit-ctas {
    flex-direction: column;
  }
  .visit-ctas .btn {
    width: 100%;
  }
  .masonry-gallery {
    column-count: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .floating-card {
    display: none; /* Hide floating badges on very small phones to avoid overlap */
  }
}

/* 4K Displays (Visual adjustments) */
@media (min-width: 2560px) {
  .container {
    max-width: 2000px;
  }
  html {
    font-size: 24px;
  }
  .mega-menu {
    width: 1600px;
  }
}
