/* ============================================
   Mirissa Nanny & Baby Care — Premium CSS
   Mobile-First | European Family Care Aesthetic
   ============================================ */

:root {
  --primary: #E8705A;
  --primary-dark: #C95A47;
  --primary-light: #FFF0ED;
  --secondary: #5BA89A;
  --secondary-light: #E8F5F2;
  --bg: #FAF8F5;
  --bg-card: #FFFFFF;
  --text: #2C3338;
  --text-muted: #6B7280;
  --border: #E8E4DF;
  --accent-gold: #F4A261;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --shadow-sm: 0 2px 12px rgba(44, 51, 56, 0.06);
  --shadow-md: 0 8px 30px rgba(44, 51, 56, 0.10);
  --shadow-lg: 0 20px 60px rgba(44, 51, 56, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 84px;
  --font-heading: 'DM Sans', 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

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

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

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

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

p { color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }

.section-subtitle {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
}

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

.section-alt {
  background: var(--bg-card);
}

.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: #4a9688;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Touch Devices & Mobile Active Tap Interactions */
.btn:active, .btn.touch-active,
.btn-primary:active, .btn-primary.touch-active,
.btn-secondary:active, .btn-secondary.touch-active,
.btn-outline:active, .btn-outline.touch-active,
.btn-whatsapp:active, .btn-whatsapp.touch-active,
.btn-hero-primary:active, .btn-hero-primary.touch-active,
.btn-hero-outline:active, .btn-hero-outline.touch-active,
.btn-glass-primary:active, .btn-glass-primary.touch-active,
.btn-bento-primary:active, .btn-bento-primary.touch-active,
.btn-cta-whatsapp:active, .btn-cta-whatsapp.touch-active,
.btn-mobile-book:active, .btn-mobile-book.touch-active,
.mobile-nav-close:active, .mobile-nav-close.touch-active,
.gallery-slider-btn:active, .gallery-slider-btn.touch-active,
.lightbox-close:active, .lightbox-close.touch-active,
.lightbox-prev:active, .lightbox-prev.touch-active,
.lightbox-next:active, .lightbox-next.touch-active,
.back-to-top:active, .back-to-top.touch-active,
.whatsapp-float:active, .whatsapp-float.touch-active,
.serve-chip:active, .serve-chip.touch-active,
.trust-chip:active, .trust-chip.touch-active,
.faq-question:active, .faq-question.touch-active,
.calendar-day:not(:disabled):active, .calendar-day:not(:disabled).touch-active {
  transform: scale(0.95) translateY(1px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.1s ease !important;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header.transparent {
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  flex-shrink: 0;
}

.logo-img {
  height: 76px;
  width: auto;
  max-width: min(240px, 50vw);
  object-fit: contain;
  display: block;
  transition: transform var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.02);
}

.logo-img-footer {
  height: 100px;
  max-width: 240px;
}

.logo-footer {
  margin-bottom: 0.75rem;
}

@media (max-width: 991px) {
  :root {
    --header-height: 98px;
  }
  .header {
    height: 98px;
  }
  .logo-img {
    height: 88px;
    width: auto;
    max-width: min(240px, 65vw);
  }
}

@media (max-width: 576px) {
  :root {
    --header-height: 96px;
  }
  .header {
    height: 96px;
  }
  .logo-img {
    height: 86px;
    width: auto;
    max-width: min(220px, 70vw);
  }
}

.nav { display: none; }

@media (min-width: 992px) {
  .nav { display: block; }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
}

.header.transparent .nav-link { color: var(--text); }
.header.scrolled .nav-link { color: var(--text); }

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

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

.nav-link.active { color: var(--primary); }
.header.transparent .nav-link.active { color: var(--primary); }

.header-cta { display: none; }

@media (min-width: 992px) {
  .header-cta { display: inline-flex; }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

@media (min-width: 992px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

.header.transparent .hamburger span { background: var(--text); }
.header.scrolled .hamburger span { background: var(--text); }

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Modern Mobile Navigation Drawer --- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 20, 25, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 82vw);
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 1060;
  padding: 1.5rem 1.75rem 2.5rem;
  transition: right 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.mobile-nav-close {
  background: transparent;
  border: none;
  font-size: 1.85rem;
  line-height: 1;
  color: #4B5563;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  z-index: 10;
  position: relative;
  pointer-events: auto;
}

.mobile-nav-close:hover {
  color: #111827;
  background: #F3F4F6;
  transform: scale(1.08);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.mobile-nav-list li {
  width: 100%;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open .mobile-nav-list li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav.open .mobile-nav-list li:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav.open .mobile-nav-list li:nth-child(2) { transition-delay: 0.14s; }
.mobile-nav.open .mobile-nav-list li:nth-child(3) { transition-delay: 0.20s; }
.mobile-nav.open .mobile-nav-list li:nth-child(4) { transition-delay: 0.26s; }

.mobile-nav-link {
  display: block;
  padding: 1.15rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: #374151;
  border-bottom: 1px solid #F0F0F0;
  transition: color 0.25s ease, padding-left 0.25s ease, transform 0.15s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #E86A58;
}

.mobile-nav-link:active {
  padding-left: 0.5rem;
  color: #E91E63;
}

.btn-mobile-book {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #E86A58 0%, #E91E63 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(232, 106, 88, 0.35);
  border: none;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, box-shadow 0.25s ease;
}

.mobile-nav.open .btn-mobile-book {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.32s;
}

.btn-mobile-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 106, 88, 0.45);
}

/* --- Hero (Color-Changing Carousel) --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-carousel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroGradientCarousel 20s ease-in-out infinite;
}

.hero-gradient-slide-1 {
  background: linear-gradient(105deg, #FF6B8A 0%, #FF8E72 35%, #FFD166 100%);
  animation-delay: 0s;
}

.hero-gradient-slide-2 {
  background: linear-gradient(105deg, #F06292 0%, #FFB74D 45%, #FFF176 100%);
  animation-delay: 5s;
}

.hero-gradient-slide-3 {
  background: linear-gradient(105deg, #EC407A 0%, #FFAB91 40%, #FFEE58 100%);
  animation-delay: 10s;
}

.hero-gradient-slide-4 {
  background: linear-gradient(105deg, #FF8A80 0%, #FFD54F 50%, #A5D6A7 100%);
  animation-delay: 15s;
}

@keyframes heroGradientCarousel {
  0%, 22%   { opacity: 1; }
  25%, 97%  { opacity: 0; }
  100%      { opacity: 1; }
}

/* Floating hero decorations */
.hero-float-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-float {
  position: absolute;
  line-height: 1;
  animation: heroItemFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.hero-float-1  { top: 10%; left: 5%;   font-size: 3.2rem; opacity: 0.85; animation-delay: 0s; }
.hero-float-2  { top: 14%; right: 36%; font-size: 2.8rem; opacity: 0.75; animation-delay: 2s; }
.hero-float-3  { top: 22%; left: 22%;  font-size: 2rem;   opacity: 0.7;  animation-delay: 1s; }
.hero-float-4  { top: 50%; right: 14%; font-size: 2.2rem; opacity: 0.75; animation-delay: 3s; }
.hero-float-5  { top: 35%; right: 22%; font-size: 2.6rem; opacity: 0.6;  animation-delay: 0.5s; }
.hero-float-6  { top: 16%; right: 8%;  font-size: 2.4rem; opacity: 0.45; animation-delay: 4s; }
.hero-float-7  { top: 42%; left: 5%;   font-size: 2.8rem; opacity: 0.4;  animation-delay: 2.5s; }
.hero-float-8  { top: 45%; right: 5%;  font-size: 3rem;   opacity: 0.55; animation-delay: 1.5s; }
.hero-float-9  { top: 62%; left: 18%;  font-size: 2rem;   opacity: 0.5;  animation-delay: 3.5s; }
.hero-float-10 { top: 65%; right: 22%; font-size: 1.8rem; opacity: 0.65; animation-delay: 5s; }

.hero-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  animation: heroItemFloat 9s ease-in-out infinite;
}

.hero-cloud::before,
.hero-cloud::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.hero-cloud-1 {
  width: 90px;
  height: 36px;
  top: 28%;
  left: 12%;
  animation-delay: 0.8s;
}

.hero-cloud-1::before { width: 40px; height: 40px; top: -18px; left: 12px; }
.hero-cloud-1::after  { width: 32px; height: 32px; top: -12px; right: 10px; }

.hero-cloud-2 {
  width: 110px;
  height: 42px;
  top: 15%;
  right: 18%;
  background: rgba(255, 255, 255, 0.4);
  animation-delay: 2.2s;
}

.hero-cloud-2::before { width: 48px; height: 48px; top: -22px; left: 16px; background: rgba(255,255,255,0.4); }
.hero-cloud-2::after  { width: 38px; height: 38px; top: -16px; right: 14px; background: rgba(255,255,255,0.4); }

.hero-cloud-3 {
  width: 70px;
  height: 28px;
  bottom: 22%;
  left: 35%;
  background: rgba(200, 230, 201, 0.5);
  animation-delay: 4s;
}

.hero-cloud-3::before { width: 32px; height: 32px; top: -14px; left: 8px; background: rgba(200,230,201,0.5); }
.hero-cloud-3::after  { width: 26px; height: 26px; top: -10px; right: 8px; background: rgba(200,230,201,0.5); }

@keyframes heroItemFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(6deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: calc(var(--header-height) + 2rem) 1.5rem clamp(5rem, 12vw, 7rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 2px solid #F8BBD0;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-pill);
  color: #E91E63;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  animation: heroBadgeFloat 4s ease-in-out infinite;
}

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

.hero-title {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #2C3338;
}

.hero-title-accent {
  color: #FFFFFF;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.hero-wavy-line {
  width: min(280px, 70%);
  height: 12px;
  margin-top: 0.5rem;
}

.hero-desc-box {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 1.35rem 1.75rem;
  max-width: 620px;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-desc-box p {
  color: #4A5568;
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  line-height: 1.75;
  margin: 0;
}

.hero .btn-group { justify-content: center; }

.btn-hero-primary {
  background: #F06292;
  color: #fff;
  border: 2px solid #F06292;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(240, 98, 146, 0.35);
  transition: all var(--transition);
}

.btn-hero-primary:hover {
  background: #EC407A;
  border-color: #EC407A;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(240, 98, 146, 0.45);
}

.btn-hero-outline {
  background: #FFFFFF;
  color: #2C3338;
  border: 2px solid rgba(44, 51, 56, 0.15);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(44, 51, 56, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.page-home .header.transparent .nav-link,
.page-home .header.transparent .logo { filter: none; }

.hero-bottom-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
  pointer-events: none;
}

.hero-bottom-wave svg {
  display: block;
  width: 100%;
  height: clamp(56px, 10vw, 96px);
  vertical-align: bottom;
}

@media (min-width: 768px) {
  .hero-float-1  { font-size: 4.5rem; }
  .hero-float-2  { font-size: 3.5rem; }
  .hero-float-6  { font-size: 3rem; }
  .hero-float-7  { font-size: 3.2rem; }
  .hero-float-8  { font-size: 3.8rem; }
  .hero-cloud-1  { width: 120px; height: 48px; }
  .hero-cloud-2  { width: 140px; height: 52px; }
}

@media (max-width: 767px) {
  .hero-float-9 { top: 72%; left: 8%; font-size: 1.6rem; opacity: 0.55; }
  .hero-float-10 { top: 75%; right: 10%; font-size: 1.5rem; opacity: 0.6; }
  .hero-cloud-3 { width: 56px; height: 22px; bottom: 18%; left: 15%; opacity: 0.45; }
}

.hero-baby-mascot {
  display: block;
  position: absolute;
  bottom: 8%;
  width: clamp(90px, 24vw, 130px);
  height: auto;
  z-index: 3;
  animation: heroItemFloat 7s ease-in-out infinite;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 8px 20px rgba(233, 30, 99, 0.25));
}

.hero-baby-mascot-right {
  right: 2%;
  bottom: 6%;
  animation-delay: 1.2s;
}

.hero-baby-mascot-left {
  left: 2%;
  bottom: 6%;
  animation-delay: 3.6s;
}

@media (min-width: 576px) {
  .hero-baby-mascot {
    bottom: 5%;
    width: clamp(120px, 14vw, 175px);
  }

  .hero-baby-mascot-right { right: 4%; }
  .hero-baby-mascot-left { left: 4%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-gradient-slide {
    animation: none;
    opacity: 0;
  }
  .hero-gradient-slide-1 { opacity: 1; }
  .hero-float,
  .hero-cloud,
  .hero-badge { animation: none; }
}

/* --- Page Hero --- */
.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-top: var(--header-height);
  overflow: hidden;
}

.page-about .page-hero {
  background-position: center 38%;
}

.page-contact .page-hero {
  background-position: center 38%;
}

.page-gallery .page-hero {
  background-position: center 38%;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 51, 56, 0.75), rgba(232, 112, 90, 0.5));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
}

.page-hero-content h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero-content p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; }

/* --- Services Section (Playful) --- */
.section-services {
  position: relative;
  background: #E6F7F9;
  padding: 2.5rem 0 4.5rem;
  margin-top: -1px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-services { padding-top: 3rem; }
}

.section-services .container {
  position: relative;
  z-index: 2;
}

.section-label-green {
  color: #43A047;
  font-weight: 700;
  letter-spacing: 4px;
}

.section-services .section-title {
  color: #2C3338;
  font-weight: 700;
}

.section-services .section-subtitle {
  color: #5a6570;
  margin-bottom: 2.5rem;
}

.services-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.services-float {
  position: absolute;
  font-size: 3rem;
  opacity: 0.32;
  line-height: 1;
  animation: servicesFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}

.services-float-1  { top: 6%;   left: 4%;   font-size: 3.5rem; animation-delay: 0s; }
.services-float-2  { top: 14%;  right: 7%;  font-size: 3rem;   animation-delay: 1.5s; }
.services-float-3  { top: 38%;  left: 2%;   font-size: 2.8rem; animation-delay: 3s; }
.services-float-4  { top: 50%;  right: 4%;  font-size: 3.2rem; animation-delay: 0.8s; }
.services-float-5  { bottom: 24%; left: 8%;  font-size: 3.8rem; animation-delay: 2s; }
.services-float-6  { bottom: 28%; right: 10%; font-size: 3.2rem; animation-delay: 4s; }
.services-float-7  { top: 22%;  left: 18%;  font-size: 2.6rem; animation-delay: 1.2s; }
.services-float-8  { top: 8%;   right: 22%; font-size: 3.4rem; animation-delay: 2.5s; }
.services-float-9  { top: 62%;  left: 14%;  font-size: 3rem;   animation-delay: 3.5s; }
.services-float-10 { top: 72%;  right: 20%; font-size: 2.8rem; animation-delay: 0.5s; }
.services-float-11 { top: 30%;  right: 28%; font-size: 2.6rem; animation-delay: 4.5s; }
.services-float-12 { bottom: 18%; left: 28%; font-size: 2.8rem; animation-delay: 1.8s; }
.services-float-13 { top: 48%;  right: 16%; font-size: 2.5rem; animation-delay: 2.8s; }
.services-float-14 { top: 55%;  left: 38%;  font-size: 2.4rem; animation-delay: 5s; opacity: 0.22; }
.services-float-15 { bottom: 35%; right: 32%; font-size: 2.6rem; animation-delay: 3.2s; opacity: 0.26; }

@media (min-width: 768px) {
  .services-float { font-size: 3.5rem; opacity: 0.35; }
  .services-float-1  { font-size: 4.2rem; }
  .services-float-2  { font-size: 3.6rem; }
  .services-float-3  { font-size: 3.2rem; }
  .services-float-4  { font-size: 3.8rem; }
  .services-float-5  { font-size: 4.5rem; }
  .services-float-6  { font-size: 3.6rem; }
  .services-float-7  { font-size: 3rem; }
  .services-float-8  { font-size: 4rem; }
  .services-float-9  { font-size: 3.5rem; }
  .services-float-10 { font-size: 3.2rem; }
  .services-float-11 { font-size: 3rem; }
  .services-float-12 { font-size: 3.2rem; }
  .services-float-13 { font-size: 2.8rem; }
  .services-float-14 { font-size: 2.8rem; opacity: 0.25; }
  .services-float-15 { font-size: 3rem; opacity: 0.28; }
}

@media (max-width: 480px) {
  .services-float-14,
  .services-float-15 { display: none; }
}

@keyframes servicesFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(8deg); }
}

/* ==========================================================================
   OPTION 1: GLASSMORPHIC 3D INTERACTIVE HOVER CARDS
   ========================================================================== */
.section-services-glass {
  position: relative;
  background: linear-gradient(180deg, #E6F7F9 0%, #F0FAFC 100%);
  padding: 3.5rem 0 5rem;
  overflow: hidden;
}

.glass-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFFFFF;
  border: 1.5px solid #F8BBD0;
  color: #E91E63;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.08);
}

.glass-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  text-align: left;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .glass-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: stretch;
  }
}

.glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 2.25rem 1.85rem 1.85rem;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 32px rgba(44, 51, 56, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  transform-style: preserve-3d;
}

.glass-card-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
  pointer-events: none;
  z-index: 2;
}

.glass-card:hover .glass-card-shimmer {
  left: 150%;
}

.glass-card:hover {
  transform: translateY(-10px) scale(1.01);
}

/* Theme Glows */
.glass-card-pink { border-top: 5px solid #E91E63; }
.glass-card-pink:hover {
  box-shadow: 0 20px 40px -10px rgba(233, 30, 99, 0.2), 0 0 0 2px rgba(233, 30, 99, 0.25);
}

.glass-card-yellow { border-top: 5px solid #FFB300; }
.glass-card-yellow:hover {
  box-shadow: 0 20px 40px -10px rgba(255, 179, 0, 0.22), 0 0 0 2px rgba(255, 179, 0, 0.3);
}

.glass-card-cyan { border-top: 5px solid #0288D1; }
.glass-card-cyan:hover {
  box-shadow: 0 20px 40px -10px rgba(2, 136, 209, 0.2), 0 0 0 2px rgba(2, 136, 209, 0.25);
}

/* Card Header */
.glass-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
  flex-wrap: wrap;
}

.glass-icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.glass-card:hover .glass-icon-box {
  transform: scale(1.12) rotate(6deg);
}

.box-pink { background: linear-gradient(135deg, #FCE4EC, #F8BBD0); }
.box-yellow { background: linear-gradient(135deg, #FFF9C4, #FFE082); }
.box-cyan { background: linear-gradient(135deg, #E1F5FE, #B3E5FC); }

.glass-emoji {
  font-size: 30px;
  line-height: 1;
}

.glass-mini-float {
  position: absolute;
  top: -8px;
  right: -10px;
  font-size: 18px;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 2px 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  animation: glassMascotFloat 3s ease-in-out infinite;
}

@keyframes glassMascotFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(8deg); }
}

.glass-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.tag-pink { background: #FCE4EC; color: #C2185B; }
.tag-yellow { background: #FFF8E1; color: #F57F17; }
.tag-cyan { background: #E1F5FE; color: #0288D1; }

/* Card Body */
.glass-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.glass-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2C3338;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.glass-card-desc {
  font-size: 0.925rem;
  line-height: 1.65;
  color: #5A6570;
  margin-bottom: 1.25rem;
}

/* Feature Chips */
.glass-chips-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.g-chip {
  background: #F4F6F8;
  color: #374151;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.32rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

/* Checklist */
.glass-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.glass-checklist li {
  font-size: 0.88rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.4;
}

.g-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.g-check.pink { background: #FCE4EC; color: #C2185B; }
.g-check.yellow { background: #FFF8E1; color: #F57F17; }
.g-check.cyan { background: #E1F5FE; color: #0288D1; }

/* Card Footer */
.glass-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-glass-primary {
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-glass-primary.btn-pink {
  background: linear-gradient(135deg, #E91E63 0%, #D81B60 100%);
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.28);
}

.btn-glass-primary.btn-yellow {
  background: linear-gradient(135deg, #FFA000 0%, #FF8F00 100%);
  box-shadow: 0 4px 16px rgba(255, 160, 0, 0.28);
}

.btn-glass-primary.btn-cyan {
  background: linear-gradient(135deg, #0288D1 0%, #01579B 100%);
  box-shadow: 0 4px 16px rgba(2, 136, 209, 0.28);
}

.btn-glass-primary:hover {
  transform: translateY(-2px);
  color: #FFFFFF;
}

.glass-wa-link {
  color: #25D366;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.glass-wa-link:hover {
  opacity: 0.85;
  transform: translateX(2px);
}

/* ==========================================================================
   GLASSMORPHIC TRUST CARD STRIP & ANIMATIONS
   ========================================================================== */
.glass-trust-card {
  position: relative;
  margin-top: 2.75rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 36px rgba(44, 51, 56, 0.07), 0 0 0 1px rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  animation: trustCardFloat 6s ease-in-out infinite;
}

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

.trust-card-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 2;
}

.glass-trust-card:hover .trust-card-shimmer {
  left: 150%;
}

.glass-trust-card:hover {
  transform: translateY(-8px) scale(1.008);
  box-shadow: 0 20px 48px -12px rgba(233, 30, 99, 0.15), 0 0 0 2px rgba(233, 30, 99, 0.15);
  border-color: #F8BBD0;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.trust-chip:hover {
  transform: translateY(-4px) scale(1.03);
  background: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.trust-icon-halo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.trust-chip:hover .trust-icon-halo {
  transform: scale(1.15) rotate(8deg);
}

.halo-blue {
  background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
  color: #1976D2;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.15);
}

.halo-pink {
  background: linear-gradient(135deg, #FCE4EC, #F8BBD0);
  color: #C2185B;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.15);
}

.halo-gold {
  background: linear-gradient(135deg, #FFF8E1, #FFE082);
  color: #F57F17;
  box-shadow: 0 4px 12px rgba(255, 179, 0, 0.18);
}

/* Micro-Animations for Icons */
.anim-shield {
  display: inline-block;
  animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

.anim-pin {
  display: inline-block;
  animation: pinBounce 2.5s ease-in-out infinite;
}

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

.anim-star {
  display: inline-block;
  animation: starRotate 4s ease-in-out infinite;
}

@keyframes starRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(15deg) scale(1.2); }
}

.trust-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #2C3338;
  letter-spacing: 0.2px;
}

.trust-chip-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, #E5E7EB, transparent);
}

@media (max-width: 991px) {
  .trust-chip-divider { display: none; }
  .glass-trust-card {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0.85rem;
    border-radius: 24px;
  }

  .trust-chip {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-float, .bento-pulse-dot, .bento-mini-mascot, .glass-trust-card, .anim-shield, .anim-pin, .anim-star { animation: none; }
}

/* --- Features / Why Us --- */
.features-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .features-strip { grid-template-columns: repeat(3, 1fr); }
}

.feature-mini {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.feature-mini-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--secondary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.feature-mini h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.feature-mini p {
  font-size: 0.875rem;
  line-height: 1.55;
}

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

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.feature-card p { font-size: 0.925rem; }

/* --- Split Section --- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .split-grid { grid-template-columns: 1fr 1fr; }
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.split-content p {
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.value-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.value-item p {
  font-size: 0.8rem;
  line-height: 1.5;
}

/* --- Testimonials --- */
.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.star-rating span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
  margin-left: 0.5rem;
}

.testimonials-grid {
  width: 100%;
}

.google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

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

/* --- Map --- */
.map-section {
  text-align: center;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .map-wrapper iframe { height: 420px; }
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.cta-banner .btn-primary:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 51, 56, 0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(44, 51, 56, 0.15);
}

/* --- Gallery Slider --- */
.gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gallery-slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
}

.gallery-slider-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  aspect-ratio: 4/3;
  width: 100%;
}

@media (min-width: 640px) {
  .gallery-slide { flex: 0 0 46%; flex-basis: 46%; }
}

@media (min-width: 1024px) {
  .gallery-slide { flex: 0 0 30%; flex-basis: 30%; }
}

.gallery-slider-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--primary-dark, #2C3338);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 5;
}

.gallery-slider-btn:hover {
  background: var(--primary-light);
  transform: scale(1.08);
}

.gallery-view-more {
  margin-top: 2rem;
}

@media (max-width: 639px) {
  .gallery-slider {
    display: block;
  }

  .gallery-slider-track {
    gap: 0;
    padding: 0;
    border-radius: var(--radius, 16px);
  }

  .gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
  }

  .gallery-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  }

  .gallery-slider-btn:hover {
    transform: translateY(-50%) scale(1.08);
  }

  .gallery-slider-prev {
    left: 8px;
  }

  .gallery-slider-next {
    right: 8px;
  }
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; }

  .section-contact { overflow: visible; }

  .contact-info-card {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

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

.contact-item h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

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

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* --- Booking Form --- */
.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-card h2 {
  margin-bottom: 0.4rem;
  font-size: 1.5rem;
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  padding: 0.6rem 1rem;
  background: var(--secondary-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--secondary);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(91, 168, 154, 0.15);
}

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

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  user-select: none;
}

.checkbox-label:has(input:checked) {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.checkbox-label input {
  width: auto;
  accent-color: var(--primary);
}

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

@media (min-width: 576px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* --- Calendar --- */
.calendar-field {
  position: relative;
}

.calendar-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color var(--transition);
}

.calendar-trigger.has-value {
  color: var(--text);
  font-weight: 500;
}

.calendar-trigger:hover,
.calendar-trigger[aria-expanded="true"] {
  border-color: var(--secondary);
}

.calendar-trigger:focus-visible {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(91, 168, 154, 0.15);
}

.calendar-trigger-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.calendar-popup {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 50;
  box-shadow: var(--shadow-lg);
}

.calendar-widget {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calendar-header h4 {
  font-size: 1rem;
  font-weight: 600;
}

.calendar-nav {
  display: flex;
  gap: 0.5rem;
}

.calendar-nav button {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
}

.calendar-nav button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 0.5rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.35rem 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
}

.calendar-day:hover:not(:disabled):not(.empty) {
  background: var(--primary-light);
}

.calendar-day.today {
  border: 1.5px solid var(--secondary);
}

.calendar-day.selected {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.calendar-day.past,
.calendar-day.empty {
  color: var(--border);
  cursor: default;
}

.calendar-day.past:not(.empty) {
  color: #ccc;
  cursor: not-allowed;
}

.calendar-selected {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--secondary);
  font-weight: 600;
  min-height: 1.25rem;
}

.field-error {
  display: block;
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

/* --- FAQ --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.925rem;
  line-height: 1.65;
}

/* --- Serve List --- */
.serve-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .serve-list { grid-template-columns: repeat(2, 1fr); }
}

.serve-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--text);
}

.serve-item::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
}

/* --- Footer --- */
.footer {
  background: linear-gradient(180deg, #2A1D27 0%, #1F151D 100%);
  border-top: 3px solid #E91E63;
  color: rgba(255, 240, 245, 0.85);
  padding: 2.25rem 0 0;
  margin-top: 0;
}

@media (min-width: 576px) {
  .footer { padding-top: 3.5rem; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 576px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; padding-bottom: 2.5rem; }
}

.footer-links-row {
  display: contents;
}

@media (max-width: 575.98px) {
  .footer-links-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.25rem;
  }

  .footer-brand,
  .footer-contact-col,
  .footer-links-row {
    text-align: center;
  }

  .footer-brand .logo {
    display: inline-flex;
  }

  .footer-brand .logo-img-footer {
    height: 130px;
  }

  .footer-contact-col .footer-contact li {
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: rgba(255, 240, 245, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.footer h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

@media (min-width: 576px) {
  .footer h4 { margin-bottom: 1.25rem; }
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  color: rgba(255, 240, 245, 0.72);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: #FF6090; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 240, 245, 0.72);
}

.footer-bottom {
  border-top: 1px solid rgba(233, 30, 99, 0.2);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 240, 245, 0.5);
}

.footer-bottom a {
  color: #FF6090;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: #FFA5C0;
  text-decoration: underline;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 900;
  transition: all var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.08);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.65); }
}

@media (min-width: 768px) {
  .whatsapp-float { bottom: 2rem; }
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.25rem;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 880;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  font-size: 1.1rem;
  color: var(--text);
}

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

.back-to-top:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

@media (min-width: 768px) {
  .back-to-top { bottom: 2rem; left: auto; right: 5.5rem; }
}

/* --- Toast --- */
.toast {
  position: fixed;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* --- Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* --- Global Floating Icons --- */
main {
  position: relative;
  z-index: 2;
}

.site-float-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.site-float {
  position: absolute;
  font-size: clamp(2rem, 4vw, 3.5rem);
  opacity: 0.14;
  line-height: 1;
  animation: floatIconDrift 10s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.section-float-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.section-float {
  position: absolute;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  opacity: 0.3;
  line-height: 1;
  animation: floatIconDrift 8s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}

.page-hero .section-float {
  opacity: 0.5;
  z-index: 1;
}

.section-alt .section-float {
  opacity: 0.26;
}

.section-services .services-float {
  z-index: 1;
}

@keyframes floatIconDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-14px) rotate(5deg); }
  66% { transform: translateY(-6px) rotate(-4deg); }
}

@media (min-width: 768px) {
  .site-float { opacity: 0.16; }
  .section-float { opacity: 0.32; }
}

@media (max-width: 767px) {
  .site-float {
    font-size: clamp(1.4rem, 4.5vw, 2.2rem);
    opacity: 0.16;
  }
  .section-float {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    opacity: 0.32;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-float,
  .section-float {
    animation: none;
  }
}

/* ==========================================================================
   ABOUT PAGE STYLING & BENTO GRID
   ========================================================================== */
.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFFFFF;
  border: 1.5px solid #F8BBD0;
  color: #E91E63;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.about-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 640px;
  margin: 0 auto;
}

/* Our Story Section */
.about-story-section {
  padding: 4rem 0;
}

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

.lead-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2C3338;
  font-weight: 500;
  margin-bottom: 1rem;
}

.story-highlights-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}

.story-hl-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #FFFFFF;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 16px rgba(44, 51, 56, 0.04);
}

.story-hl-icon {
  font-size: 1.5rem;
  line-height: 1;
  background: #F4F6F8;
  padding: 0.5rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.story-hl-item strong {
  display: block;
  font-size: 0.95rem;
  color: #2C3338;
  margin-bottom: 2px;
}

.story-hl-item p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #6B7280;
  margin: 0;
}

/* Image Frame & Experience Badge */
.about-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(44, 51, 56, 0.12);
}

.about-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-frame:hover img {
  transform: scale(1.03);
}

.about-experience-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.35rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

.exp-number {
  font-size: 1.85rem;
  font-weight: 800;
  color: #E91E63;
  font-family: var(--font-heading);
  line-height: 1;
}

.exp-text {
  font-size: 0.825rem;
  font-weight: 700;
  color: #2C3338;
  line-height: 1.3;
  max-width: 140px;
}

/* About Bento Grid */
.about-bento-section {
  padding: 4rem 0 5rem;
}

.about-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .about-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

.about-bento-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2.25rem 2rem;
  box-shadow: 0 10px 30px rgba(44, 51, 56, 0.06);
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.about-bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 51, 56, 0.1);
}

