:root {
  --primary-bg: #FFFFFF;
  --dark-teal: #498B75;
  --pill-bg: rgba(255, 255, 255, 0.95);
  --pill-border: #D3A7A1;
  --text-dark: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* EXACT HERO REPLICA */
.exact-hero-section {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-height: 700px;
  height: 85vh;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.exact-hero-graphic {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 20px;
}

.hero-top-controls {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-brand-logo {
  height: 50px;
  width: auto;
}

.hero-presents {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: #555;
  font-size: 1.1rem;
}

.curriculum-overlay {
  text-align: center;
  max-width: 550px;
  width: 100%;
  margin-bottom: 60px; /* space for disclaimer */
  z-index: 10;
}

.curriculum-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #0c7275;
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(255,255,255,0.5);
}

.curriculum-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.curriculum-item {
  background: var(--pill-bg);
  border: 1px solid #7D9F8B;
  border-radius: 50px;
  padding: 5px 25px;
  width: 90%;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
  transition: all 0.2s;
}

.curriculum-item .item-icon {
  font-size: 1.2rem;
}

/* HERO CORNER LOGO */
.hero-top-left-brand {
  position: absolute;
  top: 30px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 35px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.hero-brand-logo-long {
  height: 60px;
  width: auto;
}
.hero-presents {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #666;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-left: 2px solid #CCC;
  padding-left: 20px;
}

/* NEW GRAPHICAL DISCLAIMER BANNER */
.hero-bottom-disclaimer {
  position: absolute;
  bottom: 0px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
}
.disclaimer-graphic-banner {
  background: linear-gradient(135deg, #111, #333);
  display: inline-flex;
  flex-direction: column;
  padding: 12px 40px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 25px rgba(0,0,0,0.2);
  border-bottom: none;
  transform: translateY(5px);
}
.disclaimer-alert-new {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #FDCB1F; /* bright yellow */
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.disclaimer-tagline-new {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: #FFF;
  margin-top: 5px;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

/* SUMMER JAM EXPLAINER SECTION */
.explainer-box {
  background: linear-gradient(135deg, #ffffff, #fdfbfb);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 50px;
  text-align: center;
}
.explainer-title {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  color: var(--dark-teal);
  line-height: 1.3;
  margin-bottom: 15px;
}
.explainer-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 35px;
  font-weight: 600;
  line-height: 1.5;
}
.explainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 35px;
}
.explainer-card {
  background: #f8fcfb; /* Slightly minty white */
  border-radius: 20px;
  padding: 30px;
  border: 2px solid #eef6f4;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}
.explainer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.explainer-card h3 {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  border-bottom: 2px solid #E8E8E8;
  padding-bottom: 10px;
}
.explainer-list {
  list-style: none;
  padding: 0;
}
.explainer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.4;
  font-weight: 500;
}
.explainer-list li::before {
  content: ""; 
  display: inline-block;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #ffe259, #ffa751);
  border-radius: 50%;
  margin-top: 3px;
  box-shadow: 0 0 8px rgba(255, 167, 81, 0.6);
  flex-shrink: 0;
}
.explainer-footer {
  background: linear-gradient(135deg, #1aa38e, var(--dark-teal));
  color: white;
  padding: 18px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(73, 139, 117, 0.3);
  letter-spacing: 0.5px;
}

/* SUMMER VIBES ANIMATIONS */
.animated-gradient-text {
  background: linear-gradient(90deg, #FF6B60, #FFD700, #F06292);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 3s linear infinite;
}
@keyframes shineText {
  to { background-position: 200% center; }
}

.summer-icon {
  width: 32px;
  height: auto;
  margin-right: 12px;
}
.floating-slow {
  animation: floatAxis 3.5s ease-in-out infinite;
}
.bouncing-slow {
  animation: bounceAxis 2.8s ease-in-out infinite;
}
@keyframes floatAxis {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(8deg); }
}
@keyframes bounceAxis {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15) rotate(-6deg); }
}

.animated-summer-card {
  animation: gentleFadeUp 0.8s ease-out both;
}
@keyframes gentleFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* NEW PROGRAM BUTTONS (HORIZONTAL) */
.program-buttons-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 30px;
}
.program-btn-wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
}
.program-btn-wrap:hover {
  transform: translateY(-5px);
}

.program-btn-horizontal {
  background: linear-gradient(135deg, var(--dark-teal), #2b594b);
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(73, 139, 117, 0.4);
  transition: all 0.3s;
}
.program-btn-wrap:hover .program-btn-horizontal {
  box-shadow: 0 12px 25px rgba(73, 139, 117, 0.6);
  background: linear-gradient(135deg, #1aa38e, var(--dark-teal));
}
.age-text-horizontal {
  font-family: 'Montserrat', sans-serif;
  color: #666;
  font-size: 1.1rem;
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.view-curr-link {
  color: #444;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-weight: 600;
  transition: color 0.2s;
}
.program-btn-wrap:hover .view-curr-link {
  color: var(--dark-teal);
}

/* HUGE IMAGE WRAPPER */
.curriculum-image-display {
  width: 100%;
  position: relative;
  min-height: 200px;
}
.huge-curr-img-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-20px);
}
.huge-curr-img-wrap.expanded {
  max-height: 1500px;
  opacity: 1;
  transform: translateY(0);
}

.curriculum-item {
  background: var(--pill-bg);
  border: 1px solid #7D9F8B;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: all 0.2s;
}
.curriculum-item .item-icon { font-size: 1.2rem; }


/* FEATURES SECTION (Pineapples) */
.features-grid-section { padding: 60px 0; }
.description-text { font-size: 1.2rem; color: #666; font-weight: 500; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-icon-wrapper {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.pineapple-img {
  max-height: 100%;
  object-fit: contain;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-teal);
  font-family: 'Fraunces', serif;
}
.card-desc { font-size: 1rem; color: #555; }


/* BOOKING SECTION (Original form kept) */
.choose-section {
  padding: 60px 0 100px 0;
}
.title-dark {
  font-family: 'Fraunces', serif;
  color: var(--dark-teal);
  font-size: 2.5rem;
}
/* Two-Column Bottom Layout */
.main-bottom-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-top: 30px;
  margin-bottom: 60px;
}
.left-column {
  flex: 1; /* Takes up remaining space */
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.right-column {
  flex: 0 0 35%; /* Fixed width for the sidebar */
  position: sticky;
  top: 30px; /* Sticks to top when scrolling */
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

/* Modal Popup Styles */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}
.modal-content {
  background-color: #fefefe;
  padding: 40px 40px 35px;
  border-radius: 30px;
  max-width: 480px;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.4s ease forwards 0.1s;
}
.close-modal {
  position: absolute;
  right: 18px;
  top: 12px;
  color: #aaa;
  background: none;
  border: none;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  transition: color 0.2s;
}
.close-modal:hover { color: #333; }

@media (max-width: 480px) {
  .modal-overlay { padding: 10px; }
  .modal-content { padding: 30px 22px 24px; border-radius: 22px; }
  .modal-content h2 { font-size: 1.5rem !important; }
}
@keyframes slideUp {
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ========================================================== */
/* Custom Booking Form (replaces HubSpot embed)               */
/* ========================================================== */
.custom-booking-form {
  margin-top: 18px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
}
.custom-booking-form .form-section-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-teal);
  margin: 0 0 14px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(73, 139, 117, 0.15);
}
.custom-booking-form .cb-field {
  margin-bottom: 16px;
  position: relative;
}
.custom-booking-form .cb-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-teal);
  margin-bottom: 6px;
  padding-left: 4px;
  letter-spacing: 0.2px;
}
.custom-booking-form .cb-hint {
  display: block;
  font-size: 0.72rem;
  color: #888;
  margin: -4px 0 6px 4px;
  font-weight: 500;
}
.custom-booking-form .cb-req {
  color: #e74c3c;
  margin-left: 3px;
  font-weight: 700;
}
.custom-booking-form input[type="text"],
.custom-booking-form input[type="email"],
.custom-booking-form input[type="tel"],
.custom-booking-form input[type="number"],
.custom-booking-form input[type="date"],
.custom-booking-form select {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 20px;
  border: 2px solid #EEE;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  background-color: #fff;
  color: var(--text-dark);
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.custom-booking-form input[type="number"] {
  -moz-appearance: textfield;
}
.custom-booking-form input[type="number"]::-webkit-outer-spin-button,
.custom-booking-form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.custom-booking-form input::placeholder {
  color: #aaa;
  font-weight: 400;
}
.custom-booking-form input:hover,
.custom-booking-form select:hover {
  border-color: #d9d9d9;
}
.custom-booking-form input:focus,
.custom-booking-form select:focus {
  outline: none;
  border-color: var(--dark-teal);
  box-shadow: 0 0 0 4px rgba(73, 139, 117, 0.12);
  background-color: #fff;
}
.custom-booking-form input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #f5b3b3;
}

/* Date input — custom calendar icon */
.custom-booking-form input[type="date"] {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23498B75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px;
  padding-right: 48px;
  cursor: pointer;
}
.custom-booking-form input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 50px;
  height: 100%;
  cursor: pointer;
}

