/*==================================================
            RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f6f8fb;
    color:#222;
    line-height:1.6;
    font-size:16px;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button,
input,
select,
textarea{
    font-family:inherit;
}

/*==================================================
            CONTAINER
==================================================*/

.container{

    width:100%;

    max-width:1200px;

    margin:auto;

    padding:0 20px;

}

/*==================================================
            HEADER
==================================================*/

.site-header{

    position:sticky;

    top:0;

    width:100%;

    background:#ffffff;

    border-bottom:1px solid #e5e5e5;

    box-shadow:0 2px 10px rgba(0,0,0,.06);

    z-index:9999;

}

.header-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:75px;

}

/* Logo */

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:55px;

    width:auto;

}

/* Business Name */

.brand-name{

    display:flex;

    align-items:center;

    justify-content:flex-end;

}

.brand-name a{

    font-size:30px;

    font-weight:700;

    color:#003b95;

    letter-spacing:.5px;

    transition:.3s;

}

.brand-name a:hover{

    color:#0056b3;

}

/*==================================================
            HERO
==================================================*/

.hero{

    background:linear-gradient(135deg,#003b95,#0057d8);

    color:#ffffff;

    padding:90px 20px;

}

.hero-content{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.hero h1{

    font-size:48px;

    font-weight:700;

    margin-bottom:20px;

}

.hero p{

    font-size:20px;

    line-height:1.8;

    max-width:760px;

    margin:auto;

}
/*==================================================
                BOOKING SECTION
==================================================*/

.booking-section{
    margin-top:-50px;
    margin-bottom:60px;
    position:relative;
    z-index:10;
}

.booking-box{
    background:#ffffff;
    border-radius:12px;
    box-shadow:0 10px 35px rgba(0,0,0,.12);
    overflow:hidden;
    border:1px solid #e6e6e6;
}

/*==================================================
                BOOKING TABS
==================================================*/

.booking-tabs{
    display:flex;
    width:100%;
    border-bottom:1px solid #e5e5e5;
    background:#f7f8fa;
}

.tab-btn{
    flex:1;
    padding:18px 20px;
    border:none;
    outline:none;
    cursor:pointer;
    background:transparent;
    font-size:18px;
    font-weight:600;
    color:#555;
    transition:.3s;
}

.tab-btn:hover{
    background:#eef5ff;
    color:#003b95;
}

.tab-btn.active{
    background:#003b95;
    color:#ffffff;
}

/*==================================================
                TAB CONTENT
==================================================*/

.tab-content{
    display:none;
    padding:35px;
}

.tab-content.active{
    display:block;
}

/*==================================================
                TRIP TYPE
==================================================*/

.trip-type{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    margin-bottom:30px;
}

.trip-type label{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    font-weight:600;
    color:#333;
}

.trip-type input[type="radio"]{
    width:18px;
    height:18px;
    accent-color:#003b95;
}

/*==================================================
                FORM GRID
==================================================*/

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

/*==================================================
                FORM GROUP
==================================================*/

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    margin-bottom:8px;
    font-size:15px;
    font-weight:600;
    color:#333;
}

.form-group input,
.form-group select{
    width:100%;
    height:52px;
    padding:0 15px;
    border:1px solid #d7d7d7;
    border-radius:8px;
    background:#ffffff;
    font-size:15px;
    transition:.3s;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#003b95;
    box-shadow:0 0 0 3px rgba(0,59,149,.12);
    outline:none;
}

/* Placeholder */

.form-group input::placeholder{
    color:#999;
}

/*==================================================
                MULTI CITY
==================================================*/

#multiCitySection{
    margin-top:30px;
    padding-top:25px;
    border-top:1px solid #ececec;
}

#multiCitySection h3{
    margin-bottom:20px;
    color:#003b95;
}

/*==================================================
                SUBMIT AREA
==================================================*/

.submit-area{
    margin-top:35px;
    text-align:center;
}

/*==================================================
                BUTTON
==================================================*/

