/* VARIABLES */
:root {
    --mint: #7ED9C4;
    --mint-light: #E8F8F4;
    --mint-ultralight: #F2FCFA;
    --lilac: #C7A6FF;
    --lilac-light: #F4EFFF;
    --yellow: #FFD97A;
    --yellow-light: #FFFBF0;
    --pink: #FFB6C1;
    --pink-light: #FFF0F2;
    --off-white: #FFF9F5;
    --white: #FFFFFF;
    
    --text-main: #333333;
    --text-soft: #555555;
    
    --font-heading: 'Fredoka', sans-serif;
    --font-text: 'Quicksand', sans-serif;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 999px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-colored: 0 15px 30px -5px rgba(126, 217, 196, 0.4);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    color: var(--text-soft);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* LAYOUT */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* BACKGROUNDS */
.bg-gradient-lilac { background: linear-gradient(135deg, var(--white) 0%, var(--lilac-light) 100%); }
.bg-white { background-color: var(--white); }
.bg-soft-mint { background-color: var(--mint-ultralight); }
.bg-soft-pink { background-color: var(--pink-light); }
.bg-soft-lilac { background-color: var(--lilac-light); }
.bg-soft-yellow { background-color: var(--yellow-light); }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn i {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background-color: var(--mint);
    color: var(--text-main);
    padding: 14px 28px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -5px rgba(126, 217, 196, 0.6);
    background-color: #6CC5B0;
}

.btn-large {
    flex-direction: column;
    padding: 16px 32px;
    gap: 2px;
}

.btn-large .btn-text {
    font-size: 1.2rem;
}

.btn-large .btn-subtext {
    font-size: 0.8rem;
    font-family: var(--font-text);
    font-weight: 500;
    opacity: 0.8;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-main);
    padding: 14px 28px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    border-color: var(--mint);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 1rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    padding: 12px 24px;
    border: 2px solid var(--text-main);
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: var(--white);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--text-main);
    padding: 14px 28px;
    font-size: 1.1rem;
    border: 2px solid var(--text-main);
}
.btn-outline-dark:hover {
    background-color: var(--text-main);
    color: var(--white);
}

/* ANIMATIONS */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}
.pulse:hover {
    animation: none;
    transform: scale(1.05);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(-10deg);
}
.whatsapp-float .wa-icon {
    width: 32px;
    height: 32px;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
}

/* HERO */
.hero-full {
    position: relative;
    min-height: 85vh;
    padding-top: 140px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    background-image: url('img/hero_full.png');
    background-size: cover;
    background-position: center 35%;
    background-attachment: scroll;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    z-index: 1;
}

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

.hero-full-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-bottom: 50px; /* Give some space for the kids at the bottom */
}

.badge {
    background-color: var(--yellow);
    color: var(--text-main);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    display: inline-block;
}

.hero-full .badge {
    margin-top: -40px;
    margin-bottom: 10px;
}

.hero-full h1 {
    font-size: 2.8rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-full .highlight {
    color: var(--mint); 
    display: inline-block;
    position: relative;
}
.hero-full .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--yellow);
    opacity: 0.5;
    z-index: -1;
    border-radius: 4px;
}

.hero-full .subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(255, 249, 245, 0.6);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    width: 100%;
    backdrop-filter: blur(10px);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--text-main);
}
.detail-item i {
    color: var(--mint);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.hero-actions .btn {
    width: 100%;
}

@media (min-width: 768px) {
    .hero-full {
        min-height: 90vh;
    }
    .hero-full h1 {
        font-size: 4rem;
    }
    .hero-full-content {
        gap: 30px;
    }
    .hero-details {
        flex-direction: row;
        gap: 30px;
        padding: 20px 40px;
        width: auto;
    }
    .hero-actions {
        flex-direction: row;
        width: auto;
        gap: 20px;
    }
    .hero-actions .btn {
        width: auto;
    }
}



/* WAVES */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg, .wave-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill { fill: #FFFFFF; }

.wave-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.wave-divider-top .shape-fill { fill: #F2FCFA; /* same as previous section bottom */ }

/* TRUST SECTION */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.trust-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}
.trust-card:hover {
    transform: translateY(-5px);
    border-color: var(--mint-light);
    box-shadow: var(--shadow-md);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.icon-wrapper i { width: 30px; height: 30px; }

.icon-mint { background: var(--mint-light); color: var(--mint); }
.icon-lilac { background: var(--lilac-light); color: var(--lilac); }
.icon-pink { background: var(--pink-light); color: var(--pink); }
.icon-yellow { background: var(--yellow-light); color: #E5AC15; }

.trust-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}
.trust-card p {
    font-size: 0.95rem;
}

/* INFO CLAVE */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--mint-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.info-content p {
    margin: 0;
    font-weight: 500;
}

.highlight-card {
    background: var(--pink-light);
    border: 2px dashed var(--pink);
}
.highlight-card .info-icon {
    background: var(--white);
    color: var(--pink);
}

.mt-40 { margin-top: 40px; }
.center-cta { display: flex; justify-content: center; }

/* ACTIVIDADES */
.activities {
    padding: 100px 0;
}
.activities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.activity-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.act-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    position: relative;
}
.act-icon i { 
    grid-area: 1 / 1;
    width: 38px; 
    height: 38px; 
    color: var(--text-main); 
}
.act-icon i:nth-child(1) {
    transform: translate(-7px, -7px);
    opacity: 0.8;
}
.act-icon i:nth-child(2) {
    transform: translate(7px, 7px);
}
.act-icon i:only-child {
    transform: none;
    width: 42px;
    height: 42px;
    opacity: 1;
}

.bg-yellow { background-color: var(--yellow); }
.bg-mint { background-color: var(--mint); }
.bg-lilac { background-color: var(--lilac); }
.bg-pink { background-color: var(--pink); }

.activity-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* DÍA TIPO */
.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 4px;
    background: var(--mint-light);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--mint);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--mint-light);
}