/* Select — custom chevron */
.custom-booking-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23498B75' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px;
  padding-right: 48px;
  cursor: pointer;
}

/* Submit button */
.custom-booking-form .cb-actions {
  margin-top: 24px;
  text-align: center;
}
.custom-booking-form .cb-submit {
  display: inline-block;
  min-width: 200px;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(135deg, #FF9902 0%, #FF6E00 100%);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.25s, opacity 0.2s;
  box-shadow: 0 6px 18px rgba(255, 153, 2, 0.32);
}
.custom-booking-form .cb-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 153, 2, 0.42);
}
.custom-booking-form .cb-submit:active {
  transform: translateY(0);
}
.custom-booking-form .cb-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Post-submit "Redirecting to payment..." status block */
.payment-redirect-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 20px;
  background: rgba(73, 139, 117, 0.08);
  border-radius: 16px;
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-teal);
  font-weight: 600;
}
.payment-redirect-status .spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(73, 139, 117, 0.25);
  border-top-color: var(--dark-teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* Base minimal form inputs inside popup */
.form-inputs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}
.form-inputs input {
  padding: 15px 20px;
  border-radius: 50px;
  border: 2px solid #EEE;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-inputs input:focus {
  outline: none;
  border-color: var(--dark-teal);
}
.field-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-teal);
  text-align: left;
  padding-left: 8px;
}
.field-label input { width: 100%; }

