@charset "utf-8";
/* 

CSS Document 

TemplateMo 613 Frost Bakery

https://templatemo.com/tm-613-frost-bakery

*/

:root {
	/* Color Palette — Terracotta */
	--terracotta: #E07A5F;
	--cream: #F4F1DE;
	--navy: #3D405B;
	--sage: #81B29A;

	/* Extended shades */
	--terracotta-light: #f0a58e;
	--terracotta-dark: #c4603f;
	--cream-dark: #e8e3c8;
	--navy-light: #575a78;
	--sage-light: #a8cfba;
	--sage-dark: #5f8e73;

	/* Typography */
	--font-heading: 'Lora', Georgia, serif;
	--font-body: 'Manrope', 'Segoe UI', sans-serif;

	/* Spacing */
	--sidebar-width: 260px;
	--section-pad: clamp(3rem, 6vw, 6rem);
	--gap: clamp(1rem, 2.5vw, 2rem);

	/* Borders & Radius */
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 24px;
	--radius-xl: 32px;

	/* Shadows */
	--shadow-card: 0 4px 24px rgba(61, 64, 91, 0.08);
	--shadow-hover: 0 8px 40px rgba(61, 64, 91, 0.14);

	/* Transitions */
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--duration: 0.5s;
}

/* ============================================
       ENROLLMENT POPUP MODAL
       ============================================ */
.enrollment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.enrollment-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.8), rgba(255, 60, 172, 0.8), rgba(66, 230, 149, 0.8));
  backdrop-filter: blur(8px);
  animation: backdropPulse 3s ease-in-out infinite;
}

@keyframes backdropPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.9; }
}

.modal-container {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(50px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: modalEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.enrollment-modal.show .modal-container {
  transform: scale(1) translateY(0);
}

@keyframes modalEntrance {
  0% {
    transform: scale(0.8) translateY(50px) rotate(-2deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.05) translateY(-10px) rotate(1deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) translateY(0) rotate(0deg);
    opacity: 1;
  }
}

/* Decorative Elements */
.modal-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px;
}

.decor-star, .decor-bubble {
  position: absolute;
  font-size: 24px;
  animation: floatDecor 4s ease-in-out infinite;
}

.star-1 {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
  color: #ffd93d;
}

.star-2 {
  top: 30px;
  right: 30px;
  animation-delay: 1s;
  color: #ff7a00;
}

.bubble-1 {
  bottom: 40px;
  left: 25px;
  animation-delay: 2s;
  color: #6ed3ff;
}

.bubble-2 {
  top: 50px;
  right: 20px;
  animation-delay: 0.5s;
  color: #ff9bd2;
}

.bubble-3 {
  bottom: 20px;
  right: 40px;
  animation-delay: 1.5s;
  color: #42e695;
}

@keyframes floatDecor {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}

/* Modal Header */
.modal-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 15px;
  animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(-90deg);
    opacity: 0.7;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  background: linear-gradient(45deg, #ff7a00, #ff3cac, #42e695);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-subtitle {
  font-size: 16px;
  color: var(--navy-light);
  font-weight: 500;
}

/* Modal Close Button */
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
  background: #ff7a00;
  color: white;
  transform: rotate(90deg) scale(1.1);
}

/* Form Styles */
.enrollment-form {
  animation: formSlideIn 0.6s ease-out 0.3s both;
}

@keyframes formSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff7a00;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Form Footer */
.form-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e1e5e9;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--navy-light);
}

.terms-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #ff7a00;
}

.enroll-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(45deg, #ff7a00, #ff3cac);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
}

.enroll-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.enroll-submit-btn:hover::before {
  left: 100%;
}

.enroll-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 122, 0, 0.4);
}

.enroll-submit-btn:active {
  transform: translateY(-1px);
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 40px 20px;
  animation: successPop 0.5s ease-out;
}

@keyframes successPop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: successBounce 1s ease-out;
}

@keyframes successBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.success-message h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 15px;
}

