 :root {
     --primary: #ff3ea5;
     --secondary: #00b7ff;
     --accent: #ffcf24;
     --success: #2ecc71;
     --dark: #0b2450;
     --light: #f4fbff;
     --white: #ffffff;
     --grad-pink: linear-gradient(135deg, #ff3ea5, #ff7a00);
     --grad-blue: linear-gradient(135deg, #00b7ff, #0073ff);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

html,
 body {
     font-family: 'Outfit', sans-serif;
     background: var(--light);
     color: var(--dark);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
     line-height: 1.6;
 }

 /* FULL PAGE PARTICLE ANIMATIONS */
 .full-page-particles {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 9999;
     /* Above everything but maybe below modals if any */
     overflow: hidden;
 }

 .particle {
     position: absolute;
     opacity: 0;
     pointer-events: none;
 }

 /* BUBBLES */
 .bubble {
     background: rgba(255, 255, 255, 0.4);
     border: 1px solid rgba(255, 255, 255, 0.5);
     border-radius: 50%;
     box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
     animation: bubbleRise linear infinite;
 }

 .bubble-pink {
     background: radial-gradient(circle at 30% 30%, rgba(255, 62, 165, 0.4), rgba(255, 62, 165, 0.1));
     border-color: rgba(255, 62, 165, 0.6);
     box-shadow: inset 0 0 15px rgba(255, 62, 165, 0.3), 0 0 10px rgba(255, 62, 165, 0.2);
 }

 .bubble-blue {
     background: radial-gradient(circle at 30% 30%, rgba(0, 183, 255, 0.4), rgba(0, 183, 255, 0.1));
     border-color: rgba(0, 183, 255, 0.6);
     box-shadow: inset 0 0 15px rgba(0, 183, 255, 0.3), 0 0 10px rgba(0, 183, 255, 0.2);
 }

 .bubble-yellow {
     background: radial-gradient(circle at 30% 30%, rgba(255, 207, 36, 0.4), rgba(255, 207, 36, 0.1));
     border-color: rgba(255, 207, 36, 0.6);
     box-shadow: inset 0 0 15px rgba(255, 207, 36, 0.3), 0 0 10px rgba(255, 207, 36, 0.2);
 }

 .bubble-purple {
     background: radial-gradient(circle at 30% 30%, rgba(156, 39, 176, 0.4), rgba(156, 39, 176, 0.1));
     border-color: rgba(156, 39, 176, 0.6);
     box-shadow: inset 0 0 15px rgba(156, 39, 176, 0.3), 0 0 10px rgba(156, 39, 176, 0.2);
 }

 @keyframes bubbleRise {
     0% {
         transform: translateY(110vh) translateX(0) scale(0.5);
         opacity: 0;
     }

     10% {
         opacity: 0.8;
     }

     90% {
         opacity: 0.8;
     }

     100% {
         transform: translateY(-10vh) translateX(50px) scale(1.2);
         opacity: 0;
     }
 }

 .pb-1 {
     width: 30px;
     height: 30px;
     left: 10%;
     animation-duration: 8s;
     animation-delay: 0s;
 }

 .pb-2 {
     width: 45px;
     height: 45px;
     left: 30%;
     animation-duration: 12s;
     animation-delay: 2s;
 }

 .pb-3 {
     width: 25px;
     height: 25px;
     left: 55%;
     animation-duration: 7s;
     animation-delay: 4s;
 }

 .pb-4 {
     width: 50px;
     height: 50px;
     left: 75%;
     animation-duration: 15s;
     animation-delay: 1s;
 }

 .pb-5 {
     width: 35px;
     height: 35px;
     left: 90%;
     animation-duration: 10s;
     animation-delay: 3s;
 }

 .pb-6 {
     width: 20px;
     height: 20px;
     left: 20%;
     animation-duration: 9s;
     animation-delay: 5s;
 }

 .pb-7 {
     width: 40px;
     height: 40px;
     left: 45%;
     animation-duration: 11s;
     animation-delay: 0.5s;
 }

 .pb-8 {
     width: 30px;
     height: 30px;
     left: 80%;
     animation-duration: 13s;
     animation-delay: 6s;
 }

 /* FOAM CLOUDS */
 .foam {
     border-radius: 50%;
     filter: blur(25px);
     animation: foamDrift linear infinite;
     /* Use box-shadow to create a multi-layered cloud effect */
     box-shadow:
         20px 20px 40px currentColor,
         -20px -20px 40px currentColor,
         40px -10px 50px currentColor,
         -10px 30px 45px currentColor;
 }

 .foam-pink {
     color: rgba(255, 62, 165, 0.4);
 }

 .foam-blue {
     color: rgba(0, 183, 255, 0.4);
 }

 .foam-yellow {
     color: rgba(255, 207, 36, 0.4);
 }

 @keyframes foamDrift {
     0% {
         transform: translateX(-20vw) translateY(20vh) scale(1);
         opacity: 0;
     }

     20% {
         opacity: 0.4;
     }

     80% {
         opacity: 0.4;
     }

     100% {
         transform: translateX(120vw) translateY(-10vh) scale(1.5);
         opacity: 0;
     }
 }

 .pf-1 {
     width: 200px;
     height: 180px;
     top: 10%;
     animation-duration: 25s;
     animation-delay: 0s;
 }

 .pf-2 {
     width: 300px;
     height: 250px;
     top: 40%;
     animation-duration: 40s;
     animation-delay: 5s;
 }

 .pf-3 {
     width: 250px;
     height: 220px;
     top: 70%;
     animation-duration: 35s;
     animation-delay: 12s;
 }

 .pf-4 {
     width: 180px;
     height: 150px;
     top: 25%;
     animation-duration: 30s;
     animation-delay: 8s;
 }

 /* SNOW FLAKES */
 .snow {
     background: white;
     border-radius: 50%;
     filter: blur(1px);
     box-shadow: 0 0 10px white;
     animation: snowFall linear infinite;
 }

 .snow-pink {
     background: #ffebf5;
     box-shadow: 0 0 8px #ffebf5;
 }

 .snow-blue {
     background: #e3f2fd;
     box-shadow: 0 0 8px #e3f2fd;
 }

 .snow-yellow {
     background: #fffde7;
     box-shadow: 0 0 8px #fffde7;
 }

 .snow-mint {
     background: #e8f5e9;
     box-shadow: 0 0 8px #e8f5e9;
 }

 @keyframes snowFall {
     0% {
         transform: translateY(-10vh) translateX(0);
         opacity: 0;
     }

     10% {
         opacity: 1;
     }

     90% {
         opacity: 1;
     }

     100% {
         transform: translateY(110vh) translateX(30px);
         opacity: 0;
     }
 }

 .ps-1 {
     width: 8px;
     height: 8px;
     left: 20%;
     animation-duration: 10s;
     animation-delay: 0s;
 }

 .ps-2 {
     width: 12px;
     height: 12px;
     left: 45%;
     animation-duration: 14s;
     animation-delay: 2s;
 }

 .ps-3 {
     width: 6px;
     height: 6px;
     left: 70%;
     animation-duration: 8s;
     animation-delay: 5s;
 }

 .ps-4 {
     width: 10px;
     height: 10px;
     left: 85%;
     animation-duration: 12s;
     animation-delay: 3s;
 }

 .ps-5 {
     width: 7px;
     height: 7px;
     left: 10%;
     animation-duration: 11s;
     animation-delay: 1s;
 }

 .ps-6 {
     width: 9px;
     height: 9px;
     left: 35%;
     animation-duration: 13s;
     animation-delay: 6s;
 }

 .ps-7 {
     width: 11px;
     height: 11px;
     left: 60%;
     animation-duration: 15s;
     animation-delay: 4s;
 }

 .ps-8 {
     width: 8px;
     height: 8px;
     left: 95%;
     animation-duration: 9s;
     animation-delay: 7s;
 }

 h1,
 h2,
 h3,
 .logo {
     font-family: 'Fredoka', sans-serif;
 }

 .container {
     width: 90%;
     max-width: 1300px;
     margin: auto;
 }

 /* NAVBAR */
 nav {
     padding: 20px 0;
     position: absolute;
     top: 0;
     width: 100%;
     z-index: 100;
 }

 .nav-flex {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .logo {
     font-size: 32px;
     font-weight: 700;
     color: var(--secondary);
     line-height: 1;
     text-transform: uppercase;
 }

 .t-info h3 {
     text-transform: uppercase;
 }

 .logo span {
     color: var(--primary);
     display: block;
     font-size: 18px;
     letter-spacing: 2px;
 }

 .nav-links {
     display: flex;
     gap: 30px;
     list-style: none;
 }

 .nav-links a {
     text-decoration: none;
     color: #ffffff;
     font-weight: 600;
     font-size: 14px;
     text-transform: uppercase;
     transition: 0.3s;
 }

 .nav-links a:hover {
     color: var(--primary);
 }

 .mt-0 {
     margin-top: 0px !important;
 }

 .book-btn {
     background: var(--grad-pink);
     color: white;
     padding: 12px 25px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 800;
     display: flex;
     align-items: center;
     gap: 10px;
     box-shadow: 0 10px 20px rgba(255, 207, 36, 0.3);
     transition: 0.3s;
 }

 .book-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 25px rgba(255, 207, 36, 0.4);
 }

 /* HERO */
 .hero {
     padding: 60px 0 20px;
     position: relative;
     background: url('images/banner.png') no-repeat center center/cover;
     min-height: 628px;
     display: flex;
     align-items: center;
     border-radius: 0 0 100px 100px;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to right, rgb(0 0 0 / 90%), rgb(0 0 0 / 10%));
 }

 .hero-content {
     position: relative;
     z-index: 1;
     max-width: 73%;
 }

 .hero-tag {
     display: inline-block;
     padding: 8px 20px;
     background: rgb(255 255 255);
     color: var(--primary);
     border-radius: 50px;
     font-weight: 700;
     font-size: 14px;
     margin-bottom: 20px;
     text-transform: uppercase;
 }

.timing-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 183, 255, 0.18);
    border: 2px dashed rgba(255, 255, 255, 0.6);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
}

.timing-highlight .time-icon {
    font-size: 16px;
    line-height: 1;
}

