/* ===== ROOT VARIABLES ===== */
:root {
    --pink: #F8B4C4;
    --pink-light: #FCE4EC;
    --pink-dark: #E91E63;
    --blue: #1E4D6B;
    --blue-light: #2D6A8A;
    --blue-dark: #153A52;
    --white: #FFFFFF;
    --cream: #FFFBF7;
    --dark: #2D3748;
    --gray: #718096;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Quicksand', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
}
h1, h2, h3, h4 { font-family: 'Baloo 2', cursive; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }

/* ===== TOP BAR ===== */
.top-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--pink) 0%, var(--blue) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

/* ===== SIDEBAR NAVIGATION ===== */
.sidebar {
    position: fixed;
    top: 6px;
    left: -320px;
    width: 320px;
    height: calc(100vh - 6px);
    background: linear-gradient(180deg, var(--white) 0%, var(--pink-light) 100%);
    z-index: 2000;
    transition: left 0.4s ease;
    box-shadow: 5px 0 40px rgba(30, 77, 107, 0.2);
    display: flex;
    flex-direction: column;
}
.sidebar.active { left: 0; }

.sidebar-header {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-bottom: 3px solid var(--pink);
}
.sidebar-logo { height: 50px; }
.sidebar-close {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--blue);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}
.sidebar-close:hover { background: var(--blue-light); transform: rotate(90deg); }

.sidebar-menu {
    flex: 1;
    padding: 20px 15px;
    overflow-y: auto;
    list-style: none;
}
.sidebar-menu li { margin: 6px 0; }
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    border-radius: 15px;
    transition: var(--transition);
}
.sidebar-link:hover, .sidebar-link.active {
    background: var(--blue);
    color: white;
    transform: translateX(8px);
}
.sidebar-link i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink);
    border-radius: 8px;
    color: var(--blue);
    font-size: 0.85rem;
}
.sidebar-link:hover i { background: var(--pink-light); }

.sidebar-footer {
    padding: 20px;
    background: var(--white);
    border-top: 3px solid var(--pink);
}
.sidebar-cta {
    display: block;
    text-align: center;
    padding: 15px;
    background: var(--blue);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 15px;
    transition: var(--transition);
}
.sidebar-cta:hover { background: var(--blue-light); }
.sidebar-info { font-size: 0.9rem; color: var(--gray); }
.sidebar-info p { margin: 8px 0; display: flex; align-items: center; gap: 10px; }
.sidebar-info i { color: var(--pink-dark); }

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 77, 107, 0.4);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

/* ===== MENU TOGGLE BUTTON ===== */
.menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--blue);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(30, 77, 107, 0.4);
    transition: var(--transition);
}
.menu-toggle:hover { transform: scale(1.1); background: var(--blue-light); }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 6px;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px 0 100px;
    box-shadow: 0 2px 20px rgba(30,77,107,0.1);
}
.header-brand { display: flex; align-items: center; gap: 15px; }
.header-logo { height: 45px; }
.header-mascot { height: 55px; animation: bounce 2s ease-in-out infinite; }
.header-text { font-family: 'Baloo 2', cursive; font-size: 1.1rem; color: var(--blue); }
.header-cta {
    padding: 12px 28px;
    background: var(--blue);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}
.header-cta:hover { background: var(--blue-light); transform: translateY(-3px); }

