@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

/* =========================
   COLOR THEME
========================= */

:root{
    --orange:#ff8c00;
    --white:#ffffff;
    --light:#fff7ef;
    --text:#222222;
    --gray:#666666;
}

/* =========================
   BODY
========================= */

body{
    background:var(--white);
    color:var(--text);
    overflow-x:hidden;
    position:relative;
}

/* =========================
   BACKGROUND GLOW
========================= */

body::before{
    content:'';
    position:fixed;
    width:700px;
    height:700px;
    background:rgba(255,140,0,0.12);
    border-radius:50%;
    top:-250px;
    left:-250px;
    filter:blur(120px);
    animation:moveGlow 10s infinite alternate;
    z-index:-1;
}

body::after{
    content:'';
    position:fixed;
    width:500px;
    height:500px;
    background:rgba(255,140,0,0.08);
    border-radius:50%;
    bottom:-200px;
    right:-200px;
    filter:blur(120px);
    animation:moveGlow2 10s infinite alternate;
    z-index:-1;
}

@keyframes moveGlow{
    from{
        transform:translateX(0px);
    }

    to{
        transform:translateX(100px);
    }
}

@keyframes moveGlow2{
    from{
        transform:translateY(0px);
    }

    to{
        transform:translateY(-80px);
    }
}

/* =========================
   NAVBAR
========================= */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;

    background:rgba(255,255,255,0.85);

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    position:sticky;
    top:0;
    z-index:999;

    border-bottom:1px solid rgba(255,255,255,0.2);
}
.menu-toggle{
    display:none;
}

.logo{
    font-size:30px;
    font-weight:700;
    color:var(--text);
}

.logo i{
    color:var(--orange);
}

nav{
    display:flex;
    align-items:center;
}

nav a{
    color:var(--text);
    text-decoration:none;
    margin:0 18px;
    position:relative;
    transition:0.3s;
    font-weight:500;
}

nav a:hover{
    color:var(--orange);
}

nav a::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:var(--orange);
    left:0;
    bottom:-5px;
    transition:0.4s;
}

nav a:hover::after{
    width:100%;
}

.nav-btn{
    background:var(--orange);
    color:white;
    border:none;
    padding:12px 24px;
    border-radius:40px;
    cursor:pointer;
    font-weight:600;
    transition:0.4s;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(255,140,0,0.3);
}

/* =========================
   HERO SECTION
========================= */

.hero{
    min-height: 60vh;
    width:100%;

    padding: 120px 8% 80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:60px;

    position:relative;

    background:
    linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.25)
    ),
    url("images/home.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:visible;
}

.hero-left{
    flex:1;
    max-width:600px;
    z-index:2;
    padding-top:0;
    margin-top:-100px;
}

.hero-left h1{
    font-size:50px;
    line-height:1.2;
    color:#fff;
    margin-bottom:15px;
    font-weight:700;
    letter-spacing:-1px;
}

.hero-left p{
    font-size:18px;
    color:#ddd;
    margin-bottom:25px;
    line-height:1.9;
    max-width:560px;
}

.hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.call-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 24px;

    background:#007bff;
    color:#fff;

    border-radius:50px;

    text-decoration:none;
    font-weight:600;

    transition:.3s ease;
}



.call-btn:hover{
    transform:translateY(-2px);
}
.primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 24px;

    background:var(--orange);
    color:#fff;

    border-radius:50px;

    text-decoration:none;
    font-weight:600;

    transition:.3s ease;
}

.primary-btn:hover{
    transform:translateY(-2px);
}
.call-btn i{
    margin-right:8px;
    animation:ring 1s infinite;
}

@keyframes ring{

    0%{
        transform:rotate(0deg);
    }

    10%{
        transform:rotate(15deg);
    }

    20%{
        transform:rotate(-15deg);
    }

    30%{
        transform:rotate(15deg);
    }

    40%{
        transform:rotate(-15deg);
    }

    50%{
        transform:rotate(0deg);
    }

    100%{
        transform:rotate(0deg);
    }
}
.call-btn{
    position:relative;
}

.call-btn::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50px;
    border:2px solid rgba(255,255,255,0.6);
    animation:pulse 1.8s infinite;
}

@keyframes pulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    100%{
        transform:scale(1.15);
        opacity:0;
    }
}

/*.primary-btn{*/
/*    background:var(--orange);*/
/*    color:white;*/
/*    border:none;*/
/*    padding:15px 32px;*/
/*    border-radius:40px;*/
/*    cursor:pointer;*/
/*    font-size:16px;*/
/*    font-weight:600;*/
/*    transition:0.4s;*/
/*}*/

/*.primary-btn:hover{*/
/*    transform:translateY(-5px);*/
/*    box-shadow:0 15px 30px rgba(255,140,0,0.3);*/
/*}*/

