/* ==========================================
   ROUTE PAGE CSS
   Kumaon Taxi
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================================
   HEADER
========================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:#081c33;
    padding:18px 0;
    transition:.35s;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#fff;
    font-size:32px;
    font-weight:800;
}

.logo span{
    color:#22c55e;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#22c55e;
}

.header-btn{
    background:#22c55e;
    color:#fff;
    padding:13px 26px;
    border-radius:40px;
    font-weight:700;
    transition:.35s;
}

.header-btn:hover{
    transform:translateY(-3px);
}

/* ==========================================
   HERO
========================================== */

.route-hero{

    padding:170px 0 90px;

    background:
    linear-gradient(rgba(6,25,52,.85),rgba(6,25,52,.90)),
    url("../images/bg.jpg") center/cover;

}

.route-hero .container{

display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:70px;

}

.badge{

display:inline-block;
background:#22c55e;
color:#fff;
padding:12px 22px;
border-radius:40px;
font-size:14px;
margin-bottom:25px;

}

.hero-left h1{

font-size:56px;
line-height:1.2;
color:#fff;
margin-bottom:22px;

}

.hero-left p{

font-size:18px;
color:#dbe4ee;
margin-bottom:35px;

}

.hero-buttons{

display:flex;
gap:18px;
flex-wrap:wrap;

}

.btn-primary,
.btn-secondary{

padding:16px 32px;
border-radius:50px;
font-weight:700;
transition:.3s;

}

.btn-primary{

background:#22c55e;
color:#fff;

}

.btn-secondary{

background:#2563eb;
color:#fff;

}

.btn-primary:hover,
.btn-secondary:hover{

transform:translateY(-5px);

}

.hero-right img{

border-radius:25px;
box-shadow:0 30px 70px rgba(0,0,0,.35);

}

/* ==========================================
   QUICK INFO
========================================== */

.route-info{

padding:90px 0;
background:#f8fafc;

}

.info-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;

}

.info-card{

background:#fff;
padding:35px 20px;
border-radius:22px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;

}

.info-card:hover{

transform:translateY(-10px);

}

.info-card h3{

font-size:18px;
margin-bottom:12px;
color:#081c33;

}

.info-card p{

font-size:28px;
font-weight:700;
color:#22c55e;

}

/* ==========================================
   SECTION TITLE
========================================== */

section{

padding:100px 0;

}

.section-heading{

text-align:center;
margin-bottom:60px;

}

.section-heading h2{

font-size:42px;
margin-bottom:15px;
color:#081c33;
font-weight:800;

}

.section-heading h2::after{

content:"";
display:block;
width:90px;
height:5px;
background:#22c55e;
margin:18px auto;
border-radius:50px;

}

.section-heading p{

max-width:700px;
margin:auto;
font-size:17px;
color:#6b7280;
line-height:1.8;

}
/* ==========================================
   ABOUT ROUTE
========================================== */

.route-about{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-content h3{
    font-size:34px;
    color:#081c33;
    margin-bottom:20px;
}

.about-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

.about-content ul{
    list-style:none;
}

.about-content ul li{
    margin:16px 0;
    font-size:17px;
    color:#333;
}

.about-content ul li i{
    color:#22c55e;
    margin-right:10px;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
    transition:.4s;
}

.about-image img:hover{
    transform:scale(1.03);
}

/* ==========================================
   VEHICLES
========================================== */

.vehicles{
    background:#f8fafc;
}

.vehicle-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.vehicle-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    text-align:center;
}

.vehicle-card:hover{
    transform:translateY(-10px);
}

.vehicle-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.vehicle-card h3{
    margin-top:22px;
    font-size:24px;
    color:#081c33;
}

.vehicle-card p{
    color:#666;
    margin:12px 0;
}

.vehicle-card span{
    display:inline-block;
    margin:20px 0 25px;
    background:#22c55e;
    color:#fff;
    padding:10px 22px;
    border-radius:40px;
    font-weight:600;
}

/* ==========================================
   FARE TABLE
========================================== */

.fare-table{
    background:#fff;
}

.table-wrapper{
    overflow-x:auto;
}

table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

thead{
    background:#081c33;
}

thead th{
    color:#fff;
    padding:20px;
    font-size:18px;
}

tbody td{
    text-align:center;
    padding:20px;
    border-bottom:1px solid #eee;
    font-size:17px;
}

tbody tr:hover{
    background:#f8fafc;
}

/* ==========================================
   WHY CHOOSE
========================================== */

.why-choose{
    background:#f8fafc;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    padding:35px 25px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    width:80px;
    height:80px;
    background:#22c55e;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin:0 auto 20px;
}

.why-card h3{
    font-size:24px;
    color:#081c33;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}
/* ==========================================
   BOOKING SECTION
========================================== */

.route-booking{
    background:#081c33;
}

.route-booking .section-heading h2,
.route-booking .section-heading p{
    color:#fff;
}

#routeBookingForm{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.2);
}

#routeBookingForm input,
#routeBookingForm select{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    outline:none;
}

#routeBookingForm input:focus,
#routeBookingForm select:focus{
    border-color:#22c55e;
}

#routeBookingForm button{
    background:#22c55e;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:12px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

#routeBookingForm button:hover{
    background:#16a34a;
}

/* ==========================================
   FAQ
========================================== */

.faq{
    background:#f8fafc;
}