@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 86px;
}
.hero-video-wrap { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,77,107,0.85) 0%, rgba(248,180,196,0.7) 100%);
}
.hero-content { position: relative; z-index: 1; text-align: center; padding: 0 20px; }
.hero-logos { display: flex; align-items: center; justify-content: center; gap: 30px; margin-bottom: 30px; }
.hero-logo-img { height: 120px; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3)); }
.hero-mascot-img { height: 160px; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3)); animation: bounce 2.5s ease-in-out infinite; }
.hero-title { font-size: 4rem; color: white; text-shadow: 3px 3px 0 var(--blue-dark); margin-bottom: 15px; }
.hero-tagline { font-size: 2rem; color: var(--pink); margin-bottom: 10px; }
.hero-subtitle { font-size: 1.2rem; color: white; margin-bottom: 40px; opacity: 0.9; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-hero {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-primary { background: var(--pink); color: var(--blue); }
.btn-primary:hover { transform: translateY(-5px); }
.btn-secondary { background: transparent; color: white; border: 3px solid white; }
.btn-secondary:hover { background: white; color: var(--blue); }
.hero-social { display: flex; justify-content: center; gap: 15px; margin-top: 40px; }
.hero-social a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}
.hero-social a:hover { background: var(--pink); color: var(--blue); transform: translateY(-5px); }

/* ===== MARQUEE ===== */
.marquee { background: var(--blue); padding: 15px 0; overflow: hidden; position: relative; }
.marquee-track { 
    display: flex; 
    width: fit-content;
    animation: marquee 30s linear infinite; 
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 35px;
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
    white-space: nowrap;
}
.marquee-item i { color: var(--pink); }
.marquee-item.cert-logo {
    padding: 0 20px;
}
.marquee-item.cert-logo img {
    height: 45px;
    width: auto;
    background: var(--pink);
    padding: 8px 15px;
    border-radius: 10px;
    object-fit: contain;
}
@keyframes marquee { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

/* ===== SECTION STYLES ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block;
    padding: 8px 25px;
    background: var(--pink);
    color: var(--blue);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.section-title { font-size: 3rem; color: var(--blue); margin-bottom: 15px; }
.section-title span { color: var(--pink-dark); }
.section-subtitle { font-size: 1.15rem; color: var(--gray); max-width: 600px; margin: 0 auto; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-bottom: 80px; }
.why-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    transition: var(--transition);
}
.why-card:hover { border-color: var(--pink); transform: translateY(-10px); box-shadow: 0 20px 50px rgba(248,180,196,0.3); }
.why-icon {
    width: 80px;
    height: 80px;
    background: var(--blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--pink);
    transition: var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(5deg); }
.why-card h3 { font-size: 1.4rem; color: var(--blue); margin-bottom: 12px; }
.why-card p { color: var(--gray); line-height: 1.7; }

/* Why Feature Blocks */
.why-feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--cream) 100%);
    border-radius: 30px;
    border: 3px solid var(--pink);
}
.why-feature-block.reverse {
    direction: rtl;
    background: linear-gradient(135deg, #E8F4FC 0%, var(--cream) 100%);
    border-color: var(--blue-light);
}
.why-feature-block.reverse > * { direction: ltr; }
.why-feature-block:last-child { margin-bottom: 0; }

.why-feature-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30,77,107,0.2);
}
.why-feature-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.why-feature-block:hover .why-feature-image img {
    transform: scale(1.05);
}

.why-feature-content h3 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 20px;
    line-height: 1.3;
}
.why-feature-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.why-feature-content strong {
    color: var(--blue);
}

.why-feature-list {
    list-style: none;
    margin-top: 25px;
}
.why-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 600;
    color: var(--dark);
}
.why-feature-list i {
    color: var(--pink-dark);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .why-feature-block {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .why-feature-block.reverse { direction: ltr; }
    .why-feature-image img { height: 280px; }
    .why-feature-content h3 { font-size: 1.6rem; }
}

/* ===== FEATURED SERVICES ===== */
.featured-section { background: var(--cream); }
.featured-grid { display: flex; flex-direction: column; gap: 60px; }
.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    border: 3px solid var(--pink-light);
    transition: var(--transition);
}
.featured-card:nth-child(even) { direction: rtl; }
.featured-card:nth-child(even) > * { direction: ltr; }
.featured-card:hover { border-color: var(--blue); box-shadow: 0 20px 60px rgba(30,77,107,0.1); }
.featured-img-wrap { border-radius: 20px; overflow: hidden; }
.featured-img-wrap img { width: 100%; height: 350px; object-fit: cover; transition: transform 0.5s; }
.featured-card:hover .featured-img-wrap img { transform: scale(1.05); }
.featured-num { font-family: 'Baloo 2', cursive; font-size: 6rem; color: var(--pink-light); line-height: 1; }
.featured-content h3 { font-size: 2rem; color: var(--blue); margin-bottom: 15px; }
.featured-content p { color: var(--gray); line-height: 1.8; margin-bottom: 25px; }
.btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--blue);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-learn:hover { background: var(--blue-light); transform: translateX(5px); }