.success-message p {
  color: var(--navy-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.success-close-btn {
  padding: 12px 24px;
  background: linear-gradient(45deg, #42e695, #3bb2b8);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 230, 149, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-container {
    padding: 30px 20px;
    margin: 20px;
    max-height: calc(100vh - 40px);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .modal-title {
    font-size: 24px;
  }

  .decor-star, .decor-bubble {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .modal-container {
    padding: 20px 15px;
  }

  .modal-title {
    font-size: 20px;
  }

  .modal-icon {
    font-size: 36px;
  }
}
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-body);
	color: var(--navy);
	background-color: var(--cream);
	line-height: 1.7;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.2;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

ul {
	list-style: none;
}

button {
	font-family: var(--font-body);
	cursor: pointer;
	border: none;
	background: none;
}

/* SIDEBAR BASE */
.bm-sidebar {
  width: 260px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(0); /* Add transform for animation */
  transition: transform 0.3s ease;
  z-index: 1000;

  /* GLASS + GRADIENT */
  background: linear-gradient(180deg, #ffdee9, #b5e3ff);
  backdrop-filter: blur(20px);
  box-shadow: 5px 0 30px rgba(0,0,0,0.1);
}

/* BACKGROUND SHAPES */
.bm-sidebar__bg span {
  position: absolute;
  opacity: 0.4;
}

/* SUN */
.bg--sun {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #ffd93d, #ff9a00);
  border-radius: 50%;
  top: 20px;
  right: -20px;
  animation: rotateSun 10s linear infinite;
}

/* CLOUD */
.bg--cloud {
  width: 100px;
  height: 50px;
  background: #fff;
  border-radius: 50px;
  top: 150px;
  left: -20px;
  animation: floatCloud 6s ease-in-out infinite;
}

/* BUBBLE */
.bg--bubble {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  bottom: 100px;
  right: 20px;
  animation: floatBubble 5s ease-in-out infinite;
}

/* BRAND */
.bm-logo {
  font-size: 28px;
  font-weight: 800;
  color: #333;
}

.bm-logo span {
  color: #ff7a00;
}

.bm-tagline {
  font-size: 13px;
  margin-top: 5px;
  color: #555;
}

/* NAV */
.bm-sidebar__nav ul {
  list-style: none;
  padding: 0;
}

.bm-sidebar__nav li {
  margin: 10px 0;
}

.bm-sidebar__nav a {
  display: block;
  padding: 8px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER EFFECT */
.bm-sidebar__nav a:hover,
.bm-sidebar__nav a.active {
  background: linear-gradient(45deg, #ff7a00, #ffb347);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255,122,0,0.4);
  transform: translateX(5px);
}

/* CTA */
.bm-sidebar__cta {
  text-align: center;
}

.bm-sidebar__btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  border-radius: 25px;
  background: linear-gradient(45deg, #ff3cac, #784ba0);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.bm-sidebar__btn:hover {
  transform: scale(1.05);
}

/* FOOTER */
.bm-sidebar__footer {
  font-size: 13px;
  color: #000;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  border-top: 2px solid #ff6b6b;
  margin-top: 8px;
}

/* ANIMATIONS */
@keyframes floatCloud {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatBubble {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes rotateSun {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ============================================
       Mobile Hamburger Toggle
       ============================================ */
.hamburger {
	display: none;
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 1100;
	width: 48px;
	height: 48px;
	background: var(--navy);
	border-radius: var(--radius-sm);
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-card);
}

.hamburger__lines {
	width: 22px;
	height: 16px;
	position: relative;
}

.hamburger__lines span {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background: var(--cream);
	border-radius: 2px;
	transition: all 0.3s var(--ease-out);
}

.hamburger__lines span:nth-child(1) {
	top: 0;
}

.hamburger__lines span:nth-child(2) {
	top: 7px;
}

.hamburger__lines span:nth-child(3) {
	top: 14px;
}

.hamburger.is-active .hamburger__lines span:nth-child(1) {
	top: 7px;
	transform: rotate(45deg);
}

.hamburger.is-active .hamburger__lines span:nth-child(2) {
	opacity: 0;
}

.hamburger.is-active .hamburger__lines span:nth-child(3) {
	top: 7px;
	transform: rotate(-45deg);
}

/* Mobile overlay */
.sidebar-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(61, 64, 91, 0.5);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.sidebar-overlay.is-visible {
	opacity: 1;
}

/* Ensure mobile sidebar stays above overlay */
.bm-sidebar.is-open {
	z-index: 1000;
}

/* ============================================
       Main Content Area
       ============================================ */
.main {
	margin-left: var(--sidebar-width);
	min-height: 100vh;
}

/* ============================================
       Scroll-triggered Animation Classes
       ============================================ */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 {
	transition-delay: 0.1s;
}

.reveal-delay-2 {
	transition-delay: 0.2s;
}

.reveal-delay-3 {
	transition-delay: 0.3s;
}

.reveal-delay-4 {
	transition-delay: 0.4s;
}

/* ============================================
       Section: Hero
       ============================================ */
/* HERO BASE */
.bm-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ffd6ec, #d6f0ff, #fff5c3);
  font-family: 'Poppins', sans-serif;
}

/* CONTENT */
.bm-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* BADGE */
.bm-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  position: relative;
  overflow: hidden;

  /* GRADIENT */
  background: linear-gradient(270deg, #ff7a00, #ff3cac, #42e695, #ffd93d);
  background-size: 400% 400%;

  /* GLOW */
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);

  /* ANIMATION */
  animation: gradientMove 6s ease infinite, float 3s ease-in-out infinite;
}

/* GRADIENT ANIMATION */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* FLOAT EFFECT */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.bm-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* TITLE */
.bm-title {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
}

.bm-title span {
  color: #ff7a00;
  text-shadow: 0 0 10px rgba(255,122,0,0.5);
}

/* SUBTITLE */
.bm-subtitle {
  font-size: 1.1rem;
  margin: 20px 0;
  color: #393939;
  font-weight: bold;
}

/* BUTTONS */
.bm-btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin: 10px;
  transition: 0.3s;
}

.bm-btn--primary {
  background: linear-gradient(45deg, #ff7a00, #ffb347);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255,122,0,0.4);
}

.bm-btn--primary:hover {
  transform: translateY(-3px) scale(1.05);
}

.bm-btn--outline {
  border: 2px solid #ff7a00;
  color: #ff7a00;
}

.bm-btn--outline:hover {
  background: #ff7a00;
  color: #fff;
}

/* FLOATING SHAPES */
.bm-shapes span {
  position: absolute;
  display: block;
  opacity: 0.7;
}

/* CIRCLE */
.shape--circle {
  width: 80px;
  height: 80px;
  background: #ff9bd2;
  border-radius: 50%;
  top: 10%;
  left: 15%;
  animation: float 6s infinite ease-in-out;
}

/* TRIANGLE */
.shape--triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid #6ed3ff;
  top: 70%;
  left: 20%;
  animation: float 7s infinite ease-in-out;
}

/* STAR */
.shape--star {
  width: 60px;
  height: 60px;
  background: #fff176;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  top: 20%;
  right: 15%;
  animation: spin 8s linear infinite;
}

/* BUBBLE */
.shape--bubble {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  bottom: 10%;
  right: 10%;
  backdrop-filter: blur(10px);
  animation: float 5s infinite ease-in-out;
}

/* ANIMATIONS */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

.bubble {
  position: absolute;
  bottom: -50px;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: rise linear infinite;
}

@keyframes rise {
  to {
    transform: translateY(-110vh);
    opacity: 0;
  }
}


/* KIDS CONTAINER */
.bm-kids {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* COMMON STYLE */
.kid {
  position: absolute;
  width: 120px;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
  animation: floatKids 6s ease-in-out infinite;
  transition: transform 0.4s;
}

/* INDIVIDUAL POSITIONS */
.kid--1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.kid--2 {
  bottom: 15%;
  left: 15%;
  width: 140px;
  animation-delay: 1s;
}

.kid--3 {
  top: 20%;
  right: 10%;
  width: 130px;
  animation-delay: 2s;
}

.kid--4 {
  bottom: 10%;
  right: 12%;
  width: 150px;
  animation-delay: 3s;
}

/* FLOAT ANIMATION */
@keyframes floatKids {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

/* HOVER INTERACTION (optional) */
.bm-hero:hover .kid {
  transform: scale(1.05);
}


/* ACTIVITY CARD */
.activity-card {
  background: linear-gradient(135deg, #ffffff, #f0f9ff);
  border-radius: 20px;
  padding: 20px 0;
  position: relative;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ICON */
.activity-icon {
  font-size: 40px;
  margin-bottom: 10px;
  animation: bounce 2s infinite;
}

/* HOVER */
.activity-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* BACKGROUND DECOR */
.camp-deco {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* FLOATING KIDS */
.camp-kid {
  position: absolute;
  width: 100px;
  animation: float 6s infinite ease-in-out;
}

.kid1 { top: 10%; left: 5%; }
.kid2 { bottom: 10%; right: 5%; }

/* BLOBS */
.camp-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.blob1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #ff9a9e, #fad0c4);
  top: 20%;
  right: 10%;
  animation: blobMove 8s infinite;
}

.blob2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #a1c4fd, #c2e9fb);
  bottom: 20%;
  left: 10%;
  animation: blobMove 10s infinite;
}

/* PROFILE (PARENT TRUST) */
.section__header::after {
  content: "";
  display: block;
  width: 120px;
  height: 40px;
  margin: 10px auto;
  background: url('images/parents.png') no-repeat center/cover;
  animation: pop 2s infinite alternate;
}

/* ANIMATIONS */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes blobMove {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pop {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.camp-cta{
	  margin: 0 auto;
}

.camp-cta h3{
	padding: 30px 0;
	text-align: center;
}

.bm-btm {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin: 10px auto;
  transition: 0.3s;
}
.camp-cta .btm{
	display: flex;
	justify-content: center;
}

.bm-btm--primary {
  background: linear-gradient(45deg, #ff7a00, #ffb347);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255,122,0,0.4);
}
/* ============================================
       Buttons
       ============================================ */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.75rem;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: var(--radius-md);
	transition: all 0.3s var(--ease-out);
}

.btn--primary {
	background: var(--terracotta);
	color: #fff;
}

.btn--primary:hover {
	background: var(--terracotta-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(224, 122, 95, 0.35);
}

.btn--outline {
	border: 2px solid var(--navy);
	color: var(--navy);
	background: transparent;
}

.btn--outline:hover {
	background: var(--navy);
	color: var(--cream);
	transform: translateY(-2px);
}

.btn--sage {
	background: var(--sage);
	color: #fff;
}

.btn--sage:hover {
	background: var(--sage-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(129, 178, 154, 0.35);
}

/* ============================================
       Section Headers (shared)
       ============================================ */
.section {
	padding: var(--section-pad);
}

.section--alt {
	background: #fff;
}

.section__header {
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section__label {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(45deg,#ff7a00,#ff3cac);
	padding: 6px 18px;
	border-radius: 10px;
	width: 100%;
	margin-bottom: 0.75rem;
}

.section__title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	color: var(--navy);
	letter-spacing: -0.02em;
}

.section__desc {
	margin-top: 0.75rem;
	font-size: 1.05rem;
	color: var(--navy-light);
	max-width: 560px;
}

/* ============================================
       Section: Flavor Wheel — Ticker Marquee
       ============================================ */
.flavors-section {
  background: linear-gradient(135deg, #ffd6ec, #d6f0ff, #fff5c3);
  font-family: 'Poppins', sans-serif;
}

.flavors-section .section__header {
	padding-left: var(--section-pad);
	padding-right: var(--section-pad);
}

/* Marquee wrapper */
.marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 1rem 0 ;
}

/* Subtle edge fades */
.marquee::before,
.marquee::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 2;
	pointer-events: none;
}

.marquee::before {
	left: 0;
	background: linear-gradient(to right, #fff, transparent);
}

.marquee::after {
	right: 0;
	background: linear-gradient(to left, #fff, transparent);
}

/* Two rows scrolling in opposite directions */
.marquee__track {
	display: flex;
	width: max-content;
	gap: 1.25rem;
	animation: marquee-scroll 35s linear infinite;
}

.marquee__track--reverse {
	animation-name: marquee-scroll-reverse;
	animation-duration: 40s;
	margin-top: 1.25rem;
}

/* Pause on hover */
.marquee:hover .marquee__track {
	animation-play-state: paused;
}

@keyframes marquee-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes marquee-scroll-reverse {
	0% {
		transform: translateX(-50%);
	}

	100% {
		transform: translateX(0);
	}
}

/* Flavor card — horizontal compact style */
.flavor-card {
	flex-shrink: 0;
	width: 340px;
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 1.4rem 1.5rem;
	box-shadow: var(--shadow-card);
	display: flex;
	align-items: center;
	gap: 1.15rem;
	transition: all 0.35s var(--ease-out);
	position: relative;
	overflow: hidden;
	cursor: default;
}

.flavor-card:hover {
	box-shadow: var(--shadow-hover);
	transform: scale(1.03);
}

.flavor-card__swatch {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	flex-shrink: 0;
	position: relative;
	box-shadow: inset 0 -4px 10px rgba(0, 0, 0, 0.08);
}

.flavor-card__swatch::after {
	content: '';
	position: absolute;
	width: 35%;
	height: 35%;
	background: rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	top: 12%;
	left: 18%;
	filter: blur(3px);
}

.flavor-card__info {
	min-width: 0;
}

.flavor-card__name {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 0.15rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.flavor-card__type {
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--sage);
	margin-bottom: 0.3rem;
}

.flavor-card__desc {
	font-size: 0.82rem;
	color: var(--navy-light);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.flavor-card__tag {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	padding: 0.2rem 0.55rem;
	font-size: 0.62rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-radius: 50px;
	background: var(--terracotta);
	color: #fff;
}

/* ============================================
       Section: Topping Builder
       ============================================ */
.builder {
	background:
		radial-gradient(ellipse at 70% 30%, rgba(224, 122, 95, 0.06) 0%, transparent 50%),
		#fff;
}

.builder__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
}

.builder__steps {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.builder-step {
	display: flex;
	gap: 1.25rem;
	padding: 1.5rem;
	background: var(--cream);
	border-radius: var(--radius-md);
	transition: all 0.3s var(--ease-out);
}

.builder-step:hover {
	box-shadow: var(--shadow-card);
}

.builder-step__num {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: var(--terracotta);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.1rem;
}

.builder-step__title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 0.25rem;
}

.builder-step__text {
	font-size: 0.88rem;
	color: var(--navy-light);
}

.builder__preview {
	background: var(--cream);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	text-align: center;
	position: relative;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.builder__preview-bowl {
	width: 200px;
	height: 110px;
	background: linear-gradient(135deg, var(--navy), var(--navy-light));
	border-radius: 0 0 50% 50% / 0 0 100% 100%;
	position: relative;
	margin: 0 auto 1.5rem;
}

.builder__preview-bowl::before {
	content: '';
	position: absolute;
	top: -6px;
	left: -10px;
	right: -10px;
	height: 20px;
	background: var(--navy);
	border-radius: 50%;
}

.builder__preview-scoop1 {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, #fce4b8, #e6c68a);
	position: absolute;
	top: -55px;
	left: 20px;
	box-shadow: inset 0 -6px 15px rgba(0, 0, 0, 0.08);
}

.builder__preview-scoop2 {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, #f4a4b8, #e07a8a);
	position: absolute;
	top: -55px;
	right: 20px;
	box-shadow: inset 0 -6px 15px rgba(0, 0, 0, 0.08);
}

.builder__preview-scoop3 {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, var(--sage-light), var(--sage));
	position: absolute;
	top: -90px;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: inset 0 -6px 15px rgba(0, 0, 0, 0.08);
}

.builder__preview-text {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	color: var(--navy);
	font-weight: 500;
}

.builder__preview-price {
	font-size: 2rem;
	font-weight: 800;
	color: var(--terracotta);
	margin-top: 0.5rem;
}

.builder__preview-note {
	font-size: 0.8rem;
	color: var(--navy-light);
	margin-top: 0.25rem;
}

/* ============================================
       Section: Catering Cart
       ============================================ */
.catering__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--gap);
}

.cart-card {
	background: var(--cream);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all 0.4s var(--ease-out);
}

.cart-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.cart-card__visual {
	height: 200px;
	position: relative;
	overflow: hidden;
}

.cart-card__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease-out);
}

.cart-card:hover .cart-card__visual img {
	transform: scale(1.05);
}

.cart-card__visual-label {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	padding: 0.4rem 0.9rem;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(6px);
	border-radius: 50px;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cart-card__body {
	padding: 1.5rem;
}

.cart-card__name {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 0.35rem;
}

.cart-card__desc {
	font-size: 0.9rem;
	color: var(--navy-light);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.cart-card__details {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.cart-card__detail {
	padding: 0.3rem 0.7rem;
	background: rgba(61, 64, 91, 0.06);
	border-radius: 50px;
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--navy);
}

.cart-card__price {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--terracotta);
}

.cart-card__price small {
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--navy-light);
}

/* ============================================
       Section: Seasonal Limited Editions
       ============================================ */
/* ============================================
       Section: Seasonal — Interactive Tabs
       ============================================ */
.seasonal-tabs {
	display: flex;
	gap: 4px;
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.seasonal-tab {
	flex: 1;
	padding: 1rem 1.25rem;
	background: rgba(61, 64, 91, 0.05);
	border: 2px solid transparent;
	border-radius: var(--radius-md);
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--navy-light);
	cursor: pointer;
	transition: all 0.35s var(--ease-out);
	text-align: center;
	position: relative;
}

.seasonal-tab__icon {
	display: block;
	font-size: 1.6rem;
	margin-bottom: 0.4rem;
}

.seasonal-tab:hover {
	background: rgba(61, 64, 91, 0.09);
	color: var(--navy);
}

.seasonal-tab.is-active {
	color: #fff;
	border-color: transparent;
}

.seasonal-tab.is-active[data-season="spring"] {
	background: #d4627a;
}

.seasonal-tab.is-active[data-season="summer"] {
	background: #e09030;
}

.seasonal-tab.is-active[data-season="autumn"] {
	background: var(--terracotta);
}

.seasonal-tab.is-active[data-season="winter"] {
	background: var(--navy);
}

/* Tab panels container */
.seasonal-panels {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-xl);
}

.seasonal-panel {
	display: none;
	animation: seasonFadeIn 0.5s var(--ease-out);
}

.seasonal-panel.is-active {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
}

@keyframes seasonFadeIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Left: image visual with overlay */
.seasonal-panel__visual {
	position: relative;
	min-height: 380px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 1.5rem;
	overflow: hidden;
}

.seasonal-panel__visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.seasonal-panel__visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
	pointer-events: none;
}

.seasonal-panel__badge {
	position: relative;
	z-index: 2;
	display: inline-block;
	padding: 0.4rem 1.2rem;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
}

/* Right: details panel */
.seasonal-panel__details {
	padding: clamp(2rem, 4vw, 3rem);
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.seasonal-panel__season-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--terracotta);
	margin-bottom: 0.5rem;
}

.seasonal-panel__name {
	font-family: var(--font-heading);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}

.seasonal-panel__desc {
	font-size: 1rem;
	color: var(--navy-light);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	max-width: 440px;
}

.seasonal-panel__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.seasonal-panel__meta-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 0.85rem;
	background: var(--cream);
	border-radius: 50px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--navy);
}

.seasonal-panel__meta-tag span {
	font-size: 1rem;
}

.seasonal-panel__cta {
	align-self: flex-start;
}

/* Responsive: Tablet & Mobile */
@media (max-width: 1024px) {
	.seasonal-panel.is-active {
		grid-template-columns: 1fr;
	}

	.seasonal-panel__visual {
		min-height: 220px;
	}
}

@media (max-width: 640px) {
	.seasonal-tabs {
		gap: 3px;
	}

	.seasonal-tab {
		padding: 0.75rem 0.5rem;
		font-size: 0.72rem;
	}

	.seasonal-tab__icon {
		font-size: 1.3rem;
		margin-bottom: 0.25rem;
	}

	.seasonal-panel__visual {
		min-height: 180px;
	}
}

/* ============================================
       Section: Loyalty Stamp Card
       ============================================ */
.loyalty {
	background:
		radial-gradient(ellipse at 30% 70%, rgba(129, 178, 154, 0.1) 0%, transparent 50%),
		var(--cream);
}

.loyalty__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
}

.loyalty__info {
	max-width: 480px;
}

.loyalty__perks {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1.5rem;
}

.perk {
	display: flex;
	align-items: start;
	gap: 0.75rem;
}

.perk__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	background: var(--sage);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

.perk__text {
	font-size: 0.92rem;
	color: var(--navy-light);
}

.perk__text strong {
	color: var(--navy);
}

/* Stamp Card Visual */
.stamp-card {
	background: #fff;
	border-radius: var(--radius-xl);
	padding: 2rem;
	box-shadow: var(--shadow-hover);
	position: relative;
	overflow: hidden;
}

.stamp-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--terracotta), var(--sage), var(--terracotta));
}

.stamp-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.stamp-card__title {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--navy);
}