/*.secondary-btn{*/
/*    background:white;*/
/*    border:2px solid var(--orange);*/
/*    color:var(--orange);*/
/*    padding:15px 30px;*/
/*    border-radius:40px;*/
/*    cursor:pointer;*/
/*    font-size:16px;*/
/*    transition:0.4s;*/
/*}*/

/*.secondary-btn:hover{*/
/*    background:var(--orange);*/
/*    color:white;*/
/*}*/

.hero-left,
.booking-card{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   BOOKING CARD
========================= */
.booking-wrapper{

    width:100%;

    display:flex;
    justify-content:center;

    margin-top:-70px;

    position:relative;
    z-index:10;
}

.booking-card{

    width:100%;
    max-width:730px;

    background:#fff;
    border-radius:28px;

    padding:40px;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.18);
}

.booking-card h2{
    text-align:center;
    margin-bottom:30px;
    color:#222;
}

.input-box{
    display:flex;
    align-items:center;

    background:#f7f7f7;

    padding:16px 20px;
    border-radius:16px;
    margin-bottom:20px;

    border:1px solid rgba(255,255,255,0.22);

    transition:0.3s;
}

.input-box:hover{
    border:1px solid rgba(255,140,0,0.5);
}

.input-box input,
.input-box select{
    width:100%;
    background:none;
    border:none;
    outline:none;
    color:#222;
    font-size:15px;
}

.input-box input::placeholder{
    color:#666;
}
.input-box i{
    color:var(--orange);
    margin-right:12px;
    font-size:15px;
}
.form-row{
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.form-row .input-box{
    flex: 1;
    min-width: 0;
}


/* TABS */

.ride-tabs{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.tab-btn{

    flex:1;

    padding:15px;

    border:2px solid #e5e5e5;

    border-radius:14px;

    background:#fff;

    color:#222;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.tab-btn.active{

    background:var(--orange);

    color:#fff;

    border-color:var(--orange);

    box-shadow:
    0 8px 20px rgba(255,140,0,0.25);
}
.tab-btn:hover{

    border-color:var(--orange);

    transform:translateY(-2px);
}

/* FORM SWITCH */

.ride-form{
    display:none;
}

.active-form{
    display:block;
}

/* CAR SECTION */

.car-title{
    margin:20px 0 15px;
    font-size:18px;
    color:#222;
}

.car-options{
    display:flex;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:20px;
    flex-wrap: wrap;
}

.car-card{
    background:#fff;
    border:2px solid #eee;
    border-radius:16px;
    padding:12px;
    text-align:center;
    cursor:pointer;
    transition:0.3s;
    flex: 1 1 120px;
}

.car-card:hover{
    border-color:#ffcc00;
    transform:translateY(-5px);
}

.car-card input{
    display:none;
}

.car-card img{
    width:100%;
    height:100px;
    object-fit:contain;
    margin-bottom:10px;
}

.car-card span{
    display:block;
    font-weight:700;
    margin-bottom:5px;
}

.car-card input:checked + img{
    transform:scale(1.05);
}

.car-card:has(input:checked){
    border-color:#ff8c00;
    box-shadow:0 8px 20px rgba(255,140,0,0.2);
}
#outstation-form h2{
    margin-bottom: 10px;
}
/* TRIP TYPE */

.trip-type{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;

    margin: 8px auto 18px;
    padding: 8px 14px;

    background: rgba(255,255,255,0.08);
    border-radius: 40px;

    width: fit-content;
}

.trip-type label{
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 8px 14px;

    border-radius: 25px;

    cursor: pointer;

    font-size: 14px;
    font-weight: 600;

    color: #222;

    transition: 0.3s;
}

.trip-type label:hover{
    background: rgba(255,255,255,0.1);
}

.trip-type input[type="radio"]{
    accent-color: #ffd000;

    width: 16px;
    height: 16px;
}



/* SEARCH BUTTON */

.search-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:15px;
    background:var(--orange);
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s;
}

.search-btn:hover{
    transform:scale(1.03);
    box-shadow:0 12px 25px rgba(255,140,0,0.3);
}

/* =========================
   ABOUT SECTION
========================= */

.about{
    padding:120px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
    transition:0.5s;
}

.about-image img:hover{
    transform:scale(1.03);
}

.about-content{
    flex:1;
}

.about-content span{
    color:var(--orange);
    font-weight:600;
    letter-spacing:2px;
}

.about-content h2{
    font-size:48px;
    margin:20px 0;
    line-height:1.2;
    color:var(--text);
}

.about-content p{
    color:var(--gray);
    line-height:1.8;
    margin-bottom:30px;
}

.about-features{
    margin-bottom:35px;
}