/* ===== PAINLESS SECTION ===== */
.painless-section { background: var(--blue); color: white; }
.painless-section .section-title { color: white; }
.painless-section .section-title span { color: var(--pink); }
.painless-section .section-subtitle { color: rgba(255,255,255,0.8); }
.painless-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.painless-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 4px solid var(--pink);
}
.painless-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.painless-image-wrap:hover img {
    transform: scale(1.05);
}

.painless-info h3 { font-size: 2.2rem; margin-bottom: 20px; }
.painless-info p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; opacity: 0.95; }
.painless-list { list-style: none; margin-top: 25px; }
.painless-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-weight: 600;
}
.painless-list i { color: var(--pink); font-size: 1.2rem; }

@media (max-width: 992px) {
    .painless-grid { grid-template-columns: 1fr; }
    .painless-image-wrap img { height: 300px; }
}

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--white); }
.tabs-wrap { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.tab-btn {
    padding: 12px 25px;
    background: var(--cream);
    border: 2px solid var(--pink-light);
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active { background: var(--blue); border-color: var(--blue); color: white; }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.service-card {
    background: var(--cream);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border-top: 4px solid var(--pink);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(30,77,107,0.1); }
.service-card i { font-size: 2.5rem; color: var(--blue); margin-bottom: 15px; }
.service-card h4 { color: var(--blue); margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.95rem; }

/* ===== TEAM SECTION - ENHANCED ===== */
.team-section {
    background: linear-gradient(180deg, #FFF5F7 0%, #E8F4FF 50%, #FFF5F7 100%);
    position: relative;
    overflow: hidden;
}

.team-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-tooth, .floating-star, .floating-heart {
    position: absolute;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.floating-tooth { font-size: 4rem; color: var(--blue); }
.floating-star { font-size: 2.5rem; color: #FFD700; }
.floating-heart { font-size: 3rem; color: var(--pink-dark); }

.tooth-1 { top: 10%; left: 5%; animation-delay: 0s; }
.tooth-2 { top: 60%; right: 8%; animation-delay: 2s; }
.tooth-3 { bottom: 15%; left: 15%; animation-delay: 4s; }
.star-1 { top: 20%; right: 15%; animation-delay: 1s; }
.star-2 { bottom: 25%; right: 25%; animation-delay: 3s; }
.heart-1 { top: 40%; left: 8%; animation-delay: 1.5s; }
.heart-2 { bottom: 35%; left: 30%; animation-delay: 3.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    cursor: pointer;
    perspective: 1000px;
}

.team-card-inner {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(30,77,107,0.1);
    border: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--pink) 0%, var(--blue) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-inner::before {
    transform: scaleX(1);
}

.team-card:hover .team-card-inner {
    border-color: var(--pink);
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(248,180,196,0.4);
}

.team-photo-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
}

.team-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--pink);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.team-photo-ring {
    position: absolute;
    inset: -10px;
    border: 3px dashed var(--blue);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.team-card:hover .team-photo-ring {
    opacity: 1;
    inset: -15px;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    border-color: var(--blue);
}

.team-card h4 {
    font-size: 1.3rem;
    color: var(--blue);
    margin-bottom: 8px;
}

.team-role {
    color: var(--pink-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-click-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-card:hover .team-click-hint {
    opacity: 1;
    transform: translateY(0);
}

.team-click-hint i {
    animation: pointUp 1s ease-in-out infinite;
}

@keyframes pointUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ===== TEAM MODAL ===== */
.team-modal {
    position: fixed;
    inset: 0;
    background: rgba(30, 77, 107, 0.9);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.team-modal.active {
    opacity: 1;
    visibility: visible;
}

.team-modal-content {
    background: var(--white);
    border-radius: 30px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s ease;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.team-modal.active .team-modal-content {
    transform: scale(1) translateY(0);
}

.team-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--pink-light);
    color: var(--blue);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.team-modal-close:hover {
    background: var(--pink);
    transform: rotate(90deg);
}

.team-modal-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--pink-light);
}

.team-modal-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--pink);
    flex-shrink: 0;
}

.team-modal-info h3 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 8px;
}

.team-modal-role {
    color: var(--pink-dark);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-modal-quote {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--cream) 100%);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 25px;
    font-style: italic;
    color: var(--blue);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
}

.team-modal-quote::before {
    content: '"';
    font-family: 'Baloo 2', cursive;
    font-size: 4rem;
    color: var(--pink);
    position: absolute;
    top: -10px;
    left: 15px;
    line-height: 1;
}

.team-modal-bio {
    color: var(--gray);
    line-height: 1.9;
    font-size: 1rem;
}

.team-modal-bio p {
    margin-bottom: 15px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: white;
}
.gallery-section .section-title { color: white; }
.gallery-section .section-title span { color: var(--pink); }
.gallery-section .section-subtitle { color: rgba(255,255,255,0.8); }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin-bottom: 50px; }
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid var(--pink);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.gallery-title { text-align: center; font-size: 1.8rem; margin-bottom: 25px; }
.carousel-wrap { background: var(--white); padding: 20px; border-radius: 20px; margin-bottom: 25px; overflow: hidden; }
.carousel-track { display: flex; gap: 20px; animation: scroll 30s linear infinite; }
.carousel-track img { width: 280px; height: 210px; object-fit: cover; border-radius: 15px; flex-shrink: 0; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-300px * 7)); } }
.carousel-track.paused { animation-play-state: paused; }
.carousel-btns { display: flex; justify-content: center; gap: 15px; }
.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--pink);
    color: var(--blue);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}
