  /* ---------- RESET & BASE ---------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Nunito', sans-serif;
            background: #fffaf5;
            color: #2d3e2b;
            scroll-behavior: smooth;
            line-height: 1.5;
        }

        .is-preload * {
            animation: none !important;
            transition: none !important;
        }

        /* floating whatsapp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 25px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .whatsapp-float:hover {
            transform: scale(1.08);
            background: #128C7E;
            color: white;
        }
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            background: #2d3e2b;
            color: white;
            padding: 6px 12px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s;
        }
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
        }

        /* wrapper */
        #wrapper {
            max-width: 1400px;
            margin: 0 auto;
            background: #fffaf5;
        }

        /* navbar */
        #navbar {
            position: sticky;
            top: 0;
            background: #ffffffdd;
            backdrop-filter: blur(12px);
            z-index: 999;
            border-bottom: 2px solid #ffe0b5;
            padding: 0.75rem 2rem;
        }
        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1280px;
            margin: 0 auto;
        }
        .nav-brand {
            font-family: 'Fredoka One', cursive;
            font-size: 1.8rem;
            text-decoration: none;
        }
        .brand-soma { color: #f4a261; }
        .brand-na { color: #e76f51; }
        .brand-mimi { color: #2a9d8f; }
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 700;
            color: #2d3e2b;
            transition: 0.2s;
            font-size: 1.1rem;
        }
        .nav-links a:hover { color: #e76f51; }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: #2d3e2b;
            border-radius: 5px;
        }

        /* hero */
        #hero {
            min-height: 90vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }
        .number-bubble {
            position: absolute;
            font-size: 2rem;
            font-weight: 800;
            color: #f4e1c1;
            animation: float 12s infinite;
            font-family: 'Fredoka One', cursive;
        }
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg);}
            100% { transform: translateY(-30px) rotate(5deg);}
        }
        .nb-1 { top: 12%; left: 5%; animation-duration: 14s; }
        .nb-2 { top: 20%; right: 8%; animation-duration: 16s; }
        .nb-3 { bottom: 15%; left: 10%; font-size: 3rem; }
        .nb-4 { bottom: 30%; right: 15%; font-size: 2.5rem; }
        .nb-5 { top: 40%; left: 15%; }
        .nb-6 { top: 70%; right: 20%; }
        .nb-7 { top: 15%; left: 20%; }
        .nb-8 { bottom: 20%; left: 25%; }
        .nb-9 { top: 50%; right: 5%; }
        .nb-10 { bottom: 40%; left: 40%; }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }
        .hero-eyebrow {
            font-size: 1.2rem;
            font-weight: 600;
            color: #e76f51;
            letter-spacing: 1px;
        }
        .hero-title {
            font-family: 'Fredoka One', cursive;
            font-size: 4rem;
            margin: 1rem 0;
        }
        .hero-soma { color: #f4a261; }
        .hero-na { color: #e76f51; }
        .hero-mimi { color: #2a9d8f; }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #4a5b44;
        }
        .btn {
            display: inline-flex;
            gap: 10px;
            align-items: center;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.2s;
            margin: 0 8px;
        }
        .btn-primary {
            background: #f4a261;
            color: white;
        }
        .btn-primary:hover { background: #e76f51; transform: translateY(-3px);}
        .btn-secondary {
            background: #2a9d8f;
            color: white;
        }
        .btn-secondary:hover { background: #21867a; transform: translateY(-3px);}
        .hero-scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .scroll-dot {
            width: 6px;
            height: 6px;
            background: #e76f51;
            border-radius: 50%;
            margin-bottom: 6px;
        }
        .scroll-line {
            width: 2px;
            height: 25px;
            background: #e76f51;
        }

        /* sections common */
        section {
            padding: 5rem 2rem;
        }
        .section-inner {
            max-width: 1280px;
            margin: 0 auto;
        }
        .section-badge {
            display: inline-block;
            background: #ffe0b5;
            padding: 6px 18px;
            border-radius: 40px;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #b45f2b;
        }
        .section-title {
            font-size: 2.6rem;
            font-family: 'Fredoka One', cursive;
            color: #2d3e2b;
            margin-bottom: 0.5rem;
        }
        .section-subtitle {
            font-size: 1.2rem;
            color: #6b7c64;
            margin-bottom: 3rem;
        }

        /* intro grid */
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        .teacher-profile-card {
            background: white;
            border-radius: 32px;
            padding: 2rem;
            box-shadow: 0 12px 24px rgba(0,0,0,0.05);
        }
        .teacher-image-wrap {
            position: relative;
            margin-bottom: 1.5rem;
        }
        .teacher-photo {
            width: 100%;
            border-radius: 28px;
            background: #f0e2d0;
            height: auto;
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }
        .teacher-badge-pill {
            position: absolute;
            bottom: -12px;
            left: 20px;
            background: #f4a261;
            color: white;
            padding: 5px 16px;
            border-radius: 40px;
            font-weight: bold;
        }
        .teacher-name {
            font-size: 1.8rem;
            color: #2a9d8f;
        }
        .teacher-stats {
            display: flex;
            gap: 1rem;
            margin: 1.5rem 0;
            background: #fff1e0;
            padding: 12px;
            border-radius: 60px;
            justify-content: space-around;
        }
        .stat-number {
            font-weight: 800;
            font-size: 1.4rem;
            color: #e76f51;
        }
        .teacher-bio {
            margin-bottom: 1rem;
            color: #3a4d36;
        }
        .intro-video-wrap {
            background: #fff3e6;
            border-radius: 32px;
            padding: 1.8rem;
        }
        .video-lazy-container {
            position: relative;
            background: #d9c7ae;
            border-radius: 24px;
            overflow: hidden;
            margin: 1rem 0;
        }
        .video-poster {
            position: relative;
            cursor: pointer;
        }
        .video-poster-img {
            width: 100%;
            display: block;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .video-play-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 8px;
        }
        .play-btn-circle {
            background: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: #e76f51;
        }
        .hidden-video {
            display: none;
            width: 100%;
            border-radius: 24px;
        }
        .video-active {
            display: block;
        }
        .intro-teaches-list {
            margin-top: 1.5rem;
            list-style: none;
        }
        .intro-teaches-list li {
            margin: 0.7rem 0;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        /* videos grid */
        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .video-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 8px 18px rgba(0,0,0,0.05);
            transition: 0.2s;
        }
        .video-card-number-tag {
            position: absolute;
            background: #f4a261;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 12px;
            z-index: 2;
        }
        .video-card-info {
            padding: 1rem;
        }
        .videos-more-cta {
            margin: 3rem 0;
        }
        .more-cta-card {
            background: #ffe9d4;
            border-radius: 40px;
            padding: 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        .btn-whatsapp {
            background: #25D366;
            color: white;
        }

        /* bookings pricing */
        .booking-value-strip {
            display: flex;
            justify-content: center;
            gap: 2rem;
            background: #fff1e0;
            padding: 1rem;
            border-radius: 60px;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        .pricing-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }
        .pricing-card {
            background: white;
            border-radius: 32px;
            flex: 1;
            min-width: 280px;
            padding: 1.8rem;
            box-shadow: 0 12px 28px rgba(0,0,0,0.05);
            transition: transform 0.2s;
        }
        .pricing-featured {
            border: 3px solid #f4a261;
            position: relative;
        }
        .pricing-popular-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: #f4a261;
            padding: 4px 16px;
            border-radius: 40px;
            color: white;
            font-weight: bold;
        }
        .price-amount {
            font-size: 3rem;
            font-weight: 800;
            color: #2a9d8f;
        }
        .price-savings-pill {
            background: #d9f0ec;
            padding: 6px;
            border-radius: 40px;
            font-size: 0.85rem;
            text-align: center;
            margin: 1rem 0;
        }
        .pricing-features {
            list-style: none;
            margin: 1.5rem 0;
        }
        .pricing-features li {
            margin: 0.7rem 0;
            display: flex;
            gap: 8px;
        }
        .btn-booking {
            width: 100%;
            justify-content: center;
        }
        .group-advantage-callout {
            background: #e9f5f2;
            padding: 1.5rem;
            border-radius: 40px;
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
        }

        /* contact */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .contact-cards-wrap {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .contact-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 60px;
            text-decoration: none;
            transition: 0.2s;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }
        .contact-card-icon {
            font-size: 2rem;
        }
        .quick-message-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 1rem 0;
        }
        .quick-msg-btn {
            background: #f4a26120;
            padding: 10px;
            border-radius: 40px;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            color: #2d3e2b;
        }
        .social-icons-row {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        .social-icon-btn {
            background: #ffe0b5;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #2d3e2b;
            text-decoration: none;
        }
        footer {
            background: #2d3e2b;
            color: white;
            text-align: center;
            padding: 3rem 1rem;
            border-radius: 40px 40px 0 0;
        }
        .footer-brand {
            font-family: 'Fredoka One', cursive;
            font-size: 2rem;
        }

        @media (max-width: 860px) {
            .intro-grid, .contact-grid {
                grid-template-columns: 1fr;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                padding: 2rem;
                box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-toggle {
                display: flex;
            }
            .hero-title {
                font-size: 2.5rem;
            }
        }

        /* ===================== ENHANCED HERO SECTION STYLES ===================== */

/* Hero section base */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fffaf5 0%, #fff3e6 100%);
    overflow: hidden;
}

/* Animated background gradient */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(244, 162, 97, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(42, 157, 143, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: subtlePulse 8s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Enhanced number bubbles */
.number-bubble {
    position: absolute;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 800;
    font-family: 'Fredoka One', cursive;
    color: rgba(244, 162, 97, 0.2);
    pointer-events: none;
    transition: all 0.3s ease;
    animation: floatBubble 8s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.number-bubble:hover {
    color: rgba(244, 162, 97, 0.4);
    transform: scale(1.1);
}

@keyframes floatBubble {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) translateX(-5px) rotate(-3deg);
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

/* Individual bubble animations with different durations */
.nb-1 { top: 12%; left: 5%; animation-duration: 12s; animation-delay: 0s; font-size: 2.5rem; }
.nb-2 { top: 20%; right: 8%; animation-duration: 14s; animation-delay: 1s; font-size: 2rem; }
.nb-3 { bottom: 15%; left: 10%; animation-duration: 16s; animation-delay: 2s; font-size: 3rem; }
.nb-4 { bottom: 25%; right: 12%; animation-duration: 11s; animation-delay: 0.5s; font-size: 2.2rem; }
.nb-5 { top: 40%; left: 15%; animation-duration: 13s; animation-delay: 1.5s; font-size: 1.8rem; }
.nb-6 { top: 70%; right: 18%; animation-duration: 15s; animation-delay: 0.8s; font-size: 2rem; }
.nb-7 { top: 15%; left: 20%; animation-duration: 17s; animation-delay: 2.2s; font-size: 2.8rem; }
.nb-8 { bottom: 30%; left: 25%; animation-duration: 10s; animation-delay: 1.2s; font-size: 2.4rem; }
.nb-9 { top: 50%; right: 5%; animation-duration: 14s; animation-delay: 0.3s; font-size: 2.6rem; }
.nb-10 { bottom: 40%; left: 40%; animation-duration: 18s; animation-delay: 1.8s; font-size: 3.2rem; }

/* Hero content animations */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 700;
    color: #e76f51;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: slideInLeft 0.8s ease-out;
    background: linear-gradient(135deg, #e76f51, #f4a261);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin: 1rem 0;
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-soma, .hero-na, .hero-mimi {
    display: inline-block;
    transition: transform 0.3s ease;
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-soma { 
    color: #f4a261;
    animation-delay: 0.1s;
}
.hero-na { 
    color: #e76f51;
    animation-delay: 0.2s;
}
.hero-mimi { 
    color: #2a9d8f;
    animation-delay: 0.3s;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.hero-soma:hover, .hero-na:hover, .hero-mimi:hover {
    transform: translateY(-5px) scale(1.05);
    cursor: default;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.3rem);
    margin-bottom: 2rem;
    color: #4a5b44;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.6;
}

/* Enhanced CTA buttons */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: white;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 162, 97, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #2a9d8f, #21867a);
    color: white;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

/* Scroll indicator animation */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    z-index: 10;
}

.hero-scroll-indicator:hover {
    opacity: 0.7;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: #e76f51;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #e76f51, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* Parallax effect for bubbles on scroll */
@media (min-width: 768px) {
    .number-bubble {
        will-change: transform;
        transition: transform 0.1s linear;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-cta-group {
        gap: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
    }
}

/* Loading animation removal */
.is-preload .hero-content,
.is-preload .hero-eyebrow,
.is-preload .hero-title,
.is-preload .hero-subtitle,
.is-preload .hero-cta-group,
.is-preload .hero-scroll-indicator {
    animation: none;
    opacity: 1;
}

/* Hover effect for bubbles - interactive */
@media (hover: hover) {
    .number-bubble {
        transition: all 0.3s ease;
    }
    
    .number-bubble:hover {
        transform: scale(1.2) rotate(10deg);
        color: rgba(244, 162, 97, 0.6);
        cursor: pointer;
    }
}

/* Glow effect on title */
.hero-title {
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f4a261, #e76f51, #2a9d8f, transparent);
    border-radius: 3px;
    animation: glowLine 3s ease-in-out infinite;
}

@keyframes glowLine {
    0%, 100% {
        width: 50px;
        opacity: 0.5;
    }
    50% {
        width: 150px;
        opacity: 1;
    }
}



/* ===================== INTRODUCTION SECTION STYLES ===================== */

#intro {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e8 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative elements for intro section */
#intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#intro::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Intro Grid Layout */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Teacher Profile Card */
.teacher-profile-card {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.teacher-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f4a261, #e76f51, #2a9d8f);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.teacher-profile-card:hover::before {
    transform: scaleX(1);
}

.teacher-profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
}

/* Teacher Image */
.teacher-image-wrap {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 30px;
    overflow: hidden;
}

.teacher-photo {
    width: 100%;
    border-radius: 30px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.teacher-profile-card:hover .teacher-photo {
    transform: scale(1.05);
}

.teacher-badge-pill {
    position: absolute;
    bottom: -12px;
    left: 20px;
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(244, 162, 97, 0.3);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(244, 162, 97, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(244, 162, 97, 0.6);
    }
}

/* Teacher Stats */
.teacher-stats {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, #fff5e8, #fff0e0);
    padding: 1rem;
    border-radius: 60px;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-weight: 800;
    font-size: 1.6rem;
    color: #e76f51;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: #6b7c64;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    background: #e0d4c4;
}

/* Teacher Bio */
.teacher-name {
    font-size: 1.8rem;
    color: #2a9d8f;
    margin-bottom: 0.5rem;
    font-family: 'Fredoka One', cursive;
}

.teacher-tagline {
    color: #f4a261;
    font-weight: 600;
    margin-bottom: 1rem;
}

.teacher-bio {
    color: #4a5b44;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.teacher-contact-strip {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.teacher-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f4ef;
    border-radius: 40px;
    text-decoration: none;
    color: #2d3e2b;
    font-weight: 600;
    transition: all 0.3s ease;
}

.teacher-contact-link:hover {
    background: #f4a261;
    color: white;
    transform: translateY(-2px);
}

/* Intro Video Wrap */
.intro-video-wrap {
    background: linear-gradient(135deg, #fff5e8, #fff0e0);
    border-radius: 40px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.intro-video-wrap:hover {
    transform: translateY(-5px);
}

.intro-video-wrap h3 {
    font-size: 1.5rem;
    color: #2d3e2b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-video-desc {
    color: #6b7c64;
    margin-bottom: 1.5rem;
}

/* Video Container */
.video-lazy-container {
    position: relative;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    margin: 1rem 0;
}

.video-poster {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-poster-img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-lazy-container:hover .video-poster-img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.video-lazy-container:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-btn-circle {
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #e76f51;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.video-lazy-container:hover .play-btn-circle {
    transform: scale(1.1);
    background: #f4a261;
    color: white;
}

.play-label {
    color: white;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.hidden-video {
    display: none;
    width: 100%;
    border-radius: 24px;
}

.video-active {
    display: block !important;
}

/* Intro Teaches List */
.intro-teaches-list {
    margin-top: 1.5rem;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.intro-teaches-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.intro-teaches-list li:hover {
    transform: translateX(8px);
    background: #fff5e8;
}

.intro-teaches-list li i {
    color: #f4a261;
    font-size: 1.2rem;
    width: 30px;
}

/* ===================== VIDEOS SECTION STYLES ===================== */

#videos {
    background: #fffaf5;
    position: relative;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.video-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.video-card-number-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: pulseNumber 2s ease-in-out infinite;
}

@keyframes pulseNumber {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.video-card .video-lazy-container {
    margin: 0;
    border-radius: 0;
}

.video-card-info {
    padding: 1.5rem;
}

.video-card-title {
    font-size: 1.3rem;
    color: #2a9d8f;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.video-card-desc {
    color: #6b7c64;
    line-height: 1.5;
}

/* More Videos CTA */
.videos-more-cta {
    margin: 4rem 0 2rem;
}

.more-cta-card {
    background: linear-gradient(135deg, #fff5e8, #ffe9d4);
    border-radius: 50px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.more-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.1), transparent);
    border-radius: 50%;
}

.more-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.more-cta-icon {
    font-size: 3rem;
    color: #f4a261;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.more-cta-text {
    flex: 1;
}

.more-cta-title {
    font-size: 1.5rem;
    color: #2d3e2b;
    margin-bottom: 0.5rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Loading Spinner for Videos */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #f4a261;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 10;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Error Message */
.video-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 10;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .more-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .teacher-stats {
        flex-direction: column;
        gap: 1rem;
        border-radius: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .video-card-number-tag {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* ===================== FIXED VIDEO PLAYER SIZING ===================== */

/* Video container - maintains aspect ratio */
.video-lazy-container {
    position: relative;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    margin: 1rem 0;
    width: 100%;
    max-width: 100%;
}

/* Poster image container */
.video-poster {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.video-poster-img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Video element - critical fix for size */
.lazy-video {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    display: none;
    border-radius: 24px;
    object-fit: contain;
    background: #000;
}

/* When video becomes active */
.video-active {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
}

/* Ensure video player controls are within bounds */
video::-webkit-media-controls {
    transform: scale(1);
}

video::-webkit-media-controls-panel {
    padding: 0 10px;
}

/* Container for the video wrap */
.intro-video-wrap {
    background: linear-gradient(135deg, #fff5e8, #fff0e0);
    border-radius: 40px;
    padding: 2rem;
    transition: transform 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}

/* Make sure the video doesn't overflow its container */
.intro-video-wrap .video-lazy-container {
    max-width: 100%;
    overflow: hidden;
    border-radius: 24px;
}

/* For video cards */
.video-card .video-lazy-container {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

.video-card .lazy-video,
.video-card .video-active {
    width: 100% !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Loading spinner positioning */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #f4a261;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 10;
}

/* Error message styling */
.video-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    z-index: 10;
    font-size: 0.9rem;
    white-space: nowrap;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Play overlay stays centered */
.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    border-radius: 24px;
}

/* Play button circle */
.play-btn-circle {
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #e76f51;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .intro-video-wrap {
        padding: 1.5rem;
    }
    
    .play-btn-circle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .video-error {
        white-space: normal;
        max-width: 90%;
        font-size: 0.8rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .play-btn-circle {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .play-label {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
}


/* ===================== VIDEOS SECTION ENHANCED STYLES ===================== */

#videos {
    background: linear-gradient(135deg, #fffaf5 0%, #fff5e8 100%);
    position: relative;
    padding: 5rem 2rem;
}

/* Section header animations */
#videos .section-badge {
    animation: slideInLeft 0.6s ease-out;
}

#videos .section-title {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

#videos .section-subtitle {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Video Card */
.video-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: fadeInUp 0.6s ease-out backwards;
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }
.video-card:nth-child(4) { animation-delay: 0.4s; }

.video-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Number Tag */
.video-card-number-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: pulseNumber 2s ease-in-out infinite;
}

@keyframes pulseNumber {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(244, 162, 97, 0.4);
    }
}

/* Video Container */
.video-card .video-lazy-container {
    position: relative;
    background: #1a1a1a;
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

/* Poster Image */
.video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-lazy-container:hover .video-poster-img {
    transform: scale(1.05);
}

/* Play Overlay */
.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.video-lazy-container:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.play-btn-circle {
    background: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #e76f51;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.video-lazy-container:hover .play-btn-circle {
    transform: scale(1.1);
    background: #f4a261;
    color: white;
}

.play-label {
    color: white;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Video Element */
.lazy-video {
    width: 100% !important;
    height: 100% !important;
    display: none;
    object-fit: cover;
    background: #000;
}

.video-active {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* Video Card Info */
.video-card-info {
    padding: 1.5rem;
}

.video-card-title {
    font-size: 1.3rem;
    color: #2a9d8f;
    margin-bottom: 0.5rem;
    font-weight: 800;
    font-family: 'Fredoka One', cursive;
}

.video-card-desc {
    color: #6b7c64;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* More Videos CTA */
.videos-more-cta {
    margin: 4rem 0 1rem;
}

.more-cta-card {
    background: linear-gradient(135deg, #fff5e8, #ffe9d4);
    border-radius: 50px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(244, 162, 97, 0.3);
}

.more-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.15), transparent);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.more-cta-card:hover::before {
    transform: scale(1.2);
}

.more-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(244, 162, 97, 0.5);
}

.more-cta-icon {
    font-size: 3rem;
    color: #f4a261;
    animation: bounce 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.more-cta-text {
    flex: 1;
}

.more-cta-title {
    font-size: 1.5rem;
    color: #2d3e2b;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.more-cta-desc {
    color: #6b7c64;
    line-height: 1.6;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Loading Spinner */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #f4a261;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 20;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Error Message */
.video-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    z-index: 20;
    font-size: 0.85rem;
    display: flex;
    gap: 10px;
    align-items: center;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .more-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .more-cta-icon {
        font-size: 2.5rem;
    }
    
    .play-btn-circle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .play-label {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .video-card-number-tag {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .video-card-title {
        font-size: 1.1rem;
    }
    
    .video-card-desc {
        font-size: 0.85rem;
    }
    
    .more-cta-title {
        font-size: 1.2rem;
    }
    
    .more-cta-desc {
        font-size: 0.9rem;
    }
    
    .btn-whatsapp {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* ===================== BOOKINGS SECTION STYLES ===================== */

#bookings {
    background: linear-gradient(135deg, #fffaf5 0%, #fff3e6 100%);
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
}

/* Decorative Elements */
#bookings::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#bookings::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Value Proposition Strip */
.booking-value-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 1.2rem 2rem;
    border-radius: 80px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #2d3e2b;
}

.value-item i {
    color: #f4a261;
    font-size: 1.2rem;
}

.value-divider {
    width: 1px;
    height: 30px;
    background: #e0d4c4;
}

/* Pricing Grid */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 32px;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Featured Card */
.pricing-featured {
    border: 2px solid #f4a261;
    transform: scale(1.02);
}

.pricing-featured:hover {
    transform: translateY(-12px) scale(1.02);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: white;
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(244, 162, 97, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-popular-badge i {
    font-size: 0.8rem;
}

/* Card Header */
.pricing-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    background: linear-gradient(135deg, #fff5e8, #ffe9d4);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #f4a26120, #e76f5120);
}

.pricing-icon i {
    font-size: 2.5rem;
    color: #f4a261;
}

.pricing-plan-name {
    font-size: 1.6rem;
    color: #2a9d8f;
    margin-bottom: 0.5rem;
    font-family: 'Fredoka One', cursive;
}

.pricing-plan-desc {
    color: #6b7c64;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Price Display */
.price-display {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f4ef;
    border-radius: 60px;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6b7c64;
    vertical-align: top;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e76f51;
    margin: 0 5px;
}

.price-period {
    font-size: 0.85rem;
    color: #6b7c64;
}

/* Savings Pill */
.price-savings-pill {
    background: linear-gradient(135deg, #e9f5f2, #d9f0ec);
    padding: 8px 12px;
    border-radius: 40px;
    font-size: 0.85rem;
    text-align: center;
    margin: -0.5rem 0 1rem;
    color: #2a9d8f;
    font-weight: 600;
}

/* Features List */
.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.pricing-features li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #4a5b44;
}

.pricing-features li i {
    color: #f4a261;
    font-size: 1rem;
    width: 20px;
}

/* Booking Button */
.booking-action {
    margin-top: 1.5rem;
}

.btn-booking {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.btn-booking-single {
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: white;
}

.btn-booking-group {
    background: linear-gradient(135deg, #2a9d8f, #21867a);
    color: white;
}

.btn-booking-school {
    background: linear-gradient(135deg, #e76f51, #d45a3a);
    color: white;
}

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Group Advantage Callout */
.group-advantage-callout {
    background: linear-gradient(135deg, #e9f5f2, #d9f0ec);
    padding: 1.8rem;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.advantage-icon {
    font-size: 2.5rem;
    color: #2a9d8f;
    flex-shrink: 0;
}

.advantage-text {
    flex: 1;
    line-height: 1.6;
    color: #2d3e2b;
}

.advantage-text strong {
    color: #e76f51;
    font-size: 1.1rem;
}

.advantage-calculator {
    flex-shrink: 0;
}

.calc-toggle {
    background: white;
    border: 2px solid #2a9d8f;
    color: #2a9d8f;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.calc-toggle:hover {
    background: #2a9d8f;
    color: white;
    transform: translateY(-2px);
}

/* Savings Calculator */
.savings-calculator {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease-out;
    position: relative;
    z-index: 2;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.savings-calculator h4 {
    color: #2a9d8f;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.calculator-input {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.calculator-input label {
    font-weight: 600;
    color: #2d3e2b;
}

.calculator-input input {
    padding: 10px 15px;
    border: 2px solid #e0d4c4;
    border-radius: 40px;
    width: 100px;
    font-size: 1rem;
    text-align: center;
}

.calc-btn {
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.calc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 162, 97, 0.3);
}

.calculator-result {
    background: #f8f4ef;
    padding: 1rem;
    border-radius: 24px;
}

.calculator-result p {
    margin: 0.5rem 0;
    color: #4a5b44;
}

.total-savings {
    font-size: 1.2rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 2px solid #e0d4c4;
}

.total-savings strong {
    color: #e76f51;
    font-size: 1.3rem;
}

/* Payment Note */
.payment-note {
    background: #fff5e8;
    padding: 1rem 1.5rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0;
    color: #6b7c64;
    font-size: 0.9rem;
    border-left: 4px solid #f4a261;
}

.payment-note i {
    color: #f4a261;
    font-size: 1.2rem;
}

.payment-note strong {
    color: #2a9d8f;
}

/* Testimonials Strip */
.testimonials-strip {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.testimonial-item {
    background: white;
    padding: 1.5rem;
    border-radius: 28px;
    flex: 1;
    min-width: 280px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-item i {
    color: #f4a261;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.testimonial-item p {
    font-style: italic;
    color: #4a5b44;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-item span {
    font-size: 0.85rem;
    color: #6b7c64;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .pricing-card {
        min-width: 280px;
    }
    
    .pricing-featured {
        transform: scale(1);
    }
    
    .pricing-featured:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .booking-value-strip {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 40px;
        gap: 1rem;
    }
    
    .value-divider {
        display: none;
    }
    
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
    
    .group-advantage-callout {
        flex-direction: column;
        text-align: center;
    }
    
    .calculator-input {
        flex-direction: column;
        align-items: stretch;
    }
    
    .calculator-input input {
        width: 100%;
    }
    
    .testimonials-strip {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1.5rem;
        min-width: auto;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-icon {
        width: 60px;
        height: 60px;
    }
    
    .pricing-icon i {
        font-size: 2rem;
    }
}



/* ===================== CONTACT SECTION STYLES ===================== */

#contact {
    background: linear-gradient(135deg, #fffaf5 0%, #fff3e6 100%);
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
}

/* Decorative Background */
#contact::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatBg 20s ease-in-out infinite;
}

#contact::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatBg 25s ease-in-out infinite reverse;
}

@keyframes floatBg {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(5deg);
    }
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Contact Cards */
.contact-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: white;
    padding: 1.2rem 1.8rem;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #fff5e8, #ffe9d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.05);
}

.contact-card-icon i {
    font-size: 1.6rem;
    color: #f4a261;
}

.contact-card-info {
    flex: 1;
}

.contact-card-label {
    display: block;
    font-size: 0.8rem;
    color: #6b7c64;
    margin-bottom: 0.2rem;
}

.contact-card-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3e2b;
}

.contact-card-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.contact-card-arrow i {
    color: #f4a261;
    font-size: 1.2rem;
}

/* Card Specific Colors */
.contact-phone:hover .contact-card-icon i { color: #e76f51; }
.contact-whatsapp:hover .contact-card-icon i { color: #25D366; }
.contact-email:hover .contact-card-icon i { color: #f4a261; }
.contact-facebook:hover .contact-card-icon i { color: #1877f2; }
.contact-tiktok:hover .contact-card-icon i { color: #000000; }

/* Quick Message Panel */
.contact-quick-message {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-quick-message:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.quick-msg-title {
    font-size: 1.5rem;
    color: #2a9d8f;
    margin-bottom: 0.5rem;
    font-family: 'Fredoka One', cursive;
}

.quick-msg-title i {
    margin-right: 10px;
}

.quick-msg-desc {
    color: #6b7c64;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.quick-message-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quick-msg-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8f4ef, #fff5e8);
    padding: 1rem 1.5rem;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(244, 162, 97, 0.2);
}

.quick-msg-btn:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, #f4a261, #e76f51);
    border-color: transparent;
}

.quick-msg-btn:hover span,
.quick-msg-btn:hover i {
    color: white;
}

.quick-msg-btn span {
    flex: 1;
    margin-left: 1rem;
    font-weight: 600;
    color: #2d3e2b;
    transition: color 0.3s ease;
}

.quick-msg-btn i:first-child {
    font-size: 1.3rem;
    color: #f4a261;
    transition: color 0.3s ease;
}

.quick-msg-btn i:last-child {
    color: #6b7c64;
    transition: color 0.3s ease;
}

/* Business Hours */
.business-hours {
    background: #fff5e8;
    border-radius: 24px;
    padding: 1.2rem;
    margin-bottom: 2rem;
}

.business-hours h4 {
    color: #2a9d8f;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.business-hours h4 i {
    margin-right: 8px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-item .day {
    font-weight: 600;
    color: #2d3e2b;
}

.hours-item .time {
    color: #6b7c64;
}

/* Social Follow Strip */
.social-follow-strip {
    text-align: center;
}

.social-follow-label {
    color: #6b7c64;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-icons-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5e8, #ffe9d4);
    color: #f4a261;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: white;
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, #2a9d8f, #21867a);
    border-radius: 60px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.newsletter-signup::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.newsletter-content i {
    font-size: 2.5rem;
    color: white;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    width: 250px;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form button {
    background: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    color: #2a9d8f;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===================== FOOTER STYLES ===================== */

#footer {
    background: linear-gradient(135deg, #2d3e2b, #1f2e1d);
    color: white;
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f4a261, #e76f51, #2a9d8f, #f4a261);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-soma { color: #f4a261; }
.footer-brand .brand-na { color: #e76f51; }
.footer-brand .brand-mimi { color: #2a9d8f; }

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.footer-mission {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-col h4 {
    color: #f4a261;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f4a261;
    border-radius: 2px;
}

.footer-links,
.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact-list li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: #f4a261;
    transform: translateX(5px);
}

.footer-links a i,
.footer-contact-list a i {
    font-size: 0.8rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-list li i {
    width: 20px;
    color: #f4a261;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: #f4a261;
    transform: translateY(-3px);
}

.footer-credit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.developer-credit {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.developer-credit i {
    color: #ff6b6b;
}

.developer-phone {
    color: #f4a261;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 2rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1rem 1.5rem;
    }
    
    .contact-card-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-card-icon i {
        font-size: 1.3rem;
    }
    
    .quick-msg-btn span {
        font-size: 0.9rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a,
    .footer-contact-list li {
        justify-content: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-card {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        border-radius: 30px;
    }
    
    .contact-card-arrow {
        display: none;
    }
    
    .quick-msg-btn {
        padding: 0.8rem 1rem;
    }
    
    .quick-msg-btn span {
        font-size: 0.85rem;
        margin-left: 0.5rem;
    }
}