/* =========================================================
   SHUBH YATRA TRAVELS
   FRESH CSS
   Works with fresh index.php
   ========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    width:100%;
    overflow-x:hidden;
    background:#ffffff;
    color:#183d34;
    font-family:Arial, "Noto Sans Devanagari", sans-serif;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

button,
input,
select,
textarea{
    font-family:inherit;
}

img{
    max-width:100%;
}

.container{
    width:92%;
    max-width:1200px;
    margin:auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header{
    width:100%;
    background:#ffffff;
    border-bottom:1px solid #e8eeeb;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.header-inner{
    min-height:76px;
    display:flex;
    align-items:center;
    gap:20px;
}


/* BRAND */

.brand{
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.brand-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#eaf5ef;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
}

.brand-name{
    color:#075743;
    font-size:21px;
    font-weight:800;
    line-height:1;
}

.brand-name span{
    color:#efa523;
}

.brand-text small{
    display:block;
    color:#778681;
    font-size:7px;
    letter-spacing:1px;
    margin-top:5px;
}


/* NAVIGATION */

.main-nav{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:24px;
}

.main-nav a{
    color:#25453d;
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
    transition:.2s;
}

.main-nav a:hover{
    color:#08785e;
}


/* LANGUAGE */

.language-box{
    display:flex;
    align-items:center;
    gap:2px;
    border:1px solid #dfe8e4;
    border-radius:9px;
    padding:3px;
}

.language-btn{
    border:0;
    background:transparent;
    color:#53655f;
    padding:6px 8px;
    border-radius:7px;
    cursor:pointer;
    font-size:10px;
    font-weight:700;
}

.language-btn.active{
    background:#075743;
    color:#ffffff;
}


/* CALL */

.header-call{
    background:#075743;
    color:#ffffff;
    padding:10px 15px;
    border-radius:25px;
    font-size:12px;
    font-weight:700;
    white-space:nowrap;
}


/* MOBILE MENU */

.mobile-menu-btn{
    display:none;
    width:42px;
    height:42px;
    border:0;
    border-radius:9px;
    background:#075743;
    color:#ffffff;
    font-size:22px;
    cursor:pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
    position:relative;
    min-height:510px;
    overflow:hidden;
    color:#ffffff;
}


/* BUS IMAGE */

.hero-background{
    position:absolute;
    inset:0;
    z-index:0;

    background-image:
        linear-gradient(
            90deg,
            rgba(1,30,24,.94) 0%,
            rgba(1,30,24,.72) 38%,
            rgba(1,30,24,.30) 68%,
            rgba(1,30,24,.05) 100%
        ),
        url("assets/bus.png");

    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
}


/* HERO INNER */

.hero-inner{
    min-height:510px;
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
}

.hero-content{
    max-width:650px;
}

.hero-label{
    color:#ffb52e;
    font-size:17px;
    font-weight:700;
    margin-bottom:8px;
}

.hero h1{
    color:#ffffff;
    font-size:64px;
    line-height:1.05;
    font-weight:900;
    margin-bottom:17px;
    letter-spacing:-1px;
}

.hero h1 span{
    color:#ffb52e;
}

.hero-description{
    color:#ffffff;
    max-width:620px;
    font-size:18px;
    line-height:1.7;
}


/* HERO FEATURES */

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:26px;
}

.hero-feature{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:700;
}

.feature-icon{
    width:38px;
    height:38px;
    border:1px solid rgba(255,255,255,.65);
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}


/* HERO BUTTONS */

.hero-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:26px;
}

.btn-primary,
.btn-whatsapp{
    min-height:45px;
    padding:0 19px;
    border-radius:10px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    font-size:13px;
    font-weight:800;
}

.btn-primary{
    background:#ffb52e;
    color:#18372f;
}

.btn-whatsapp{
    background:#128c7e;
    color:#ffffff;
}

.btn-primary:hover,
.btn-whatsapp:hover{
    transform:translateY(-2px);
}


/* =========================================================
   QUICK BOOKING
   ========================================================= */

.quick-booking{
    position:relative;
    z-index:20;
    margin-top:-35px;
}

.booking-box{
    background:#ffffff;
    border-radius:17px;
    padding:20px;

    display:grid;
    grid-template-columns:
        1fr
        1fr
        1fr
        1.1fr
        auto;

    gap:12px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.12);
}

.booking-field label{
    display:block;
    color:#53655f;
    font-size:11px;
    font-weight:700;
    margin-bottom:6px;
}

.booking-field input,
.booking-field select{
    width:100%;
    height:45px;

    padding:0 12px;

    border:1px solid #dce6e2;
    border-radius:9px;

    background:#ffffff;
    color:#29443d;

    outline:none;
    font-size:13px;
}

.booking-field input:focus,
.booking-field select:focus{
    border-color:#08785e;
}

