/* ===== AGGELOSPITO - Premium Rebuilt CSS ===== */
/* Exact Color Palette + Typography from original site */

@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat:wght@400;500;600;700;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
  --pink-primary: rgb(236, 72, 153);
  --pink-dark: #db2777;
  --dark-bg: rgb(29, 30, 32);
  --dark-overlay: rgba(29, 30, 32, 0.85);
  --yellow-pastel: rgba(252, 245, 141, 0.86);
  --yellow-light: rgba(255, 250, 179, 0.61);
  --footer-purple: rgba(114, 95, 237, 0.62);
  --gradient-hero: linear-gradient(0deg, rgba(218, 28, 232, 0.75), rgba(227, 172, 52, 0.96));
  --white: #ffffff;
  --off-white: #f9f9f9;
  --text-dark: #1d1e20;
  --text-gray: #555;
  --text-light: #888;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-hover: 0 12px 40px rgba(236, 72, 153, 0.18);
  --shadow-3d: 0 20px 60px rgba(0, 0, 0, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: "Lobster", sans-serif;
  --font-nav: "Lobster", sans-serif;
  --font-body: "Lobster", sans-serif;
  --header-height: 80px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(236, 72, 153, 0.15);
  border-top-color: var(--pink-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--pink-primary), var(--footer-purple));
  z-index: 100000;
  transition: width 0.1s linear;
  will-change: width;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink-primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.5);
  background: var(--pink-dark);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ===== HEADER / GLASSMORPHISM NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05), inset 0 -1px 0 rgba(236, 72, 153, 0.2);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  height: var(--header-height);
  border-bottom: none;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink-primary), var(--footer-purple), transparent);
  opacity: 0.6;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 10px 40px rgba(236, 72, 153, 0.15), inset 0 -1px 0 rgba(236, 72, 153, 0.3);
}

.header.scrolled::after {
  opacity: 1;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: block;
  z-index: 10001;
  position: relative;
  height: 60px;
  width: 115px;
  flex-shrink: 0;
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
  transition: transform var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 40px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  white-space: nowrap;
  background: transparent;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-primary), var(--footer-purple));
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1), left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 30%;
  left: 35%;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.6);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink-primary);
  background: rgba(236, 72, 153, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.1);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 24px;
  padding-left: 24px;
  border-left: 2px solid rgba(236, 72, 153, 0.15);
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 72, 153, 0.1));
  color: var(--pink-primary);
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(236, 72, 153, 0.2);
}

.nav-social a:hover {
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  color: var(--white);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 25px rgba(236, 72, 153, 0.35);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(218, 28, 232, 0.55) 0%, rgba(29, 30, 32, 0.75) 40%, rgba(227, 172, 52, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 40px 24px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  min-height: 1.2em;
}

/* Typewriter cursor */
.typewriter-active::after {
  content: '|';
  animation: blink 0.7s step-end infinite;
  margin-left: 2px;
  font-weight: 300;
}

.typewriter-done::after {
  content: none;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.92;
  font-weight: 300;
}

/* Hero Cloud Wrapper */
.hero-cloud-wrapper {
  position: relative;
  display: inline-block;
  width: 480px;
  max-width: 90vw;
  margin: 0 auto 28px;
}

/* Enhanced floating animation */
@keyframes floatCloud {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(0.5deg);
  }

  50% {
    transform: translateY(-16px) rotate(0deg);
  }

  75% {
    transform: translateY(-8px) rotate(-0.5deg);
  }
}

.animate-float {
  animation: floatCloud 5s ease-in-out infinite;
}

/* Premium Glassmorphism Cloud Bubble */
.cloud-bubble {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.cloud-bubble-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: conic-gradient(from 0deg,
      rgba(236, 72, 153, 0.5),
      rgba(252, 245, 141, 0.5),
      rgba(192, 38, 211, 0.4),
      rgba(252, 245, 141, 0.5),
      rgba(236, 72, 153, 0.5));
  border-radius: 28px;
  filter: blur(20px);
  opacity: 0.6;
  animation: rotateGlow 6s linear infinite;
  z-index: 0;
}

@keyframes rotateGlow {
  0% {
    filter: blur(20px) hue-rotate(0deg);
    opacity: 0.5;
  }

  50% {
    filter: blur(25px) hue-rotate(30deg);
    opacity: 0.75;
  }

  100% {
    filter: blur(20px) hue-rotate(0deg);
    opacity: 0.5;
  }
}

.cloud-bubble-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(252, 245, 141, 0.18) 30%,
      rgba(236, 72, 153, 0.1) 60%,
      rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 32px 36px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 2px 0 rgba(255, 255, 255, 0.35) inset,
    0 -2px 12px rgba(236, 72, 153, 0.08) inset;
  overflow: hidden;
}

/* Animated shimmer sweep */
.cloud-bubble-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(255, 255, 255, 0.25) 45%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0.25) 55%,
      transparent 60%);
  animation: shimmerSweep 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }

  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

/* Inner top highlight for 3D volume */
.cloud-bubble-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 40%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 100%);
  border-radius: 24px 24px 50% 50%;
  pointer-events: none;
}

/* Cloud bubble tail (triangle) */
.cloud-bubble-tail {
  position: relative;
  z-index: 1;
  width: 0;
  height: 0;
  margin: -2px auto 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 20px solid rgba(255, 255, 255, 0.18);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
}

/* Sparkle particles */
.cloud-sparkle {
  position: absolute;
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  animation: sparkleFloat 3s ease-in-out infinite;
}

.cloud-sparkle.s1 {
  top: 8px;
  left: 12%;
  color: #f59e0b;
  animation-delay: 0s;
  font-size: 0.9rem;
}

.cloud-sparkle.s2 {
  top: 6px;
  right: 15%;
  color: var(--pink-primary);
  animation-delay: 0.6s;
  font-size: 0.75rem;
}

.cloud-sparkle.s3 {
  bottom: 12px;
  left: 8%;
  color: #c026d3;
  animation-delay: 1.2s;
  font-size: 0.8rem;
}

.cloud-sparkle.s4 {
  bottom: 10px;
  right: 10%;
  color: #f59e0b;
  animation-delay: 1.8s;
  font-size: 0.95rem;
}

.cloud-sparkle.s5 {
  top: 50%;
  left: 4%;
  color: var(--pink-primary);
  animation-delay: 2.4s;
  font-size: 0.7rem;
}

@keyframes sparkleFloat {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.5) translateY(0);
  }

  20% {
    opacity: 1;
    transform: scale(1.2) translateY(-6px);
  }

  50% {
    opacity: 0.8;
    transform: scale(1) translateY(-12px) rotate(180deg);
  }

  80% {
    opacity: 0.4;
    transform: scale(0.8) translateY(-8px) rotate(360deg);
  }
}

/* Updated hero subtitle text */
.hero-subtitle-text {
  position: relative;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.55;
  margin: 0;
  padding: 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3), 0 0 30px rgba(252, 245, 141, 0.15);
  z-index: 3;
  letter-spacing: 0.02em;
}

/* Floating animation */
@keyframes floatCloud {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.animate-float {
  animation: floatCloud 4s ease-in-out infinite;
}

/* Cloud-styled subtitle */
.hero-subtitle-cloud {
  display: inline-block;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 36px;
  color: var(--pink-dark);
  font-weight: 700 !important;
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 0 0 2px rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
  text-shadow: none !important;
  opacity: 1 !important;
  border: none;
}

.hero-subtitle-cloud::before,
.hero-subtitle-cloud::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.hero-subtitle-cloud::before {
  width: 70px;
  height: 70px;
  top: -25px;
  left: 20%;
}

.hero-subtitle-cloud::after {
  width: 100px;
  height: 100px;
  top: -35px;
  right: 25%;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--pink-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ===== INFO BAR (Ωράριο, Τοποθεσία, Τηλέφωνο) ===== */
.info-bar {
  background: var(--yellow-pastel);
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.info-bar::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.info-bar::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.info-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Info Card */
.info-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-radius: 20px;
  padding: 36px 24px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.info-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 0 30px rgba(236, 72, 153, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(236, 72, 153, 0.15);
}

/* Icon Circle */
.info-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-primary), #c026d3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
  transition: all 0.4s ease;
}

.info-card:hover .info-card-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(236, 72, 153, 0.4);
}

.info-card-icon i {
  font-size: 1.4rem;
  color: white;
}

.info-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