.stamp-card__count {
	font-size: 0.8rem;
	color: var(--terracotta);
	font-weight: 700;
}

.stamp-card__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0.75rem;
}

.stamp {
	aspect-ratio: 1;
	border-radius: var(--radius-sm);
	border: 2px dashed rgba(61, 64, 91, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: rgba(61, 64, 91, 0.2);
	transition: all 0.3s var(--ease-out);
}

.stamp--filled {
	background: var(--terracotta);
	border-color: var(--terracotta);
	color: #fff;
	box-shadow: 0 2px 8px rgba(224, 122, 95, 0.3);
}

.stamp--reward {
	border-color: var(--sage);
	color: var(--sage);
	font-size: 1rem;
	font-weight: 700;
}

.stamp--reward.stamp--filled {
	background: var(--sage);
	border-color: var(--sage);
	color: #fff;
	box-shadow: 0 2px 8px rgba(129, 178, 154, 0.3);
}

.stamp-card__footer {
	margin-top: 1.25rem;
	font-size: 0.78rem;
	color: var(--navy-light);
	text-align: center;
}

/* ============================================
       Footer
       ============================================ */
.footer {
	padding: 3rem var(--section-pad) 2rem;
	background: var(--navy);
	color: rgba(244, 241, 222, 0.6);
}

.footer__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(244, 241, 222, 0.1);
}