.btn-primary{
    display:inline-block;
    background:#003b95;
    color:#ffffff;
    border:none;
    border-radius:8px;
    padding:15px 45px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-primary:hover{
    background:#0056d6;
    transform:translateY(-2px);
}

.btn-primary:active{
    transform:translateY(0);
}

/*==================================================
                DATALIST INPUTS
==================================================*/

input[list]{
    background:#ffffff;
}

/*==================================================
                DATE INPUT
==================================================*/

input[type="date"]{
    cursor:pointer;
}

/*==================================================
                SELECT
==================================================*/

select{
    cursor:pointer;
}

/*==================================================
                REQUIRED FIELD
==================================================*/

input:required,
select:required{
    background:#ffffff;
}
/*==================================================
                COMMON SECTIONS
==================================================*/

.why-us,
.services,
.faq-section{

    padding:70px 0;

}

.services{

    background:#f8f9fc;

}

/*==================================================
                SECTION TITLE
==================================================*/

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h2{

    font-size:36px;

    color:#003b95;

    margin-bottom:15px;

    font-weight:700;

}

.section-title p{

    max-width:800px;

    margin:auto;

    color:#666;

    font-size:18px;

    line-height:1.8;

}

/*==================================================
                FEATURE GRID
==================================================*/

.feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

/*==================================================
                FEATURE CARD
==================================================*/

.feature-card{

    background:#ffffff;

    padding:30px;

    border-radius:12px;

    border:1px solid #e7e7e7;

    transition:.3s;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

}

.feature-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.feature-card h3{

    color:#003b95;

    margin-bottom:15px;

    font-size:22px;

}

.feature-card p{

    color:#666;

    line-height:1.8;

}

/*==================================================
                FAQ SECTION
==================================================*/

.faq-item{

    background:#ffffff;

    border:1px solid #e6e6e6;

    border-radius:10px;

    padding:25px;

    margin-bottom:20px;

    box-shadow:0 3px 10px rgba(0,0,0,.04);

}

.faq-item h3{

    color:#003b95;

    font-size:20px;

    margin-bottom:12px;

}

.faq-item p{

    color:#666;

    line-height:1.8;

}

/*==================================================
                FOOTER
==================================================*/

.site-footer{

    background:#0b1f3a;

    color:#ffffff;

    margin-top:80px;

    padding:60px 0 25px;

}

/*==================================================
                FOOTER GRID
==================================================*/

.footer-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}

.footer-column h3{

    margin-bottom:20px;

    font-size:22px;

    color:#ffffff;

}

.footer-column p{

    color:#d8d8d8;

    margin-bottom:15px;

    line-height:1.8;

}

.footer-column a{

    color:#ffffff;

    transition:.3s;

}

.footer-column a:hover{

    color:#8ec5ff;

}

/*==================================================
                FOOTER LINKS
==================================================*/

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    display:inline-block;

}

/*==================================================
                FOOTER BOTTOM
==================================================*/

.footer-bottom{

    margin-top:40px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

}

.footer-bottom p{

    color:#d8d8d8;

    line-height:1.8;

    margin-bottom:12px;

}

.footer-disclaimer{

    max-width:900px;

    margin:auto;

    font-size:14px;

    color:#cfcfcf;

}

/*==================================================
                CONTACT INFO
==================================================*/

.contact-info p{

    margin-bottom:14px;

}

.contact-info strong{

    color:#ffffff;

}

/*==================================================
                LEGAL LINKS
==================================================*/

.legal-links{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.legal-links a{

    color:#ffffff;

    transition:.3s;

}

.legal-links a:hover{

    color:#8ec5ff;

}
/*==================================================
                SUCCESS MODAL
==================================================*/

.modal{

    display:none;

    position:fixed;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.65);

    z-index:99999;

    justify-content:center;

    align-items:center;

    padding:20px;

}

.modal-content{

    width:100%;

    max-width:500px;

    background:#ffffff;

    border-radius:12px;

    padding:40px 30px;

    text-align:center;

    position:relative;

    animation:popup .35s ease;

    box-shadow:0 20px 45px rgba(0,0,0,.25);

}

.close-modal{

    position:absolute;

    right:18px;

    top:12px;

    font-size:32px;

    cursor:pointer;

    color:#777;

}

.close-modal:hover{

    color:#003b95;

}

.modal-content h2{

    color:#003b95;

    margin-bottom:20px;

    font-size:32px;

}

.modal-content p{

    color:#666;

    margin-bottom:30px;

    line-height:1.8;

}

/*==================================================
                ANIMATIONS
==================================================*/

@keyframes popup{

    from{

        opacity:0;

        transform:translateY(-40px) scale(.95);

    }

    to{

        opacity:1;

        transform:translateY(0) scale(1);

    }

}

