/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'ADLaM Display', cursive;
    line-height: 1.6;
    color: #e2e8f0;
    overflow-x: hidden;
    background: #0f172a;
    position: relative;
}

/* Star Particles Background */
#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}



/* Section Dividers */
.section-divider {
    width: 100%;
    height: 120px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.section-divider svg {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 1;
}

.section-divider.reverse {
    transform: rotate(180deg);
}

.section-divider.wave {
    height: 100px;
}

.section-divider.arc {
    height: 80px;
}

.section-divider.spiral {
    height: 90px;
}

/* Mascot Peeking */
.mascot-peeking {
    position: fixed;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    z-index: 100;
    pointer-events: none;
    will-change: transform, right;
}

.mascot-peeking:hover {
    right: -30px;
    transform: translateY(-50%) scale(1.05);
    transition: right 0.3s ease, transform 0.3s ease;
}

    .mascot-image {
        height: 200px;
        width: auto;
        filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
    }

    /* Rotating Moon */
    .moon {
        position: absolute;
        top: -80px;
        left: -80px;
        width: 250px;
        height: 250px;
        z-index: 100;
        pointer-events: none;
    }

    .moon-surface {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(248, 250, 252, 0.7) 0%, rgba(226, 232, 240, 0.7) 50%, rgba(203, 213, 224, 0.7) 100%);
        border-radius: 50%;
        position: relative;
        animation: moonRotate 60s linear infinite;
        box-shadow: 
            0 0 20px rgba(248, 250, 252, 0.4),
            inset 0 0 20px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
    }

    @keyframes moonRotate {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    .crater {
        position: absolute;
        background: rgba(203, 213, 224, 0.8);
        border-radius: 50%;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .crater-1 {
        width: 45px;
        height: 45px;
        top: 45px;
        left: 65px;
    }

    .crater-2 {
        width: 32px;
        height: 32px;
        top: 110px;
        left: 130px;
    }

    .crater-3 {
        width: 25px;
        height: 25px;
        top: 175px;
        left: 50px;
    }

    .crater-4 {
        width: 38px;
        height: 38px;
        top: 75px;
        left: 170px;
    }

    .crater-5 {
        width: 22px;
        height: 22px;
        top: 150px;
        left: 150px;
    }

    /* Flying Rocket */
    .rocket {
        position: fixed;
        bottom: 20px;
        left: -100px;
        width: 80px;
        height: 80px;
        z-index: 200;
        animation: rocketFly 8s ease-in-out 1s forwards;
        pointer-events: none;
    }

    @keyframes rocketFly {
        0% {
            transform: translateX(0) translateY(0) rotate(-15deg);
        }
        20% {
            transform: translateX(20vw) translateY(-15vh) rotate(-10deg);
        }
        40% {
            transform: translateX(40vw) translateY(-30vh) rotate(-5deg);
        }
        60% {
            transform: translateX(60vw) translateY(-45vh) rotate(0deg);
        }
        80% {
            transform: translateX(80vw) translateY(-60vh) rotate(5deg);
        }
        100% {
            transform: translateX(120vw) translateY(-80vh) rotate(10deg);
        }
    }

    .rocket-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    }



    /* Squiggly Rocket Trail */
    .rocket-trail {
        position: absolute;
        top: 50%;
        left: -80px;
        width: 100px;
        height: 20px;
        background: none;
        animation: trailSquiggle 0.3s ease-in-out infinite;
    }

    .rocket-trail::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(ellipse 8px 4px at 10px 10px, rgba(255, 215, 0, 0.8) 0%, transparent 50%),
            radial-gradient(ellipse 6px 3px at 30px 5px, rgba(255, 165, 0, 0.6) 0%, transparent 50%),
            radial-gradient(ellipse 10px 5px at 50px 15px, rgba(255, 140, 0, 0.7) 0%, transparent 50%),
            radial-gradient(ellipse 7px 4px at 70px 8px, rgba(255, 215, 0, 0.5) 0%, transparent 50%),
            radial-gradient(ellipse 5px 3px at 90px 12px, rgba(255, 165, 0, 0.4) 0%, transparent 50%);
        animation: trailMove 0.5s ease-in-out infinite;
    }

    @keyframes trailSquiggle {
        0%, 100% {
            transform: translateY(-50%) rotate(-2deg);
        }
        25% {
            transform: translateY(-50%) rotate(3deg);
        }
        50% {
            transform: translateY(-50%) rotate(-1deg);
        }
        75% {
            transform: translateY(-50%) rotate(2deg);
        }
    }

    @keyframes trailMove {
        0% {
            opacity: 0.8;
            transform: scaleX(1);
        }
        100% {
            opacity: 0.2;
            transform: scaleX(0.7);
        }
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: relative;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}



.nav-menu a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.1);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}



.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffe9ba;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 233, 186, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #3182ce;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #334155;
    position: relative;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffe9ba;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 233, 186, 0.3);
    font-weight: bold;
}

/* Service Cards - Package Graphics */
.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 500px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .service-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    margin: 0;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.service-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-card figcaption {
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #ffe9ba;
    background: rgba(30, 41, 59, 0.9);
}