.footer__brand {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--cream);
	margin-bottom: 0.5rem;
}

.footer__brand span {
	color: var(--terracotta);
}

.footer__copy {
	font-size: 0.85rem;
	max-width: 300px;
}

.footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 4rem;
}

.footer__col {
	min-width: 140px;
}

.footer__col h4 {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sage-light);
	margin-bottom: 0.75rem;
}

.footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.footer__col a {
	font-size: 0.88rem;
	transition: color 0.2s ease;
}

.footer__col a:hover {
	color: var(--cream);
}

.footer__bottom {
	padding-top: 1.5rem;
	font-size: 0.78rem;
	text-align: center;
}

.footer__bottom a {
	color: var(--terracotta-light);
}

.footer__bottom a:hover {
	color: var(--terracotta);
}

/* ============================================
       Responsive: Tablet (< 1024px)
       ============================================ */
@media (max-width: 1024px) {
	:root {
		--sidebar-width: 0px;
	}

	.sidebar, .bm-sidebar {
		transform: translateX(-100%);
		width: 280px;
	}

	.sidebar.is-open, .bm-sidebar.is-open {
		transform: translateX(0);
	}

	.hamburger {
		display: flex;
	}

	.main {
		margin-left: 0;
	}

	.builder__layout,
	.loyalty__layout {
		grid-template-columns: 1fr;
	}

	.hero__deco {
		opacity: 0.3;
		right: -10%;
	}
}