/*==================================================
                UTILITIES
==================================================*/

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mt-40{

    margin-top:40px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-40{

    margin-bottom:40px;

}

.w-100{

    width:100%;

}

/*==================================================
                TABLET
==================================================*/

@media (max-width:992px){

.header-wrapper{

    min-height:70px;

}

.brand-name a{

    font-size:24px;

}

.hero{

    padding:70px 20px;

}

.hero h1{

    font-size:38px;

}

.hero p{

    font-size:18px;

}

.form-grid{

    grid-template-columns:1fr 1fr;

}

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.legal-links{

    align-items:center;

}

}

/*==================================================
                MOBILE
==================================================*/

@media (max-width:768px){

.container{

    padding:0 15px;

}

.header-wrapper{

    min-height:65px;

}

.logo img{

    height:42px;

}

.brand-name a{

    font-size:20px;

}

.hero{

    padding:55px 15px;

}

.hero h1{

    font-size:30px;

    line-height:1.3;

}

.hero p{

    font-size:16px;

}

.booking-section{

    margin-top:-30px;

}

.booking-tabs{

    flex-direction:column;

}

.tab-btn{

    width:100%;

}

.tab-content{

    padding:25px;

}

.trip-type{

    flex-direction:column;

    gap:15px;

}

.form-grid{

    grid-template-columns:1fr;

}

.submit-area{

    text-align:center;

}

.btn-primary{

    width:100%;

    padding:15px;

}

.section-title h2{

    font-size:28px;

}

.section-title p{

    font-size:16px;

}

.feature-card{

    padding:25px;

}

.modal-content{

    padding:30px 20px;

}

.modal-content h2{

    font-size:26px;

}

}

/*==================================================
                SMALL MOBILE
==================================================*/

@media (max-width:480px){

.logo img{

    height:36px;

}

.brand-name a{

    font-size:18px;

}

.hero{

    padding:45px 15px;

}

.hero h1{

    font-size:24px;

}

.hero p{

    font-size:15px;

}

.tab-btn{

    font-size:16px;

    padding:15px;

}

.form-group input,

.form-group select{

    height:48px;

    font-size:14px;

}

.feature-card{

    padding:20px;

}

.feature-card h3{

    font-size:20px;

}

.section-title h2{

    font-size:24px;

}

.footer-column h3{

    font-size:20px;

}

.footer-bottom{

    font-size:14px;

}

}

/*==================================================
                LARGE DESKTOP
==================================================*/

@media (min-width:1400px){

.container{

    max-width:1320px;

}

.hero h1{

    font-size:56px;

}

.hero p{

    font-size:22px;

}
/*==================================================
        UNIVERSAL FLOATING STICKY CALL BUTTON
==================================================*/

.floating-call-btn {

    position: fixed;

    right: 20px;

    top: 50%;

    transform: translateY(-50%);

    background: #003366;

    color: #ffffff;

    padding: 15px 20px;

    border-radius: 10px;

    font-size: 16px;

    font-weight: 700;

    text-align: center;

    text-decoration: none;

    line-height: 1.4;

    z-index: 9999999;

    box-shadow: 0 4px 15px rgba(0,0,0,0.25);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    min-width:170px;

}


.floating-call-btn:hover {

    background:#00509e;

    color:#ffffff;

}


.floating-call-btn span {

    font-size:15px;

    font-weight:800;

}


/*==================================================
        TABLET DEVICES
==================================================*/

@media (max-width:1024px){

    .floating-call-btn {

        right:15px;

        padding:14px 16px;

        min-width:160px;

        font-size:15px;

    }


    .floating-call-btn span {

        font-size:14px;

    }

}


/*==================================================
        MOBILE DEVICES
==================================================*/

@media (max-width:768px){

    .floating-call-btn {

        right:10px;

        top:45%;

        min-width:145px;

        padding:12px 14px;

        font-size:14px;

        border-radius:8px;

    }


    .floating-call-btn span {

        font-size:13px;

    }

}


/*==================================================
        SMALL MOBILE DEVICES
==================================================*/

@media (max-width:480px){

    .floating-call-btn {

        right:8px;

        top:45%;

        min-width:130px;

        padding:10px 12px;

        font-size:13px;

    }


    .floating-call-btn span {

        font-size:12px;

    }

}

}