@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Fredoka:wght@600&family=Pacifico&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  --color-bg: #FAF9F5; /* Premium soft cream background */
  --color-text: #1E1E1C; /* Dark Charcoal text for high readability */
  --color-text-light: #6A6A66; /* Muted Slate Grey for secondary text */
  --color-primary: #2D6A4F; /* Forest Green storefront branding */
  --color-primary-hover: #1B4332;
  --color-primary-light: #EBF3ED; /* Light Green tint for active elements/badges */
  --color-secondary: #AE2E24; /* Warm Red storefront branding */
  --color-secondary-hover: #8D241C;
  --color-secondary-light: #FCEBEA; /* Light Red tint for warning states/inquiries */
  --color-accent: #1E1E1C;
  --color-accent-light: #FAF9F5;
  --color-card-bg: #FFFFFF; /* Pure White card background for clean separation */
  --color-border: #E5E3DF; /* Soft warm border for cards and dividers */
  --color-shadow: rgba(30, 30, 28, 0.04); /* Very soft shadow for a clean print-like feel */
  
  --font-title: 'Outfit', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

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

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

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('assets/images/baby-boutique-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.06; /* Slightly more visible watermark */
  z-index: -1;
  pointer-events: none;
  animation: slowPanZoom 45s ease-in-out infinite;
  transform-origin: center;
}

@keyframes slowPanZoom {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  50% {
    transform: scale(1.12) translate(-1%, -0.5%);
  }
  100% {
    transform: scale(1.05) translate(0, 0);
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.25;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* --- TYPOGRAPHY UTILITIES --- */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-md { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 2rem; }
.text-4xl { font-size: 2.75rem; }

.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.color-primary { color: var(--color-primary); }
.color-secondary { color: var(--color-secondary); }
.color-muted { color: var(--color-text-light); }

/* --- CONTAINERS & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-title);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(45, 106, 79, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(174, 46, 36, 0.2);
}

.btn-outline {
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* --- WHATSAPP INQUIRY BUTTON --- */
.btn-inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background-color: #25D366; /* Official WhatsApp Green */
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.15);
  transition: var(--transition-fast);
}

.btn-inquire:hover {
  background-color: #128C7E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
}

.btn-inquire svg {
  fill: currentColor;
}

/* --- GLASSMORPHIC NAVBAR --- */
header.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

header.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: var(--transition-smooth);
  z-index: -1;
  border-bottom: 1px solid transparent;
}

header.navbar.scrolled {
  padding: 0.75rem 0;
}

header.navbar.scrolled::before {
  background: rgba(250, 249, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 30px rgba(30, 30, 28, 0.05);
}

/* NATIVE SCROLL ANIMATION (where supported) */
@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  header.navbar {
    animation: shrinkHeader auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 80px;
  }
  
  @keyframes shrinkHeader {
    to {
      padding: 0.75rem 0;
    }
  }
  
  header.navbar::before {
    animation: blurHeader auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 80px;
  }
  
  @keyframes blurHeader {
    to {
      background: rgba(250, 249, 245, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--color-border);
      box-shadow: 0 4px 30px rgba(30, 30, 28, 0.05);
    }
  }
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.logo-avva {
  font-family: 'Pacifico', sans-serif;
  color: #ff3d5c;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1.5px 1.5px 0px rgba(0,0,0,0.15);
}

.logo-baby {
  font-family: 'Fredoka', sans-serif;
  color: #2D6A4F;
  font-weight: 600;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1.5px 1.5px 0px rgba(0,0,0,0.15);
  margin-left: 0.05rem;
}

.logo-care {
  font-family: 'Pacifico', cursive;
  color: #ff3d5c;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1.5px 1.5px 0px rgba(0,0,0,0.15);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-light);
  position: relative;
  padding: 0.25rem 0;
}

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

/* --- HERO SECTION --- */
.hero {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: radial-gradient(circle at 80% 20%, var(--color-secondary-light) 0%, transparent 40%);
  display: flex;
  align-items: center;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  color: var(--color-text);
}

.hero-title span {
  color: var(--color-primary);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 8px solid var(--color-card-bg);
  background-color: var(--color-card-bg);
}

.hero-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.03);
}

.hero-floating-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 35px rgba(30, 30, 28, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 4s ease-in-out infinite;
}

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

/* --- REVEAL ANIMATIONS ON SCROLL --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@supports ((animation-timeline: view()) and (animation-range: entry 0% entry 100%)) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: fadeInUp auto linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* --- CORE VALUE PROPOSITIONS (WHY AVVA) --- */
.values {
  background-color: transparent;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-subtitle {
  color: var(--color-primary);
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-text);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.value-card {
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 30, 28, 0.08);
  border-color: var(--color-primary);
  background-color: var(--color-card-bg);
}

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

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg);
  color: var(--color-primary);
  box-shadow: 0 4px 10px rgba(30, 30, 28, 0.05);
}

.value-card:hover .value-icon {
  background-color: var(--color-primary-light);
}

.value-card h3 {
  font-size: 1.35rem;
}

.value-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* --- BOUTIQUE GALLERY --- */
.store-gallery {
  background-color: transparent;
}

.gallery-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--color-card-bg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.gallery-featured img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.gallery-thumb {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-fast);
  opacity: 0.6;
}

.gallery-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--color-primary);
  box-shadow: 0 4px 10px rgba(112, 163, 128, 0.2);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(28, 28, 28, 0.8), transparent);
  color: white;
  padding: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}



/* --- CURATED PRODUCTS GRID --- */
.products {
  background-color: transparent;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-title);
  font-weight: 500;
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  transition: var(--transition-fast);
  color: var(--color-text-light);
}