.info-card p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.info-card p a {
  color: var(--pink-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.info-card p a:hover {
  color: var(--pink-dark);
  text-decoration: underline;
}

/* Info Bar Responsive */
@media (max-width: 768px) {
  .info-bar {
    padding: 40px 20px;
  }

  .info-bar-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }

  .info-card {
    padding: 28px 20px 24px;
  }
}

/* ===== FEATURES SECTION (3 cards) ===== */
.features {
  padding: 80px 24px;
  background: var(--white);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  /* 3D card effect */
  transform-style: preserve-3d;
  perspective: 1000px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-hero);
  border-radius: var(--radius) var(--radius) 0 0;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-card .emoji {
  font-size: 3rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===== REVIEWS SECTION (Premium Glass) ===== */
.reviews {
  padding: 80px 24px;
  background: var(--yellow-light);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.reviews .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 48px;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.reviews-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* Premium Glass Review Card */
.review-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 0 20px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 1);
}

.review-stars {
  font-size: 1.3rem;
  color: #f59e0b;
  margin-bottom: 16px;
  letter-spacing: 2.5px;
  text-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.review-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
  font-family: var(--font-body);
}

.review-author {
  font-weight: 800;
  color: var(--pink-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-author::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--pink-primary);
  border-radius: 2px;
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

.reviews-cta p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* ===== MONTESSORI SECTION ===== */
.montessori {
  padding: 80px 24px;
  background: var(--white);
}

.montessori .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 48px;
  color: var(--text-dark);
}

.montessori-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.montessori-item {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(236, 72, 153, 0.08);
}

.montessori-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(236, 72, 153, 0.2);
}

.montessori-item h5 {
  font-size: 1.05rem;
  color: var(--pink-primary);
  margin-bottom: 10px;
}

.montessori-item p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 80px 24px;
  background: var(--off-white);
}

.gallery .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.gallery .section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-gray);
  margin-bottom: 48px;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
  transform-style: preserve-3d;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: scale(1.03) rotateY(3deg) rotateX(2deg);
  box-shadow: var(--shadow-3d);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 60px 24px;
  background: var(--yellow-pastel);
}

.pricing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pricing h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.pricing p {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 8px;
}

/* ===== MORE REVIEWS ===== */
.more-reviews {
  padding: 80px 24px;
  background: var(--white);
}

.more-reviews .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 48px;
}

/* ===== PAGE HERO (Sub-pages) ===== */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.page-hero .hero-overlay {
  background: var(--gradient-hero);
}

.page-hero .hero-content h1 {
  font-size: 2.8rem;
}

.page-hero .hero-content p {
  font-size: 1.1rem;
}

/* ===== OUR SPACE PAGE ===== */
.space-overview {
  padding: 80px 24px;
  background: var(--white);
}

.space-overview .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.space-overview .section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-gray);
  margin-bottom: 48px;
}

.space-gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


.parents-section {
  padding: 80px 24px;
  background: var(--yellow-light);
}

.parents-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.parents-text h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.parents-text .subtitle {
  font-size: 1.05rem;
  color: var(--pink-primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.parents-text p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.parents-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.parents-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.6s ease;
}

.parents-image:hover img {
  transform: scale(1.05);
}

.photos-section {
  padding: 80px 24px;
  background: var(--off-white);
}

.photos-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.photos-section .section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-gray);
  margin-bottom: 48px;
}

.photos-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ===== PARTY PAGE ===== */
.party-services {
  padding: 80px 24px;
  background: var(--white);
}

.party-services .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 48px;
}

.menus-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  border-top: 4px solid var(--pink-primary);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.menu-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--pink-primary);
}

.menu-card h5 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.menu-card ul {
  margin-bottom: 20px;
}

.menu-card ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.menu-card ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--pink-primary);
  font-weight: bold;
}

.menu-notes {
  padding: 80px 24px;
  background: var(--yellow-light);
}

.menu-notes-inner {
  max-width: 800px;
  margin: 0 auto;
}

.menu-notes h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.menu-notes ul li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-gray);
}

.menu-notes ul li::before {
  content: '📌';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* Party form */
.party-form-section {
  padding: 80px 24px;
  background: var(--white);
}

.party-form-section .section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.party-form-section .section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SERVICES / ACTIVITIES PAGE ===== */
.activities {
  padding: 80px 24px;
  background: var(--white);
}

.activities .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.activities .section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-gray);
  margin-bottom: 48px;
}

.activities-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.activity-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  border: none;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #ff6b6b, var(--pink-primary), var(--footer-purple));
  z-index: 1;
}

.activity-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(236, 72, 153, 0.2), 0 15px 25px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.activity-card img {
  width: calc(100% - 60px);
  height: 250px;
  object-fit: contain;
  margin: 40px auto 0;
  border-radius: 16px;
  background: transparent;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease;
  display: block;
}

.activity-card:hover img {
  transform: scale(1.08) translateY(-6px);
  filter: drop-shadow(0 25px 35px rgba(236, 72, 153, 0.35));
}

.activity-card .activity-text {
  padding: 24px 32px 36px;
  text-align: center;
}

.activity-card .activity-text h5 {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.activity-card .activity-text .day {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.activity-card .activity-text p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .activity-card img {
    height: 180px;
  }
}

/* Baptism section */
.baptism-section {
  padding: 80px 24px;
  background: var(--yellow-light);
}

.baptism-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.baptism-text h4 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.baptism-text h5 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--pink-primary);
}

.baptism-text ul li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-gray);
}

.baptism-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pink-primary);
  font-weight: bold;
}

.baptism-text .capacity {
  margin-top: 16px;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Member card */
.member-section {
  padding: 80px 24px;
  background: var(--white);
}

.member-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.member-text h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.member-text p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.member-text .highlight {
  color: var(--pink-primary);
  font-weight: 700;
}

.member-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.member-image img {
  width: 100%;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
}

.member-image:hover img {
  transform: scale(1.04);
}

/* Events */
.events-section {
  padding: 80px 24px;
  background: var(--off-white);
}

.events-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.events-section .section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-gray);
  margin-bottom: 48px;
}

.events-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  border-left: 4px solid var(--pink-primary);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.event-card h6 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.event-card p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* FAQ */
.faq-section {
  padding: 80px 24px;
  background: var(--white);
}

.faq-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 48px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--pink-primary);
}

.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--pink-primary);
  flex-shrink: 0;
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 12px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== HISTORY PAGE ===== */
.timeline {
  padding: 80px 24px;
  background: var(--white);
}

.timeline .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 48px;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--pink-primary), var(--footer-purple));
  transform: translateX(-50%);
  border-radius: 3px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--pink-primary);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--pink-primary);
  z-index: 1;
}

.timeline-content {
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.timeline-content h3 {
  font-size: 1.2rem;
  color: var(--pink-primary);
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.owner-section {
  padding: 80px 24px;
  background: var(--yellow-light);
}

.owner-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.owner-inner h5 {
  font-size: 1.3rem;
  color: var(--pink-primary);
  margin-bottom: 8px;
}

.owner-inner .role {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.owner-inner blockquote {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.8;
  font-style: italic;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--pink-primary);
  margin-bottom: 32px;
  text-align: left;
}

.owner-cta {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 60px 24px;
  background: var(--white);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(236, 72, 153, 0.03));
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-primary), var(--footer-purple));
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.form-group:focus-within label {
  color: var(--pink-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(236, 72, 153, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.35s ease;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: rgba(236, 72, 153, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1), 0 4px 16px rgba(236, 72, 153, 0.08);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group textarea:focus {
  border-left: 4px solid var(--pink-primary);
  padding-left: 18px;
}

/* Premium submit button */
.contact-form .btn,
.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
  letter-spacing: 0.5px;
}

.contact-form .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.contact-form .btn:hover::before {
  left: 100%;
}

.contact-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4), 0 0 20px rgba(114, 95, 237, 0.15);
}

.contact-form .btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(236, 72, 153, 0.3);
}

/* Enhanced contact info cards */
.contact-info-side .contact-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(236, 72, 153, 0.03));
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(236, 72, 153, 0.08);
  border-left: 4px solid var(--pink-primary);
  transition: all 0.35s ease;
}

.contact-info-side .contact-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.1);
  border-left-color: var(--footer-purple);
}

.contact-info-side .contact-card h4 i {
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-info-side .contact-card:hover h4 i {
  color: var(--footer-purple);
  transform: scale(1.15);
}

/* Enhanced social follow buttons */
.social-follow a {
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-follow a:hover {
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  color: var(--white);
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.3);
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-side .contact-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.contact-info-side .contact-card h4 {
  font-size: 1.1rem;
  color: var(--pink-primary);
  margin-bottom: 8px;
}

.contact-info-side .contact-card p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.social-follow {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-follow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.1);
  color: var(--pink-primary);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.social-follow a:hover {
  background: var(--pink-primary);
  color: var(--white);
  transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #2d1b4e 0%, #3d1f5c 50%, #5b2d6e 100%);
  padding: 60px 24px 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-primary), var(--footer-purple), var(--pink-primary));
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.2fr 0.8fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: inline-block;
  max-width: 160px;
  transition: all 0.4s ease;
}

