/* =========================================
   UNITED AIRLINES INSPIRED THEME
   RESPONSIVE PREMIUM STYLE.CSS
   ========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background:#f4f8fc;
    color:#1c1c1c;
    line-height:1.7;
    overflow-x:hidden;
}

/* =========================================
   GLOBAL CONTAINER
   ========================================= */

section,
footer,
nav,
header{
    width:100%;
}

.hero-content,
.enquiry-form,
.pricing-section,
.services-section,
.destinations-section,
.why-choose,
.legal-section,
footer,
.footer-nav{
    max-width:1200px;
    margin:auto;
}

/* =========================================
   HEADER
   ========================================= */

.main-header{
    background:linear-gradient(90deg,#002244,#005daa);
    padding:18px 25px;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,0.2);
}

.logo{
    text-align:center;
}

.logo a{
    color:#ffffff;
    text-decoration:none;
    font-size:30px;
    font-weight:bold;
    letter-spacing:1px;
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero-section{
    background:
    linear-gradient(rgba(0,34,68,0.85),rgba(0,93,170,0.75)),
    url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    padding:120px 20px;
    text-align:center;
    color:#ffffff;
}

.hero-content{
    max-width:900px;
    margin:auto;
}

.hero-content h1{
    font-size:54px;
    margin-bottom:25px;
    line-height:1.2;
}

.hero-content p{
    font-size:18px;
    margin-bottom:20px;
    color:#f1f1f1;
}

.hero-btn{
    display:inline-block;
    margin-top:20px;
    background:#f8b400;
    color:#002244;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    transition:0.3s ease;
}

.hero-btn:hover{
    background:#ffffff;
    transform:translateY(-2px);
}

/* =========================================
   COMMON SECTION DESIGN
   ========================================= */

.enquiry-form,
.pricing-section,
.services-section,
.destinations-section,
.why-choose,
.legal-section{
    background:#ffffff;
    margin:50px auto;
    padding:60px 40px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

h2{
    text-align:center;
    color:#002244;
    font-size:38px;
    margin-bottom:20px;
}

section p{
    margin-bottom:18px;
}

/* =========================================
   FORM SECTION
   ========================================= */

.enquiry-form p{
    text-align:center;
    max-width:800px;
    margin:0 auto 30px;
}

form{
    display:flex;
    flex-direction:column;
    gap:20px;
    max-width:850px;
    margin:auto;
}

form input,
form textarea{
    width:100%;
    padding:18px;
    border:1px solid #cfd8e3;
    border-radius:10px;
    font-size:16px;
    outline:none;
    transition:0.3s;
}

form input:focus,
form textarea:focus{
    border-color:#005daa;
    box-shadow:0 0 0 4px rgba(0,93,170,0.15);
}

form button{
    background:#005daa;
    color:#ffffff;
    border:none;
    padding:18px;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
    transition:0.3s ease;
    font-weight:bold;
}

form button:hover{
    background:#002244;
}

/* =========================================
   PRICING GRID
   ========================================= */

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:40px;
}

.price-card{
    background:linear-gradient(180deg,#005daa,#002244);
    color:#ffffff;
    padding:35px 25px;
    border-radius:16px;
    text-align:center;
    transition:0.3s;
}

.price-card:hover{
    transform:translateY(-5px);
}

.price-card h3{
    margin-bottom:20px;
    font-size:28px;
}

.price-card p{
    margin-bottom:12px;
    font-size:17px;
}

.price-note{
    margin-top:30px;
    text-align:center;
    font-style:italic;
}

/* =========================================
   SERVICES
   ========================================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:40px;
}

.service-box{
    background:#f4f8fc;
    padding:35px 25px;
    border-radius:16px;
    border-top:5px solid #005daa;
    transition:0.3s;
}

.service-box:hover{
    transform:translateY(-4px);
    box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

.service-box h3{
    color:#002244;
    margin-bottom:15px;
    font-size:24px;
}

/* =========================================
   LISTS
   ========================================= */

.destinations-section ul,
.why-choose ul{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:18px;
    list-style:none;
    margin-top:35px;
}

.destinations-section li,
.why-choose li{
    background:#eef5fb;
    padding:18px 20px;
    border-radius:10px;
    font-weight:600;
    border-left:5px solid #005daa;
}

/* =========================================
   LEGAL SECTION
   ========================================= */

.legal-section{
    background:#f9fbfd;
    border-left:6px solid #005daa;
}

.legal-section p{
    margin-bottom:20px;
}

/* =========================================
   FOOTER NAVIGATION
   ========================================= */

.footer-nav{
    margin:50px auto 0;
    padding:0 20px;
}

.footer-nav ul{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
    list-style:none;
}

.footer-nav a{
    text-decoration:none;
    background:#002244;
    color:#ffffff;
    padding:12px 18px;
    border-radius:8px;
    transition:0.3s;
    font-size:15px;
}

.footer-nav a:hover{
    background:#005daa;
}

/* =========================================
   FOOTER
   ========================================= */

footer{
    background:#002244;
    color:#ffffff;
    margin-top:50px;
    padding:60px 30px 120px;
    border-radius:20px 20px 0 0;
}

footer p{
    margin-bottom:18px;
    font-size:16px;
    word-wrap:break-word;
}

footer a{
    color:#f8b400;
    text-decoration:none;
}

footer a:hover{
    text-decoration:underline;
}

/* =========================================
   STICKY CALL BUTTON
   ========================================= */

.sticky-tfn{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#f8b400;
    color:#002244;
    padding:16px 20px;
    border-radius:50px;
    font-weight:bold;
    box-shadow:0 6px 18px rgba(0,0,0,0.25);
    z-index:9999;
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    max-width:320px;
}

.sticky-tfn a{
    color:#002244;
    text-decoration:none;
    font-weight:bold;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media(max-width:992px){

    .hero-content h1{
        font-size:42px;
    }

    h2{
        font-size:32px;
    }

    .enquiry-form,
    .pricing-section,
    .services-section,
    .destinations-section,
    .why-choose,
    .legal-section{
        padding:45px 25px;
    }
}

@media(max-width:768px){

    .main-header{
        padding:15px;
    }

    .logo a{
        font-size:24px;
    }

    .hero-section{
        padding:90px 20px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:16px;
    }

    h2{
        font-size:28px;
    }

    .hero-btn{
        width:100%;
        max-width:320px;
    }

    .sticky-tfn{
        left:15px;
        right:15px;
        bottom:15px;
        border-radius:14px;
        justify-content:center;
        text-align:center;
    }

    footer{
        padding-bottom:150px;
    }
}

@media(max-width:480px){

    .hero-content h1{
        font-size:28px;
    }

    .hero-content p{
        font-size:15px;
    }

    .logo a{
        font-size:20px;
    }

    .footer-nav ul{
        flex-direction:column;
    }

    .footer-nav a{
        width:100%;
        text-align:center;
    }

    .enquiry-form,
    .pricing-section,
    .services-section,
    .destinations-section,
    .why-choose,
    .legal-section{
        padding:35px 18px;
    }
}