.faq-box{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:15px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    cursor:pointer;
    padding:22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    font-weight:600;
}

.faq-question span{
    font-size:28px;
    color:#22c55e;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.35s;
}

.faq-answer p{
    padding:0 22px 22px;
    color:#666;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:220px;
}

/* ==========================================
   RELATED ROUTES
========================================== */

.related-routes{
    background:#fff;
}

.route-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.route-grid a{
    background:#22c55e;
    color:#fff;
    text-align:center;
    padding:18px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.route-grid a:hover{
    background:#16a34a;
    transform:translateY(-5px);
}

/* ==========================================
   CONTACT
========================================== */

.contact{
    background:#f8fafc;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.call-btn,
.whatsapp-btn{
    padding:18px 35px;
    border-radius:50px;
    color:#fff;
    font-weight:700;
    transition:.3s;
}

.call-btn{
    background:#2563eb;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:translateY(-5px);
}

/* ==========================================
   FOOTER
========================================== */

footer{
    background:#081c33;
    color:#fff;
    text-align:center;
    padding:30px 15px;
}

footer p{
    font-size:15px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

.route-hero .container,
.about-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.info-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

section{
    padding:70px 0;
}

.hero-left h1{
    font-size:38px;
}

.section-heading h2{
    font-size:32px;
}

.info-grid{
    grid-template-columns:1fr;
}

.vehicle-grid,
.why-grid,
.route-grid{
    grid-template-columns:1fr;
}

#routeBookingForm{
    padding:25px;
}

nav{
    display:none;
}

.header-btn{
    display:none;
}

}

@media(max-width:480px){

.hero-left h1{
    font-size:30px;
}

.hero-left p{
    font-size:15px;
}

.btn-primary,
.btn-secondary{
    width:100%;
    text-align:center;
}

.section-heading h2{
    font-size:28px;
}

}

/* ==========================================
   FLOATING BUTTONS
========================================== */

.float-whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;
}

.float-whatsapp:hover{
    transform:scale(1.1);
}
/* ==========================================
   TRAVEL INFO
========================================== */

.travel-info{
    background:#fff;
}

.travel-content{
    max-width:900px;
    margin:auto;
}

.travel-content h3{
    font-size:28px;
    color:#081c33;
    margin:30px 0 15px;
}

.travel-content p{
    color:#555;
    line-height:1.9;
}

.travel-content ul{
    padding-left:20px;
}

.travel-content ul li{
    margin:12px 0;
    color:#444;
}
/* ==========================================
   BREADCRUMB
========================================== */

.breadcrumb-section{
    background:#f8fafc;
    padding:20px 0;
}

.breadcrumb{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    font-size:15px;
}

.breadcrumb a{
    color:#2563eb;
    font-weight:600;
}

.breadcrumb strong{
    color:#081c33;
}

/* ==========================================
   ROUTE OVERVIEW
========================================== */

.route-overview{
    background:#fff;
}

.overview-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.overview-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
    font-size:17px;
}

/* ================= ATTRACTIONS SECTION ================= */
.attractions{
    padding:80px 20px;
    background:#f5f7fb;
}

.attractions .section-title{
    text-align:center;
    margin-bottom:60px;
}

.attractions .section-title h2{
    color:#0b2341;
    font-size:42px;
    font-weight:700;
}

.attractions .section-title p{
    color:#666;
    font-size:18px;
    margin-top:15px;
}

.attractions-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.attraction-card{
    background:#ffffff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    border-top:4px solid #25d366;
}

.attraction-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.attraction-card h3{
    color:#0b2341;
    font-size:28px;
    margin-bottom:15px;
    font-weight:700;
}

.attraction-card p{
    color:#555;
    font-size:17px;
    line-height:1.8;
}
/* ==========================================
   GOOGLE REVIEWS
========================================== */

.google-reviews{
    background:#ffffff;
}

.rating-box{
    text-align:center;
    margin-bottom:50px;
}

.rating-number{
    font-size:70px;
    font-weight:800;
    color:#081c33;
    line-height:1;
}

.rating-stars{
    font-size:30px;
    margin:15px 0;
}

.rating-box p{
    color:#666;
    font-size:18px;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.review-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-8px);
}

.review-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.review-header h3{
    color:#081c33;
    font-size:20px;
}

.review-card p{
    color:#666;
    line-height:1.8;
}
/* ==========================================
   ROUTE TIMELINE
========================================== */

.route-timeline{
    background:#f8fafc;
}

.timeline{
    max-width:800px;
    margin:auto;
    position:relative;
}

.timeline::before{
    content:"";
    position:absolute;
    left:20px;
    top:0;
    width:4px;
    height:100%;
    background:#22c55e;
}

.timeline-item{
    position:relative;
    padding-left:70px;
    margin-bottom:40px;
}

.timeline-dot{
    width:18px;
    height:18px;
    background:#22c55e;
    border-radius:50%;
    position:absolute;
    left:13px;
    top:8px;
}

.timeline-content{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.timeline-content h3{
    margin-bottom:10px;
    color:#081c33;
}

.timeline-content p{
    color:#666;
    line-height:1.8;
}
.related-routes{
    padding:80px 0;
}

.related-routes a{
    text-decoration:none;
    color:inherit;
    display:block;
}

.related-routes .attraction-card{
    transition:0.3s ease;
    cursor:pointer;
}

.related-routes .attraction-card:hover{
    transform:translateY(-5px);
}