.booking-button{
    height:45px;
    padding:0 20px;

    border:0;
    border-radius:9px;

    background:#08785e;
    color:#ffffff;

    font-size:13px;
    font-weight:800;

    cursor:pointer;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section{
    padding:75px 0;
}

.services-section{
    background:#ffffff;
}

.trips-section{
    background:#f8faf5;
}

.about-section{
    background:#f2f8f4;
}

.inquiry-section{
    background:linear-gradient(
        135deg,
        #edf7f2,
        #ffffff
    );
}


/* SECTION HEADING */

.section-heading{
    max-width:750px;
    margin:0 auto 40px;
    text-align:center;
}

.section-heading > span{
    color:#d99820;
    font-size:13px;
    font-weight:800;
}

.section-heading h2{
    color:#075743;
    font-size:34px;
    line-height:1.3;
    margin:8px 0 10px;
}

.section-heading p{
    color:#697a74;
    font-size:14px;
    line-height:1.7;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-grid{
    display:grid;
    grid-template-columns:
        repeat(4,1fr);
    gap:20px;
}

.service-card{
    background:#ffffff;
    border:1px solid #e6eeea;
    border-radius:16px;
    overflow:hidden;

    box-shadow:
        0 8px 25px rgba(10,55,44,.07);

    transition:.25s ease;
}

.service-card:hover{
    transform:translateY(-5px);

    box-shadow:
        0 14px 32px rgba(10,55,44,.12);
}


/* BUS CARD */

.service-image{
    width:100%;
    height:165px;
}

.bus-card-image{
    background-image:
        linear-gradient(
            0deg,
            rgba(0,0,0,.12),
            rgba(0,0,0,0)
        ),
        url("assets/bus.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}


/* ICON CARD */

.service-icon-large{
    width:100%;
    height:165px;

    background:#eaf5ef;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:70px;
}


/* SERVICE CONTENT */

.service-content{
    padding:18px;
}

.service-number{
    color:#e0a126;
    font-size:11px;
    font-weight:800;
}

.service-content h3{
    color:#075743;
    font-size:19px;
    margin:5px 0 6px;
}

.service-content p{
    color:#697974;
    font-size:13px;
    line-height:1.6;
    min-height:43px;
}

.service-content a{
    display:inline-block;
    margin-top:12px;

    color:#08785e;

    font-size:12px;
    font-weight:800;
}


/* =========================================================
   TRIPS
   ========================================================= */

.trips-grid{
    display:grid;
    grid-template-columns:
        repeat(2,1fr);
    gap:16px;
}

.trip-card{
    display:grid;

    grid-template-columns:
        70px
        1fr
        30px;

    align-items:center;

    gap:15px;

    padding:13px;

    background:#ffffff;

    border:1px solid #e4ebe7;
    border-radius:14px;

    transition:.2s;
}

.trip-card:hover{
    transform:translateY(-3px);

    box-shadow:
        0 8px 24px rgba(0,0,0,.08);
}

.trip-icon{
    width:70px;
    height:70px;

    background:#eaf5ef;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:31px;
}

.trip-card h3{
    color:#075743;
    font-size:17px;
    margin-bottom:4px;
}

.trip-card p{
    color:#6c7b76;
    font-size:12px;
    line-height:1.5;
}

.trip-card > span{
    width:30px;
    height:30px;

    border:1px solid #d6e1dc;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#075743;
    font-weight:800;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-grid{
    display:grid;
    grid-template-columns:
        1.1fr
        .9fr;

    gap:60px;

    align-items:center;
}

.section-mini-title{
    color:#d99820;
    font-size:13px;
    font-weight:800;
    margin-bottom:8px;
}

.about-content h2,
.inquiry-text h2{
    color:#075743;
    font-size:39px;
    line-height:1.25;
    margin-bottom:17px;
}

.about-content p,
.inquiry-text > p{
    color:#687873;
    font-size:15px;
    line-height:1.8;
    margin-bottom:14px;
}


/* STATS */

.stats-grid{
    display:grid;
    grid-template-columns:
        repeat(2,1fr);
    gap:15px;
}

.stat-card{
    background:#ffffff;

    border:1px solid #e4ebe7;
    border-radius:15px;

    padding:25px 15px;

    text-align:center;

    box-shadow:
        0 7px 20px rgba(0,0,0,.05);
}

.stat-card strong{
    display:block;
    color:#075743;
    font-size:35px;
    line-height:1.2;
}

.stat-card span{
    color:#72817c;
    font-size:12px;
}


/* =========================================================
   INQUIRY
   ========================================================= */

.inquiry-grid{
    display:grid;
    grid-template-columns:
        .9fr
        1.1fr;

    gap:55px;

    align-items:start;
}

.inquiry-text{
    padding-top:10px;
}

.inquiry-points{
    margin-top:22px;

    display:grid;
    gap:11px;
}

.inquiry-points div{
    color:#14634f;
    font-size:13px;
    font-weight:700;
}


/* FORM */

.inquiry-form{
    background:#ffffff;

    border:1px solid #e5ece8;
    border-radius:18px;

    padding:25px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.08);
}

.form-row{
    display:grid;
    grid-template-columns:
        1fr
        1fr;

    gap:14px;
}

.form-group{
    margin-bottom:14px;
}

.form-group label{
    display:block;
    color:#53645e;
    font-size:11px;
    font-weight:800;
    margin-bottom:6px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    border:1px solid #dce6e1;
    border-radius:9px;

    background:#ffffff;
    color:#243e36;

    padding:12px;

    outline:none;
    font-size:13px;
}

.form-group input,
.form-group select{
    height:45px;
}

.form-group textarea{
    min-height:105px;
    resize:vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#08785e;
}

.submit-btn{
    width:100%;
    min-height:47px;

    border:0;
    border-radius:10px;

    background:#128c7e;
    color:#ffffff;

    font-size:13px;
    font-weight:800;

    cursor:pointer;
}

.form-message{
    min-height:20px;
    margin-top:9px;

    color:#08785e;
    font-size:12px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer{
    background:#063b31;
    color:#ffffff;
    padding-top:50px;
}

.footer-grid{
    display:grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap:35px;

    padding-bottom:40px;
}

.footer-company h3{
    font-size:25px;
}

.footer-company h3 span{
    color:#ffb52e;
}

.footer-company p{
    margin-top:9px;
    color:#bdd0c8;
    font-size:13px;
}

.footer-column h4{
    color:#ffffff;
    font-size:15px;
    margin-bottom:13px;
}

.footer-column p,
.footer-column > a{
    display:block;
    color:#bdd0c8;
    font-size:12px;
    margin-bottom:8px;
}

.footer-column > a:hover{
    color:#ffb52e;
}

.footer-whatsapp{
    display:inline-block !important;

    padding:8px 12px;

    background:#128c7e;
    color:#ffffff !important;

    border-radius:20px;
}


/* FOOTER BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

    padding:16px 10px;

    color:#9eb6ad;

    font-size:11px;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.floating-whatsapp{
    position:fixed;

    right:20px;
    bottom:20px;

    z-index:99999;

    display:flex;
    align-items:center;
    gap:9px;

    background:#128c7e;
    color:#ffffff;

    padding:7px 14px 7px 7px;

    border-radius:40px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.23);

    font-size:12px;
    font-weight:800;
}

.floating-whatsapp > span{
    width:42px;
    height:42px;

    background:#ffffff;
    color:#128c7e;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;
}

.floating-whatsapp small{
    display:block;
    font-size:8px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1050px){

    .main-nav{
        gap:13px;
    }

    .main-nav a{
        font-size:11px;
    }

    .header-call{
        display:none;
    }

    .booking-box{
        grid-template-columns:
            repeat(2,1fr);
    }

    .booking-button{
        width:100%;
    }

    .services-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:760px){

    .container{
        width:calc(100% - 24px);
    }


    /* HEADER */

    .header-inner{
        min-height:64px;
        padding:9px 0;

        display:flex;
        flex-wrap:wrap;

        gap:8px;
    }

    .brand{
        flex:1;
        min-width:0;
    }

    .brand-icon{
        width:40px;
        height:40px;
        font-size:20px;
    }

    .brand-name{
        font-size:18px;
    }

    .brand-text small{
        display:none;
    }


    /* MENU BUTTON */

    .mobile-menu-btn{
        display:flex;

        align-items:center;
        justify-content:center;

        order:2;

        flex-shrink:0;
    }


    /* LANGUAGE */

    .language-box{
        order:3;

        width:100%;

        justify-content:center;

        margin-top:2px;
    }


    /* NAV */

    .main-nav{
        order:4;

        width:100%;

        display:none;

        flex-direction:column;

        align-items:stretch;
        justify-content:flex-start;

        gap:0;

        background:#ffffff;

        border:1px solid #e2ebe7;

        border-radius:12px;

        padding:5px;

        box-shadow:
            0 10px 25px rgba(0,0,0,.08);
    }

    .main-nav.mobile-open{
        display:flex;
    }

    .main-nav a{
        display:block;

        width:100%;

        padding:12px;

        border-bottom:1px solid #edf2ef;

        font-size:14px;
    }

    .main-nav a:last-child{
        border-bottom:0;
    }


    /* =====================================================
       MOBILE HERO
    ===================================================== */

    .hero{
        min-height:600px;
    }

    .hero-background{

        /*
         * IMPORTANT:
         * BUS IMAGE IS HERE
         */

        background-image:
            linear-gradient(
                90deg,
                rgba(2,31,25,.96) 0%,
                rgba(2,31,25,.82) 35%,
                rgba(2,31,25,.48) 65%,
                rgba(2,31,25,.15) 100%
            ),
            url("assets/bus.png");

        background-size:cover;

        /*
         * Bus mobile screen वर उजवीकडे दिसेल
         */

        background-position:
            68% center;

        background-repeat:no-repeat;
    }

    .hero-inner{
        min-height:600px;

        align-items:flex-start;
    }

    .hero-content{
        width:100%;
        padding-top:48px;
    }

    .hero-label{
        font-size:14px;
    }

    .hero h1{
        font-size:39px;

        line-height:1.08;

        letter-spacing:-.5px;

        margin-bottom:15px;
    }

    .hero-description{
        width:100%;
        max-width:100%;

        font-size:14px;

        line-height:1.65;
    }


    /* HERO FEATURES */

    .hero-features{
        display:grid;

        grid-template-columns:
            1fr
            1fr;

        gap:11px;

        margin-top:22px;
    }

    .hero-feature{
        font-size:11px;
        gap:6px;
    }

    .feature-icon{
        width:33px;
        height:33px;

        font-size:12px;
    }


    /* HERO BUTTONS */

    .hero-buttons{
        display:grid;

        grid-template-columns:1fr;

        gap:10px;

        margin-top:22px;
    }

    .btn-primary,
    .btn-whatsapp{
        width:100%;
    }


    /* =====================================================
       BOOKING
    ===================================================== */

    .quick-booking{
        margin-top:-22px;
    }

    .booking-box{
        grid-template-columns:1fr;

        gap:11px;

        padding:15px;

        border-radius:14px;
    }

    .booking-button{
        width:100%;
        height:46px;
    }


    /* =====================================================
       SECTIONS
    ===================================================== */

    .section{
        padding:48px 0;
    }

    .section-heading{
        margin-bottom:25px;
    }

    .section-heading h2{
        font-size:26px;
    }

    .section-heading p{
        font-size:13px;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .services-grid{
        grid-template-columns:1fr;

        gap:15px;
    }

    .service-image,
    .service-icon-large{
        height:180px;
    }


    /* =====================================================
       TRIPS
    ===================================================== */

    .trips-grid{
        grid-template-columns:1fr;

        gap:12px;
    }

    .trip-card{
        grid-template-columns:
            62px
            1fr
            28px;

        gap:11px;

        padding:10px;
    }

    .trip-icon{
        width:62px;
        height:62px;

        font-size:27px;
    }

    .trip-card h3{
        font-size:15px;
    }


    /* =====================================================
       ABOUT
    ===================================================== */

    .about-grid{
        grid-template-columns:1fr;

        gap:28px;
    }

    .about-content h2,
    .inquiry-text h2{
        font-size:29px;

        line-height:1.3;
    }

    .about-content p,
    .inquiry-text > p{
        font-size:14px;
    }

    .stats-grid{
        grid-template-columns:
            1fr
            1fr;

        gap:10px;
    }

    .stat-card{
        padding:18px 8px;
    }

    .stat-card strong{
        font-size:27px;
    }


    /* =====================================================
       INQUIRY
    ===================================================== */

    .inquiry-grid{
        grid-template-columns:1fr;

        gap:25px;
    }

    .inquiry-form{
        padding:16px;

        border-radius:14px;
    }

    .form-row{
        grid-template-columns:1fr;

        gap:0;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-grid{
        grid-template-columns:1fr;

        gap:25px;
    }

    .site-footer{
        padding-top:38px;
    }


    /* =====================================================
       WHATSAPP
    ===================================================== */

    .floating-whatsapp{

        right:13px;
        bottom:13px;

        width:56px;
        height:56px;

        padding:5px;

        border-radius:50%;

        justify-content:center;
    }

    .floating-whatsapp > span{
        width:46px;
        height:46px;
    }

    .floating-whatsapp div{
        display:none;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:400px){

    .brand-name{
        font-size:17px;
    }

    .hero{
        min-height:620px;
    }

    .hero-inner{
        min-height:620px;
    }

    .hero-content{
        padding-top:40px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero-description{
        font-size:13px;
    }

    .hero-background{
        background-position:
            70% center;
    }

    .hero-feature{
        font-size:10px;
    }

    .feature-icon{
        width:31px;
        height:31px;
    }

}


/* =========================================================
   EXTRA MOBILE SAFETY
   ========================================================= */

@media(max-width:760px){

    input,
    select,
    textarea,
    button{
        max-width:100%;
    }

    .service-card,
    .trip-card,
    .stat-card,
    .form-group,
    .booking-field{
        min-width:0;
    }

}