/* Premium Services Block - Become a Member CTA */
.premium-services-block {
    max-width: 560px;
    margin: 0 auto 2rem;
    padding: 2rem 1.5rem;
    text-align: center;
}

.service-list-names {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.service-list-names li {
    padding: 0.75rem 1rem;
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-list-names li:last-child {
    border-bottom: none;
}

.service-list-names li::before {
    content: "★";
    color: #ffe9ba;
    font-size: 0.9rem;
}

.subscribe-prompt {
    color: #ffe9ba;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: memberGlow 3s ease-in-out infinite, memberScale 4s ease-in-out infinite;
}

@keyframes memberGlow {
    0%, 100% {
        text-shadow: 0 0 6px rgba(59, 130, 206, 0.3), 0 0 12px rgba(30, 58, 95, 0.2);
    }
    50% {
        text-shadow: 0 0 10px rgba(59, 130, 206, 0.45), 0 0 20px rgba(30, 58, 95, 0.35);
    }
}

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

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-location {
    padding: 16px 24px;
    min-height: 48px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

@media (min-width: 600px) {
    .location-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .btn-location {
        flex: 1;
        max-width: 220px;
    }
}

.service-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.package {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.package:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.6);
}

.package:nth-child(1) {
    border: 2px solid #60a5fa;
}

.package:nth-child(1)::before {
    content: "BEST VALUE";
    position: absolute;
    top: 0;
    right: 0;
    background: #60a5fa;
    color: white;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 20px 0 20px;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.5rem;
    color: #60a5fa;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.price {
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.period {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-left: 0.5rem;
}

.monthly-price {
    font-size: 0.9rem;
    color: #94a3b8;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
}

.service-list i {
    color: #60a5fa;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

.tax-note {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Locations Section */
.locations {
    padding: 80px 0;
    background: #1e293b;
    position: relative;
}

.locations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffe9ba;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 233, 186, 0.3);
    font-weight: bold;
}

/* Store gallery slider */
.store-gallery-slider {
    position: relative;
    margin-bottom: 2.5rem;
    overflow: hidden;
    border-radius: 16px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    flex: 0 0 100%;
    margin: 0;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #ffe9ba;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, color 0.2s ease;
}

.slider-btn:hover {
    background: rgba(59, 130, 246, 0.8);
    color: white;
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-dots .dot.active {
    background: #60a5fa;
    transform: scale(1.2);
}

@media (max-width: 500px) {
    .store-gallery-slider {
        margin-bottom: 1.5rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 0.5rem;
    }

    .slider-next {
        right: 0.5rem;
    }
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.location-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.6);
}

.location-info h3 {
    color: #60a5fa;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.location-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-info i {
    color: #3182ce;
    width: 20px;
}

.location-link {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.location-info h4 {
    color: #e2e8f0;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.hours .day {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #e2e8f0;
}

.hours .day:last-child {
    border-bottom: none;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #475569;
    position: relative;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffe9ba;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 233, 186, 0.3);
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature h3 {
    color: #60a5fa;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.feature p {
    color: #94a3b8;
    line-height: 1.6;
}

/* App Section */
.app-section {
    padding: 80px 0;
    background: #667eea;
    color: white;
}

.app-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.app-text {
    flex: 1;
}

.app-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.app-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.app-features {
    list-style: none;
    margin-bottom: 2rem;
}

.app-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-features i {
    color: #fbbf24;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-btn:hover {
    transform: translateY(-2px);
}

.app-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #0f172a;
    position: relative;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffe9ba;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 233, 186, 0.3);
    font-weight: bold;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #94a3b8;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #64748b;
    position: relative;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffe9ba;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 233, 186, 0.3);
    font-weight: bold;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #e2e8f0;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #3182ce;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #cbd5e1;
}

.contact-form {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 60px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #3182ce;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2c5aa0;
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-btn-small {
    background: #3182ce;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-btn-small:hover {
    background: #2c5aa0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 23, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-logo {
        flex: none;
        justify-content: center;
    }

    .logo {
        height: 120px;
    }



    .mascot-peeking {
        display: none;
    }

    .section-divider {
        height: 60px;
    }

    .section-divider.wave {
        height: 50px;
    }

    .section-divider.arc {
        height: 40px;
    }

    .section-divider.spiral {
        height: 45px;
    }

    .moon {
        display: none;
    }

    .rocket {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 50px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .service-packages {
        grid-template-columns: 1fr;
    }

    .location-cards {
        grid-template-columns: 1fr;
    }

    .app-content {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .footer-content .footer-logo {
        justify-content: center;
    }

    .footer-content .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content .footer-section ul {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .services h2,
    .locations h2,
    .features h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .service-cards {
        gap: 1rem;
    }

    .services h2,
    .locations h2,
    .features h2,
    .about h2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        line-height: 1.2;
    }

    .services h2 lord-icon,
    .locations h2 lord-icon,
    .features h2 lord-icon,
    .about h2 lord-icon {
        margin: 0 auto -0.5rem !important;
    }

    .service-card {
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.package:hover .package-header h3 {
    color: #3182ce;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.contact-item:hover i {
    background: #2c5aa0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3182ce;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2c5aa0;
}