.footer-logo img {
  width: 100%;
  filter: brightness(1.5) contrast(1.1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-logo:hover img {
  filter: brightness(1.7) contrast(1.15) drop-shadow(0 0 18px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 12px rgba(236, 72, 153, 0.4));
  transform: scale(1.05);
}

.footer h5 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-primary), transparent);
  border-radius: 2px;
}

.footer-links a {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 5px 0;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: -12px;
  opacity: 0;
  color: var(--pink-primary);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 16px;
}

.footer-links a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--pink-primary);
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.3);
  border-color: transparent;
}

.footer-faq-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  transition: all 0.35s ease;
}

.footer-faq-link:hover {
  background: rgba(236, 72, 153, 0.15);
  border-color: var(--pink-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-faq-link {
    justify-content: center;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== 3D IMAGE HOVER ===== */
.tilt-3d {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-3d:hover {
  transform: perspective(800px) rotateY(5deg) rotateX(3deg) scale(1.04);
  box-shadow: var(--shadow-3d);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid,
  .photos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-container::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 50px;
  }

  .timeline-item::before {
    left: 20px;
  }

  .space-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 0;
    transition: right 0.4s ease;
    z-index: 10000;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0;
    font-size: 18px;
  }

  .nav-social {
    margin-left: 0;
    margin-top: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .info-bar-inner {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .montessori-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid,
  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .parents-inner,
  .baptism-inner,
  .member-inner {
    grid-template-columns: 1fr;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .menus-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero .hero-content h1 {
    font-size: 2rem;
  }

  .space-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .space-gallery-grid .gallery-item:first-child {
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .montessori-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .photos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .space-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Overlay for mobile menu */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
}

.nav-overlay.active {
  display: block;
}

/* ===== KEN BURNS HERO BACKGROUND ===== */
@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.12) translate(-1.5%, -1%);
  }

  100% {
    transform: scale(1) translate(0, 0);
  }
}

.hero-kenburns img {
  animation: kenburns 20s ease-in-out infinite;
  will-change: transform;
}

/* ===== FLOATING HERO PARTICLES ===== */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.5;
  animation: particleFloat 8s ease-in-out infinite;
  will-change: transform, opacity;
  filter: drop-shadow(0 0 6px rgba(236, 72, 153, 0.4));
}

.p1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  font-size: 2rem;
}

.p2 {
  top: 25%;
  right: 15%;
  animation-delay: 1.5s;
  font-size: 1.4rem;
}

.p3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
  font-size: 1.8rem;
}

.p4 {
  top: 40%;
  right: 25%;
  animation-delay: 4.5s;
}

.p5 {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
  font-size: 1.3rem;
}

.p6 {
  top: 60%;
  left: 5%;
  animation-delay: 5.5s;
  font-size: 1.5rem;
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.4;
  }

  25% {
    transform: translateY(-30px) rotate(15deg) scale(1.15);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-15px) rotate(-10deg) scale(1.05);
    opacity: 0.55;
  }

  75% {
    transform: translateY(-35px) rotate(20deg) scale(1.2);
    opacity: 0.65;
  }
}

/* ===== ENHANCED 3D BUTTONS ===== */
.btn-3d {
  transform-style: preserve-3d;
  perspective: 600px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn-3d:hover::before {
  left: 100%;
}

.btn-3d:hover {
  transform: perspective(600px) translateZ(12px) translateY(-3px);
  box-shadow: 0 12px 35px rgba(236, 72, 153, 0.4), 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-3d:active {
  transform: perspective(600px) translateZ(4px) translateY(0);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Pulsing primary CTA on hero */
.hero-buttons .btn-primary.btn-3d {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
  }

  50% {
    box-shadow: 0 4px 30px rgba(236, 72, 153, 0.6), 0 0 20px rgba(236, 72, 153, 0.2);
  }
}

.hero-buttons .btn-primary.btn-3d:hover {
  animation: none;
}

/* ===== ENHANCED FEATURE CARDS 3D ===== */
.feature-card {
  transform-style: preserve-3d;
  perspective: 800px;
  cursor: pointer;
}

.feature-card:hover {
  transform: perspective(800px) rotateY(-4deg) rotateX(3deg) translateY(-10px) scale(1.03);
  box-shadow: 12px 12px 40px rgba(236, 72, 153, 0.2), -4px -4px 20px rgba(255, 255, 255, 0.8);
}

.feature-card:hover .emoji {
  transform: scale(1.3) translateZ(30px) rotateY(15deg);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card .emoji {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

/* ===== INTERACTIVE REVIEW CARDS ===== */
.review-card {
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  overflow: hidden;
}

.review-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(236, 72, 153, 0.05), transparent, rgba(245, 158, 11, 0.05), transparent);
  animation: shimmer 6s linear infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.review-card:hover::after {
  opacity: 1;
}

@keyframes shimmer {
  to {
    transform: rotate(360deg);
  }
}

.review-card:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(-2deg) scale(1.02);
  box-shadow: 0 16px 40px rgba(236, 72, 153, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-card:hover .review-stars {
  transform: scale(1.15);
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}

.review-stars {
  transition: transform 0.4s ease, text-shadow 0.4s ease;
}

/* ===== INTERACTIVE INFO BAR CARDS ===== */
.info-item {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.info-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.info-item:hover img {
  transform: rotateY(10deg) scale(1.1);
  transition: transform 0.5s ease;
}

/* ===== INTERACTIVE MONTESSORI ITEMS ===== */
.montessori-item {
  transform-style: preserve-3d;
  perspective: 600px;
  cursor: pointer;
}

.montessori-item:hover {
  transform: perspective(600px) translateZ(8px) translateY(-6px) rotateX(2deg);
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.12);
  border-color: rgba(236, 72, 153, 0.4);
}

.montessori-item:hover h5 {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

/* ===== GALLERY ITEMS ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* ===== ENHANCED PRICING SECTION ===== */
.pricing-inner {
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.pricing-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ===== ENHANCED ACTIVITY CARDS ===== */
.activity-card {
  perspective: 800px;
  transform-style: preserve-3d;
}

.activity-card:hover {
  transform: perspective(800px) rotateY(3deg) translateY(-8px) scale(1.02);
  box-shadow: 8px 8px 30px rgba(236, 72, 153, 0.15), -4px -4px 20px rgba(255, 255, 255, 0.6);
}

.activity-card:hover img {
  transform: scale(1.06) rotateY(-3deg);
}

.activity-card img {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== reduce motion preference ===== */
@media (prefers-reduced-motion: reduce) {

  .hero-kenburns img,
  .particle,
  .btn-3d,
  .review-card::after,
  .loader-spinner {
    animation: none !important;
  }

  .hero-particles {
    display: none;
  }

  .typewriter-active::after {
    animation: none !important;
  }
}

/* ===== PARTY MENU CARDS ===== */
.party-services {
  padding: 80px 24px;
  background: var(--off-white);
}

.party-services .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 48px;
}

.menus-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.menu-card {
  position: relative;
  border-radius: var(--radius);
  padding: 40px 32px;
  background: linear-gradient(145deg, rgba(236, 72, 153, 0.06) 0%, rgba(114, 95, 237, 0.08) 100%);
  border: 1px solid rgba(236, 72, 153, 0.12);
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-primary), var(--footer-purple));
  border-radius: var(--radius) var(--radius) 0 0;
}

.menu-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(114, 95, 237, 0.1));
  pointer-events: none;
}

.menu-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.15), 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(236, 72, 153, 0.25);
}

.menu-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.menu-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink-primary);
  margin-bottom: 12px;
  margin-top: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(236, 72, 153, 0.12);
  position: relative;
  z-index: 1;
}

.menu-card h5:first-of-type {
  margin-top: 0;
}

.menu-card ul {
  list-style: none;
  position: relative;
  z-index: 1;
}

.menu-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.5;
  transition: all 0.2s ease;
}

.menu-card ul li::before {
  content: '✦';
  position: absolute;
  left: 4px;
  top: 8px;
  color: var(--pink-primary);
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.menu-card:hover ul li::before {
  transform: scale(1.3);
}

.menu-card ul li:hover {
  color: var(--text-dark);
  padding-left: 32px;
}

/* Menu divider within cards */
.menu-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.25), transparent);
  margin: 24px 0;
}