.timing-highlight .time-text {
    font-size: 13px;
    line-height: 1;
}

 .exclusivity-badge {
     position: absolute;
     top: -6%;
     right: 78%;
     background: #00b7ff;
     color: #ffffff;
     padding: 15px;
     border-radius: 50%;
     width: 101px;
     height: 101px;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     font-weight: 900;
     font-size: 14px;
     line-height: 1.2;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     transform: rotate(15deg);
     border: 3px dashed var(--dark);
     z-index: 5;
     animation: float 3s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: rotate(15deg) translateY(0);
     }

     50% {
         transform: rotate(15deg) translateY(-10px);
     }
 }

 .hero h1 {
     font-size: 55px;
     line-height: 1.1;
     color: #ffffff;
     margin-bottom: 25px;
 }

 .hero h1 span {
     color: var(--primary);
 }

 .hero p {
     font-size: 18px;
     color: #ffffff;
     margin-bottom: 35px;
     font-weight: 500;
 }

 .hero-icons {
     display: flex;
     gap: 20px;
     margin-bottom: 40px;
 }

 .hero-icon-item {
     text-align: center;
     width: 80px;
 }

 .icon-circle {
     width: 50px;
     height: 50px;
     background: var(--white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 10px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
     font-size: 20px;
 }

 .hero-icon-item p {
     font-size: 10px;
     text-transform: uppercase;
     font-weight: 800;
     margin: 0;
     color: #ffffff;
 }

 .main-cta {
     background: var(--grad-pink);
     color: white;
     padding: 18px 40px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 800;
     display: inline-flex;
     align-items: center;
     gap: 15px;
     font-size: 18px;
     box-shadow: 0 15px 30px rgba(255, 62, 165, 0.3);
     transition: 0.3s;
 }

 .main-cta:hover {
     transform: scale(1.05);
     box-shadow: 0 20px 40px rgba(255, 62, 165, 0.4);
 }

 .menu-cta-wrap,
 .activities-cta-wrap,
 .squad-cta-wrap {
     text-align: center;
     margin-top: 60px;
     position: relative;
     z-index: 10;
 }

 /* WAVY DIVIDER */
 .wave-container {
     position: relative;
     height: 100px;
     width: 100%;
     margin-top: -50px;
     z-index: 2;
 }

 .wave {
     position: absolute;
     bottom: 0;
     width: 100%;
     height: 100px;
     background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%2300b7ff" fill-opacity="1" d="M0,192L48,176C96,160,192,128,288,128C384,128,480,160,576,181.3C672,203,768,213,864,202.7C960,192,1056,160,1152,138.7C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
     background-size: cover;
     background-repeat: no-repeat;
 }

 /* ACTIVITIES */
 .activities {
     background: var(--secondary);
     padding: 80px 0 120px;
     text-align: center;
     color: white;
     position: relative;
 }

 .bachaa-menu-board {
     margin-top: 3rem;
 }

 .section-header {
     margin-bottom: 30px;
     position: relative;
     z-index: 1;
     text-align: center;
 }

 .header-dark h2 {
    color: var(--dark) !important;
     text-shadow: none !important;
 }

 .section-subtitle {
     margin-top: 20px;
     font-size: 18px;
     color: #666;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     font-weight: 500;
 }

 .header-badge {
     display: inline-block;
     padding: 6px 20px;
     background: var(--accent);
     color: var(--dark);
     border-radius: 50px;
     font-weight: 800;
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 15px;
     box-shadow: 0 5px 15px rgba(255, 207, 36, 0.3);
     transform: rotate(-2deg);
     animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
 }

 .section-header h2 {
     font-size: clamp(36px, 8vw, 64px);
     font-weight: 900;
     color: var(--dark) !important;
     line-height: 1.1;
     text-transform: uppercase;
     letter-spacing: -1px;
     text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
     animation: floatHeader 3s ease-in-out infinite;
 }

 @keyframes floatHeader {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-8px);
     }
 }

 @keyframes popIn {
     0% {
         opacity: 0;
         transform: scale(0.5) rotate(-10deg);
     }

     100% {
         opacity: 1;
         transform: scale(1) rotate(-2deg);
     }
 }

 .text-gradient {
     color: var(--accent);
     position: relative;
     display: inline-block;
     -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
 }

 .header-line {
     width: 100px;
     height: 8px;
     background: var(--accent);
     margin: 25px auto 0;
     border-radius: 10px;
     position: relative;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .header-line::before,
 .header-line::after {
     content: '';
     position: absolute;
     width: 12px;
     height: 12px;
     background: var(--white);
     border-radius: 50%;
     top: -2px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .header-line::before {
     left: -25px;
 }

 .header-line::after {
     right: -25px;
 }

 .activities-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 35px;
     margin-top: 50px;
     position: relative;
 }

 .activity-card {
     background: white;
     border-radius: 35px;
     padding: 15px;
     color: var(--dark);
     transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     overflow: visible;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
 }

 .activity-card::before {
     content: '';
     position: absolute;
     top: -10px;
     left: -10px;
     right: -10px;
     bottom: -10px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 40px;
     z-index: -1;
     transform: scale(0.9);
     transition: 0.5s;
 }

 .activity-card:hover {
     transform: translateY(-20px) rotate(2deg);
 }

 .activity-card:hover::before {
     transform: scale(1.05) rotate(-4deg);
     background: var(--accent);
     opacity: 0.3;
 }

 .activity-card img {
     width: 100%;
     height: 220px;
     object-fit: cover;
     border-radius: 25px;
     margin-bottom: 15px;
     /* Organic mask effect */
     clip-path: polygon(0% 5%, 100% 0%, 95% 100%, 5% 95%);
     transition: 0.5s;
 }

 .activity-card:hover img {
     clip-path: polygon(5% 0%, 95% 5%, 100% 95%, 0% 100%);
 }

 .activity-card h4 {
     font-size: 18px;
     padding: 10px 5px;
     text-transform: uppercase;
     font-weight: 900;
     color: var(--secondary);
     line-height: 1.2;
 }

 .activity-card:nth-child(even) {
     transform: translateY(30px);
 }

 .activity-card:nth-child(even):hover {
     transform: translateY(10px) rotate(-2deg);
 }

 /* Floating Icons for Cards */
 .act-icon {
     position: absolute;
     top: -15px;
     right: -15px;
     width: 50px;
     height: 50px;
     background: var(--accent);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     z-index: 10;
     animation: floatIcon 3s infinite ease-in-out;
 }

 @keyframes floatIcon {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-10px) rotate(10deg);
     }
 }

 .activities-decor {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     pointer-events: none;
     overflow: hidden;
 }

 .blob-decor {
     position: absolute;
     opacity: 0.1;
     z-index: 0;
 }

 .blob-1 {
     top: 10%;
     left: -5%;
     width: 400px;
     animation: rotateBlob 20s infinite linear;
 }

 .blob-2 {
     bottom: 10%;
     right: -5%;
     width: 350px;
     animation: rotateBlob 25s infinite linear reverse;
 }

 @keyframes rotateBlob {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 /* FOOD SECTION */
 .food-section {
     padding: 100px 0;
     background: white;
     position: relative;
 }

 .food-header {
     text-align: center;
     margin-bottom: 60px;
 }

 .food-header h2 {
     font-size: 42px;
     color: var(--dark);
 }

 .food-header p {
     color: var(--primary);
     font-weight: 700;
 }

 .food-items {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 40px;
 }

 .food-item {
     text-align: center;
 }

 .food-img-circle {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     overflow: hidden;
     border: 5px solid #fff;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     margin-bottom: 15px;
     transition: 0.3s;
 }

 .food-item:hover .food-img-circle {
     transform: scale(1.1) rotate(5deg);
     border-color: var(--accent);
 }

 .food-img-circle img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .food-item h5 {
     font-weight: 700;
     font-size: 14px;
     color: var(--dark);
 }

 /* PRIVATE POOL */
 .private-pool {
     padding: 100px 0;
     background: #e8f9ff;
     border-radius: 100px 100px 0 0;
 }

 .pool-flex {
     display: flex;
     align-items: center;
     gap: 60px;
 }

 .pool-images {
     flex: 1;
     position: relative;
 }

 .main-pool-img {
     width: 100%;
     border-radius: 30px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .polaroid-overlay {
     position: absolute;
     bottom: -40px;
     right: -30px;
     width: 250px;
     background: white;
     padding: 15px 15px 40px;
     border-radius: 10px;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
     transform: rotate(5deg);
 }

 .polaroid-overlay img {
     width: 100%;
     border-radius: 5px;
 }

 .pool-text {
     flex: 1;
 }

 .pool-text h2 {
     font-size: 44px;
     margin-bottom: 25px;
     color: var(--dark);
 }

 .pool-features {
     list-style: none;
     margin-bottom: 35px;
 }

 .pool-features li {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 12px;
     font-weight: 600;
     color: #555;
 }

 .pool-features li::before {
     content: 'âœ“';
     display: flex;
     align-items: center;
     justify-content: center;
     width: 24px;
     height: 24px;
     background: var(--accent);
     color: var(--dark);
     border-radius: 50%;
     font-size: 14px;
     font-weight: 900;
 }

 /* TRUST BAR */
 .trust-bar {
     background: white;
     padding: 40px 0;
     display: flex;
     justify-content: space-around;
     border-top: 1px solid #eee;
 }

 .trust-item {
     display: flex;
     align-items: center;
     gap: 15px;
     font-weight: 700;
     font-size: 14px;
     text-transform: uppercase;
 }

 .trust-icon {
     width: 40px;
     height: 40px;
     background: #eef9ff;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--secondary);
     font-size: 20px;
 }

 /* FOOTER CTA */
 .footer-cta {
     padding: 100px 0;
     background: var(--dark);
     color: white;
     text-align: center;
     border-radius: 0 0 0 0;
     position: relative;
     overflow: hidden;
 }
.final-cta-p{
    margin-bottom: 1rem;
}
 .footer-cta h2 {
     font-size: 52px;
     margin-bottom: 5px;
 }

 .footer-cta .main-cta {
     background: var(--accent);
     color: var(--dark);
 }

 .decoration {
     position: absolute;
     opacity: 0.2;
 }

 /* GALLERY */
 .gallery {
     padding: 100px 0;
     background: white;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     grid-auto-rows: 250px;
     gap: 20px;
 }

 .gallery-item {
     position: relative;
     overflow: hidden;
     border-radius: 30px;
     cursor: pointer;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: 0.5s;
 }

 .gallery-item:hover img {
     transform: scale(1.1);
 }

 .item-tall {
     grid-row: span 2;
 }

 .item-wide {
     grid-column: span 2;
 }

 /* DECORATIVE ELEMENTS */
 .bubble {
     position: absolute;
     background: rgba(0, 183, 255, 0.1);
     border-radius: 50%;
     z-index: 0;
     pointer-events: none;
 }

 .b1 {
     width: 100px;
     height: 100px;
     top: 10%;
     left: 5%;
 }

 .b2 {
     width: 150px;
     height: 150px;
     top: 30%;
     right: 5%;
 }

 .b3 {
     width: 80px;
     height: 80px;
     bottom: 10%;
     left: 10%;
 }

 .b4 {
     width: 120px;
     height: 120px;
     bottom: 20%;
     right: 10%;
 }

 @media (max-width: 1024px) {
     .hero h1 {
         font-size: 30px;
     }

     .hero-content {
         max-width: 100%;
     }

     .activities-grid {
         grid-template-columns: repeat(3, 1fr);
     }

     .pool-flex {
         flex-direction: column;
     }
 }

 @media (max-width: 768px) {
     .nav-links {
         display: none;
     }

    .hero .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero .hero-tag {
        order: 0;
    }

    .hero h1 {
        order: 1;
        margin-bottom: 3px;
    }

    .timing-highlight {
        display: inline-flex !important;
        order: 2;
        margin: 16px 0;
        justify-content: center;
        text-align: center;
    }

    .hero .hero-content > p {
        display: none;
    }

    .hero .main-cta {
        order: 3;
    }

     .wave {
         bottom: 49px;
     }

     .hero {
         padding-top: 120px;
         text-align: center;
     }

     .hero-icons {
         justify-content: center;
     }

     .activities-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .trust-bar {
         flex-direction: column;
         gap: 20px;
         align-items: flex-start;
         padding: 40px 10%;
     }
 }

 .exclusivity-bar {
     background: #fff;
     padding: 30px 0;
 }

 .exclusivity-content {
     display: flex;
     align-items: center;
     gap: 25px;
     justify-content: center;
     text-align: left;
 }

 .exclusivity-icon {
     font-size: 40px;
     background: var(--light);
     width: 80px;
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 20px;
     border: 2px solid var(--secondary);
 }

 .chalk-item span {
     text-transform: uppercase;
 }

 .exclusivity-content h3 {
     color: var(--primary);
     font-size: 24px;
     margin-bottom: 5px;
     text-transform: uppercase;
 }

 .activities-wrapper {
     position: relative;
 }

 .girl-bubbles-decor {
     position: absolute;
     right: 20px;
     bottom: -60px;
     width: 320px;
     height: 320px;
     z-index: 99;
     pointer-events: none;
 }

 .girl-bubbles-decor img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 50%;
     border: 10px solid #fff;
     box-shadow: 0 20px 50px rgba(0, 183, 255, 0.2);
 }

 .decor-bubbles span {
     position: absolute;
     background: rgba(255, 255, 255, 0.4);
     border: 1px solid rgba(255, 255, 255, 0.6);
     border-radius: 50%;
     animation: bubble-float 3s infinite ease-in-out;
 }

 .db-1 {
     width: 40px;
     height: 40px;
     top: 20%;
     left: -20px;
 }

 .db-2 {
     width: 30px;
     height: 30px;
     bottom: 30%;
     right: -10px;
     animation-delay: 1s;
 }

 .db-3 {
     width: 20px;
     height: 20px;
     top: 10%;
     right: 20px;
     animation-delay: 1.5s;
 }

 @keyframes bubble-float {

     0%,
     100% {
         transform: translateY(0) scale(1);
     }

     50% {
         transform: translateY(-20px) scale(1.1);
     }
 }

 .exclusivity-content p {
     font-weight: 600;
     color: #666;
     max-width: 700px;
 }

 .splash-timeline {
     padding: 120px 0;
     background: #0b2450;
     overflow: hidden;
     position: relative;
 }

 .timeline-header {
     text-align: center;
     margin-bottom: 80px;
 }

 .timeline-header h2 {
     font-size: 56px;
     font-weight: 950;
     color: #ffffff;
     text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
 }

 .tiny-tag {
     background: #ffeb3b;
     padding: 5px 15px;
     border-radius: 50px;
     font-size: 12px;
     font-weight: 900;
     letter-spacing: 1px;
 }

 .timeline-wrap {
     position: relative;
     max-width: 1300px;
     /* Wider for more nodes */
     margin: 0 auto;
 }

 .timeline-path {
     position: absolute;
     top: 75px;
     left: 5%;
     right: 5%;
     height: 4px;
     background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 10px, transparent 10px, transparent 20px);
     z-index: 0;
 }

 .timeline-items {
     display: flex;
     justify-content: space-between;
     position: relative;
     z-index: 1;
     gap: 15px;
 }

 .t-node {
     flex: 1;
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .t-icon-box {
     width: 140px;
     /* SMALLER NODES */
     height: 140px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     margin-bottom: 20px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
     transition: 0.5s;
 }

 .t-node:hover .t-icon-box {
     transform: translateY(-10px) scale(1.05);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
 }

 .t-img-circle {
     width: 110px;
     /* SMALLER NODES */
     height: 110px;
     border-radius: 50%;
     overflow: hidden;
     border: 5px solid #fff;
 }

 .t-img-circle img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .t-floating {
     position: absolute;
     font-size: 30px;
     /* Smaller Icons */
     top: -5px;
     right: -5px;
     filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
     animation: tFloat 3s infinite ease-in-out;
 }

 @keyframes tFloat {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-12px);
     }
 }

 .t-info h4 {
     font-size: 16px;
     /* Smaller Text */
     font-weight: 950;
     color: #ffffff;
     margin: 12px 0 0;
     text-transform: uppercase;
     letter-spacing: 1.5px;
 }

 .t-step {
     display: inline-block;
     padding: 3px 12px;
     background: #4caf50;
     color: white;
     border-radius: 50px;
     font-size: 10px;
     font-weight: 900;
 }

 @media (max-width: 1024px) {
     .timeline-items {
         flex-direction: column;
         gap: 40px;
         align-items: center;
     }

     .timeline-path {
         left: 50%;
         width: 4px;
         height: 100%;
         top: 0;
         transform: translateX(-50%);
     }
 }

 .trust-worth-section {
     padding: 60px 0;
     background: #f8fbff;
     border-top: 1px solid #eef5ff;
     border-bottom: 1px solid #eef5ff;
 }

 .trust-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 .trust-card-premium {
     background: white;
     padding: 40px 30px;
     border-radius: 30px;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
    min-width: 0;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
     transition: 0.3s;
     border: 1px solid #f0f0f0;
 }

 .trust-card-premium:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 183, 255, 0.1);
     border-color: #00b7ff;
 }

 .t-icon-box {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 35px;
     margin-bottom: 25px;
     background: white;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
 }

 .blue-glow {
     color: #00b7ff;
     box-shadow: 0 10px 20px rgba(0, 183, 255, 0.2);
 }

 .gold-glow {
     color: #ffcf24;
     box-shadow: 0 10px 20px rgba(255, 207, 36, 0.2);
 }

 .green-glow {
     color: #2ecc71;
     box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
 }