/* ============================================
       Responsive: Mobile (< 640px)
       ============================================ */
@media (max-width: 640px) {
	.hero {
		padding-top: 5rem;
		min-height: auto;
	}

	.hero__deco {
		opacity: 0.2;
		right: -15%;
		width: 220px;
		height: 220px;
	}

	.catering__grid {
		grid-template-columns: 1fr;
	}

	.stamp-card__grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 0.5rem;
	}

	.footer__top {
		flex-direction: column;
	}

	.footer__links {
		gap: 2rem;
	}

	.section {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}













/* SECTION */
.bm-about {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff6e5, #e0f7ff, #ffe0f0);
}

/* CONTAINER */
.bm-about__container {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* LEFT VISUAL */
.bm-about__visual {
  position: relative;
  width: 400px;
}

/* IMAGE CARDS */
.img-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: absolute;
  transition: 0.4s;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MAIN IMAGE */
.img-main {
  width: 100%;
  height: 300px;
  position: relative;
}

/* SMALL IMAGES */
.img-1 {
  width: 140px;
  height: 140px;
  top: -20px;
  left: -20px;
}

.img-2 {
  width: 140px;
  height: 140px;
  bottom: -20px;
  right: -20px;
}

/* HOVER EFFECT */
.img-card:hover {
  transform: scale(1.05) rotate(2deg);
}

/* CONTENT */
.bm-about__content {
  max-width: 450px;
}

.bm-label {
  display: inline-block;
  background: linear-gradient(45deg,#ff7a00,#ff3cac);
  color: #fff !important;
  padding: 6px 18px;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 10px;
  animation: float 3s infinite;
}

.bm-about__content h2 {
  font-size: 2.5rem;
}

.bm-about__content span {
  color: #ff7a00;
}

/* FEATURES */
.bm-features {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  margin: 20px 0;
}

.feature-card {
  background: rgba(255,255,255,0.7);
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* BUTTON */
.bm-about__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(45deg,#ff7a00,#ffb347);
  color: #fff;
  text-decoration: none;
}

/* BACKGROUND BLOBS */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.blob1 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #ff9a9e, #fad0c4);
  top: -50px;
  left: -50px;
}

.blob2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #a1c4fd, #c2e9fb);
  bottom: -50px;
  right: -50px;
}

/* STAR */
.bg-star {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #ffec44;
  top: 5%;
  right: 20%;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: spin 8s linear infinite;
}

/* ANIMATIONS */
@keyframes float {
  50% { transform: translateY(-8px); }
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}




/* SECTION */
.bm-benefits {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff6e5, #e0f7ff, #ffe0f0);
}

/* HEADER */
.bm-label {
  background: linear-gradient(45deg,#ff7a00,#ff3cac);
  color: #fff;
  padding: 6px 18px;
  border-radius: 10px;
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  animation: float 3s infinite;
}

.bm-benefits__header h2 {
  font-size: 2.5rem;
}

/* GRID */
.bm-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
  margin-top: 40px;
}

/* CARD */
.benefit-card {
  padding: 25px;
  border-radius: 20px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.4s;
}

/* HOVER */
.benefit-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ICON */
.icon {
  font-size: 40px;
  margin-bottom: 10px;
  animation: bounce 2s infinite;
}

/* BACKGROUND BLOBS */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.blob--1 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #ff9a9e, #fad0c4);
  top: -50px;
  left: -50px;
}