/* Menu notes */
.menu-notes {
  padding: 40px 24px;
  background: var(--yellow-light);
}

.menu-notes-inner {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(236, 72, 153, 0.08);
  box-shadow: var(--shadow-soft);
}

.menu-notes-inner h4 {
  font-size: 1.3rem;
  color: var(--pink-primary);
  margin-bottom: 16px;
}

.menu-notes-inner ul {
  list-style: none;
}

.menu-notes-inner ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.menu-notes-inner ul li::before {
  content: '💡';
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.8rem;
}

/* Party form section */
.party-form-section {
  padding: 80px 24px;
  background: var(--white);
}

.party-form-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.party-form-section .section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .menus-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== GRADIENT SECTION TITLES ===== */
.section-title {
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== STATS COUNTER SECTION ===== */
.stats-section {
  padding: 60px 24px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.06), rgba(114, 95, 237, 0.06));
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 32px 16px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  border: 1px solid rgba(236, 72, 153, 0.08);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
  height: 4px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--pink-primary), var(--footer-purple), transparent);
  opacity: 0.3;
  margin: 0;
}

.section-divider.visible {
  animation: dividerReveal 1s ease forwards;
}

@keyframes dividerReveal {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 0.3;
  }
}

/* ===== ENHANCED FOOTER ===== */
.footer {
  background: linear-gradient(135deg, rgba(114, 95, 237, 0.75), rgba(236, 72, 153, 0.45));
}

/* ===== STATS RESPONSIVE ===== */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 60px 24px;
  background: var(--off-white);
}

.map-container {
  max-width: 1100px;
  margin: 0 auto;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.1);
}

.map-wrapper iframe {
  display: block;
}

/* ===== MONTESSORI SECTION ===== */
.montessori {
  padding: 80px 24px;
  background: var(--white);
}

.montessori-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.montessori-text-side .section-title {
  text-align: left;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.montessori-intro {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.montessori-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.montessori-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(236, 72, 153, 0.03));
  border-radius: var(--radius);
  border: 1px solid rgba(236, 72, 153, 0.08);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.montessori-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.2);
}

.montessori-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(114, 95, 237, 0.08));
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.montessori-item:hover .montessori-icon {
  transform: scale(1.15) rotate(5deg);
}

.montessori-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink-primary);
  margin-bottom: 4px;
}

.montessori-item p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.montessori-image-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .montessori-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .montessori-text-side .section-title {
    text-align: center;
  }

  .montessori-intro {
    text-align: center;
  }

  .montessori-image-side {
    order: -1;
  }
}

/* ===== DISABLE CARD/IMAGE HOVER TRANSFORMS (kept only on entypwseis) ===== */
.feature-card:hover,
.review-card:hover,
.gallery-item:hover,
.info-card:hover,
.activity-card:hover,
.montessori-item:hover,
.menu-card:hover {
  transform: none !important;
  box-shadow: var(--shadow-soft) !important;
}

.activity-card:hover img {
  transform: none !important;
}

/* ===== BOOKING FORM SECTION ===== */
.booking-form-section {
  padding: 80px 24px;
  background: linear-gradient(160deg, #fef9e7 0%, #fdf2ca 40%, #fce4ec 100%);
  position: relative;
  overflow: hidden;
}

.booking-form-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.booking-form-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(114, 95, 237, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.booking-form-section .section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.booking-form-section .section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-gray);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Glass Container */
.booking-glass-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(236, 72, 153, 0.06),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

/* Fieldsets */
.booking-fieldset {
  border: none;
  margin: 0 0 36px;
  padding: 0;
}

.booking-fieldset:last-of-type {
  margin-bottom: 0;
}

.booking-fieldset legend {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(236, 72, 153, 0.12);
  width: 100%;
}

.legend-icon {
  font-size: 1.3rem;
}

/* Form Rows & Groups */
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.form-row:last-child {
  margin-bottom: 0;
}

.form-group {
  flex: 1;
  min-width: 200px;
}

.form-group-wide {
  flex: 1 1 100%;
}

.form-group-full {
  flex: 1 1 100%;
}

.form-group>label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* Custom Inputs */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  color: var(--pink-primary);
  font-size: 0.9rem;
  z-index: 2;
  pointer-events: none;
}

.input-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(236, 72, 153, 0.12);
  border-radius: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.input-wrapper input:focus {
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1), 0 4px 12px rgba(236, 72, 153, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.input-wrapper input::placeholder {
  color: #aaa;
  font-weight: 400;
}

/* Number Stepper */
.number-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(236, 72, 153, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.number-stepper:focus-within {
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

.stepper-btn {
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stepper-btn:hover {
  background: rgba(236, 72, 153, 0.08);
}

.stepper-btn:active {
  background: rgba(236, 72, 153, 0.16);
  transform: scale(0.92);
}

.number-stepper input {
  width: 60px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
}

.number-stepper input::-webkit-outer-spin-button,
.number-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Toggle Switch */
.toggle-switch-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.toggle-label-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-gray);
  min-width: 28px;
  text-align: center;
}

.toggle-switch {
  position: relative;
  width: 56px;
  height: 30px;
  display: inline-block;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ddd;
  border-radius: 30px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.toggle-switch input:checked+.toggle-slider {
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 0 12px rgba(236, 72, 153, 0.3);
}

.toggle-switch input:checked+.toggle-slider::before {
  transform: translateX(26px);
}

/* Radio Pills */
.radio-pill-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-pill {
  cursor: pointer;
  position: relative;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-label {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(236, 72, 153, 0.12);
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
}

.pill-label:hover {
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.08);
}

.radio-pill input:checked+.pill-label {
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.3);
  transform: scale(1.03);
}

/* Custom Checkboxes */
.custom-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  padding: 8px 0;
  user-select: none;
  transition: color 0.2s ease;
}

.custom-checkbox-label:hover {
  color: var(--pink-primary);
}

.custom-checkbox-label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(236, 72, 153, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.7);
  position: relative;
}

.custom-checkbox::after {
  content: '✓';
  font-size: 0.75rem;
  font-weight: 900;
  color: white;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.custom-checkbox-label input:checked~.custom-checkbox {
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  border-color: transparent;
  box-shadow: 0 3px 10px rgba(236, 72, 153, 0.3);
}

.custom-checkbox-label input:checked~.custom-checkbox::after {
  opacity: 1;
  transform: scale(1);
}

/* Checkbox Grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 4px 24px;
}

/* Textarea */
.booking-form textarea {
  width: 100%;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(236, 72, 153, 0.12);
  border-radius: 14px;
  resize: vertical;
  outline: none;
  transition: all 0.3s ease;
  min-height: 100px;
}

.booking-form textarea:focus {
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1), 0 4px 12px rgba(236, 72, 153, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.booking-form textarea::placeholder {
  color: #aaa;
}

/* 3D Submit Button */
.booking-submit-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn-3d-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--pink-primary), #c026d3);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  position: relative;
  box-shadow:
    0 8px 0 #9b174d,
    0 12px 24px rgba(236, 72, 153, 0.35);
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(0);
  letter-spacing: 0.5px;
}

.btn-3d-submit:hover {
  transform: translateY(-3px);
  box-shadow:
    0 11px 0 #9b174d,
    0 16px 32px rgba(236, 72, 153, 0.4);
}

.btn-3d-submit:active {
  transform: translateY(6px);
  box-shadow:
    0 2px 0 #9b174d,
    0 4px 8px rgba(236, 72, 153, 0.3);
}

.submit-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-3d-submit:hover .submit-icon {
  transform: translateX(3px) rotate(-10deg);
}

.submit-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* ===== BOOKING FORM RESPONSIVE ===== */
@media (max-width: 768px) {
  .booking-glass-container {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .booking-form-section .section-title {
    font-size: 1.8rem;
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .form-group {
    min-width: 100%;
  }

  .radio-pill-group {
    flex-direction: column;
    gap: 8px;
  }

  .pill-label {
    display: block;
    text-align: center;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .btn-3d-submit {
    padding: 16px 36px;
    font-size: 1rem;
  }
}

/* ===== MENU NOTES (Σημαντικές Πληροφορίες) ===== */
.menu-notes {
  padding: 60px 24px;
  background: var(--off-white);
  position: relative;
}

.menu-notes-inner {
  max-width: 900px;
  margin: 0 auto;
}

.menu-notes-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.menu-notes-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
  animation: pulseWarning 2.5s ease-in-out infinite;
}

.menu-notes-badge i {
  font-size: 1.3rem;
  color: white;
}

@keyframes pulseWarning {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.5);
  }
}