@media (max-width: 991px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-card-premium {
        padding: 28px 20px;
    }
}

 /* FAMILY BONDING SECTION */
 .family-bonding {
     padding: 120px 0;
     background: #fff5f8;
     position: relative;
     overflow: hidden;
 }

 .bonding-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .bonding-content h2 {
     font-size: clamp(40px, 6vw, 60px);
     font-weight: 900;
     color: #ff3ea5;
     line-height: 1.1;
     margin-bottom: 25px;
 }

 .bonding-content p {
     font-size: 20px;
     color: #666;
     line-height: 1.6;
     margin-bottom: 40px;
     font-weight: 600;
 }

 .bonding-cards {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .b-card {
     background: white;
     padding: 30px;
     border-radius: 25px;
     box-shadow: 0 10px 30px rgba(255, 62, 165, 0.05);
     border: 1px solid #ffe6f0;
     transition: 0.3s;
 }

 .b-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(255, 62, 165, 0.1);
     border-color: #ff3ea5;
 }

 .b-icon {
     font-size: 35px;
     margin-bottom: 15px;
 }

 .b-card h4 {
     font-size: 20px;
     color: #0b2450;
     margin-bottom: 10px;
     font-weight: 800;
 }

 .b-card p {
     font-size: 15px;
     margin-bottom: 0;
     color: #777;
 }

 .bonding-image-wrap {
     position: relative;
 }

 .bonding-main-img {
     width: 100%;
     border-radius: 40px;
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
     transform: rotate(-2deg);
 }

 .floating-heart {
     position: absolute;
     font-size: 60px;
     animation: heart-pulse 2s infinite ease-in-out;
 }

 .h1 {
     top: -30px;
     right: 20px;
     color: #ff3ea5;
 }

 .h2 {
     bottom: 20px;
     left: -30px;
     color: #ff3ea5;
     opacity: 0.5;
 }

 @keyframes heart-pulse {

     0%,
     100% {
         transform: scale(1) rotate(0);
     }

     50% {
         transform: scale(1.2) rotate(10deg);
     }
 }

 .decor-heart-bg {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-size: 600px;
     color: #ff3ea5;
     opacity: 0.03;
     z-index: 0;
 }

 @media (max-width: 992px) {
     .bonding-grid {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .bonding-image-wrap {
         order: -1;
         margin-bottom: 40px;
     }

     .bonding-cards {
         grid-template-columns: 1fr;
     }
 }

 /* WAVY MAGIC PANELS (IMAGE MATCH 2) */
 .magic-trio {
     padding: 0;
     background: #fff;
     overflow: hidden;
 }

 .wavy-container {
     display: flex;
     height: 95vh;
     width: 100%;
     position: relative;
 }

 .wavy-panel {
     flex: 1;
     height: 100%;
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: flex-end;
     padding-bottom: 60px;
     transition: 0.5s;
 }

 /* Wavy Divider SVG approach */
 .wavy-panel::after {
     content: '';
     position: absolute;
     top: 0;
     right: -50px;
     width: 100px;
     height: 100%;
     z-index: 2;
     background-size: 100% 100%;
     pointer-events: none;
 }

 .p-snow {
     background: linear-gradient(180deg, #00b7ff, #0073ff);
 }

 .p-foam {
     background: linear-gradient(180deg, #ff3ea5, #ff0080);
 }

 .p-bubbles {
     background: linear-gradient(180deg, #9c27b0, #673ab7);
 }

 .zone-number {
     position: absolute;
     top: -45px;
     left: -25px;
     font-size: 100px;
     font-weight: 900;
     opacity: 0.2;
     color: transparent;
     -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
     font-family: 'Outfit', sans-serif;
     pointer-events: none;
     line-height: 1;
     z-index: 1;
 }

 .panel-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 1;
     transition: transform 0.8s, filter 0.5s;
     z-index: 0;
 }

 .wavy-panel:hover .panel-bg {
     transform: scale(1.1);
     filter: brightness(1.2) contrast(1.1);
 }

 /* Fluffy Cloud Header */
 .cloud-header {
     background: white;
     padding: 40px 60px;
     border-radius: 100px;
     position: relative;
     text-align: center;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     z-index: 10;
 }

 .cloud-header::before,
 .cloud-header::after {
     content: '';
     position: absolute;
     background: white;
     border-radius: 50%;
     z-index: -1;
 }

 .cloud-header::before {
     width: 80px;
     height: 80px;
     top: -30px;
     left: 40px;
 }

 .cloud-header::after {
     width: 100px;
     height: 100px;
     top: -40px;
     right: 50px;
 }

 .cloud-header h3 {
     font-family: 'Fredoka', sans-serif;
     font-size: 54px;
     font-weight: 950;
     margin: 0;
     line-height: 1;
 }

 .snow-text {
     color: #0073ff;
 }

 .foam-text {
     color: #ff3ea5;
 }

 .bubble-text {
     color: #9c27b0;
 }

 .party-pill {
     display: inline-block;
     padding: 5px 25px;
     border-radius: 50px;
     color: white;
     font-size: 20px;
     font-weight: 900;
     margin-top: 10px;
     text-transform: uppercase;
 }

 .badge {
     text-align: center;
     margin: 0px auto;
     color: #fff;
     font-size: .8rem;
     padding: 0 .2rem;
     display: flex;
     width: fit-content;
     margin-top: .3rem;
 }

 .p-frame p {
     text-align: center;
     color: #666161;
 }

 .snow-pill {
     background: #0073ff;
 }

 .foam-pill {
     background: #ff3ea5;
 }

 .bubble-pill {
     background: #9c27b0;
 }

 /* Feature Pills */
 .feature-list {
     width: 80%;
     display: flex;
     flex-direction: column;
     gap: 15px;
     z-index: 5;
 }

 .f-pill {
     background: rgba(255, 255, 255, 0.9);
     padding: 12px 25px;
     border-radius: 50px;
     display: flex;
     align-items: center;
     gap: 15px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
     transition: 0.3s;
 }

 .f-pill:hover {
     transform: translateX(10px);
     background: #fff;
 }

 .f-icon {
     font-size: 22px;
 }

 .f-text {
     font-size: 15px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .snow-f-text {
     color: #0073ff;
 }

 .foam-f-text {
     color: #ff3ea5;
 }

 .bubble-f-text {
     color: #9c27b0;
 }

 /* Mascots */
 .m-mascot {
     position: absolute;
     font-size: 70px;
     z-index: 15;
     filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
 }

 .m-penguin {
     bottom: -20px;
     left: -30px;
 }

 .m-duck {
     top: -20px;
     right: -30px;
 }

 .m-robot {
     bottom: -20px;
     right: -30px;
 }

 /* Floating Items */
 .float-item {
     position: absolute;
     pointer-events: none;
     opacity: 0.5;
 }

 /* MASTER CHEF KIDS MENU (IMAGE MATCH) */
 .kids-menu-board {
     padding: 0px 0 120px 0;
     background: #fdf5e6;
     position: relative;
     overflow: hidden;
 }

 /* Top Lights Decor */
 .menu-top-lights {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 60px;
     background: url('https://www.transparenttextures.com/patterns/black-linen.png');
     /* placeholder for string */
     display: flex;
     justify-content: center;
     gap: 100px;
     z-index: 5;
 }

 .light-bulb {
     width: 40px;
     height: 60px;
     background: #ffeb3b;
     border-radius: 0 0 20px 20px;
     box-shadow: 0 0 20px #ffeb3b;
     position: relative;
     animation: bulbGlow 2s infinite alternate;
 }

 @keyframes bulbGlow {
     from {
         opacity: 0.8;
     }

     to {
         opacity: 1;
         box-shadow: 0 0 40px #ffeb3b;
     }
 }

 .menu-main-wrap {
     max-width: 1450px;
     /* ENLARGED BOARD */
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     /* 50/50 SPLIT */
     gap: 80px;
     /* More breathing room */
     background: white;
     padding: 25px 70px;
     border-radius: 80px;
     box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
     position: relative;
     border: 15px solid #fff;
 }

 /* Left: Chalkboard */
 .chalkboard-frame {
     background: #1a1a1a;
     padding: 40px 30px;
     border: 15px solid #4e342e;
     /* Wooden frame */
     border-radius: 8px;
     position: relative;
     background-image:
         radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 80%),
         url('https://www.transparenttextures.com/patterns/black-chalk.png');
     box-shadow:
         inset 0 0 100px rgba(0, 0, 0, 0.8),
         0 20px 50px rgba(0, 0, 0, 0.3),
         0 0 0 5px #3e2723;
     /* Outer frame edge */
     overflow: hidden;
 }

 /* Chalk Smudges */
 .chalkboard-frame::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
         radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
     pointer-events: none;
 }

 .chalkboard-frame::after {
     content: 'âœï¸';
     position: absolute;
     bottom: 10px;
     right: 15px;
     font-size: 24px;
     opacity: 0.6;
     filter: grayscale(1) brightness(2);
     transform: rotate(-15deg);
 }

 .more-memories-btn-wrap {
     text-align: center;
 }

 .chalkboard-frame h2 {
     font-family: 'Permanent Marker', cursive;
     color: rgba(255, 255, 255, 0.95);
     font-size: 52px;
     text-align: center;
     line-height: 1;
     text-transform: uppercase;
     margin-bottom: 40px;
     text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.1);
     transform: rotate(-3deg);
     letter-spacing: 2px;
 }

 .menu-label {
     font-family: 'Caveat', cursive;
     color: #ffeb3b;
     display: inline-block;
     margin-bottom: 20px;
     box-shadow: 0 5px 15px rgba(255, 207, 36, 0.3);
 }

 .menu-board-header h2 {
     font-size: clamp(40px, 6vw, 64px);
     margin-bottom: 15px;
     color: #0b2450;
 }

 .big-menu-card {
     background: #1a1a1a;
     border-radius: 20px;
     box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
     padding: 80px 60px;
     position: relative;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 50px;
     border: 15px solid #4a3728;
     /* Wooden Frame */
 }

 .menu-texture {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('https://www.transparenttextures.com/patterns/black-linen.png');
     opacity: 0.3;
     pointer-events: none;
     border-radius: 5px;
     z-index: 1;
 }

 .big-menu-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
     pointer-events: none;
     z-index: 2;
 }

 .menu-zone {
     position: relative;
     z-index: 3;
 }

 .zone-header h3 {
     font-size: 24px;
     font-weight: 900;
     color: #fff;
     margin-bottom: 8px;
     letter-spacing: 1px;
     text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
 }

 .zone-header p {
     font-size: 14px;
     color: #aaa;
     font-weight: 600;
 }

 .welcome-drink {
     background: rgba(255, 255, 255, 0.05);
     padding: 15px 20px;
     border-radius: 15px;
     margin-bottom: 35px;
     border: 1px dashed rgba(255, 255, 255, 0.2);
     border-left: 5px solid #ffcf24;
 }

 .welcome-drink .label {
     display: block;
     font-size: 11px;
     font-weight: 900;
     color: #ccc;
     letter-spacing: 1px;
     margin-bottom: 5px;
 }

 .welcome-drink .drink-name {
     font-family: 'Caveat', cursive;
     font-size: 22px;
     font-weight: 700;
     color: #ffcf24;
 }

 .menu-sub-section h4 {
     font-size: 18px;
     color: #ff3ea5;
     margin-bottom: 15px;
     font-weight: 800;
     border-bottom: 2px dashed rgba(255, 255, 255, 0.1);
     padding-bottom: 5px;
     text-transform: uppercase;
 }

 .handwriting {
     font-family: 'Handlee', cursive;
     line-height: 1.4;
     filter: url(#chalk-effect);
     /* Apply the SVG roughness */
     opacity: 0.9;
 }

 .menu-sub-section h4 {
     font-family: 'Shadows Into Light', cursive;
     font-size: 26px;
     color: #ff3ea5;
     margin-bottom: 20px;
     font-weight: 700;
     border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
     padding-bottom: 8px;
     text-transform: capitalize;
     letter-spacing: 1px;
     transform: rotate(-1deg);
     display: inline-block;
 }

 .menu-sub-section ul li {
     font-size: 20px;
     margin-bottom: 12px;
     color: rgba(255, 255, 255, 0.9);
     transition: 0.3s;
     position: relative;
     padding-left: 28px;
     /* Dusty chalk shadow */
     text-shadow:
         1px 1px 1px rgba(255, 255, 255, 0.1),
         0 0 5px rgba(255, 255, 255, 0.05);
 }

 .menu-sub-section ul li::before {
     content: 'âœ¿';
     position: absolute;
     left: 0;
     color: #ffcf24;
     font-size: 16px;
     opacity: 0.6;
     top: 4px;
 }

 /* Natural Irregularity */
 .menu-sub-section ul li:nth-child(even) {
     transform: rotate(0.5deg);
 }

 .menu-sub-section ul li:nth-child(odd) {
     transform: rotate(-0.5deg);
 }

 .menu-sub-section ul li:nth-child(3n) {
     transform: rotate(0.8deg) translateX(2px);
 }

 .zone-header h3 {
     font-family: 'Shadows Into Light', cursive;
     font-size: 34px;
     font-weight: 700;
     color: #fff;
     margin-bottom: 10px;
     letter-spacing: 2px;
     text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
     filter: url(#chalk-effect);
 }

 .big-menu-card::after {
     content: '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~';
     position: absolute;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     font-family: 'Caveat', cursive;
     color: rgba(255, 255, 255, 0.2);
     font-size: 30px;
     letter-spacing: 10px;
     pointer-events: none;
 }

 .zone-doodle {
     position: absolute;
     bottom: -20px;
     right: 0;
     font-size: 80px;
     opacity: 0.15;
     transform: rotate(15deg);
     filter: brightness(0) invert(1) drop-shadow(0 0 10px white);
 }

 /* Chalk Text Colors */
 .zone-kids .welcome-drink .drink-name {
     color: #fff176;
     text-shadow: 0 0 10px rgba(255, 241, 118, 0.3);
 }

 .zone-moms .welcome-drink .drink-name {
     color: #f06292;
     text-shadow: 0 0 10px rgba(240, 98, 146, 0.3);
 }

 .zone-dads .welcome-drink .drink-name {
     color: #4fc3f7;
     text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
 }

 .zone-kids .menu-sub-section h4 {
     color: #fff176;
 }

 .zone-moms .menu-sub-section h4 {
     color: #f06292;
 }

 .zone-dads .menu-sub-section h4 {
     color: #4fc3f7;
 }

 .menu-sub-section ul li:hover {
     color: #ffcf24;
     transform: scale(1.05) rotate(-1deg);
 }

 .header-main-title {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 30px;
     position: relative;
 }

 .header-decor {
     width: 100px;
     height: 100px;
     flex-shrink: 0;
     position: relative;
     background: transparent;
 }

 .header-decor img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
 }

 .shake-anim {
     animation: headShake 3s ease-in-out infinite;
 }

 @keyframes headShake {

     0%,
     100% {
         transform: rotate(0deg);
     }

     25% {
         transform: rotate(-10deg) translateX(-5px);
     }

     75% {
         transform: rotate(10deg) translateX(5px);
     }
 }

 @media (max-width: 768px) {
     .header-decor {
         width: 60px;
         height: 60px;
     }

     .header-main-title {
         gap: 15px;
     }
 }

 .board-corner-decor {
     position: absolute;
     bottom: -60px;
     right: -80px;
     width: 280px;
     height: auto;
     z-index: 20;
     pointer-events: none;
     filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
     animation: bigFloat 6s infinite ease-in-out;
 }

 .board-corner-decor img {
     width: 100%;
     height: auto;
     transform: rotate(-10deg);
 }

 @keyframes bigFloat {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-20px) rotate(5deg);
     }
 }

 @media (max-width: 1200px) {
     .board-corner-decor {
         width: 200px;
         right: -30px;
         bottom: -40px;
     }
 }

 @media (max-width: 768px) {
     .board-corner-decor {
         display: none;
         /* Hide on small screens to avoid clutter */
     }
 }

 .board-corner-extra {
     position: absolute;
     bottom: 0;
     right: 130px;
     width: 220px;
     height: auto;
     z-index: 25;
     pointer-events: none;
     filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
     animation: bigFloatExtra 5s infinite ease-in-out;
 }

 .board-corner-extra img {
     width: 100%;
     height: auto;
     transform: rotate(10deg);
 }

 @keyframes bigFloatExtra {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-25px) rotate(-5deg);
     }
 }

 @media (max-width: 1200px) {
     .board-corner-extra {
         width: 160px;
         right: 40px;
         bottom: -20px;
     }
 }

 @media (max-width: 768px) {
     .board-corner-extra {
         display: none;
     }
 }

 .board-corner-pizza {
     position: absolute;
     bottom: 1px;
     right: 330px;
     width: 260px;
     height: auto;
     z-index: 30;
     pointer-events: none;
     filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
     animation: bigFloatPizza 8s infinite ease-in-out;
 }

 .board-corner-pizza img {
     width: 100%;
     height: auto;
     transform: rotate(-15deg);
 }

 @keyframes bigFloatPizza {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-30px) rotate(10deg);
     }
 }

 @media (max-width: 1200px) {
     .board-corner-pizza {
         width: 180px;
         right: 120px;
         bottom: -50px;
     }
 }

 @media (max-width: 768px) {
     .board-corner-pizza {
         display: none;
     }
 }

 @media (max-width: 1200px) {
     .big-menu-card {
         grid-template-columns: 1fr;
         padding: 60px 40px;
         gap: 80px;
     }

     .menu-texture {
         border-radius: 30px;
     }
 }

 @media (max-width: 768px) {
     .big-menu-card {
         padding: 40px 25px;
     }

     .zone-number {
         font-size: 60px;
         top: -30px;
     }
 }

 .chalk-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-family: 'Gochi Hand', cursive;
     color: rgba(255, 255, 255, 0.85);
     font-size: 28px;
     border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
     padding-bottom: 5px;
     text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
     letter-spacing: 0.5px;
     position: relative;
 }

 /* Adding a "chalky" texture to text */
 .chalk-item::before {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     background: url('https://www.transparenttextures.com/patterns/dust.png');
     opacity: 0.1;
     pointer-events: none;
 }

 .chalk-item:nth-child(even) {
     transform: rotate(0.8deg) translateX(5px);
 }

 .chalk-item:nth-child(odd) {
     transform: rotate(-0.5deg) translateX(-2px);
 }

 .chalk-item span:first-child {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .chalk-price {
     color: #fff9c4;
     /* Soft yellow chalk */
     font-family: 'Caveat', cursive;
     font-weight: 700;
     font-size: 24px;
     opacity: 0.9;
 }

 .menu-footer-text {
     margin-top: 50px;
     text-align: center;
     font-family: 'Caveat', cursive;
     color: rgba(255, 255, 255, 0.7);
     font-size: 34px;
     line-height: 1.2;
     transform: rotate(1deg);
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 20px;
 }

 /* AUTO-SCROLLING MENU LISTING */
 .menu-listing-viewport {
     height: 814px;
     /* Fixed height for scrolling */
     overflow: hidden;
     position: relative;
     border-radius: 40px;
     background: #fdfdfd;
     border: 1px solid #f0f0f0;
     padding: 20px;
 }

 /* Chalk Doodles */
 .chalk-doodle {
     position: absolute;
     font-size: 30px;
     opacity: 0.3;
     filter: grayscale(1) brightness(2);
     pointer-events: none;
     font-family: 'Fredoka', sans-serif;
 }

 .cd-1 {
     top: 10%;
     left: 10%;
     transform: rotate(-15deg);
 }

 .cd-2 {
     top: 15%;
     right: 10%;
     transform: rotate(20deg);
     font-size: 24px;
 }

 .cd-3 {
     bottom: 20%;
     left: 5%;
     transform: rotate(10deg);
     font-size: 36px;
 }

 .cd-4 {
     top: 40%;
     right: 5%;
     transform: rotate(-10deg);
     font-size: 28px;
 }

 .marquee-wrapper {
     display: flex;
     flex-direction: column;
     gap: 20px;
     animation: smoothScroll 30s linear infinite;
 }

 .marquee-wrapper:hover {
     animation-play-state: paused;
     /* Stop scrolling on hover */
 }

 @keyframes smoothScroll {
     0% {
         transform: translateY(0);
     }

     100% {
         transform: translateY(-50%);
     }

     /* Scrolls half-way to match duplicated list */
 }

 .food-list-card {
     display: flex;
     align-items: center;
     gap: 25px;
     padding: 20px;
     background: white;
     border-radius: 30px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: 0.4s;
     border: 2px solid transparent;
     cursor: pointer;
 }

 .food-list-card:hover {
     transform: translateX(15px);
     border-color: #ff3ea5;
     box-shadow: 0 15px 40px rgba(255, 62, 165, 0.1);
 }

 .list-img-box {
     width: 100px;
     height: 100px;
     flex-shrink: 0;
     border-radius: 50%;
     overflow: hidden;
     border: 5px solid #fff;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .list-img-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .list-info-box {
     flex: 1;
 }

 .list-info-box h4 {
     font-family: 'Fredoka', sans-serif;
     font-size: 22px;
     color: #d84315;
     margin-bottom: 5px;
 }

 .list-info-box p {
     font-size: 14px;
     color: #666;
     font-weight: 700;
     margin: 0;
 }

 .list-badge {
     padding: 6px 15px;
     border-radius: 50px;
     color: white;
     font-weight: 900;
     font-size: 12px;
     text-transform: uppercase;
     box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
 }

 /* Chef Mascot */
 .chef-mascot-wrap {
     position: absolute;
     top: -100px;
     right: -20px;
     width: 180px;
     z-index: 10;
     animation: mascotFloat 4s infinite ease-in-out;
 }

 @keyframes mascotFloat {

     0%,
     100% {
         transform: translateY(0) rotate(0);
     }

     50% {
         transform: translateY(-15px) rotate(5deg);
     }
 }

 @keyframes mascotFloat {

     0%,
     100% {
         transform: translateY(0) rotate(0);
     }

     50% {
         transform: translateY(-15px) rotate(5deg);
     }
 }

 /* Bottom Decor */
 .menu-decor-bottom {
     display: flex;
     justify-content: center;
     align-items: flex-end;
     gap: 50px;
     margin-top: 60px;
 }

 .decor-item {
     font-size: 100px;
     filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
 }

 .kids-banner {
     background: #00b7ff;
     color: white;
     padding: 15px 60px;
     border-radius: 100px;
     font-weight: 900;
     font-size: 24px;
     box-shadow: 0 10px 30px rgba(0, 183, 255, 0.3);
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 @media (max-width: 1024px) {
     .menu-main-wrap {
         grid-template-columns: 1fr;
         padding: 40px 20px;
     }

     .food-grid-visual {
         grid-template-columns: 1fr;
     }
 }

 .safety-spotlight {
     background: #f0f9ff;
     padding: 30px 0;
     margin: -40px 0 40px;
     position: relative;
     z-index: 10;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 183, 255, 0.1);
     border: 1px solid rgba(0, 183, 255, 0.1);
 }

 .spotlight-flex {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 60px;
 }

 .spotlight-item {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .s-icon {
     font-size: 40px;
     background: white;
     width: 70px;
     height: 70px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .s-text h4 {
     font-size: 18px;
     font-weight: 950;
     color: #0b2450;
     margin-bottom: 2px;
     letter-spacing: 1px;
 }

 .s-text p {
     font-size: 13px;
     color: #555;
     font-weight: 700;
 }

 .spotlight-divider {
     width: 2px;
     height: 50px;
     background: rgba(0, 183, 255, 0.2);
 }

 @media (max-width: 768px) {
     .spotlight-flex {
         flex-direction: column;
         gap: 30px;
     }

     .spotlight-divider {
         display: none;
     }

     .safety-spotlight {
         margin: 0 0 30px;
         padding: 40px 20px;
     }
 }

 .crowd-section-minimal {
     padding: 60px 0;
     background: white;
 }

 .crowd-hero-box {
     position: relative;
     border-radius: 40px;
     overflow: hidden;
     box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
 }

 .crowd-img-large {
     position: relative;
     width: 100%;
     height: 650px;
 }

 .crowd-img-large img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: 1s ease-in-out;
 }

 .crowd-hero-box:hover .crowd-img-large img {
     transform: scale(1.05);
 }

 /* Live Badge */
 .live-status {
     position: absolute;
     bottom: 24%;
     right: 40px;
     display: block;
     align-items: center;
     gap: 12px;
     z-index: 5;
 }

 .live-status a:first-child {
     background: rgba(255, 62, 165, 0.95);
     color: #fff
 }

 .live-status a {
     background: rgb(244 197 54);
     color: #000;
     padding: 12px 25px;
     text-decoration: none;
     margin-bottom: 1rem;
     border-radius: 50px;
     text-transform: uppercase;
     font-weight: 900;
     font-size: 14px;
     display: flex;
     align-items: center;
     gap: 12px;

 }

 .live-dot {
     width: 10px;
     height: 10px;
     background: white;
     border-radius: 50%;
     animation: blink 1.2s infinite;
 }

 /* Overlay Content */
 .crowd-overlay-content {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 80px 60px 60px;
     background: linear-gradient(to top, rgba(11, 36, 80, 0.9) 0%, rgba(11, 36, 80, 0) 100%);
     color: white;
     text-align: left;
 }

 .hero-title-light {
     font-size: 64px;
     font-weight: 950;
     line-height: 1;
     margin-bottom: 20px;
     letter-spacing: -1px;
 }

 .hero-title-light span {
     color: #00b7ff;
 }

 .mini-testimonial {
     border-left: 4px solid #ff3ea5;
     padding-left: 25px;
     max-width: 500px;
 }

 .mini-testimonial p {
     font-size: 20px;
     font-weight: 700;
     font-style: italic;
     margin-bottom: 8px;
 }

 .mini-testimonial b {
     font-size: 14px;
     letter-spacing: 2px;
     color: #00b7ff;
     opacity: 0.9;
 }

 @keyframes blink {

     0%,
     100% {
         opacity: 1;
         transform: scale(1);
     }

     50% {
         opacity: 0.5;
         transform: scale(0.8);
     }
 }

 @media (max-width: 1024px) {
     .crowd-img-large {
         height: 500px;
     }

     .hero-title-light {
         font-size: 42px;
     }

     .crowd-overlay-content {
         padding: 40px;
     }
 }

 @media (max-width: 768px) {
     .crowd-img-large {
        height: auto;
     }

    .crowd-img-large img {
        height: 400px;
    }

    .crowd-overlay-content {
        position: static;
        padding: 24px 20px 28px;
        background: #0b2450;
    }

     .hero-title-light {
         font-size: 32px;
     }

     .live-status {
        position: static;
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
     }

    .live-status a {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 12px 16px;
        font-size: 12px;
        margin-bottom: 0;
        white-space: normal;
    }

     .mini-testimonial p {
         font-size: 16px;
     }
 }

 .food-final {
     background: #fff8e1;
     padding: 100px 0 0;
     position: relative;
 }

 .food-banner-area {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 50px;
     margin-bottom: 0px;
 }

 .char-left,
 .char-right {
     font-size: 100px;
     animation: float-char 3s ease-in-out infinite;
 }

 @keyframes float-char {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 .food-main-title {
     text-align: center;
 }

 .bubbly-text {
     font-size: 82px;
     font-weight: 950;
     color: #0b2450;
     line-height: 0.9;
     margin-bottom: 20px;
     letter-spacing: -2px;
 }

 .bubbly-text span {
     color: #ff3ea5;
 }

 .ribbon-banner {
     background: #ffcf24;
     color: #0b2450;
     padding: 8px 40px;
     font-weight: 800;
     font-size: 20px;
     display: inline-block;
     border-radius: 5px;
     box-shadow: 0 5px 0 #e6b800;
     margin-bottom: 15px;
 }

 .sub-tags {
     font-weight: 800;
     color: #00b7ff;
     font-size: 18px;
 }

 .food-grid-final {
     display: grid;
     grid-template-columns: repeat(6, 1fr);
     gap: 15px;
     padding-bottom: 100px;
 }

 .food-card-final {
     background: white;
     border-radius: 25px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     text-align: center;
     transition: 0.3s;
 }

 .food-card-final:hover {
     transform: translateY(-10px);
 }

 .food-img-wrapper {
     padding: 20px;
     height: 180px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .food-img-wrapper.orange {
     background: #fff4e5;
 }

 .food-img-wrapper.pink {
     background: #ffebf5;
 }

 .food-img-wrapper.blue {
     background: #e8f9ff;
 }

 .food-img-wrapper.green {
     background: #eefdf4;
 }

 .food-img-wrapper.purple {
     background: #f5ebff;
 }

 .food-img-wrapper.yellow {
     background: #fffbe6;
 }

 .food-img-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 15px;
 }

 .food-details {
     padding: 15px 10px;
 }

 .food-details h4 {
     font-size: 14px;
     font-weight: 900;
     margin-bottom: 5px;
 }

 .food-details p {
     font-size: 11px;
     font-weight: 700;
     color: #777;
     margin-bottom: 15px;
 }

 .food-footer {
     font-size: 10px;
     font-weight: 800;
     padding-top: 10px;
     border-top: 1px solid #eee;
 }

 .food-footer.orange {
     color: #ff9d00;
 }

 .food-footer.pink {
     color: #ff3ea5;
 }

 .food-footer.blue {
     color: #00b7ff;
 }

 .food-trust-bar {
     background: #00b7ff;
     padding: 50px 0;
     border-radius: 50% 50% 0 0 / 40px 40px 0 0;
     color: white;
 }

 .trust-grid-final {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
 }

 .trust-item-final {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .trust-icon-final {
     background: white;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     flex-shrink: 0;
 }

 .trust-text-final h5 {
     font-size: 14px;
     font-weight: 900;
     margin-bottom: 2px;
 }

 .trust-text-final p {
     font-size: 11px;
     font-weight: 700;
     opacity: 0.9;
     line-height: 1.2;
 }

 @media (max-width: 1200px) {
     .food-grid-final {
         grid-template-columns: repeat(3, 1fr);
     }

     .trust-grid-final {
         grid-template-columns: repeat(2, 1fr);
     }

     .char-left,
     .char-right {
         display: none;
     }
 }

 /* SPLASH SQUAD COMIC DESIGN */
 .splash-squad-comic {
     background: #ffffff;
     padding: 85px 0;
     position: relative;
     overflow: hidden;
 }

 /* Comic Halftone Background */
 .splash-squad-comic::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: radial-gradient(#eee 1px, transparent 1px);
     background-size: 20px 20px;
     opacity: 0.5;
 }

 .comic-speed-lines {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(0, 183, 255, 0.02) 100px, rgba(0, 183, 255, 0.02) 101px);
     pointer-events: none;
 }

 .squad-header-comic {
     text-align: center;
     margin-bottom: 80px;
     position: relative;
     z-index: 10;
 }

 .comic-tag {
     background: #0b2450;
     color: #fff;
     padding: 10px 30px;
     font-weight: 900;
     font-size: 14px;
     letter-spacing: 2px;
     display: inline-block;
     margin-bottom: 20px;
     transform: rotate(-1deg);
     box-shadow: 5px 5px 0 #ffcf24;
 }

 .squad-header-comic h2 {
     font-size: clamp(40px, 6vw, 72px);
     font-weight: 950;
     color: #0b2450;
     text-transform: uppercase;
     line-height: 1;
 }

 .comic-decor-burst {
    position: absolute;
    top: -20px;
    right: 15%;
    background: #ff3ea5;
    color: white;
    font-weight: 900;
    padding: 29px 47px;
    font-size: 11px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: popScale 2s infinite ease-in-out;
 }

 @keyframes popScale {

     0%,
     100% {
         transform: scale(1) rotate(5deg);
     }

     50% {
         transform: scale(1.2) rotate(-5deg);
     }
 }

 .comic-panels-layout {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     position: relative;
     z-index: 10;
 }

 .comic-panel {
     position: relative;
     transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }

 .p-dad {
     transform: rotate(-1.5deg);
 }

 .p-mom {
     transform: translateY(-20px) rotate(1deg);
 }

 .p-family {
     transform: rotate(-1deg);
 }

 .comic-panel:hover {
     transform: scale(1.05) translateY(-10px) rotate(0deg);
     z-index: 20;
 }

 .comic-panel:hover .panel-inner {
     box-shadow: 0 0 50px rgba(0, 183, 255, 0.3);
     border-color: #ffcf24;
 }

 .panel-inner {
     background: #0b2450;
     border: 4px solid #0b2450;
     padding: 40px 30px;
     height: 100%;
     padding-bottom: 1.5rem;
     position: relative;
     box-shadow: 15px 15px 0 rgba(0, 183, 255, 0.1);
     display: flex;
     flex-direction: column;
     color: white;
 }

 .panel-header-badge {
     background: #ffcf24;
     color: #0b2450;
     padding: 5px 15px;
     font-weight: 900;
     font-size: 12px;
     display: inline-block;
     margin-bottom: 20px;
     align-self: flex-start;
 }

 .panel-heading {
     font-size: 28px;
     font-weight: 900;
     margin-bottom: 30px;
     text-transform: uppercase;
     color: #ffffff;
     border-bottom: 4px solid #ffcf24;
     display: inline-block;
     padding-bottom: 5px;
 }

.squad-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: -10px 0 22px;
}

.squad-price-badge {
    background: #ffcf24;
    color: #0b2450;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 950;
    font-size: 16px;
    letter-spacing: 0.2px;
    box-shadow: 6px 6px 0 rgba(255, 62, 165, 0.18);
}

.squad-price-note {
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.squad-addon-prices {
    margin: 0 0 16px;
    display: grid;
    gap: 3px;
}

.squad-addon-prices .addon-line {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
}

.squad-addon-prices .addon-note {
    font-weight: 900;
    color: rgba(0, 183, 255, 0.95);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.6px;
}

.squad-family-base {
    margin: 8px 0 20px;
}

.squad-addon-heading {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 950;
    color: #ffcf24;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.panel-squads {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 4px;
}

.squad-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.s-text-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.s-text-wrap .squad-tier-price {
    display: inline-block;
    margin: 6px 0 10px;
    align-self: flex-start;
}

 .s-icon-wrap {
     font-size: 32px;
     background: rgba(255, 255, 255, 0.1);
     width: 60px;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 15px;
     border: 2px solid rgba(255, 255, 255, 0.2);
     flex-shrink: 0;
     transition: 0.3s;
 }

 .comic-panel:hover .s-icon-wrap {
     background: #ffcf24;
     border-color: #ffcf24;
     transform: scale(1.1) rotate(5deg);
     color: #0b2450;
 }

 .s-text-wrap h4 {
     font-size: 18px;
     font-weight: 900;
     margin-bottom: 5px;
     color: #ffffff;
     width: 100%;
     box-sizing: border-box;
 }

 .s-badge {
     font-size: 11px;
     font-weight: 900;
     color: #00b7ff;
     text-transform: uppercase;
     display: block;
     margin-bottom: 5px;
 }

.s-text-wrap .s-badge {
    width: 100%;
    box-sizing: border-box;
}

 .s-text-wrap p {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.4;
     margin: 0;
     width: 100%;
     box-sizing: border-box;
 }

.panel-footer-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    margin-top: 16px;
    width: 100%;
    box-sizing: border-box;
}

 .panel-footer-decor {
     margin-top: 0;
     font-weight: 950;
     font-size: 20px;
     font-style: italic;
     text-transform: uppercase;
     opacity: 0.5;
     text-align: right;
     color: #ffcf24;
     flex: 0 0 auto;
     white-space: nowrap;
 }

.panel-bottom-tnc {
    margin: 0;
    padding: 0 8px 0 0;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.35;
    text-align: left;
    flex: 1 1 auto;
    min-width: 0;
    box-sizing: border-box;
}

 /* Theme Colors */
 .p-dad .panel-heading {
     border-color: #00b7ff;
 }

 .p-mom .panel-heading {
     border-color: #ff3ea5;
 }

 .p-family .panel-heading {
     border-color: #ffcf24;
 }

 /* Panel Stickers */
 .panel-sticker {
     position: absolute;
     top: -20px;
     right: -20px;
     background: #ffcf24;
     color: #0b2450;
     padding: 10px 20px;
     font-weight: 900;
     font-size: 18px;
     border: 3px solid #0b2450;
     border-radius: 5px;
     transform: rotate(15deg);
     box-shadow: 5px 5px 0 rgba(11, 36, 80, 0.2);
     z-index: 30;
     pointer-events: none;
     font-family: 'Permanent Marker', cursive;
 }

 .s-marvel {
     background: #ff3ea5;
     color: white;
     transform: rotate(-10deg);
     top: 10px;
     right: -30px;
 }

 .s-super {
     background: #4caf50;
     color: white;
     transform: rotate(5deg);
     top: -15px;
     right: 10px;
 }

 .comic-panel:hover .panel-sticker {
     animation: stickerPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
 }

 @keyframes stickerPop {
     0% {
         transform: scale(0.5) rotate(0deg);
         opacity: 0;
     }

     100% {
         transform: scale(1.1) rotate(15deg);
         opacity: 1;
     }
 }

 /* Specific Card Themes */
 .p-dad:hover .panel-inner {
     border-color: #00b7ff;
     box-shadow: 20px 20px 0 rgba(0, 183, 255, 0.1);
 }

 .p-mom:hover .panel-inner {
     border-color: #ff3ea5;
     box-shadow: 20px 20px 0 rgba(255, 62, 165, 0.1);
 }

 .p-family:hover .panel-inner {
     border-color: #4caf50;
     box-shadow: 20px 20px 0 rgba(76, 175, 80, 0.1);
 }

 .p-dad:hover .s-badge {
     color: #00b7ff;
 }

 .p-mom:hover .s-badge {
     color: #ff3ea5;
 }

 .p-family:hover .s-badge {
     color: #4caf50;
 }

 @media (max-width: 1024px) {
     .comic-panels-layout {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .comic-panel {
         transform: none !important;
     }
     .comic-decor-burst{
        display: none;
    }
 }

 .coconut,
 .cocktail {
     font-size: 50px;
     filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
 }

 .trust-bar-wavy {
     background: white;
     padding: 40px 0 60px;
     position: relative;
     z-index: 5;
     margin-top: -30px;
     border-radius: 50% 50% 0 0 / 30px 30px 0 0;
 }

 .trust-flex {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .trust-item {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .trust-icon-circle {
     width: 60px;
     height: 60px;
     background: #00b7ff;
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     box-shadow: 0 10px 20px rgba(0, 183, 255, 0.3);
 }

 .trust-info span {
     display: block;
     font-weight: 800;
     font-size: 18px;
     line-height: 1;
     color: #0b2450;
 }

 .trust-info small {
     font-weight: 700;
     font-size: 11px;
     color: #555;
 }

 @media (max-width: 1200px) {
     .pool-flex {
         flex-direction: column;
         text-align: center;
     }

     .title-with-crown {
         justify-content: center;
     }

     .pool-polaroids {
         height: 350px;
         width: 500px;
         margin: 0 auto;
     }

     .trust-flex {
         flex-wrap: wrap;
         gap: 30px;
         justify-content: center;
     }
 }

 .gallery-creative {
     padding: 106px 0 96px;
     background: linear-gradient(180deg, rgb(171 232 255 / 85%) 0%, rgb(255 255 255 / 95%) 100%), url(https://images.unsplash.com/photo-1500375592092-40eb2168fd21?q=80&w=2000&auto=format&fit=crop);
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     position: relative;
     overflow: hidden;
     color: var(--dark);
 }

 .gallery-creative::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image: url('https://www.transparenttextures.com/patterns/water.png');
     opacity: 0.1;
     /* More visible on light background */
     pointer-events: none;
     z-index: 1;
 }

 .gallery-header-final {
     text-align: center;
     margin-bottom: 67px;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .title-wrap-final {
     position: relative;
     display: inline-block;
 }

 .splash-bubbly {
     font-family: 'Fredoka', sans-serif;
     font-size: clamp(60px, 12vw, 115px);
     color: #38b6ff;
     line-height: 0.9;
     text-shadow:
         -4px -4px 0 #0b2450,
         4px -4px 0 #0b2450,
         -4px 4px 0 #0b2450,
         4px 4px 0 #0b2450,
         0px 10px 0 #0b2450;
     position: relative;
 }

 .splash-bubbly span {
     display: block;
     color: #ff3ea5;
     font-size: 0.35em;
     letter-spacing: 12px;
     margin-top: 5px;
     text-shadow: none;
     font-weight: 800;
     position: relative;
 }

 .splash-bubbly span::before,
 .splash-bubbly span::after {
     content: 'â€¢';
     position: absolute;
     top: 0;
     font-size: 1.5em;
 }

 .splash-bubbly span::before {
     left: -10px;
 }

 .splash-bubbly span::after {
     right: -10px;
 }

 .splash-drops {
     position: absolute;
     font-size: 50px;
     top: -30px;
     right: -60px;
     animation: drip 3s infinite ease-in-out;
 }

 @keyframes drip {

     0%,
     100% {
         transform: translateY(0) rotate(0);
     }

     50% {
         transform: translateY(-10px) rotate(15deg);
     }
 }

 .blue-ribbon {
     margin: 40px auto 0;
     background: linear-gradient(to right, #0073ff, #00b7ff, #0073ff);
     color: white;
     padding: 15px 50px;
     display: inline-block;
     border-radius: 50px;
     font-weight: 900;
     font-size: 14px;
     letter-spacing: 1px;
     box-shadow: 0 10px 20px rgba(0, 115, 255, 0.3);
     position: relative;
 }

 .ribbon-text {
     position: relative;
 }

 .ribbon-text::before,
 .ribbon-text::after {
     content: 'âš¡';
     margin: 0 10px;
     font-size: 12px;
 }

 .moments-grid-creative {
     position: relative;
     height: 950px;
     margin: 40px auto 80px;
     max-width: 1200px;
     width: 100%;
 }

 .m-card {
     position: absolute;
     transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }

 .p-frame {
     background: white;
     padding: 15px 15px 25px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
     border-radius: 4px;
     position: relative;
 }

 .p-frame img {
     width: 280px;
     height: 280px;
     object-fit: cover;
     border-radius: 2px;
     display: block;
 }

 .p-info {
     font-family: 'Fredoka', sans-serif;
     font-size: 17px;
     color: #0b2450;
     margin-top: 9px;
     text-align: center;
     font-weight: 700;
 }

 .h-icon {
     color: #ff3ea5;
     font-size: 22px;
 }

 .blue-h {
     color: #00b7ff;
 }

 .c-icon {
     position: absolute;
     width: 65px;
     height: 65px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     background: white;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
     z-index: 10;
     border: 4px solid #fff;
 }

 .sun-bg {
     background: #ffeaa7 !important;
 }

 .pink-bg {
     background: #fd79a8 !important;
 }

 .purple-bg {
     background: #a29bfe !important;
 }

 .green-bg {
     background: #55efc4 !important;
 }

 .blue-bg {
     background: #74b9ff !important;
 }

 .orange-bg {
     background: #fab1a0 !important;
 }

 /* Refined Positions for 8 Images (2 Rows of 4) */
 .mc-1 {
     top: 0;
     left: 0;
     transform: rotate(-4deg);
 }

 .mc-1 .c-icon {
     top: -20px;
     left: -20px;
 }

 .mc-2 {
     top: 40px;
     left: 25%;
     transform: rotate(5deg);
 }

 .mc-2 .c-icon {
     top: -20px;
     right: -20px;
 }

 .mc-7 {
     top: -20px;
     left: 50%;
     transform: rotate(-3deg);
 }

 .mc-7 .c-icon {
     top: -20px;
     left: -20px;
 }

 .mc-8 {
     top: 30px;
     right: 0;
     transform: rotate(6deg);
 }

 .mc-8 .c-icon {
     top: -20px;
     right: -20px;
 }

 .mc-3 {
     top: 480px;
     left: 0;
     transform: rotate(6deg);
 }

 .mc-3 .c-icon {
     top: -20px;
     left: -20px;
 }

 .mc-4 {
     top: 520px;
     left: 26%;
     transform: rotate(-3deg);
 }

 .mc-4 .c-icon {
     top: -20px;
     right: -20px;
 }

 .mc-5 {
     top: 450px;
     left: 52%;
     transform: rotate(4deg);
 }

 .mc-5 .c-icon {
     top: -20px;
     left: -20px;
 }

 .mc-6 {
     top: 500px;
     right: 0;
     transform: rotate(-5deg);
 }

 .mc-6 .c-icon {
     top: -20px;
     right: -20px;
 }

 .m-card:hover {
     transform: scale(1.08) rotate(0deg) !important;
     z-index: 20;
 }

 .btn-more-final {
     background: linear-gradient(135deg, #ff3ea5, #ff7a00);
     color: white;
     padding: 20px 50px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 900;
     font-size: 20px;
     display: inline-flex;
     align-items: center;
     gap: 15px;
     box-shadow: 0 15px 30px rgba(255, 62, 165, 0.4);
     transition: 0.3s;
 }

 .btn-more-final:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(255, 62, 165, 0.5);
 }

 .decor-foliage {
     position: absolute;
     font-size: 140px;
     opacity: 0.12;
     pointer-events: none;
 }

 .leaf-tl {
     top: -20px;
     left: -40px;
     transform: rotate(45deg);
 }

 .leaf-tr {
     top: 5%;
     right: -50px;
     transform: rotate(-30deg);
 }

 .leaf-bl {
     bottom: 10%;
     left: -40px;
 }

 .leaf-br {
     bottom: -20px;
     right: -40px;
 }

 .decor-star {
     position: absolute;
     font-size: 30px;
     color: #ffcf24;
     opacity: 0.4;
 }

 .s1 {
     top: 15%;
     left: 10%;
 }

 .s2 {
     top: 40%;
     right: 10%;
 }

 .decor-dot {
     position: absolute;
     width: 15px;
     height: 15px;
     border-radius: 50%;
     opacity: 0.3;
 }

 .d1 {
     background: #38b6ff;
     top: 20%;
     right: 15%;
     animation: float-dot 4s infinite ease-in-out;
 }

 .d2 {
     background: #ff3ea5;
     bottom: 20%;
     left: 15%;
     animation: float-dot 5s infinite ease-in-out reverse;
 }

 .d3 {
     background: #ffcf24;
     top: 60%;
     right: 10%;
     width: 25px;
     height: 25px;
     animation: float-dot 6s infinite ease-in-out;
 }

 .d4 {
     background: #00b7ff;
     top: 10%;
     left: 40%;
     width: 10px;
     height: 10px;
     animation: float-dot 3s infinite ease-in-out;
 }

 .d5 {
     background: #ff3ea5;
     bottom: 10%;
     right: 40%;
     width: 20px;
     height: 20px;
     animation: float-dot 7s infinite ease-in-out reverse;
 }

 @keyframes float-dot {

     0%,
     100% {
         transform: translateY(0) scale(1);
     }

     50% {
         transform: translateY(-30px) scale(1.2);
     }
 }

 @media (max-width: 1024px) {
     .moments-grid-creative {
         height: auto;
         display: flex;
         flex-wrap: wrap;
         justify-content: center;
         gap: 40px;
     }

     .m-card {
         position: relative;
         top: 0 !important;
         left: 0 !important;
         right: 0 !important;
         bottom: 0 !important;
         transform: none !important;
     }
 }

 /* POOL SLIDER STYLES */


 /* UTILITY CLASSES */
 .blue-badge {
     background: #00b7ff !important;
     color: #fff !important;
 }

 .dark-text {
     color: #0b2450 !important;
 }

 .sub-header-p {
     color: #666;
     font-size: 20px;
     font-weight: 700;
     margin-top: 15px;
 }

 .menu-label {
     text-align: center;
     color: #ff3ea5;
     font-family: 'Gochi Hand', cursive;
     font-size: 24px;
     margin-bottom: 10px;
 }

 .menu-footer-text {
     margin-top: 30px;
     text-align: center;
     font-family: 'Gochi Hand', cursive;
     color: #ff3ea5;
     font-size: 20px;
 }

 .bg-green-light {
     background: #e8f5e9 !important;
 }

 .bg-yellow-light {
     background: #fff9c4 !important;
 }

 .bg-purple-light {
     background: #f3e5f5 !important;
 }

 .bg-blue-light {
     background: #e1f5fe !important;
 }

 .bg-blue-deep-light {
     background: #e3f2fd !important;
 }

 .bg-cyan-light {
     background: #e0f7fa !important;
 }

 .bg-orange-light {
     background: #fff3e0 !important;
 }

 .step-yellow {
     background: #fbc02d !important;
 }

 .step-purple {
     background: #9c27b0 !important;
 }

 .step-blue {
     background: #03a9f4 !important;
 }

 .step-blue-deep {
     background: #2196f3 !important;
 }

 .step-cyan {
     background: #00bcd4 !important;
 }

 .step-orange {
     background: #ff9800 !important;
 }

 .badge-red {
     background: #ff5252 !important;
 }

 .badge-blue {
     background: #2196f3 !important;
 }

 .badge-green {
     background: #4caf50 !important;
 }

 .badge-purple {
     background: #9c27b0 !important;
 }

 .badge-pink {
     background: #ff3ea5 !important;
 }

 .badge-orange {
     background: #ff9800 !important;
 }

 /* ==========================================================================
   WHATSAPP & BIRTHDAY ENHANCEMENTS
   ========================================================================== */

 /* Fixed Socials Container */
 .fixed-socials {
     position: fixed;
     bottom: 30px;
     right: 30px;
     display: flex;
     flex-direction: column;
     gap: 15px;
     z-index: 10001;
 }

 .social-btn {
     width: 55px;
     height: 55px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
     text-decoration: none;
 }

 .social-btn svg {
     width: 28px;
     height: 28px;
 }

 .social-btn:hover {
     transform: scale(1.1) translateX(-5px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
 }

 .social-btn.facebook {
     background-color: #1877F2;
 }

 .social-btn.instagram {
     background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
 }

 .social-btn.whatsapp {
     background-color: #25D366;
 }

 @media (max-width: 768px) {
     .fixed-socials {
         bottom: 15px;
         right: 15px;
         gap: 10px;
     }

     .social-btn {
         width: 45px;
         height: 45px;
     }

     .social-btn svg {
         width: 22px;
         height: 22px;
     }

     .social-btn:hover {
         transform: scale(1.05);
         /* Less transform on touch devices */
     }
 }

 /* Birthday Section Button Enhancement */
 .wa-status-btn {
     background: #25d366 !important;
     color: #fff !important;
     display: flex !important;
     align-items: center;
     gap: 8px;
 }

 .wa-status-btn:hover {
     background: #128c7e !important;
     transform: translateY(-3px);
 }

 .wa-icon-mini {
     display: flex;
     align-items: center;
 }

 /* Splashy Birthday Enhancements */
 .crowd-section-minimal {
     background: linear-gradient(180deg, #fff 0%, #f0f9ff 100%);
     position: relative;
 }

 .crowd-section-minimal::before {
     content: "ðŸ’¦";
     position: absolute;
     top: 10%;
     left: 5%;
     font-size: 100px;
     opacity: 0.1;
     animation: floatEmoji 4s infinite ease-in-out;
 }

 .crowd-section-minimal::after {
     content: "ðŸŽˆ";
     position: absolute;
     bottom: 10%;
     right: 5%;
     font-size: 100px;
     opacity: 0.1;
     animation: floatEmoji 5s infinite ease-in-out alternate;
 }

 @keyframes floatEmoji {

     0%,
     100% {
         transform: translateY(0) rotate(0);
     }

     50% {
         transform: translateY(-20px) rotate(10deg);
     }
 }

 .hero-title-light span {
     background: linear-gradient(90deg, #00b7ff, #ff3ea5);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     display: inline-block;
 }

 .mini-testimonial {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(5px);
     padding: 20px;
     border-radius: 0 20px 20px 0;
     border-left: 5px solid #ff3ea5;
 }

 /* Responsive for Trio Section */
 @media (max-width: 991px) {
     .magic-trio .container {
         max-width: 100%;
         padding: 0;
     }

     .magic-trio {
         padding: 60px 0;
         overflow: hidden;
     }

     .wavy-container {
         height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        overflow-x: hidden !important;
        padding: 20px 20px 40px !important;
        gap: 20px;
     }

     .wavy-container::-webkit-scrollbar {
         display: none;
     }

     .wavy-panel {
        flex: 0 0 auto !important;
        width: 100% !important;
         height: 500px !important;
         border-radius: 40px;
         padding-bottom: 40px;
         flex-shrink: 0;
         overflow: hidden;
     }

     .wavy-panel::after {
         display: none !important;
     }

     .cloud-header {
         padding: 25px 30px !important;
         width: 85% !important;
     }

     .cloud-header h3 {
         font-size: 28px !important;
     }

     .m-mascot {
         font-size: 40px !important;
     }
 }