.blob--2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #a1c4fd, #c2e9fb);
  bottom: -50px;
  right: -50px;
}

/* STAR */
.star {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff176;
  top: 20%;
  right: 20%;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: spin 8s linear infinite;
}

/* TRUST */
.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: -10px;
  border: 3px solid #fff;
  animation: pop 2s infinite alternate;
}

/* CTA */
.bm-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(45deg,#ff7a00,#ffb347);
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
}

/* ANIMATIONS */
@keyframes float {
  50% { transform: translateY(-8px); }
}

@keyframes bounce {
  50% { transform: translateY(-8px); }
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

@keyframes pop {
  to { transform: scale(1.1); }
}

/* CONTAINER */
.bm-benefits__trust {
  margin-top: 40px;
  text-align: center;
}

/* CLUSTER */
.trust-cluster {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* AVATAR BASE */
.trust-avatar {
  position: relative;
  width: 70px;
  height: 70px;
  margin-left: -15px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
}

/* IMAGE */
.trust-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GLOW RING */
.trust-avatar::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg,#ff7a00,#ff3cac,#42e695);
  z-index: -1;
  opacity: 0;
  transition: 0.4s;
}

/* HOVER EFFECT */
.trust-avatar:hover {
  transform: scale(1.2) translateY(-5px);
  z-index: 10;
}

.trust-avatar:hover::before {
  opacity: 1;
}

/* TOOLTIP */
.tooltip {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  white-space: nowrap;
}

/* SHOW TOOLTIP */
.trust-avatar:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* TEXT */
.trust-text {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
}

.trust-text strong {
  color: #ff7a00;
  font-size: 20px;
}












.bm-schedule {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg,#fff6e5,#e0f7ff);
  overflow: hidden;
}

.bm-timeline {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.timeline-item:hover {
  transform: scale(1.05);
}

.time {
  font-weight: bold;
  color: #ff7a00;
}

.activity {
  font-size: 16px;
}

/* BLOBS */
.blob1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle,#ff9a9e,#fad0c4);
  position: absolute;
  top: -50px;
  left: -50px;
}

.blob2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle,#a1c4fd,#c2e9fb);
  position: absolute;
  bottom: -50px;
  right: -50px;
}







