* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    background-color: #f0f8ff;
}

/* Background Image Handling */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* background: url('travel_background.png') no-repeat center top fixed; */
    background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center top fixed;
    /* Placeholder image */
    background-size: cover;
    position: relative;
    z-index: 1;
}

/* Fallback/Overlay to ensure text readability */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 1) 100%);
    z-index: -1;
}

/* Header */
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    color: #003366;
}

.iata-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.iata-text strong {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.license-info {
    text-align: right;
    color: #003366;
    font-weight: 600;
}

/* Main Content */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    flex-grow: 1;
    margin-top: 20px;
}

.left-section {
    flex: 1;
    padding-right: 20px;
}

.brand-logo {
    margin-bottom: 10px;
}

h1 {
    font-size: 4rem;
    line-height: 1;
    color: #003366;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.5rem;
    color: #000;
    font-weight: 700;
    max-width: 400px;
}

.right-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.deals-box {
    background: rgba(0, 51, 102, 0.9);
    color: white;
    padding: 20px 30px;
    border-radius: 10px 0 0 10px;
    /* Stylistic choice based on graphic's "cut" look */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 300px;
}

.deals-box h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-align: right;
}

.deals-box ul {
    list-style: none;
}

.deals-box li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-bar {
    text-align: center;
    background: #003366;
    color: white;
    padding: 10px 20px;
    margin: 20px auto;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    display: table;
    /* Centers the pill */
}

.services-bar span {
    padding: 0 10px;
}

/* Footer */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    /* Wave effect separator can be added with SVG if needed, simplifying for now */
    border-top: 5px solid white;
}

.query-header {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.address {
    font-size: 0.9rem;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-highlight {
    background: #cc6600;
    /* Orangeish color from graphic */
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.email {
    font-size: 0.8rem;
}

/* Responsive Implementation */
@media screen and (max-width: 1366px) {
    h1 {
        font-size: 3.5rem;
    }

    .coming-soon-container {
        /* Ensure it fits vertically if possible, or scrolls */
        height: auto;
    }

    .content-wrapper {
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .right-section {
        justify-content: center;
        margin-top: 30px;
        width: 100%;
    }

    .deals-box {
        border-radius: 10px;
        text-align: left;
        width: 100%;
        max-width: 350px;
    }

    .deals-box h3 {
        text-align: center;
    }

    .top-bar {
        padding: 10px 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .license-info {
        text-align: center;
    }

    h1 {
        font-size: 3rem;
    }
}