/* Reset & Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Sans-serif;
    color: #111;
    background-color: #fff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* Colors */
:root {
    --color-dark-blue: #00274A;
    --color-blue: #05164D;
    --color-light-bg: #f8f8f8;
}

/* Utility */
.desktop-only { display: none; }
.mobile-only { display: block; }
.text-blue { color: var(--color-blue); }

/* Top / Bottom Bars */
.top-bar, .bottom-bar {
    background-color: var(--color-dark-blue);
    text-align: center;
    padding: 12px 10px;
}

.top-bar-link, .bottom-bar-link {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* Hero Top Section */
.hero-top {
    display: flex;
    flex-direction: column;
}

.hero-top-left {
    background-color: #fff;
    padding: 20px;
    text-align: center;
}

.mobile-hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-airplane-mobile {
    width: 100%;
    margin-top: 10px;
}

.hero-title-dark {
    color: var(--color-dark-blue);
    font-family: "Josefin Sans", Sans-serif !important;
    font-size: 30px;
    font-weight: 700;
    text-decoration: underline;
    margin: 10px 0;
}

.hero-agents-img {
    width: 80px;
    border-radius: 50%;
}

.hero-logo-mobile {
    width: 180px;
    margin-top: 10px;
}

.sub-heading-dark {
    font-family: "AR One Sans", Sans-serif !important;
    font-size: 30px;
    color: var(--color-blue);
    font-weight: 800;
    margin: 15px 0 20px;
}

.btn-dark-blue {
    display: inline-block;
    background-color: var(--color-blue);
    color: #fff;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 21px;
    width: 100%;
    margin-bottom: 20px;
}

.hero-top-right {
    background-color: var(--color-dark-blue);
    display: flex;
        align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-title-light {
    color: #fff;
    font-family: "Josefin Sans", Sans-serif !important;
    font-size: 30px;
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 15px;
}

.hero-subline-light {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
}

/* Hero Bottom Section */
.hero-bottom {
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    padding: 60px 20px;
}

.hero-bottom-overlay {
    position: relative;
    z-index: 2;
}

.hero-bottom::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-bottom-title {
    color: #fff;
    font-family: "Work Sans", Sans-serif !important;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-bottom-subtitle {
    color: #fff;
    font-family: "Work Sans", Sans-serif !important;
    font-size: 32px;
}

/* Added Logo style */
.placeholder-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-dark-blue);
    font-style: italic;
    letter-spacing: -1px;
}

/* About Section */
.about-section {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-logo {
    width: 180px;
}

.about-right {
    text-align: left;
}

.about-right h2 {
        font-family: "Work Sans", Sans-serif !important;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-right h3 {
        font-family: "Work Sans", Sans-serif !important;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-right p {
         font-family: "Work Sans", Sans-serif !important;
    font-size: 16px;
     font-weight: 400;
    margin-bottom: 15px;
    color: #333;
    line-height: 28px;
}

/* CTA Banner */
.cta-banner {
    padding: 0 20px 40px;
    display: flex;
    justify-content: center;
}

.cta-container {
    background-color: var(--color-dark-blue);
    color: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
}

.cta-container h2 {
        font-family: "Work Sans", Sans-serif !important;
    font-size: 35px;
    font-weight: 700;
      margin-bottom: 15px;
}

.cta-container p {
    
 font-family: "Work Sans", Sans-serif !important;
    font-size: 19px;
    font-weight: 700;
    line-height:28px;
      margin-bottom: 25px;
}

.cta-button {
 font-family: "Work Sans", Sans-serif !important;
    font-size: 19px;
    font-weight: 700;
    line-height:28px;
}

/* Adventure Section */
.adventure-section {
    background-color: var(--color-light-bg);
    padding: 60px 0;
}

.adventure-title {
    text-align: center;
    font-size: 40px;
     font-family: "Work Sans", Sans-serif !important;
    font-weight: 600;
    margin-bottom: 40px;
}

.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 400px;
    margin: 0 auto;
}

.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h4 {
   margin-bottom: 10px;
    font-family: "Work Sans", Sans-serif !important;
    font-size: 22px;
    font-weight: 600;
    color: #1414D2 !important;
}

.card-content p {
        font-family: "Work Sans", Sans-serif !important;
    font-size: 16px;
    font-weight: 400;
        color: #000000;
}

/* Mobile Fixed Bottom Bar */
.mobile-fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-dark-blue);
    color: #fff;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

.mfb-title {
    font-size: 28px;
    font-weight: 600;
}

.mfb-subtitle {
    font-size: 16px;
    margin-bottom: 5px;
}

.mfb-tfn {
    display: inline-block;
    background-color: #fff;
    color: var(--color-dark-blue);
    font-size: 19px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
}

/* Base Body padding to prevent content hide on mobile */
body {
    padding-bottom: 100px;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .desktop-only { display: block; }
    .mobile-only { display: none; }
    
    /* Hero Top Grid */
    .hero-top {
        flex-direction: row;
        min-height: 400px;
    }
    
    .hero-top-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
    }
    
    .hero-airplane {
        max-width: 600px;
        margin-bottom: 30px;
    }
    
    .sub-heading-dark {
        font-size: 34px;
    }
    
    .btn-dark-blue {
        width: auto;
    }
    
    .hero-top-right {
        flex: 1;
    }
    
    /* About grid */
    .about-section {
        flex-direction: row;
        align-items: flex-start;
        padding: 80px 20px;
        max-width: 1000px;
    }
    
    .about-left {
        flex: 1;
        justify-content: flex-end;
        padding-right: 40px;
    }
    
    .about-globe {
        width: 100%;
    }
    
    .about-right {
        flex: 2;
    }
    
    /* CTA */
    .cta-banner {
        padding-bottom: 80px;
    }
    
    /* Cards Grid */
    .cards-grid {
        flex-direction: row;
        max-width: 1200px;
    }
    
    .card {
        flex: 1;
    }
    
    body {
        padding-bottom: 0px; 
    }
}