.bm-register {
  padding: 100px 20px;
  background: linear-gradient(135deg,#ffe0f0,#e0f7ff);
  position: relative;
  overflow: hidden;
}

.bm-register__container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* INFO */
.bm-register__info {
  max-width: 400px;
}

.bm-register__points {
  margin-top: 15px;
}

/* FORM */
.bm-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(255,255,255,0.9);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bm-form input,
.bm-form select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.bm-form button {
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(45deg,#ff7a00,#ffb347);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.bm-form button:hover {
  transform: scale(1.05);
}

/* GLOW */
.glow-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle,#ff7a00,#ff3cac);
  border-radius: 50%;
  opacity: 0.3;
  top: -50px;
  left: -50px;
  animation: float 6s infinite;
}

.glow2 {
  bottom: -50px;
  right: -50px;
  top: auto;
}

@keyframes float {
  50% { transform: translateY(-20px); }
}

/* ============================================
       CONTACT SECTION
       ============================================ */
.bm-contact {
  padding: 100px 20px;
  background: linear-gradient(135deg, #e8f4f8, #fff5f5, #f0f8ff);
  position: relative;
  overflow: hidden;
}

.bm-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* HEADER */
.bm-contact__header {
  text-align: center;
  margin-bottom: 60px;
}

.bm-contact__header .bm-label {
  background: linear-gradient(45deg, #ff7a00, #ff3cac);
  color: #fff;
  padding: 6px 18px;
  border-radius: 10px;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  animation: float 3s infinite;
}

.bm-contact__header h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 15px;
}

.bm-contact__header p {
  font-size: 1.1rem;
  color: var(--navy-light);
  max-width: 500px;
  margin: 0 auto;
}

/* CONTACT GRID */
.bm-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 5px;
}

.info-content h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
}

.info-content p {
  color: var(--navy-light);
  line-height: 1.6;
  margin: 0;
}

/* CONTACT FORM */
.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 30px;
  text-align: center;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  background: white;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #ff7a00;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
  transform: translateY(-2px);
}

.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(45deg, #42e695, #3bb2b8);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(66, 230, 149, 0.3);
  margin-top: 10px;
}

.contact-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact-submit-btn:hover::before {
  left: 100%;
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(66, 230, 149, 0.4);
}

.contact-submit-btn:active {
  transform: translateY(-1px);
}

/* CONTACT SUCCESS MESSAGE */
.contact-success {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #42e695, #3bb2b8);
  border-radius: 16px;
  color: white;
  animation: successPop 0.5s ease-out;
}

.contact-success .success-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.contact-success h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-success p {
  margin: 0;
  opacity: 0.9;
}

/* BACKGROUND DECOR */
.bm-contact__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.contact-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.contact-blob.blob1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ff9a9e, #fad0c4);
  top: -50px;
  left: -50px;
  animation: blobFloat 8s ease-in-out infinite;
}

.contact-blob.blob2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #a1c4fd, #c2e9fb);
  bottom: -50px;
  right: -50px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

.contact-star {
  position: absolute;
  font-size: 40px;
  animation: starTwinkle 3s ease-in-out infinite;
}

.contact-star.star1 {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.contact-star.star2 {
  bottom: 30%;
  left: 10%;
  animation-delay: 1.5s;
}

@keyframes blobFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.3;
    transform: rotate(0deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: rotate(180deg) scale(1.2);
  }
}

/* ============================================
       ENROLLMENT POPUP MODAL
       ============================================ */
.enrollment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.enrollment-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.8), rgba(255, 60, 172, 0.8), rgba(66, 230, 149, 0.8));
  backdrop-filter: blur(8px);
  animation: backdropPulse 3s ease-in-out infinite;
}

@keyframes backdropPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.9; }
}

.modal-container {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(50px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: modalEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.enrollment-modal.show .modal-container {
  transform: scale(1) translateY(0);
}

@keyframes modalEntrance {
  0% {
    transform: scale(0.8) translateY(50px) rotate(-2deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.05) translateY(-10px) rotate(1deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) translateY(0) rotate(0deg);
    opacity: 1;
  }
}

/* Decorative Elements */
.modal-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px;
}

.decor-star, .decor-bubble {
  position: absolute;
  font-size: 24px;
  animation: floatDecor 4s ease-in-out infinite;
}

.star-1 {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
  color: #ffd93d;
}

.star-2 {
  top: 30px;
  right: 30px;
  animation-delay: 1s;
  color: #ff7a00;
}

.bubble-1 {
  bottom: 40px;
  left: 25px;
  animation-delay: 2s;
  color: #6ed3ff;
}

.bubble-2 {
  top: 50px;
  right: 20px;
  animation-delay: 0.5s;
  color: #ff9bd2;
}

.bubble-3 {
  bottom: 20px;
  right: 40px;
  animation-delay: 1.5s;
  color: #42e695;
}

@keyframes floatDecor {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}

/* Modal Header */
.modal-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 15px;
  animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(-90deg);
    opacity: 0.7;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  background: linear-gradient(45deg, #ff7a00, #ff3cac, #42e695);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-subtitle {
  font-size: 16px;
  color: var(--navy-light);
  font-weight: 500;
}

/* Modal Close Button */
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
  background: #ff7a00;
  color: white;
  transform: rotate(90deg) scale(1.1);
}

/* Form Styles */
.enrollment-form {
  animation: formSlideIn 0.6s ease-out 0.3s both;
}

@keyframes formSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff7a00;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Form Footer */
.form-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e1e5e9;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--navy-light);
}

.terms-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #ff7a00;
}

.enroll-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(45deg, #ff7a00, #ff3cac);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
}

.enroll-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.enroll-submit-btn:hover::before {
  left: 100%;
}

.enroll-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 122, 0, 0.4);
}

.enroll-submit-btn:active {
  transform: translateY(-1px);
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 40px 20px;
  animation: successPop 0.5s ease-out;
}

@keyframes successPop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: successBounce 1s ease-out;
}

@keyframes successBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.success-message h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 15px;
}