.carousel-btn:hover { background: white; transform: scale(1.1); }

/* ===== FIRST VISIT SECTION - ADVENTURE STYLE ===== */
.visit-section {
    background: linear-gradient(180deg, #FFF5F7 0%, #E8F4FC 50%, #FFF5F7 100%);
    position: relative;
    overflow: hidden;
}

/* Floating Decorations */
.visit-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}
.visit-deco {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.6;
    animation: floatBounce 4s ease-in-out infinite;
}
.deco-tooth { top: 10%; left: 5%; animation-delay: 0s; }
.deco-star1 { top: 15%; right: 8%; animation-delay: 0.5s; font-size: 2rem; }
.deco-star2 { top: 60%; left: 3%; animation-delay: 1s; font-size: 1.8rem; }
.deco-heart { top: 70%; right: 5%; animation-delay: 1.5s; }
.deco-smile { top: 40%; left: 8%; animation-delay: 2s; font-size: 2rem; }
.deco-sparkle { top: 25%; right: 15%; animation-delay: 2.5s; font-size: 2.2rem; }
.deco-balloon { top: 80%; left: 10%; animation-delay: 3s; }
.deco-candy { top: 50%; right: 3%; animation-delay: 3.5s; }

@keyframes floatBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
}

/* Adventure Path */
.adventure-path {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    max-width: 1100px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.adventure-stop {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.adventure-stop.stop-2,
.adventure-stop.stop-4 {
    flex-direction: row-reverse;
    text-align: right;
}
.adventure-stop.stop-2 .stop-card,
.adventure-stop.stop-4 .stop-card {
    text-align: right;
}
.adventure-stop.stop-2 .stop-features,
.adventure-stop.stop-4 .stop-features {
    justify-content: flex-end;
}

.stop-icon-wrap {
    position: relative;
    flex-shrink: 0;
}
.stop-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: pulse 2s ease-in-out infinite;
}
.stop-1 .stop-icon { background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%); }
.stop-2 .stop-icon { background: linear-gradient(135deg, #4ECDC4 0%, #45B7AF 100%); }
.stop-3 .stop-icon { background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%); }
.stop-4 .stop-icon { background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%); }

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

.stop-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.stop-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 3px solid transparent;
    transition: all 0.4s ease;
    flex: 1;
}
.stop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.stop-1 .stop-card:hover { border-color: #FF6B6B; }
.stop-2 .stop-card:hover { border-color: #4ECDC4; }
.stop-3 .stop-card:hover { border-color: #A78BFA; }
.stop-4 .stop-card:hover { border-color: #FBBF24; }

.stop-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: wave 2s ease-in-out infinite;
}
@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

.stop-card h3 {
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 12px;
}
.stop-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}
.stop-card strong {
    color: var(--pink-dark);
}

.stop-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.stop-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
}
.stop-features i {
    color: var(--pink-dark);
}

/* Trivia Promo */
.trivia-promo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.trivia-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: shimmer 3s linear infinite;
    z-index: 0;
}
.trivia-promo-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}
.trivia-promo-icon {
    font-size: 4rem;
    animation: bounce 2s ease-in-out infinite;
}
.trivia-promo-text {
    flex: 1;
}
.trivia-promo-text h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 8px;
}
.trivia-promo-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
}
.btn-trivia-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #764ba2;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    flex-shrink: 0;
}
.btn-trivia-promo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.btn-trivia-promo i {
    animation: pulse 1s ease-in-out infinite;
}