.menu-notes-header h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
}

.menu-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.menu-note-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-radius: 18px;
  padding: 28px 24px;
  border: 1.5px solid rgba(236, 72, 153, 0.08);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-note-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.08),
    0 0 20px rgba(236, 72, 153, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(236, 72, 153, 0.15);
}

.menu-note-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink-primary), #c026d3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.25);
  transition: all 0.3s ease;
}

.menu-note-card:hover .menu-note-icon {
  transform: scale(1.1) rotate(-5deg);
}

.menu-note-icon i {
  font-size: 1rem;
  color: white;
}

.menu-note-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
  padding-top: 2px;
}

/* Menu Notes Responsive */
@media (max-width: 768px) {
  .menu-notes {
    padding: 40px 20px;
  }

  .menu-notes-header h4 {
    font-size: 1.4rem;
  }

  .menu-notes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-note-card {
    padding: 22px 20px;
  }
}

/* ===== MEMBERSHIP CARD SECTION ===== */
.member-section {
  padding: 80px 24px;
  background: linear-gradient(0deg, rgb(186, 88, 178), rgba(139, 35, 173, 0.69));
  position: relative;
  overflow: hidden;
}

.member-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.member-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.member-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-header {
  margin-bottom: 40px;
}

.member-star {
  font-size: 3rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.5));
  animation: floatStar 3s ease-in-out infinite;
}

@keyframes floatStar {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(10deg);
  }
}

.member-header h3 {
  font-family: 'Lobster', cursive;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.member-header h3 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.member-subtitle {
  font-family: 'Lobster', cursive;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Membership Card Image */
.member-card-image {
  margin: 0 auto 48px;
  max-width: 560px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(255, 255, 255, 0.15);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  perspective: 800px;
}

.member-card-image:hover {
  transform: translateY(-8px) rotateY(5deg) rotateX(3deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.member-card-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.member-card-image:hover img {
  transform: scale(1.03);
}

/* Steps Container */
.member-steps-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Glassmorphism Card */
.member-glass-card {
  position: relative;
  flex: 1 1 0;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: 24px;
  padding: 40px 28px 32px;
  text-align: center;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-glass-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(236, 72, 153, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Step Badge */
.member-step-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--pink-primary), #c026d3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.45), 0 0 0 4px rgba(255, 255, 255, 0.2);
  z-index: 3;
  letter-spacing: 0;
}

/* Glass Icon */
.member-glass-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  animation: floatGlassIcon 4s ease-in-out infinite;
}

.member-glass-card:nth-child(1) .member-glass-icon {
  animation-delay: 0s;
}

.member-glass-card:nth-child(3) .member-glass-icon {
  animation-delay: 0.5s;
}

.member-glass-card:nth-child(5) .member-glass-icon {
  animation-delay: 1s;
}

@keyframes floatGlassIcon {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.08);
  }
}

/* Glass Title */
.member-glass-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Glass Text */
.member-glass-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 8px;
}

.member-glass-text:last-child {
  margin-bottom: 0;
}

.member-glass-text strong {
  color: white;
  font-weight: 700;
}

/* Step Connector */
.member-step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 8px;
  align-self: center;
}

.member-step-connector span {
  display: block;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  animation: pulseConnector 2s ease-in-out infinite;
}

.member-step-connector span:nth-child(2) {
  animation-delay: 0.3s;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
}

.member-step-connector span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes pulseConnector {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* CTA Wrapper */
.member-cta-wrapper {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.member-cta-btn {
  text-decoration: none;
}

.member-cta-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-family: var(--font-body);
}

/* ===== MEMBERSHIP SECTION RESPONSIVE ===== */
@media (max-width: 992px) {
  .member-header h3 {
    font-size: 2.2rem;
  }

  .member-steps-container {
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 400px;
  }

  .member-step-connector {
    flex-direction: row;
    padding: 12px 0;
  }

  .member-glass-card {
    padding: 36px 24px 28px;
    max-width: 400px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .member-section {
    padding: 60px 20px;
  }

  .member-header h3 {
    font-size: 1.8rem;
  }

  .member-subtitle {
    font-size: 1.05rem;
  }

  .member-card-image {
    max-width: 320px;
    margin-bottom: 36px;
  }

  .member-steps-container {
    max-width: 340px;
  }

  .member-glass-card {
    padding: 32px 20px 24px;
    border-radius: 20px;
  }

  .member-glass-title {
    font-size: 1.05rem;
  }

  .member-glass-text {
    font-size: 0.85rem;
  }

  .member-cta-wrapper {
    margin-top: 36px;
  }
}

@media (max-width: 480px) {
  .member-header h3 {
    font-size: 1.5rem;
  }

  .member-subtitle {
    font-size: 0.95rem;
  }

  .member-card-image {
    max-width: 260px;
  }

  .member-steps-container {
    max-width: 280px;
  }

  .member-glass-icon {
    font-size: 2.2rem;
  }
}

/* ===== PRICING SECTION (Τιμές & Ειδικές προσφορές) ===== */
.pricing {
  padding: 80px 24px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-dark);
  font-weight: 800;
}

.pricing-header h3 em {
  color: var(--pink-primary);
  font-style: normal;
}

.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Pricing Glass Card */
.pricing-glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 0 30px rgba(236, 72, 153, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(236, 72, 153, 0.2);
}

.pricing-glass-card.highlight-card {
  background: linear-gradient(145deg, rgba(236, 72, 153, 0.05), rgba(255, 255, 255, 0.8));
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow:
    0 15px 45px rgba(236, 72, 153, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.pricing-glass-card.highlight-card:hover {
  box-shadow:
    0 25px 60px rgba(236, 72, 153, 0.2),
    0 0 40px rgba(236, 72, 153, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.pricing-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-primary), #c026d3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
  transition: all 0.4s ease;
}

.pricing-glass-card.highlight-card .pricing-icon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.pricing-glass-card:hover .pricing-icon {
  transform: scale(1.1) rotate(5deg);
}

.pricing-icon i {
  font-size: 1.5rem;
  color: white;
}

.pricing-glass-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.pricing-glass-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

.pricing-glass-card p strong {
  color: var(--pink-primary);
  font-size: 1.05rem;
}

/* Pricing Responsive */
@media (max-width: 768px) {
  .pricing {
    padding: 60px 20px;
  }

  .pricing-header h3 {
    font-size: 1.8rem;
  }

  .pricing-cards-container {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 450px;
    margin: 0 auto;
  }

  .pricing-glass-card {
    padding: 32px 24px;
  }
}

/* ===== PARENTS INTRO TEXT (Our Space page) ===== */
.parents-intro-text {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===== DYNAMIC EVENT BANNER (Landing Page) ===== */
.event-banner {
  padding: 0 24px;
  position: relative;
  margin-top: -40px;
  z-index: 5;
}

.event-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 24px;
  padding: 36px 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(236, 72, 153, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.event-banner-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: conic-gradient(from 0deg,
      rgba(236, 72, 153, 0.25),
      rgba(252, 245, 141, 0.2),
      rgba(114, 95, 237, 0.2),
      rgba(236, 72, 153, 0.25));
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: rotateGlow 8s linear infinite;
  pointer-events: none;
}

.event-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
}

.event-banner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--pink-primary), #c026d3);
  border-radius: 16px;
  color: white;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
  text-align: center;
  min-width: 100px;
}

.event-banner-badge-icon {
  font-size: 2rem;
  display: block;
  animation: floatGlassIcon 3s ease-in-out infinite;
}

.event-banner-info {
  flex: 1;
}

.event-banner-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.event-banner-info>p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.event-banner-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.event-banner-meta span {
  font-size: 0.88rem;
  color: var(--pink-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-banner-meta span i {
  font-size: 0.85rem;
}

.event-banner-cta {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 14px 28px !important;
  font-size: 0.95rem !important;
}

@media (max-width: 768px) {
  .event-banner {
    padding: 0 16px;
    margin-top: -24px;
  }

  .event-banner-inner {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .event-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .event-banner-badge {
    flex-direction: row;
    padding: 10px 20px;
    border-radius: 50px;
    gap: 10px;
    min-width: auto;
  }

  .event-banner-badge-icon {
    font-size: 1.3rem;
  }

  .event-banner-meta {
    justify-content: center;
  }

  .event-banner-info h3 {
    font-size: 1.3rem;
  }

  .event-banner-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ===== EVENTS SHOWCASE SECTION (Services Page) ===== */
.events-showcase {
  padding: 80px 24px;
  background: linear-gradient(160deg, #fef9e7 0%, #fdf2ca 40%, #fce4ec 100%);
  position: relative;
  overflow: hidden;
}

.events-showcase::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.events-showcase::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(114, 95, 237, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.events-showcase .section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.events-showcase .section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-gray);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.events-showcase-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* Event Showcase Card */
.event-showcase-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.event-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pink-primary), var(--footer-purple));
  border-radius: 24px 24px 0 0;
}

.event-showcase-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.1),
    0 0 30px rgba(236, 72, 153, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(236, 72, 153, 0.2);
}

.event-showcase-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  color: white;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-body);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
  z-index: 2;
}

