/* 
   Can Punjabi & Hindi - Main Stylesheet
   Theme: Vibrant, Kid-Friendly, Premium
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Fredoka:wght@400;600&display=swap');

:root {
    /* Color Palette */
    --primary: #FF9933;
    /* Saffron/Orange */
    --primary-dark: #cc7000;
    --secondary: #00A8CC;
    /* Sky Blue */
    --accent-pink: #FF6B8B;
    --accent-yellow: #FFD93D;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --bg-warm: #FFFBF0;
    /* Cream */
    --white: #FFFFFF;

    /* Shadows */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-pop: 0 10px 0px 0px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px -5px rgba(255, 153, 51, 0.3);

    /* Sizing */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 12px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-warm);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fredoka', sans-serif;
    /* Round, friendly font for headings */
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Layout Utility --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-padding-top {
    padding-top: 80px;
}

.section-padding-bottom {
    padding-bottom: 80px;
}

.section-padding-none {
    padding: 0;
}

/* --- Header & Navigation --- */
.site-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--secondary);
}

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

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 15px rgba(255, 153, 51, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(255, 153, 51, 0.4);
}

/* --- Hero Section --- */
.hero {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.shape-1 {
    background: var(--primary);
    width: 400px;
    height: 400px;
    top: -100px;
    right: -50px;
}

.shape-2 {
    background: var(--secondary);
    width: 300px;
    height: 300px;
    bottom: 50px;
    left: -100px;
}

.shape-3 {
    background: var(--accent-pink);
    width: 200px;
    height: 200px;
    top: 40%;
    left: 30%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text h1 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-text h1 .highlight::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--accent-yellow);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.6;
    transform: rotate(-2deg);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.hero-image {
    position: relative;
}

.hero-img-placeholder {
    width: 100%;
    height: 500px;
    background: #eee;
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 0;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border-bottom: 5px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* --- Teacher Profile Redesign --- */
.teacher-profile {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 80px;
    align-items: start;
    /* Anchor to top */
    margin-bottom: 60px;
}

.teacher-extended-bio {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
    background-color: var(--bg-warm);
    padding: 60px;
    border-radius: var(--radius-lg);
}

.teacher-extended-bio h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.teacher-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    margin-bottom: 20px;
}

.teacher-info {
    padding-top: 0;
}

/* ... existing styles ... */

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    /* Fill empty space */
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--text-dark);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.profile-divider {
    height: 2px;
    background-color: var(--text-dark);
    /* Solid black */
    width: 100%;
    margin: 40px 0;
    opacity: 1;
    /* Remove transparency */
}