/* Sidebar trivia link */
.sidebar-link.trivia-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border-radius: 12px;
    margin-top: 10px;
}
.sidebar-link.trivia-link i {
    color: white !important;
}
.sidebar-link.trivia-link:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(102,126,234,0.4);
}

@media (max-width: 768px) {
    .trivia-promo-content {
        flex-direction: column;
        text-align: center;
    }
    .trivia-promo-icon {
        font-size: 3rem;
    }
    .trivia-promo-text h3 {
        font-size: 1.5rem;
    }
}

/* Visit CTA */
.visit-cta {
    background: linear-gradient(135deg, var(--blue) 0%, #2D6A7A 100%);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.visit-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.visit-cta-content {
    position: relative;
    z-index: 1;
}
.visit-cta h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
}
.visit-cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}
.btn-adventure {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(248,180,196,0.4);
}
.btn-adventure:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(248,180,196,0.5);
}
.btn-adventure i {
    animation: rocketShake 0.5s ease-in-out infinite;
}
@keyframes rocketShake {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Responsive */
@media (max-width: 992px) {
    .adventure-path {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .adventure-stop,
    .adventure-stop.stop-2,
    .adventure-stop.stop-4 {
        flex-direction: column;
        text-align: center;
    }
    .adventure-stop.stop-2 .stop-card,
    .adventure-stop.stop-4 .stop-card {
        text-align: center;
    }
    .stop-features,
    .adventure-stop.stop-2 .stop-features,
    .adventure-stop.stop-4 .stop-features {
        justify-content: center;
    }
    .stop-icon-wrap {
        margin: 0 auto;
    }
    .visit-deco { display: none; }
    .visit-cta { padding: 40px 25px; }
    .visit-cta h3 { font-size: 1.8rem; }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    transition: var(--transition);
}
.testimonial:hover { border-color: var(--blue); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(30,77,107,0.1); }
.stars { color: var(--pink-dark); font-size: 1.3rem; margin-bottom: 20px; }
.testimonial p { font-size: 1.05rem; line-height: 1.8; color: var(--gray); font-style: italic; margin-bottom: 20px; }
.testimonial cite { font-style: normal; font-weight: 700; color: var(--blue); }

/* ===== FINANCE/PAYMENT SECTION ===== */
.finance-section, .payment-section { background: var(--cream); }
.finance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; max-width: 1000px; margin: 0 auto 60px; }
.finance-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    transition: var(--transition);
}
.finance-card:hover { border-color: var(--pink); transform: translateY(-8px); box-shadow: 0 15px 40px rgba(248,180,196,0.25); }
.finance-icon {
    width: 70px;
    height: 70px;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--blue);
}
.finance-card h4 { color: var(--blue); margin-bottom: 8px; font-size: 1.2rem; }
.finance-card p { color: var(--gray); font-size: 0.95rem; }