.feature{
    margin-bottom:18px;
    font-size:17px;
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--text);
}

.feature i{
    color:var(--orange);
}

/* =========================
   SERVICES SECTION
========================= */

.services{
    padding:100px 8%;
    background:#fff;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.service-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}


.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(255,140,0,0.15);
}

.service-image{
    width:100%;
    height:220px;
    margin-bottom:20px;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.service-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.7;
}

/* =========================
   PRICING SECTION
========================= */

.pricing{
    padding:120px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--orange);
    letter-spacing:2px;
    font-weight:600;
}

.section-title h2{
    font-size:50px;
    margin-top:15px;
    color:var(--text);
}

.pricing-container{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.price-card{
    width:340px;
    background:white;
    border:1px solid #eee;
    padding:40px 35px;
    border-radius:28px;
    transition:0.5s;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.price-card::before{
    content:'';
    position:absolute;
    width:200px;
    height:200px;
    background:rgba(255,140,0,0.08);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.price-card:hover{
    transform:translateY(-12px);
    border-color:var(--orange);
}

.active-price{
    border:2px solid var(--orange);
    transform:scale(1.04);
}

.price-image{
    width:100%;
    height:180px;
    overflow:hidden;
    border-radius:15px;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
}

.price-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.price-top{
    margin-bottom:35px;
}

.price-top h3{
    font-size:24px;
    margin-bottom:10px;
}

.price-top h1{
    font-size:55px;
    color:var(--orange);
}

.price-top span{
    font-size:18px;
    color:var(--text);
}

.price-card ul{
    list-style:none;
    margin-bottom:35px;
}

.price-card ul li{
    margin-bottom:18px;
    color:var(--gray);
    display:flex;
    align-items:center;
    gap:12px;
}

.price-card ul li i{
    color:var(--orange);
}

.price-card button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:15px;
    background:var(--orange);
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s;
}

.price-card button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(255,140,0,0.3);
}

.pricing-switch{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin:30px 0;
}

.trip-text{
    font-size:16px;
    font-weight:600;
    color:#333;
}

.switch{
    position:relative;
    display:inline-block;
    width:60px;
    height:32px;
}

.switch input{
    opacity:0;
    width:0;
    height:0;
}

.slider{
    position:absolute;
    inset:0;
    background:#ddd;
    border-radius:50px;
    cursor:pointer;
    transition:.3s;
}

.slider:before{
    content:"";
    position:absolute;
    width:24px;
    height:24px;
    left:4px;
    top:4px;
    background:white;
    border-radius:50%;
    transition:.3s;
}

input:checked + .slider{
    background:#ffb400;
}

input:checked + .slider:before{
    transform:translateX(28px);
}

/* =========================
   TOP DESTINATIONS
========================= */

.destinations{
    padding:120px 8%;
    background:var(--light);
}

.destinations-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.destination-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

.destination-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(255,140,0,0.18);
}

.destination-image{
    width:100%;
    height:240px;
    overflow:hidden;
}

.destination-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.destination-card:hover .destination-image img{
    transform:scale(1.08);
}

.destination-content{
    padding:25px;
}

.destination-content h3{
    font-size:26px;
    margin-bottom:12px;
    color:var(--text);
}

.destination-content p{
    color:var(--gray);
    line-height:1.7;
}

/* RESPONSIVE */

@media(max-width:992px){

    .destinations-container{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .destinations-container{
        grid-template-columns:1fr;
    }

}

.tariff-table{
    display:grid;
    grid-template-columns:1fr 1fr;
    margin-top:20px;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #eee;
}

.tariff-table div{
    padding:12px;
    border:1px solid #eee;
    text-align:center;
    font-size:14px;
}

.tariff-table .head{
    background:#ff8c00;
    color:#fff;
    font-weight:600;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#111;
    padding-top:90px;
    margin-top:120px;
    border-top:1px solid #eee;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:50px;
    padding:0 8% 70px;
}

.footer-logo{
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-logo i{
    color:var(--orange);
}

.footer-box p{
    color:var(--gray);
    line-height:1.8;
    margin-bottom:15px;
}

.footer-box h3{
    margin-bottom:25px;
    font-size:22px;
    position:relative;
}

.footer-box h3::after{
    content:'';
    position:absolute;
    width:50px;
    height:3px;
    background:var(--orange);
    left:0;
    bottom:-10px;
    border-radius:10px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:15px;
}

.footer-box ul li a{
    color:var(--gray);
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:var(--orange);
    padding-left:6px;
}

.footer-box i{
    color:var(--orange);
    margin-right:10px;
}
.footer-box p,
.footer-box ul li a,
.footer-bottom p{
    color:#bbb;
}

.footer-box h3,
.footer-logo{
    color:#fff;
}

/* SOCIAL ICONS */

.social-icons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.social-icons a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:white;
    color:var(--orange);
    border:1px solid #eee;
    text-decoration:none;
    transition:0.4s;
}

.social-icons a:hover{
    background:var(--orange);
    color:white;
    transform:translateY(-5px);
}

/* FOOTER BOTTOM */

.footer-bottom{
    border-top:1px solid #eee;
    text-align:center;
    padding:25px;
}

.footer-bottom p{
    color:var(--gray);
    font-size:15px;
}

/* =========================
   FLOATING ICONS
========================= */

.floating-icons{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:999;
}

.float-btn{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:22px;
    box-shadow:0 5px 15px rgba(0,0,0,0.25);
    transition:0.3s;
    backdrop-filter:blur(10px);
}

.float-btn:hover{
    transform:scale(1.1);
}

.whatsapp{
    background:#25D366;
}

.call{
    background:#007bff;
}

.email{
    background:#ff4d4d;
}

.sms{
    background:#ff9900;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .hero-left h1{
        font-size:56px;
    }

}