.event-showcase-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

.event-showcase-card:hover .event-showcase-icon {
  transform: scale(1.15) rotate(-5deg);
}

.event-showcase-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.event-showcase-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.event-showcase-meta span {
  font-size: 0.85rem;
  color: var(--pink-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-showcase-meta span i {
  font-size: 0.8rem;
}

.event-showcase-content p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.event-showcase-details {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.event-showcase-details span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(236, 72, 153, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-showcase-details span i {
  color: var(--pink-primary);
  font-size: 0.78rem;
}

.event-cta {
  align-self: flex-start;
  padding: 12px 28px !important;
  font-size: 0.9rem !important;
}

@media (max-width: 768px) {
  .events-showcase {
    padding: 60px 20px;
  }

  .events-showcase .section-title {
    font-size: 1.8rem;
  }

  .events-showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
  }

  .event-showcase-card {
    padding: 28px 22px;
  }

  .event-cta {
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }
}

/* ===== HAPPY HOUR — Pastel Theme ===== */

/* Landing page banner overrides */
.happy-hour-inner {
  background: linear-gradient(135deg,
      rgba(255, 228, 225, 0.7),
      rgba(255, 245, 238, 0.65),
      rgba(225, 245, 235, 0.6)) !important;
  border-color: rgba(255, 182, 193, 0.5) !important;
  box-shadow:
    0 20px 60px rgba(236, 72, 153, 0.12),
    0 4px 16px rgba(255, 182, 193, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5) !important;
}

.happy-hour-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: conic-gradient(from 0deg,
      rgba(255, 182, 193, 0.35),
      rgba(255, 218, 185, 0.25),
      rgba(176, 224, 200, 0.2),
      rgba(255, 182, 193, 0.35));
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.7;
  animation: rotateGlow 10s linear infinite;
  pointer-events: none;
}

.happy-hour-confetti {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 15% 20%, rgba(236, 72, 153, 0.3), transparent),
    radial-gradient(2px 2px at 35% 60%, rgba(176, 224, 200, 0.4), transparent),
    radial-gradient(2px 2px at 55% 15%, rgba(255, 218, 185, 0.4), transparent),
    radial-gradient(2px 2px at 75% 50%, rgba(236, 72, 153, 0.25), transparent),
    radial-gradient(2px 2px at 90% 30%, rgba(114, 95, 237, 0.2), transparent),
    radial-gradient(3px 3px at 25% 80%, rgba(255, 182, 193, 0.35), transparent),
    radial-gradient(2px 2px at 65% 85%, rgba(176, 224, 200, 0.3), transparent);
  pointer-events: none;
  z-index: 0;
}

.happy-hour-content {
  align-items: center;
}

/* Price Circle — Hero Visual */
.happy-hour-price-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.happy-hour-price-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #f472b6, #c026d3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 32px rgba(236, 72, 153, 0.45),
    0 0 0 6px rgba(255, 255, 255, 0.6),
    inset 0 -4px 12px rgba(0, 0, 0, 0.15);
  animation: pricePulse 2.5s ease-in-out infinite;
  position: relative;
}

.happy-hour-price-circle.large {
  width: 150px;
  height: 150px;
}

.price-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: -4px;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.happy-hour-price-circle.large .price-value {
  font-size: 4.5rem;
}

.price-euro {
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 2px;
}

@keyframes pricePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.45), 0 0 0 6px rgba(255, 255, 255, 0.6), inset 0 -4px 12px rgba(0, 0, 0, 0.15);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.55), 0 0 0 8px rgba(255, 255, 255, 0.7), inset 0 -4px 12px rgba(0, 0, 0, 0.15);
  }
}

/* Toast Bonus Badge */
.happy-hour-toast-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(255, 243, 224, 0.9), rgba(255, 228, 196, 0.85));
  border: 2px solid rgba(255, 183, 77, 0.4);
  border-radius: 50px;
  font-size: 0.82rem;
  color: #b45309;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 183, 77, 0.2);
  white-space: nowrap;
}

.happy-hour-toast-badge strong {
  color: #92400e;
  font-weight: 800;
}

.toast-badge-star {
  font-size: 1.1rem;
  animation: floatGlassIcon 2s ease-in-out infinite;
}

/* Happy Hour badge override */
.happy-hour-badge {
  background: linear-gradient(135deg, #f472b6, #ec4899) !important;
  border-radius: 50px !important;
  padding: 8px 16px !important;
  font-size: 0.8rem !important;
  flex-direction: row !important;
  min-width: auto !important;
  gap: 8px !important;
  margin-bottom: 8px;
  align-self: flex-start;
}

.happy-hour-info h3 {
  font-size: 1.8rem !important;
  background: linear-gradient(135deg, #ec4899, #be185d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.happy-hour-offer {
  font-size: 1.05rem !important;
  color: var(--text-dark) !important;
  font-weight: 600;
}

.happy-hour-offer em {
  color: var(--text-gray);
  font-weight: 400;
}

.happy-hour-cta {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  box-shadow: 0 6px 0 #065f46, 0 10px 20px rgba(16, 185, 129, 0.3) !important;
  gap: 8px;
}

.happy-hour-cta:hover {
  box-shadow: 0 8px 0 #065f46, 0 14px 28px rgba(16, 185, 129, 0.4) !important;
}

/* Services page — Happy Hour Section */
.happy-hour-section {
  background: linear-gradient(160deg,
      rgba(255, 228, 225, 0.6) 0%,
      rgba(255, 245, 238, 0.5) 30%,
      rgba(225, 245, 235, 0.4) 60%,
      rgba(255, 240, 245, 0.5) 100%) !important;
}

.happy-hour-card-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.happy-hour-event-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 28px;
  border: 1.5px solid rgba(255, 182, 193, 0.4);
  box-shadow:
    0 20px 60px rgba(236, 72, 153, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.happy-hour-event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f472b6, #ec4899, #c026d3, #7c3aed);
}

.happy-hour-event-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 70px rgba(236, 72, 153, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.happy-hour-card-price-area {
  padding: 40px 28px 20px;
  display: flex;
  justify-content: center;
}

.happy-hour-card-body {
  padding: 0 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.happy-hour-card-body h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ec4899, #be185d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.happy-hour-offer-text {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}

.happy-hour-offer-text em {
  color: var(--text-gray);
  font-weight: 400;
}

.card-toast-badge {
  justify-content: center;
  margin-bottom: 20px;
}

.happy-hour-card-body .event-showcase-meta {
  justify-content: center;
  margin-bottom: 24px;
}

/* Includes checklist */
.happy-hour-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(236, 72, 153, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(236, 72, 153, 0.08);
}

.include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.include-item i {
  color: #10b981;
  font-size: 1rem;
}

.happy-hour-card-cta {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #10b981, #059669) !important;
  box-shadow: 0 6px 0 #065f46, 0 10px 20px rgba(16, 185, 129, 0.3) !important;
  padding: 16px 32px !important;
  font-size: 1.05rem !important;
  gap: 10px;
  margin-top: auto;
}

.happy-hour-card-cta:hover {
  box-shadow: 0 8px 0 #065f46, 0 14px 28px rgba(16, 185, 129, 0.4) !important;
}

.happy-hour-phone-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.happy-hour-phone-note i {
  color: var(--pink-primary);
  margin-right: 4px;
}

/* Mobile — Happy Hour overrides */
@media (max-width: 768px) {
  .happy-hour-content {
    flex-direction: column;
    text-align: center;
  }

  .happy-hour-price-block {
    order: -1;
  }

  .happy-hour-price-circle {
    width: 100px;
    height: 100px;
  }

  .happy-hour-price-circle.large {
    width: 130px;
    height: 130px;
  }

  .price-value {
    font-size: 2.8rem;
  }

  .happy-hour-price-circle.large .price-value {
    font-size: 3.6rem;
  }

  .happy-hour-info h3 {
    font-size: 1.4rem !important;
  }

  .happy-hour-badge {
    align-self: center !important;
  }

  .happy-hour-toast-badge {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .happy-hour-cta {
    width: 100%;
    justify-content: center;
  }

  .happy-hour-card-body {
    padding: 0 20px 28px;
  }

  .happy-hour-card-body h3 {
    font-size: 1.6rem;
  }

  .happy-hour-card-price-area {
    padding: 32px 20px 16px;
  }
}

/* ===== FAQ CTA SECTION ===== */
.faq-cta-section {
  padding: 48px 24px;
  background: var(--off-white);
}

.faq-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(236, 72, 153, 0.06));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(236, 72, 153, 0.15);
  padding: 40px 48px;
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-cta-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(236, 72, 153, 0.25);
}

.faq-cta-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.faq-cta-content {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.faq-cta-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
}

.faq-cta-text {
  flex: 1;
}

.faq-cta-text h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.faq-cta-text p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.faq-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .faq-cta-inner {
    padding: 28px 24px;
  }

  .faq-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .faq-cta-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .faq-cta-text h3 {
    font-size: 1.2rem;
  }

  .faq-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== PHILOSOPHY SECTION (Party Page) ===== */
.philosophy-section {
  padding: 72px 24px 60px;
  background: var(--white);
}

.philosophy-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-inner .section-title {
  font-size: 2rem;
  margin-bottom: 28px;
}

.philosophy-message {
  margin-bottom: 40px;
}

.philosophy-message p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto;
}

.philosophy-highlight {
  font-style: italic;
  font-weight: 700;
  color: var(--pink-primary);
  font-size: 1.15em;
}

.philosophy-benefits {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.philosophy-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  max-width: 340px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(236, 72, 153, 0.04));
  border-radius: 16px;
  border: 1px solid rgba(236, 72, 153, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
}

.philosophy-benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.2);
}