.about-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.halo-green { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); color: #2E7D32; }

.about-bento-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2C3338;
  margin-bottom: 0.65rem;
}

.about-bento-card p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: #5A6570;
  margin-bottom: 1.25rem;
}

.about-card-checklist {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px dashed #E5E7EB;
}

.about-card-checklist li {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.check-dot.pink { background: #FCE4EC; color: #C2185B; }
.check-dot.blue { background: #E3F2FD; color: #1976D2; }
.check-dot.yellow { background: #FFF8E1; color: #F57F17; }
.check-dot.green { background: #E8F5E9; color: #2E7D32; }

/* Who We Serve Chips */
.about-serve-section {
  padding: 4rem 0;
}

.about-chips-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
}

.serve-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #2C3338;
  box-shadow: 0 6px 20px rgba(44, 51, 56, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.serve-chip:hover {
  transform: translateY(-4px);
  border-color: #F8BBD0;
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.12);
}

.chip-emoji {
  font-size: 1.35rem;
  line-height: 1;
}

/* 4 Pillars of Care */
.about-pillars-section {
  padding: 4rem 0 5rem;
}

.margin-bottom-lg {
  margin-bottom: 2.5rem;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
}

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

@media (min-width: 992px) {
  .about-pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.85rem 1.5rem;
  border: 1px solid #E5E7EB;
  box-shadow: 0 8px 24px rgba(44, 51, 56, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(44, 51, 56, 0.09);
}

.pillar-icon-halo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #F4F6F8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-icon-halo {
  transform: scale(1.15) rotate(6deg);
}

.pillar-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2C3338;
  margin-bottom: 0.5rem;
}

.pillar-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #6B7280;
  margin: 0;
}

/* Option 1: Sunset Rose & Peach Cream CTA Banner */
.about-cta-card,
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #FFF0F5 0%, #FCE4EC 45%, #FFE0B2 100%);
  border-radius: 28px;
  padding: 3.25rem 2.75rem;
  color: #2C3338;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border: 1.5px solid #F8BBD0;
  box-shadow: 0 16px 44px -10px rgba(233, 30, 99, 0.14), 0 0 0 1px rgba(255, 224, 178, 0.6);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-cta-card:hover,
.cta-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px -10px rgba(233, 30, 99, 0.22);
  border-color: #F48FB1;
}

.about-cta-card::before,
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.about-cta-card::after,
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: rgba(255, 213, 79, 0.45);
  border-radius: 50%;
  filter: blur(35px);
  pointer-events: none;
}