@media(max-width:992px){

    nav{
        display:none;
    }

    .hero{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        padding:140px 6% 80px;
    }

    .hero-left{
        max-width:100%;
    }

    .hero-left h1{
        font-size:46px;
    }

    .hero-left p{
        margin:auto;
        margin-bottom:30px;
    }

    .hero-buttons{
        display: flex;
        flex-direction: row;
        gap: 8px;
        width: 100%;
    }

    .primary-btn,
    .whatsapp-btn{
        flex: 1;
        text-align: center;

        padding: 12px 8px;

        font-size: 13px;
    }

    .booking-card{
        width:100%;
        max-width:550px;
    }

    .about{
        flex-direction:column;
    }

    .about-content{
        text-align:center;
    }

    .about-features{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .services-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){
    header{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:12px 15px;
    }

    .logo{
        font-size:20px;
    }

    nav{
        display:none;
    }

    .nav-btn{
        display:none;
    }

    .menu-toggle{
        display:block;
        font-size:24px;
        cursor:pointer;
    }
    nav.mobile-active{
        display:flex;
        flex-direction:column;

        position:absolute;
        top:60px;
        right:15px;

        width:220px;

        background:#fff;
        border-radius:10px;
        padding:15px;

        box-shadow:0 5px 20px rgba(0,0,0,.15);
    }

    nav.mobile-active a{
        padding:10px 0;
    }

    .hero{
        min-height: 30vh;

        padding: 110px 30px 30px;
        gap:50px;
        background-position:center;
        background-attachment:scroll;
    }
    .hero-left{
        margin-bottom: 0;
    }
        
    .booking-wrapper{
        margin-top: -120px;
        position: relative;
        z-index: 10;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .hero{
        padding-bottom:140px;
    }
     .hero-left h1{
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .hero-left p{
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .booking-card{
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        padding: 18px 12px;
    }
    .trip-type{
        width: 100%;
        justify-content: center;
        gap: 10px;

        padding: 10px;
    }

    .trip-type label{
        font-size: 14px;
        padding: 8px 12px;
    }
    .form-row{
        gap: 8px;
    }

    .input-box{
        height: 45px;
    }

    .input-box input,
    .input-box select{
        font-size: 14px;
    }

    .car-options{
        grid-template-columns:1fr;
    }
    .ride-form .form-row{
        display: flex !important;
        flex-direction: row !important;
        gap: 8px;
    }

    .ride-form .form-row .input-box{
        flex: 1;
        width: 50%;
        min-width: 0;
    }

    .section-title h2{
        font-size:36px;
    }

    .footer{
        text-align:center;
    }

    .footer-box h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .social-icons{
        justify-content:center;
    }

    .floating-icons{
        right:15px;
        bottom:15px;
    }

    .float-btn{
        width:50px;
        height:50px;
        font-size:20px;
    }
    .booking-card .form-row{
        display:flex !important;
        flex-direction:row !important;
        align-items:center;
        gap:8px;
        width:100%;
    }

    .booking-card .form-row .input-box{
        flex:1 1 50% !important;
        width:50% !important;
        min-width:0 !important;
    }
    .pricing-switch{
        gap:10px;
    }

    .trip-text{
        font-size:14px;
    }
    .hero-buttons{
        display:flex;
        gap:8px;
    }

    .primary-btn,
.call-btn{
    flex: 1;
    text-align: center;

    padding: 12px 8px;

    font-size: 13px;
}

}

@media(max-width:480px){

    .hero-left h1{
        font-size:24px;
    }

    /*.hero-buttons{*/
    /*    flex-direction:column;*/
    /*}*/

    .primary-btn,
.call-btn{
    width:100%;
}

}