.time {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--mint);
    margin-bottom: 5px;
}

.timeline-content h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* PRECIOS */
.early-bird-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 650px;
    margin: 0 auto 50px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--yellow);
    transition: transform 0.3s ease;
}
.early-bird-box:hover {
    transform: scale(1.02);
}
.early-bird-box i { 
    color: var(--yellow); 
    width: 28px;
    height: 28px;
}
.early-bird-box span {
    font-size: 1.1rem;
    color: var(--text-main);
}
.early-bird-box strong {
    color: var(--yellow);
    font-family: var(--font-heading);
}

.pricing-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.price-card-new {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.price-card-new:hover { transform: translateY(-5px); }

.card-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mint);
    color: var(--text-main);
    padding: 4px 15px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.clock-icon {
    width: 40px;
    height: 40px;
    color: var(--mint);
    margin-bottom: 15px;
}

.card-top h3 { font-size: 1.5rem; margin-bottom: 5px; }
.time-range { font-weight: 600; color: var(--text-soft); margin-bottom: 25px; }

.card-prices {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-price-single {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
    background: #F9F9F9;
    border-radius: var(--radius-md);
}

.price-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    display: block;
}

.price-value small {
    font-size: 1rem;
    color: var(--text-soft);
    font-weight: 500;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #EEE;
}

.price-label { font-weight: 600; font-size: 0.95rem; }

.price-row.highlight { color: var(--mint); }
.price-row.highlight .price-value { color: var(--mint); }

.btn-full { width: 100%; }

.pricing-disclaimer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}
.pricing-disclaimer i { color: var(--mint); vertical-align: middle; margin-right: 5px; }

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

/* PRICING TABS */
.pricing-tabs {
    margin-top: 40px;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    background: var(--off-white);
    padding: 8px;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 10px 25px;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-soft);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--white);
    color: var(--mint);
    box-shadow: var(--shadow-sm);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CARDS ENHANCEMENTS */
.price-card-new.highlight {
    border: 2px solid var(--mint);
    transform: scale(1.05);
    z-index: 2;
}

.card-features {
    text-align: left;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid #EEE;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.card-features i {
    color: var(--mint);
    width: 18px;
}

.card-extra-info {
    text-align: left;
    margin-top: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #F5F5F5;
    font-size: 0.95rem;
}

.info-row span {
    color: var(--text-soft);
}

.info-row strong {
    color: var(--text-main);
    font-family: var(--font-heading);
}

.pricing-disclaimer {
    margin-top: 40px;
    background: var(--mint-ultralight);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
}

.pricing-disclaimer p {
    margin-bottom: 10px;
}

.pricing-disclaimer i {
    color: var(--mint);
    margin-right: 8px;
}

/* SEGURIDAD */
.safety-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.safety-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.safety-list {
    margin-top: 30px;
}
.safety-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.s-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.s-icon i { color: #E5AC15; }

.safety-list strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
    display: block;
    margin-bottom: 5px;
}

.safety-image {
    width: 100%;
    max-width: 450px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
}

.rounded-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* EQUIPO */
.team-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.team-image {
    position: relative;
    width: 250px;
    height: 250px;
}

.rounded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 10px solid var(--white);
    box-shadow: var(--shadow-md);
}

.team-blob {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

.team-text .badge { margin-bottom: 15px; }
.team-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.team-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 20px;
    font-style: italic;
}
.team-text p { margin-bottom: 15px; }

/* GALERÍA */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

.placeholder-img-mint { background: var(--mint-light); color: var(--mint); }
.placeholder-img-pink { background: var(--pink-light); color: var(--pink); }
.placeholder-img-yellow { background: var(--yellow-light); color: #E5AC15; }

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

.faq-item {
    background: var(--white);
    border: 1px solid #EAEAEA;
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}

/* RESERVA */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.reservation-fee-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 15px;
    margin: 30px 0;
    border-left: 5px solid var(--mint);
    box-shadow: var(--shadow-sm);
}
.fee-icon i { color: var(--mint); width: 30px; height: 30px; }
.fee-text strong { display: block; font-size: 1.1rem; color: var(--text-main); margin-bottom: 5px; }
.fee-text p { font-size: 0.95rem; margin-bottom: 0; }