/* Piggy Plan Section */
.piggy-plan-section {
    background: linear-gradient(135deg, var(--pink-light) 0%, #FFF5F7 100%);
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 40px;
    border: 3px solid var(--pink);
    text-align: center;
}
.piggy-header h3 {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 5px;
}
.piggy-header p {
    color: var(--pink-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.piggy-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--gray);
}
.piggy-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}
.piggy-tier {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    border: 2px solid #E8E8E8;
    transition: var(--transition);
}
.piggy-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.piggy-tier.featured {
    border-color: var(--pink);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(248,180,196,0.3);
}
.piggy-tier.featured:hover {
    transform: scale(1.05) translateY(-5px);
}
.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}
.piggy-tier h4 {
    color: var(--blue);
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.piggy-tier .age-range {
    color: var(--pink-dark);
    font-weight: 600;
    font-size: 0.95rem;
}
.piggy-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
    margin: 20px 0;
    font-family: 'Bubblegum Sans', cursive;
}
.piggy-price span {
    font-size: 1rem;
    color: var(--gray);
    font-family: 'Open Sans', sans-serif;
}
.piggy-tier ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}
.piggy-tier li {
    padding: 8px 0;
    color: var(--dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.piggy-tier li i {
    color: var(--pink-dark);
    font-size: 0.9rem;
}
.piggy-savings {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
}
.piggy-bonus {
    font-size: 1.2rem;
    color: var(--blue);
    margin-bottom: 25px;
}
.piggy-bonus i {
    color: #FFD700;
}
.btn-piggy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}
.btn-piggy:hover {
    background: var(--blue-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30,77,107,0.3);
}

/* Cherry Section */
.cherry-section {
    background: linear-gradient(135deg, #E8F4FC 0%, var(--white) 100%);
    border-radius: 30px;
    padding: 50px;
    border: 3px solid var(--blue-light);
}
.cherry-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.cherry-header {
    margin-bottom: 25px;
}
.cherry-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.cherry-logo i {
    font-size: 1rem;
}
.cherry-header h3 {
    font-size: 2rem;
    color: var(--blue);
}
.cherry-content > p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}
.cherry-content strong {
    color: var(--blue);
}
.cherry-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 30px;
}
.cherry-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark);
}
.cherry-benefits i {
    color: #4CAF50;
    font-size: 1.1rem;
}
.btn-cherry {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}
.btn-cherry:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,105,180,0.4);
}

@media (max-width: 992px) {
    .finance-grid { grid-template-columns: repeat(2, 1fr); }
    .piggy-tiers { grid-template-columns: 1fr; max-width: 350px; margin-left: auto; margin-right: auto; }
    .piggy-tier.featured { transform: scale(1); }
    .piggy-tier.featured:hover { transform: translateY(-5px); }
    .cherry-benefits { grid-template-columns: 1fr; }
    .piggy-plan-section, .cherry-section { padding: 30px 20px; }
}
@media (max-width: 576px) {
    .finance-grid { grid-template-columns: 1fr; }
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--blue); color: white; }
.contact-section .section-title { color: white; }
.contact-section .section-title span { color: var(--pink); }
.contact-section .section-subtitle { color: rgba(255,255,255,0.8); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    margin-bottom: 20px;
}
.contact-item i {
    font-size: 1.3rem;
    color: var(--pink);
    background: rgba(255,255,255,0.15);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item h4 { margin-bottom: 5px; }
.contact-item p { opacity: 0.85; }
.contact-item p a { color: white; text-decoration: none; transition: var(--transition); }
.contact-item p a:hover { text-decoration: underline; opacity: 1; }
.contact-item.emergency-contact {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    border-radius: 15px;
    padding: 20px;
    margin-top: 10px;
}
.contact-item.emergency-contact i { color: white; background: rgba(255,255,255,0.2); }

/* Footer link styles */
.footer-col p a { color: rgba(255,255,255,0.85); text-decoration: none; transition: var(--transition); }
.footer-col p a:hover { color: var(--pink); text-decoration: underline; }

/* Sidebar link styles */
.sidebar-info a { color: var(--blue); text-decoration: none; transition: var(--transition); }
.sidebar-info a:hover { color: var(--pink-dark); }

.contact-form { background: white; padding: 40px; border-radius: 25px; }
.contact-form h3 { text-align: center; font-size: 1.8rem; color: var(--blue); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--pink-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); }
.contact-form textarea { min-height: 100px; resize: vertical; margin-bottom: 15px; }
.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-submit:hover { background: var(--blue-light); }

/* ===== FOOTER ===== */
.footer { background: var(--blue-dark); color: white; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 60px; filter: brightness(0) invert(1); margin-bottom: 15px; }
.footer-brand p { color: rgba(255,255,255,0.7); line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 42px;
    height: 42px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    transition: var(--transition);
    text-decoration: none;
}
.footer-social a:hover { transform: translateY(-5px); }
.footer-col h4 { margin-bottom: 20px; font-size: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--pink); }
.footer-col p { color: rgba(255,255,255,0.7); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-col p i { color: var(--pink); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { color: rgba(255,255,255,0.5); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--pink); color: var(--blue); transform: translateY(-5px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .featured-card { grid-template-columns: 1fr; }
    .featured-card:nth-child(even) { direction: ltr; }
    .painless-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 30px; }
    .timeline-item { flex-direction: column !important; padding-left: 80px; }
    .timeline-num { left: 30px; transform: none; }
    .timeline-content { width: 100%; margin: 0 !important; }
    .team-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; }
}