.bio-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* --- Awards Section --- */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.horizontal-preview {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.horizontal-preview::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.horizontal-preview {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.horizontal-preview .award-card {
    width: 160px;
    flex: 0 0 auto;
    /* Fixed width for horizontal scroll items (~30% smaller) */
    scroll-snap-align: start;
}

.horizontal-preview .award-card .award-image img {
    width: 70%;
    /* Shrink images to 70% in preview */
    height: auto;
    /* Maintain aspect ratio */
    margin: 0 auto;
    /* Center the image */
}

.horizontal-preview .award-card .award-title {
    font-size: 0.9rem;
}

.horizontal-preview .award-card .award-year {
    font-size: 0.8rem;
}

/* Specific larger grid for the dedicated Awards page */
.awards-page-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    /* ~50% bigger cards */
}

.award-card {
    text-align: center;
}

.award-image {
    width: 100%;
    aspect-ratio: 1;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.award-card:hover .award-image {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.award-title {
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Fredoka', sans-serif;
}

.award-year {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .teacher-profile {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .teacher-image img {
        height: 400px;
    }
}

/* --- Footer --- */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    border-radius: 40px 40px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* --- Mobile Nav --- */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* simple hide for now, will add JS toggle */
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* --- Courses Page Redesign --- */

.placement-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C42 100%);
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.placement-banner h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 800;
}

.placement-banner p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.course-track {
    margin-bottom: 100px;
    padding: 40px;
    border-radius: 30px;
}

/* Track Themes */
.track-reading {
    background-color: #E0F7FA;
    /* Light Blue */
    border: 2px solid #B2EBF2;
}

.track-speaking {
    background-color: #FFF3E0;
    /* Light Orange */
    border: 2px solid #FFE0B2;
}

.track-header {
    text-align: center;
    margin-bottom: 50px;
}

.track-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.track-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.level-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Level Header Block */
.level-header-block {
    padding: 20px 30px;
    text-align: center;
}

.track-reading .level-header-block {
    background-color: #00BCD4;
    /* Cyan */
    color: white;
}

.track-speaking .level-header-block {
    background-color: #FF9800;
    /* Orange */
    color: white;
}

.level-number {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 5px;
}

.level-card h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.level-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.level-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.level-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.level-features li {
    margin-bottom: 12px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.level-features li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.track-reading .level-features li i {
    background-color: #E0F7FA;
    color: #00BCD4;
}

.track-speaking .level-features li i {
    background-color: #FFF3E0;
    color: #FF9800;
}

.track-listening {
    background-color: #F3E5F5;
    /* Light Purple */
    border: 2px solid #E1BEE7;
}

.track-listening .level-header-block {
    background-color: #9C27B0;
    /* Purple */
    color: white;
}

.track-listening .level-features li i {
    background-color: #F3E5F5;
    color: #9C27B0;
}

/* --- Home Page Redesign --- */

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Stats Bar */
.stats-bar {
    background-color: var(--primary);
    padding: 30px 0;
    color: var(--white);
    margin-top: -50px;
    /* Overlap hero */
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Course Previews */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.preview-card {
    border-radius: 30px;
    padding: 40px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.preview-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.preview-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.preview-card p {
    margin-bottom: 30px;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.preview-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: inherit;
    /* Takes parent color */
    font-size: 1.2rem;
    margin: 0 auto;
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
}

.preview-card:hover .preview-link {
    transform: rotate(45deg);
}

/* Review Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--bg-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #FF5252 100%);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
}

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

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(white 2px, transparent 2px);
    background-size: 30px 30px;
}

/* --- Pricing Section --- */
.pricing-section {
    background-color: var(--accent-yellow);
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
    background-size: 40px 40px;
    padding: 100px 20px 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* --- Pricing Section --- */
.pricing-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: end;
}

.pricing-card-pro {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card-pro.popular {
    border-color: var(--accent-pink);
    transform: scale(1.05);
    /* Make it slightly larger */
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card-pro.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .pricing-card-pro.popular {
        transform: scale(1);
    }

    .pricing-card-pro.popular:hover {
        transform: translateY(-10px);
    }
}

/* --- Animations & Doodle Bees --- */

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items if needed */
.features-grid .feature-card:nth-child(2) {
    transition-delay: 0.1s;
}

.features-grid .feature-card:nth-child(3) {
    transition-delay: 0.2s;
}

.features-grid .feature-card:nth-child(4) {
    transition-delay: 0.3s;
}

.features-grid .feature-card:nth-child(5) {
    transition-delay: 0.4s;
}

.features-grid .feature-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* Doodle Bees */
.doodle-bee {
    position: fixed;
    /* Fixed to viewport so they fly over the screen */
    left: -300px;
    /* Start off-screen left */
    width: 180px;
    height: 60px;
    z-index: 9999;
    /* Ensure they are above everything */
    pointer-events: none;
    /* Let user click through them */
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.15));
}

.doodle-bee svg {
    width: 100%;
    height: 100%;
    /* Flip the bee to face right because the SVG was drawn facing left initially */
    transform: scaleX(-1);
}

/* Trail animation */
.bee-trail {
    animation: dashTrail 1s linear infinite;
}

@keyframes dashTrail {
    to {
        stroke-dashoffset: -24;
    }
}

/* Wing flapping animation */
.bee-wing-back {
    animation: flapBack 0.15s ease-in-out infinite alternate;
    transform-origin: 50px 40px;
}

.bee-wing-front {
    animation: flapFront 0.15s ease-in-out infinite alternate;
    transform-origin: 50px 45px;
}

@keyframes flapBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(30deg);
    }
}

@keyframes flapFront {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(40deg);
    }
}

/* Flying path animations */
@keyframes flyAcross {
    0% {
        left: -300px;
    }

    100% {
        left: calc(100vw + 200px);
    }
}

@keyframes floatUpAndDown {
    0% {
        transform: scale(var(--bee-scale)) translateY(0) rotate(-5deg);
    }

    50% {
        transform: scale(var(--bee-scale)) translateY(-40px) rotate(5deg);
    }

    100% {
        transform: scale(var(--bee-scale)) translateY(0) rotate(-5deg);
    }
}

/* --- Modal Utilities --- */
body.modal-open {
    overflow: hidden;
}

/* --- Booking Modal --- */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

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

.booking-modal-content {
    background: transparent;
    width: 90%;
    max-width: 650px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 0;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

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

.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
    z-index: 10;
}

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

.booking-modal-header {
    display: none;
}

.booking-modal-header h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.booking-modal-header p {
    color: var(--text-light);
}

.booking-modal-body {
    width: 100%;
    height: 85vh;
    max-height: 900px;
    background: transparent;
    border-radius: var(--radius-lg);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

/* If user adds an iframe later */
.booking-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
}

@media (max-width: 600px) {
    .booking-modal-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}