.booking-steps {
    list-style: none;
    padding: 0;
}
.booking-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
}
.booking-steps i { color: var(--mint); width: 20px; height: 20px; }

.booking-form-container {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.booking-form .form-group { margin-bottom: 20px; flex: 1; }
.form-row {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
    width: 100%;
    text-align: left;
}
.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}
.form-checkbox label {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-soft);
    cursor: pointer;
    display: inline !important; /* Prevent block display from breaking flex layout */
    margin-bottom: 0 !important;
}

@media (min-width: 576px) {
    .form-row {
        flex-direction: row;
        gap: 20px;
    }
}
.booking-form label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.9rem; }
.booking-form input, 
.booking-form select, 
.booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #EEE;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.booking-form input:focus, 
.booking-form select:focus, 
.booking-form textarea:focus {
    outline: none;
    border-color: var(--mint);
}
.booking-form textarea { height: 100px; resize: none; }

.form-note { font-size: 0.8rem; color: var(--text-soft); margin-top: 15px; text-align: center; }

.form-success-msg {
    text-align: center;
    padding: 20px 0;
}
.form-success-msg i { width: 60px; height: 60px; color: var(--mint); margin-bottom: 20px; }
.form-success-msg h3 { font-size: 1.8rem; margin-bottom: 15px; }
.form-success-msg p { margin-bottom: 30px; }

.form-error-msg {
    text-align: center;
    padding: 20px;
    background: #FFF5F5;
    border-radius: var(--radius-md);
    margin-top: 20px;
    color: #C53030;
    border: 1px solid #FEB2B2;
}
.form-error-msg i { width: 24px; height: 24px; margin-bottom: 10px; }

.hidden { display: none; }

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

/* FOOTER */
.footer {
    padding: 60px 0 20px;
    border-top: 1px solid #EAEAEA;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 65px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--mint);
}
.footer-links p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}
.footer-links i {
    width: 18px;
    height: 18px;
    color: var(--mint);
}

/* CAMP PROMO SECTION */
.promo-box {
    background: var(--yellow-light);
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    border: 3px dashed var(--yellow);
    position: relative;
    overflow: hidden;
}

.promo-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promo-content h2 {
    font-size: 2.5rem;
    margin: 20px 0;
    color: var(--text-main);
}

.promo-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-soft);
}

.promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .promo-actions {
        flex-direction: column;
    }
    .promo-actions .btn {
        width: 100%;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #EAEAEA;
    font-size: 0.9rem;
}

/* =========================================
   DESKTOP STYLES (min-width: 768px)
   ========================================= */
@media (min-width: 768px) {
    .section-header h2 { font-size: 2.8rem; }
    
    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    .hero-content {
        text-align: left;
        align-items: flex-start;
    }
    .hero-full {
        padding-top: 170px;
    }
    .hero h1 { font-size: 3.5rem; }
    
    .hero-details {
        flex-direction: row;
        gap: 20px;
        padding: 15px 20px;
        width: auto;
    }
    
    .hero-actions {
        flex-direction: row;
        width: auto;
    }
    .hero-actions .btn {
        width: auto;
    }

    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .info-card.highlight-card { grid-column: span 2; justify-self: center; width: 50%; }

    .activities-grid { grid-template-columns: repeat(3, 1fr); }
    
    .timeline::before { left: 50%; transform: translateX(-50%); }
    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 40px;
        text-align: right;
    }
    .timeline-item:nth-child(even) {
        margin-left: auto;
        padding-right: 0;
        padding-left: 40px;
        text-align: left;
    }
    .timeline-item::before {
        left: auto;
        right: -14px;
    }
    .timeline-item:nth-child(even)::before {
        right: auto;
        left: -14px;
    }
    
    .pricing-grid { grid-template-columns: repeat(2, 1fr); align-items: center; }
    
    .safety-content { flex-direction: row; gap: 60px; }
    .safety-text { flex: 1; }
    .safety-image { flex: 1; }
    
    .team-layout { flex-direction: row; gap: 60px; }
    .team-text { flex: 1; }
    
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .gallery-item.g1 { grid-column: span 2; grid-row: span 2; height: 100%; }
    
    .cta-actions { flex-direction: row; max-width: 100%; justify-content: center; }
    
    .footer-container { flex-direction: row; justify-content: space-between; }
    .footer-brand { max-width: 400px; }
}

@media (min-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
    .info-grid { grid-template-columns: repeat(5, 1fr); }
    .info-card.highlight-card { grid-column: auto; width: 100%; }
}