@media (max-width: 768px) {
    .header { padding: 0 20px 0 90px; }
    .header-text { display: none; }
    .hero-title { font-size: 2.5rem; }
    .hero-tagline { font-size: 1.5rem; }
    .hero-logo-img { height: 80px; }
    .hero-mascot-img { height: 110px; }
    .section-title { font-size: 2.2rem; }
    .form-row { grid-template-columns: 1fr; }
    .team-modal-header { flex-direction: column; text-align: center; }
    .team-modal-photo { width: 100px; height: 100px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-logos { flex-direction: column; gap: 20px; }
    .section-title { font-size: 1.8rem; }
    .team-grid { grid-template-columns: 1fr; max-width: 280px; }
    .team-modal-content { padding: 25px; }
}

/* ===== ONLINE BOOKING BUTTON ===== */
.btn-online-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #E91E8C 0%, #FF6B9D 100%);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

.btn-online-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
    background: linear-gradient(135deg, #FF6B9D 0%, #E91E8C 100%);
}

.btn-online-booking i {
    font-size: 1.2rem;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.form-note a {
    color: #E91E8C;
    font-weight: 600;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* ===== NEW CONTACT SECTION - NO FORM ===== */
.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-cta {
    background: linear-gradient(135deg, #1B3A5F 0%, #2A5A8F 100%);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(27, 58, 95, 0.3);
}

.booking-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Baloo 2', cursive;
}

.booking-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-book-big {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #E91E8C 0%, #FF6B9D 100%);
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
}

.btn-book-big:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.5);
}

.btn-book-big i {
    font-size: 1.4rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #4ECDC4;
}

.contact-card.emergency {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE5E5 100%);
    border-color: #E91E8C;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-card.emergency .contact-card-icon {
    background: linear-gradient(135deg, #E91E8C 0%, #FF6B9D 100%);
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h4 {
    font-size: 1.2rem;
    color: #1B3A5F;
    margin-bottom: 10px;
    font-family: 'Baloo 2', cursive;
}

.contact-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-card p a {
    color: #1B3A5F;
    text-decoration: none;
    font-weight: 600;
}

.contact-card p a:hover {
    color: #E91E8C;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E91E8C;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    gap: 12px;
    color: #1B3A5F;
}

@media (max-width: 768px) {
    .booking-cta {
        padding: 35px 25px;
    }
    
    .booking-cta h3 {
        font-size: 1.6rem;
    }
    
    .btn-book-big {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.booking-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.booking-modal-content {
    background: white;
    width: 100%;
    max-width: 900px;
    height: 90vh;
    max-height: 800px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
}

.booking-modal-close:hover {
    background: #E91E8C;
    color: white;
    transform: rotate(90deg);
}

.booking-modal-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px 30px;
    text-align: center;
    flex-shrink: 0;
    border-bottom: 3px solid #4ECDC4;
}

.booking-modal-logo {
    height: 60px;
    margin-bottom: 10px;
}

.booking-modal-header h3 {
    color: #1B3A5F;
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-family: 'Baloo 2', cursive;
}

.booking-modal-header p {
    color: #666;
    font-size: 0.95rem;
}

.booking-iframe-wrap {
    flex: 1;
    position: relative;
    background: #f9f9f9;
}

.booking-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Loading state for iframe */
.booking-iframe-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #E91E8C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.booking-iframe-wrap iframe {
    position: relative;
    z-index: 2;
    background: white;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 768px) {
    .booking-modal {
        padding: 10px;
    }
    
    .booking-modal-content {
        height: 95vh;
        border-radius: 20px;
    }
    
    .booking-modal-header {
        padding: 20px;
    }
    
    .booking-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .booking-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

/* ===== FOOTER LEGAL LINKS ===== */
.footer-legal-links {
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #4ECDC4;
}