* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #051A2E;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

.main-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Stunning aurora/starry landscape background to match reference */
    background-image: url('https://images.unsplash.com/photo-1531366936337-778508f7ce16?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.main-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 28, 54, 0.8) 0%, rgba(10, 137, 166, 0.4) 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.header {
    padding: 30px 0;
}

.logo {
    max-width: 150px;
    display: block;
    height: auto;
}

.hero-section {
    padding: 20px 0 60px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: #FE7808;
}

.hero-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FE7808;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(254, 120, 8, 0.4);
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.cta-button:hover {
    background-color: #ff8c2b;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(254, 120, 8, 0.5);
}

.hero-images {
    flex: 1;
    position: relative;
    height: 550px;
    max-width: 550px;
}

.flight-path {
    position: absolute;
    top: -50px;
    left: -20px;
    width: 120%;
    height: 120%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}

.polaroid {
    position: absolute;
    background-color: #fff;
    padding: 10px 10px 40px 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    transition: transform 0.4s ease, z-index 0s;
}

.polaroid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img1 {
    width: 220px;
    height: 250px;
    top: 20px;
    left: 10px;
    transform: rotate(-6deg);
    z-index: 2;
}

.img2 {
    width: 240px;
    height: 220px;
    top: 0px;
    right: 20px;
    transform: rotate(5deg);
    z-index: 3;
}

.img3 {
    width: 230px;
    height: 260px;
    bottom: 20px;
    left: 40px;
    transform: rotate(4deg);
    z-index: 4;
}

.img4 {
    width: 230px;
    height: 230px;
    bottom: 40px;
    right: 20px;
    transform: rotate(-5deg);
    z-index: 5;
}

.polaroid:hover {
    transform: scale(1.08) rotate(0deg) !important;
    z-index: 10 !important;
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cards-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.glass-card {
    background: rgba(10, 30, 60, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 20px;
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(10, 30, 60, 0.6);
}

.card-icon {
    font-size: 2.2rem;
    color: #FE7808;
    margin-bottom: 15px;
}

.glass-card p {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}

.mega-offer {
    margin-top: 30px;
}

.mega-offer p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    font-weight: 500;
}

/* ABOUT SECTION */
.about-section {
    padding: 40px 0 100px 0;
}

.glass-card-large {
    background: rgba(10, 30, 60, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.glass-card-large h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

.glass-card-large p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 40px 0;
}

.glass-card-large h3 {
    font-size: 1.6rem;
    color: #FE7808;
    margin-bottom: 20px;
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-images {
        width: 100%;
        margin-top: 50px;
        max-width: 600px;
    }

    .cards-grid {
        flex-wrap: wrap;
    }

    .glass-card {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .cta-button {
        font-size: 0.9rem;
        padding: 14px 20px;
        display: inline-block;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 80px auto; /* Force space below the button */
    }
    .hero-images {
        display: block;
        height: 320px;
        width: 100%;
        max-width: 320px;
        margin: 100px auto 60px auto;
        position: relative;
    }

    .img1 {
        width: 120px;
        height: 140px;
        top: 10px !important;
        left: 0px !important;
        transform: rotate(-6deg) !important;
        position: absolute !important;
    }

    .img2 {
        width: 130px;
        height: 120px;
        top: 0px !important;
        right: 0px !important;
        transform: rotate(5deg) !important;
        position: absolute !important;
    }

    .img3 {
        width: 130px;
        height: 150px;
        bottom: 10px !important;
        left: 10px !important;
        transform: rotate(4deg) !important;
        position: absolute !important;
    }

    .img4 {
        width: 130px;
        height: 130px;
        bottom: 20px !important;
        right: 0px !important;
        transform: rotate(-5deg) !important;
        position: absolute !important;
    }

    .flight-path {
        display: block;
        width: 110%;
        height: 110%;
        top: -10px;
        left: -5%;
        z-index: 1;
    }

    .glass-card {
        min-width: 100%;
    }

    .glass-card-large {
        padding: 40px 20px;
    }

    .glass-card-large h2 {
        font-size: 1.6rem;
    }
}