.cta-content {
  flex: 1 1 480px;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  font-weight: 800;
  color: #2C3338;
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 2;
}

.cta-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
}

/* Seamless Transparent Mascot Floating GIF */
.cta-mascot-frame {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  transition: transform 0.35s ease;
  animation: floatMascot 5s ease-in-out infinite;
}

.about-cta-card:hover .cta-mascot-frame {
  transform: translateY(-8px) scale(1.05) rotate(2deg);
}

.cta-gif-img {
  width: 230px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 10px 24px rgba(233, 30, 99, 0.15));
}

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

@media (max-width: 991px) {
  .about-cta-card,
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.25rem 1.5rem;
    gap: 0.85rem;
    align-items: center;
  }

  .cta-content {
    display: contents;
  }

  .cta-content h2 {
    order: 1;
    margin-bottom: 0.25rem;
  }

  .cta-content p {
    order: 2;
    margin-bottom: 0.5rem;
  }

  .cta-mascot-frame {
    order: 3;
    margin: 0.5rem auto 0.75rem auto;
  }

  .cta-actions {
    order: 4;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-actions .btn,
  .cta-actions .btn-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .cta-gif-img {
    width: 175px;
    height: auto;
    margin: 0 auto;
  }
}

/* Option 1 Action Buttons */
.about-cta-card .btn-bento-primary,
.cta-banner .btn-primary {
  background: linear-gradient(135deg, #E91E63 0%, #D81B60 100%);
  color: #FFFFFF;
  font-weight: 800;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-decoration: none;
}

.about-cta-card .btn-bento-primary:hover,
.cta-banner .btn-primary:hover {
  background: linear-gradient(135deg, #C2185B 0%, #AD1457 100%);
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(233, 30, 99, 0.45);
}

.btn-cta-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 800;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-cta-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  color: #FFFFFF;
}

.label-pink { color: #E91E63; letter-spacing: 3px; font-weight: 700; }
.label-green { color: #2E7D32; letter-spacing: 3px; font-weight: 700; }

/* Real WhatsApp SVG Icon Styling */
.wa-icon-svg {
  width: 1.2em;
  height: 1.2em;
  fill: currentColor;
  display: inline-block;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

/* --- Focus --- */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* --- Print --- */
@media print {
  .header, .whatsapp-float, .back-to-top, .mobile-sticky-bar, .hamburger {
    display: none !important;
  }
  body { padding-bottom: 0; }
}