.philosophy-benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-primary), var(--footer-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
}

.philosophy-benefit h5 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.philosophy-benefit p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.philosophy-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .philosophy-section {
    padding: 56px 20px 48px;
  }

  .philosophy-inner .section-title {
    font-size: 1.6rem;
  }

  .philosophy-message p {
    font-size: 1rem;
  }

  .philosophy-benefits {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .philosophy-benefit {
    max-width: 100%;
  }
}

/* ===== FOOTER SCHEDULE NOWRAP FIX ===== */
.footer-contact p span {
  white-space: nowrap;
}

/* ===== MAP DIRECTIONS BUTTON ===== */
.map-directions-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 50px;
  margin-top: 4px;
  gap: 4px;
}

@media (max-width: 768px) {
  .map-directions-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* ===== COMPREHENSIVE MOBILE FIXES ===== */

/* --- 1. Hamburger Menu Hardening --- */
@media (max-width: 768px) {

  /* Tighter nav padding so logo + hamburger don't crowd */
  .nav-container {
    padding: 0 16px;
  }

  /* Make logo smaller on mobile to leave room for hamburger */
  .logo {
    height: 50px;
    width: 95px;
  }

  /* Ensure the hamburger is always visible and tappable */
  .menu-toggle {
    display: flex !important;
    position: relative;
    z-index: 10002;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }

  /* Slide-in panel: ensure proper scrolling if many links */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 100px 28px 40px;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10000;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-left: 3px solid rgba(236, 72, 153, 0.15);
  }

  .nav-links.open {
    right: 0;
  }

  /* Stack links cleanly with no overlap */
  .nav-links a {
    width: 100%;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
    font-size: 1rem;
    font-family: var(--font-nav);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: left;
    white-space: normal;
  }

  /* Remove hover transform that causes layout shift on mobile */
  .nav-links a:hover,
  .nav-links a.active {
    transform: none;
    box-shadow: none;
    background: rgba(236, 72, 153, 0.06);
  }

  /* Remove underline decoration inside mobile panel */
  .nav-links a::after {
    display: none;
  }

  /* Social icons inside the panel */
  .nav-social {
    margin-left: 0;
    margin-top: 24px;
    padding-left: 0;
    padding-top: 16px;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    justify-content: center;
  }

  .nav-social a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* --- 2. Philosophy Section Alignment --- */
@media (max-width: 768px) {
  .philosophy-section {
    padding: 56px 24px 48px;
  }

  .philosophy-inner {
    text-align: center;
  }

  .philosophy-message p {
    font-size: 0.98rem;
    text-align: left;
    padding: 0 4px;
  }

  .philosophy-benefits {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 0;
  }

  .philosophy-benefit {
    max-width: 100%;
    padding: 20px;
  }

  .philosophy-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* --- 3. Party Menu Cards Alignment --- */
@media (max-width: 768px) {
  .party-services {
    padding: 60px 20px;
  }

  .party-services .section-title {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }

  .menus-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .menu-card {
    padding: 28px 22px;
  }

  .menu-card h3 {
    font-size: 1.25rem;
  }

  .menu-card h5 {
    font-size: 1rem;
  }

  .menu-card ul li {
    font-size: 0.9rem;
  }
}

/* --- 4. Montessori Layout Stacking --- */
@media (max-width: 768px) {
  .montessori-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .montessori-text-side .section-title {
    text-align: center;
    font-size: 1.6rem;
  }

  .montessori-intro {
    text-align: center;
  }
}

/* --- 5. Hero Buttons Mobile Stack --- */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0 16px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
    font-size: 0.95rem;
    padding: 14px 20px;
  }
}

/* ===== EASTER CAMP BANNER ===== */
.easter-camp-banner {
  padding: 80px 24px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.easter-camp-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.easter-camp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.easter-camp-image {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.easter-camp-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #FF66A1;
  /* Fallback poster color */
  transform: scale(1.01);
  transition: transform 0.5s ease;
}

.easter-camp-inner:hover .easter-camp-image img {
  transform: scale(1.05);
}

.easter-camp-content {
  padding: 40px 50px;
}

.easter-badge {
  background: rgba(255, 102, 161, 0.15);
  color: #FF66A1;
  border: none;
  align-self: flex-start;
  margin-bottom: 20px;
}

.easter-camp-content h2 {
  font-size: 2.8rem;
  color: var(--pink-primary);
  font-family: var(--font-heading);
  margin-bottom: 12px;
  line-height: 1.1;
}

.easter-camp-desc {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.easter-camp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.easter-camp-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
}

.easter-camp-features li i {
  color: #FF66A1;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.easter-camp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #EAFCF0;
  padding: 16px 24px;
  border-radius: 60px;
  flex: 1;
  min-width: 250px;
}

.meta-item i {
  font-size: 1.8rem;
  color: #10B981;
}

.heart-item {
  background: #FFF0F5;
}

.heart-item i {
  color: #EC4899;
}

.meta-item div {
  display: flex;
  flex-direction: column;
}

.meta-item strong {
  font-size: 1.15rem;
  color: var(--text-dark);
}

.meta-item span {
  font-size: 0.95rem;
  color: var(--text-gray);
}

.discount-text {
  font-weight: 700;
  color: #EC4899 !important;
}

.easter-camp-cta {
  width: 100%;
  justify-content: center;
  font-size: 1.2rem;
  padding: 18px 30px;
  background: linear-gradient(135deg, #FF66A1, #D946EF);
  border: none;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 102, 161, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 102, 161, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 102, 161, 0);
  }
}