/* HubSpot embedded form inside the modal */
/* Custom Payment Form Styles */
#paymentForm {
  margin-top: 12px;
  text-align: left;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-teal);
  margin-bottom: 6px;
  padding-left: 4px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 50px;
  border: 2px solid #EEE;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: var(--dark-teal);
}

.form-group input::placeholder {
  color: #aaa;
}

/* Button loading state */
.btn-book.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-text-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-text-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
.options-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
}
.pill-option {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border: 3px solid #E0E0E0;
  padding: 18px 25px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}
.pill-option .btn-text {
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.pill-option .btn-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #777;
  transition: all 0.3s ease;
}

@media (min-width: 993px) {
  .pill-option .btn-price {
    position: absolute;
    bottom: -40px;
    opacity: 0;
  }
  .pill-option:hover {
    border-color: #D81B60;
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
  .pill-option:hover .btn-text {
    transform: translateY(-10px);
    color: #D81B60;
  }
  .pill-option:hover .btn-price {
    bottom: 12px;
    opacity: 1;
    color: #D81B60;
  }
}

@media (max-width: 992px) {
  .pill-option .btn-price {
    margin-top: 5px;
  }
}
.btn-open-modal {
  width: 100%;
  display: block;
}

/* Responsiveness overrides for split column */
/* Helper Utilities */
.mb-2 { margin-bottom: 10px; }
.mb-4 { margin-bottom: 25px; }

@media (max-width: 992px) {
  .main-bottom-layout {
    flex-direction: column;
  }
  .right-column {
    position: relative;
    top: 0;
    width: 100%;
    max-height: none;
    overflow: visible;
  }
}

.btn-book {
  margin-top: 30px;
  background: var(--dark-teal);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 18px 30px;
  font-weight: 600;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(73, 139, 117, 0.3);
  width: 100%;
  display: block;
  white-space: nowrap;
}
.btn-book:hover { filter: brightness(1.05); }
.btn-book:active { transform: translateY(1px); }

@media (max-width: 480px) {
  .btn-book {
    font-size: 1.05rem;
    padding: 16px 20px;
    margin-top: 22px;
  }
}

/* Inline booking section (revealed after format pill selected) */
.inline-booking {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.45s ease, opacity 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}
.inline-booking > * {
  min-height: 0;
  overflow: hidden;
}
.inline-booking.active {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 25px;
}
.inline-booking-inner {
  overflow: visible;
}
.selected-format-line {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-teal);
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 1rem;
}
.selected-format-line strong { color: #D81B60; }

/* Selected pill state (sticks even when not hovering) */
.pill-option.selected {
  border-color: #D81B60 !important;
  background-color: #fff !important;
  box-shadow: 0 8px 25px rgba(216, 27, 96, 0.18);
  transform: translateY(-2px);
}
.pill-option.selected .btn-text { color: #D81B60; }
.pill-option.selected .btn-price { color: #D81B60; }
@media (min-width: 993px) {
  .pill-option.selected .btn-text { transform: translateY(-10px); }
  .pill-option.selected .btn-price { bottom: 12px; opacity: 1; }
}

.form-status {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #EAF5F0;
  color: var(--dark-teal);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  text-align: center;
}
.form-status.error {
  background: #FDECEC;
  color: #B0252A;
}

footer { background: #333; color: white; text-align: center; padding: 30px; }

/* --------------------------------------------------------
   DEEP MOBILE OPTIMIZATION OVERRIDES
   -------------------------------------------------------- */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  /* Global Layout Offset for Sticky Bar */
  body {
    padding-top: 75px !important; 
  }
  
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1aa38e, var(--dark-teal));
    color: white;
    text-align: center;
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
  }

  /* Hero Section Restructuring */
  .exact-hero-section {
    min-height: 33vh; /* Further decreased height forces another 20% zoom out! */
    height: auto;
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
  }
  
  .exact-hero-graphic {
    background-position: center top 60px !important; /* Re-center the newly scaled frame */
  }
  
  .hero-top-left-brand {
    position: absolute !important; 
    top: 10px !important;
    left: 50% !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
    flex-direction: column !important;
    padding: 8px 15px; /* Reduced 15% */
    width: max-content;
    gap: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .hero-brand-logo-long {
    height: 34px; /* Reduced strictly by 15% */
  }
  
  .hero-presents {
    border-left: none;
    padding-left: 0;
    font-size: 0.8rem; /* Reduced 15% */
    letter-spacing: 2px;
    margin-top: 5px;
    border-top: 2px solid #EEE;
    padding-top: 5px;
  }

  /* Graphical Disclaimer Ribbon */
  .hero-bottom-disclaimer {
    bottom: -15px; 
  }
  .disclaimer-graphic-banner {
    padding: 8px 12px; /* Reduced 15% */
    border-radius: 15px 15px 0 0;
  }
  .disclaimer-alert-new {
    font-size: 0.72rem; /* Reduced 15% */
  }
  .disclaimer-tagline-new {
    font-size: 0.85rem; /* Reduced 15% */
  }

  /* Explainer Visuals */
  .explainer-box {
    padding: 25px 15px;
    margin-bottom: 30px;
  }
  .explainer-title {
    font-size: 1.6rem;
  }
  .explainer-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .explainer-grid {
    grid-template-columns: 1fr; /* Stack columns */
    gap: 20px;
  }
  .explainer-card {
    padding: 20px 15px;
  }
  .explainer-card h3 {
    font-size: 1.05rem; 
    white-space: nowrap; /* Prevent breaking into two lines */
  }
  .summer-icon {
    width: 25px;
    margin-right: 5px;
  }

  /* Feature Grid Layouts (Pineapples) */
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Program Format Interaction */
  .program-buttons-row {
    flex-direction: column;
    gap: 15px;
  }
  .program-btn-horizontal {
    width: 100%;
    font-size: 1.4rem;
    padding: 15px;
  }
  .age-text-horizontal {
    justify-content: center;
  }

  /* Modal Constraints */
  .modal-content {
    padding: 30px 20px;
  }

  /* Footer */
  footer {
    padding: 20px 15px;
    font-size: 0.9rem;
  }
}

@media(max-width: 900px) {
  .exact-hero-section { flex-direction: column; height: auto; }
  .exact-hero-graphic { flex: none; height: 60vh; }
  .exact-hero-sidebar { flex: none; padding-bottom: 40px; }
  .program-buttons-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