.success-message p {
  color: var(--navy-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.success-close-btn {
  padding: 12px 24px;
  background: linear-gradient(45deg, #42e695, #3bb2b8);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 230, 149, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-container {
    padding: 30px 20px;
    margin: 20px;
    max-height: calc(100vh - 40px);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .modal-title {
    font-size: 24px;
  }

  .decor-star, .decor-bubble {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .modal-container {
    padding: 20px 15px;
  }

  .modal-title {
    font-size: 20px;
  }

  .modal-icon {
    font-size: 36px;
  }
}/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
               C O N T A C T   R E S P O N S I V E 
               = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . b m - c o n t a c t _ _ g r i d   { 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         g a p :   4 0 p x ; 
     } 
 
     . c o n t a c t - f o r m   { 
         p a d d i n g :   3 0 p x   2 0 p x ; 
     } 
 
     . c o n t a c t - f o r m   . f o r m - r o w   { 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         g a p :   1 5 p x ; 
     } 
 
     . i n f o - i t e m   { 
         p a d d i n g :   2 0 p x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         t e x t - a l i g n :   c e n t e r ; 
         g a p :   1 5 p x ; 
     } 
 
     . i n f o - i c o n   { 
         f o n t - s i z e :   2 8 p x ; 
     } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
     . b m - c o n t a c t   { 
         p a d d i n g :   6 0 p x   1 5 p x ; 
     } 
 
     . b m - c o n t a c t _ _ h e a d e r   h 2   { 
         f o n t - s i z e :   2 r e m ; 
     } 
 
     . c o n t a c t - f o r m   { 
         p a d d i n g :   2 5 p x   1 5 p x ; 
     } 
 
     . c o n t a c t - s u b m i t - b t n   { 
         f o n t - s i z e :   1 6 p x ; 
         p a d d i n g :   1 4 p x   2 0 p x ; 
     } 
 } 
 










/* ============================================
       COMPREHENSIVE RESPONSIVE DESIGN FOR ALL BRIGHTMOON SECTIONS
       ============================================ */

/* Tablet Styles */
@media (max-width: 1024px) {
  /* Hero Section */
  .bm-hero {
    padding: 80px 20px;
    min-height: auto;
  }

  .bm-title {
    font-size: 2.5rem;
  }

  .bm-badge {
    font-size: 24px;
    padding: 8px 18px;
  }

  .bm-kids .kid {
    width: 80px;
  }

  .kid--2, .kid--3, .kid--4 {
    width: 100px;
  }

  /* About Section */
  .bm-about__container {
    flex-direction: column;
    gap: 40px;
  }

  .bm-about__visual {
    width: 100%;
    max-width: 400px;
  }

  .bm-about__content {
    text-align: center;
  }

  .bm-about__content h2 {
    font-size: 2rem;
  }

  /* Benefits Section */
  .bm-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Register Section */
  .bm-register__container {
    flex-direction: column;
    gap: 30px;
  }

  .bm-register__info, .bm-form {
    width: 100%;
    max-width: 500px;
  }

  /* Contact Section */
  .bm-contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Hero Section */
  .bm-hero {
    padding: 60px 15px;
  }

  .bm-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .bm-subtitle {
    font-size: 1rem;
  }

  .bm-actions {
    flex-direction: column;
    align-items: center;
  }

  .bm-btn {
    margin: 5px 0;
    width: 200px;
    text-align: center;
  }

  .bm-kids .kid {
    width: 60px;
  }

  .kid--2, .kid--3, .kid--4 {
    width: 80px;
  }

  /* About Section */
  .bm-about {
    padding: 60px 15px;
  }

  .bm-about__content h2 {
    font-size: 1.8rem;
  }

  .bm-features {
    grid-template-columns: 1fr;
  }

  /* Flavors/Activities Section */
  .flavors-section {
    padding: 60px 15px;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .marquee {
    overflow: hidden;
  }

  .flavor-card {
    min-width: 250px;
    margin: 0 10px;
  }

  /* Benefits Section */
  .bm-benefits {
    padding: 60px 15px;
  }

  .bm-benefits__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .benefit-card {
    padding: 15px;
  }

  .bm-benefits__trust .trust-cluster {
    flex-direction: row;
    justify-content: center;
  }

  /* Register Section */
  .bm-register {
    padding: 60px 15px;
  }

  .bm-register__info h2 {
    font-size: 1.8rem;
  }

  /* Contact Section */
  .bm-contact {
    padding: 60px 15px;
  }

  .bm-contact__header h2 {
    font-size: 1.8rem;
  }

  .contact-info .info-item {
    padding: 15px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  /* Hero Section */
  .bm-hero {
    padding: 40px 10px;
  }

  .bm-title {
    font-size: 1.8rem;
  }

  .bm-badge {
    font-size: 20px;
    padding: 6px 15px;
  }

  .bm-kids .kid {
    width: 50px;
  }

  .kid--2, .kid--3, .kid--4 {
    width: 70px;
  }

  /* About Section */
  .bm-about {
    padding: 40px 10px;
  }

  .bm-about__content h2 {
    font-size: 1.5rem;
  }

  .img-card.img-small {
    width: 100px;
    height: 100px;
  }

  /* Flavors Section */
  .flavors-section {
    padding: 40px 10px;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .flavor-card {
    min-width: 200px;
    padding: 15px;
  }

  .flavor-card__name {
    font-size: 0.9rem;
  }

  .flavor-card__desc {
    font-size: 0.8rem;
  }

  /* Benefits Section */
  .bm-benefits {
    padding: 40px 10px;
  }

  .bm-benefits__header h2 {
    font-size: 1.5rem;
  }

  /* Register Section */
  .bm-register {
    padding: 40px 10px;
  }

  .bm-register__info h2 {
    font-size: 1.5rem;
  }

  /* Contact Section */
  .bm-contact {
    padding: 40px 10px;
  }

  .bm-contact__header h2 {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 20px 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