@media (max-width: 992px) {
  .easter-camp-grid {
    grid-template-columns: 1fr;
  }

  .easter-camp-image {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .easter-camp-content {
    padding: 30px 20px;
  }

  .easter-camp-content h2 {
    font-size: 2.2rem;
  }

  .meta-item {
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
}

/* --- EASTER CAMP UPDATES --- */
.hero-easter-overlay {
  position: absolute;
  top: 140px;
  right: 8%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: floatOverlay 6s ease-in-out infinite;
}

@keyframes floatOverlay {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.easter-hero-img {
  width: 250px;
  height: 330px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border: 5px solid white;
  transform: rotate(6deg);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-easter-overlay:hover .easter-hero-img {
  transform: rotate(0deg) scale(1.08);
}

.easter-cta-btn {
  font-size: 0.95rem !important;
  padding: 12px 24px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ec4899, #f59e0b) !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4) !important;
}

.events-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .events-cards-container {
    grid-template-columns: 1fr;
  }

  .hero-easter-overlay {
    position: relative;
    top: 0;
    right: 0;
    margin: 120px auto 20px;
    transform: scale(0.95);
    animation: none;
  }

  .hero-easter-overlay .easter-hero-img {
    width: 280px;
    transform: rotate(0deg);
  }

  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-content {
    padding-top: 10px;
  }
}

.lobster-regular {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ===== EASTER PRO CARD UPGRADE ===== */
.easter-pro-card {
  border-color: rgba(255, 102, 161, 0.4) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 240, 245, 0.8) 100%) !important;
  position: relative;
  z-index: 1;
}
.easter-pro-card::before {
  background: linear-gradient(90deg, #fce4ec, #FF66A1, #D946EF, #fce4ec);
}
.easter-pro-card:hover {
  box-shadow: 0 28px 70px rgba(255, 102, 161, 0.2), 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-8px);
}

/* Background floating elements */
.easter-bg-art {
  position: absolute;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  font-size: 5rem;
}
.easter-bg-art.art-1 {
  bottom: -40px;
  right: -20px;
  transform: rotate(-15deg);
  font-size: 8rem;
}
.easter-bg-art.art-2 {
  top: 10%;
  left: 5%;
  transform: rotate(25deg);
  font-size: 4rem;
  opacity: 0.08;
}

/* Ensure text stays above background art */
.easter-pro-card > div:not(.easter-bg-art) {
  position: relative;
  z-index: 2;
}

/* Top Badge */
.easter-pro-badge {
  display: inline-flex;
  margin-top: 25px;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255, 102, 161, 0.15); 
  color: #FF66A1;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: center;
  margin-bottom: 20px;
}

/* Price Circle */
.easter-pro-circle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50% 50% 45% 55% / 60% 55% 45% 40%; /* Playful egg shape */
  color: white;
  width: 140px;
  height: 150px;
  background: linear-gradient(135deg, #FF66A1, #D946EF);
  box-shadow: 0 10px 30px rgba(255, 102, 161, 0.4), inset 0px 5px 15px rgba(255,255,255,0.4);
  transform: rotate(-5deg);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.easter-pro-card:hover .easter-pro-circle {
  transform: rotate(5deg) scale(1.05);
}
.easter-pro-circle .price-label {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}
.easter-pro-circle .price-value {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  margin-top: 2px;
  line-height: 1;
}

/* Content Details */
.easter-pro-title {
  background: linear-gradient(135deg, #FF66A1, #D946EF) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.easter-pro-toast-badge {
  background: #FFF0F5 !important;
  color: #EC4899 !important;
  border: 1px dashed rgba(236, 72, 153, 0.4) !important;
}
.easter-pro-toast-badge .toast-badge-star {
  background: #EC4899 !important;
}
.easter-pro-meta {
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.easter-pro-times {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.easter-pro-includes {
  background: rgba(255, 102, 161, 0.04) !important;
  border-color: rgba(255, 102, 161, 0.15) !important;
}
.easter-pro-includes i {
  color: #FF66A1 !important;
}
.easter-pro-cta {
  background: linear-gradient(135deg, #FF66A1, #D946EF) !important;
  box-shadow: 0 6px 0 #be185d, 0 10px 20px rgba(255, 102, 161, 0.3) !important;
}
.easter-pro-cta:hover {
  box-shadow: 0 8px 0 #be185d, 0 14px 28px rgba(255, 102, 161, 0.4) !important;
}
.easter-pro-phone {
  margin-top: 14px;
}
.easter-pro-phone i {
  color: #FF66A1 !important;
}

/* ===== HAPPY PRO CARD UPGRADE ===== */
.happy-pro-card {
  border-color: rgba(16, 185, 129, 0.4) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 253, 244, 0.8) 100%) !important;
  position: relative;
  z-index: 1;
}
.happy-pro-card::before {
  background: linear-gradient(90deg, #dcfce7, #10b981, #059669, #dcfce7) !important;
}
.happy-pro-card:hover {
  box-shadow: 0 28px 70px rgba(16, 185, 129, 0.2), 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-8px);
}

.happy-bg-art {
  position: absolute;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  font-size: 5rem;
}
.happy-bg-art.art-1 {
  bottom: -30px;
  right: -20px;
  transform: rotate(-15deg);
  font-size: 8rem;
}
.happy-bg-art.art-2 {
  top: 10%;
  left: 5%;
  transform: rotate(25deg);
  font-size: 4rem;
  opacity: 0.08;
}

.happy-pro-card > div:not(.happy-bg-art) {
  position: relative;
  z-index: 2;
}

.happy-pro-badge {
  display: inline-flex;
  margin-top: 25px;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(16, 185, 129, 0.15) !important; 
  color: #10b981 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: center;
  margin-bottom: 20px;
}

.happy-pro-circle {
  border-radius: 50% 50% 45% 55% / 60% 55% 45% 40% !important; /* Egg/bean shape */
  background: linear-gradient(135deg, #10b981, #059669) !important;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4), inset 0px 5px 15px rgba(255,255,255,0.4) !important;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.happy-pro-card:hover .happy-pro-circle {
  transform: rotate(5deg) scale(1.05) !important;
}

.happy-pro-title {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.happy-pro-toast-badge {
  background: #f0fdf4 !important;
  color: #059669 !important;
  border: 1px dashed rgba(16, 185, 129, 0.4) !important;
}
.happy-pro-toast-badge .toast-badge-star {
  background: #059669 !important;
}

.happy-pro-meta {
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.happy-pro-meta > div {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.happy-pro-includes {
  background: rgba(16, 185, 129, 0.04) !important;
  border-color: rgba(16, 185, 129, 0.15) !important;
}
.happy-pro-includes i {
  color: #10b981 !important;
}

.happy-pro-cta {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  box-shadow: 0 6px 0 #064e3b, 0 10px 20px rgba(16, 185, 129, 0.3) !important;
}
.happy-pro-cta:hover {
  box-shadow: 0 8px 0 #064e3b, 0 14px 28px rgba(16, 185, 129, 0.4) !important;
  transform: translateY(-2px);
}

.happy-pro-phone {
  margin-top: 14px;
}
.happy-pro-phone i {
  color: #10b981 !important;                                                                                                                                                                                             
} /* ============================================================
   AGENT47 - DESKTOP LAYOUT RECOVERY (CENTERING & EASTER CARD)
   ============================================================ */

/* 1. Κεντράρισμα του Welcome και του κίτρινου box στον υπολογιστή */
.hero-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important; /* ΤΕΛΕΙΟ ΚΕΝΤΡΑΡΙΣΜΑ */
    text-align: center !important;
    width: 100% !important;
    max-width: 850px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    z-index: 5 !important;
}

/* 2. Επαναφορά της Easter Card Πάνω Δεξιά */
.hero-easter-overlay {
    position: absolute !important;
    top: 50px !important;      /* Απόσταση από την κορυφή */
    right: 50px !important;    /* Απόσταση από δεξιά */
    width: 320px !important;   /* Το μέγεθος της κάρτας σου */
    display: block !important;
    z-index: 10 !important;
    transform: rotate(3deg) !important; /* Μια μικρή κλίση για στυλ */
}

.easter-hero-img {
    width: 100% !important;
    height: auto !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}

/* 3. Διόρθωση για το background να μην κουνιέται */
.hero, .hero-section {
    position: relative !important;
    overflow: hidden !important;
}  /* ============================================================
   AGENT47 - THE ONLY MOBILE FIX FOR HERO SECTION (v2026)
   ============================================================ */
@media (max-width: 768px) {
    /* 1. Ξεκλειδώνουμε το Hero Section από σταθερά ύψη */
    .hero, .hero-section, #home {
        height: auto !important;
        min-height: 100vh !important;
        display: block !important;
        padding: 90px 15px 50px 15px !important;
        position: relative !important;
        overflow: visible !important;
    }

    /* 2. Εικόνα / Κάρτα Event: Την ξεκολλάμε και την κεντράρουμε */
    .hero-cloud-wrapper, .hero-easter-overlay, .easter-hero-img {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        max-width: 250px !important;
        margin: 0 auto 30px auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        animation: none !important;
    }

    /* 3. Κείμενα: Τα στοιχίζουμε στο κέντρο */
    .hero-content {
        position: relative !important;
        width: 100% !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        text-align: center !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
    }

    .hero-content h1 {
        font-size: 1.7rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .hero-subtitle-text {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin-bottom: 30px !important;
    }

    /* 4. Κουμπιά (CTA): Στοίχιση σε στήλη (Column) */
    .hero-buttons {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        margin-top: 20px !important;
        top: auto !important;
        transform: none !important;
    }

    .hero-buttons a, .hero-buttons .btn {
        width: 90% !important;
        max-width: 280px !important;
        margin: 0 !important;
        padding: 16px !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
} /* <--- ΠΡΟΣΟΧΗ: Αυτό το άγκιστρο κλείνει όλη τη διόρθωση */