.filter-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.filter-btn.active {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(46, 44, 42, 0.06);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-secondary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.product-image-wrapper {
  position: relative;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background-color: #F8F5F2;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-secondary);
  font-weight: 600;
}

.product-title {
  font-size: 1.15rem;
  color: var(--color-text);
  font-weight: 600;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.product-price {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* --- AGE GUIDE TOOL --- */
.age-guide {
  background-color: transparent;
}

.age-tool {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 15px 45px rgba(30, 30, 28, 0.04);
}

.age-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.age-tab {
  padding: 1.5rem;
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-smooth);
}

.age-tab:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.age-tab.active {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(45, 106, 79, 0.1);
}

.age-tab-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.age-tab-range {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.age-tab.active .age-tab-title {
  color: var(--color-text);
}

.age-content {
  position: relative;
  min-height: 250px;
}

.age-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  animation: fadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.age-panel.active {
  display: grid;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.age-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.age-badge {
  font-family: var(--font-title);
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.age-panel-title {
  font-size: 2.25rem;
  color: var(--color-text);
}

.age-milestones {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0;
  list-style: none;
}

.age-milestones li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.age-milestones li svg {
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.age-recs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: var(--color-card-bg);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.rec-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.75rem;
}

.rec-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.rec-item-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rec-item-thumb {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background-color: var(--color-bg);
  object-fit: cover;
}

.rec-item-name {
  font-weight: 500;
  font-size: 0.95rem;
}

/* --- LOCAL LOVE & CONTACT (MANGALORE) --- */
.contact {
  background-color: transparent;
}

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

.contact-info-card {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-brand h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

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

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-item-text p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  white-space: pre-line;
}

.map-container {
  position: relative;
  height: 320px;
  background-color: var(--color-card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(30, 30, 28, 0.04);
}

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

/* --- CONSULTATION FORM --- */
.contact-form-card {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.form-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-bg);
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-primary);
  background-color: var(--color-bg);
  box-shadow: 0 0 0 4px var(--color-primary-light);
}

/* Styled customizable select input */
.form-select-wrapper {
  position: relative;
}

.form-select-wrapper::after {
  content: '▼';
  font-size: 0.7rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
  pointer-events: none;
}

.form-select {
  appearance: none;
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-bg);
  cursor: pointer;
  transition: var(--transition-fast);
}

.form-select:focus {
  border-color: var(--color-primary);
  background-color: var(--color-bg);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* User inputs validation visual styling */
.form-input:focus:invalid {
  border-color: #D9383A;
}

.form-input:focus:invalid ~ .input-error {
  display: block;
}

.input-error {
  display: none;
  color: #D9383A;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.form-success-message {
  display: none;
  background-color: var(--color-secondary-light);
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary-hover);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  animation: fadeIn 0.4s ease forwards;
}

/* --- TESTIMONIALS SLIDER --- */
.testimonials {
  background-color: transparent;
}

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

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.quote-icon {
  color: var(--color-primary-light);
  width: 3rem;
  height: 3rem;
}

.testimonial-text {
  font-size: 1.5rem;
  font-family: var(--font-title);
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-weight: 600;
  font-size: 1.1rem;
}

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

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

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

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

/* --- FOOTER --- */
footer {
  background-color: #121212;
  color: white;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: #A39E98;
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: #A39E98;
}

.footer-links a:hover {
  color: var(--color-primary-light);
  transform: translateX(3px);
}

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

.footer-social-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A39E98;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-full);
  color: white;
  flex-grow: 1;
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: #6E6A66;
}

.newsletter-input:focus {
  border-color: var(--color-primary);
  background-color: rgba(255,255,255,0.08);
}

.newsletter-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background-color: var(--color-primary-hover);
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #6E6A66;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-featured img {
    height: 320px;
  }
  .gallery-thumb {
    height: 60px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  .hero-content {
    display: contents;
  }
  .hero-badge {
    order: 1;
    margin: 0 auto;
  }
  .hero-title {
    order: 2;
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  .hero-image-container {
    order: 3;
    margin: 2rem 0;
    width: 100%;
    max-width: 620px;
  }
  .hero-image {
    height: 320px;
  }
  .hero-floating-card {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    bottom: -1.25rem;
    white-space: nowrap;
  }
  .hero-description {
    order: 4;
    margin: 0 auto 0.5rem auto;
  }
  .hero-buttons {
    order: 5;
    justify-content: center;
    width: 100%;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .age-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-info-card,
  .contact-form-card {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .hero {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }
  header.navbar {
    padding: 1rem 0;
  }
  .logo-icon {
    width: 2.6rem;
    height: 2.6rem;
  }
  .logo-text {
    font-size: 1.85rem;
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-featured img {
    height: 250px;
  }
  .gallery-thumbnails {
    gap: 0.5rem;
  }
  .gallery-thumb {
    height: 48px;
  }
  .age-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .testimonial-text {
    font-size: 1.15rem;
  }
  .author-name {
    font-size: 1rem;
  }
  .filter-bar {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem 1.25rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    gap: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 2rem;
  }
  .filter-bar::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }
  .filter-bar {
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0.5rem 1rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .age-tabs {
    grid-template-columns: 1fr;
  }
  .rec-item {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed var(--color-border);
  }
  .rec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .rec-item-info {
    width: 100%;
  }
  .rec-item .btn-inquire {
    width: 100%;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
  }
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25D366; /* Official WhatsApp green */
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float-icon {
  width: 1.85rem;
  height: 1.85rem;
  fill: white;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  background-color: #128C7E;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* Gentle pulse ring */
.whatsapp-float::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.8;
  animation: whatsappPulse 2.2s infinite;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.25rem;
    height: 3.25rem;
  }
  .whatsapp-float-icon {
    width: 1.7rem;
    height: 1.7rem;
  }
}
