/* ==================================================
   TOPCABS HYDERABAD WEBSITE
   MAIN STYLESHEET
================================================== */


/* ==================================================
   SECTION 00 : ROOT VARIABLES
================================================== */

:root {

    --primary: #FFC107;
    --secondary: #0F172A;
    --accent: #FF6B00;

    --white: #FFFFFF;
    --light: #F8FAFC;
    --gray: #64748B;
    --dark: #020617;

    --shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

/* ==========================================
   ROUTES SECTION
========================================== */

.routes-section{
    padding:100px 0;
    background:#fff;
}

.routes-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:50px;
}

.route-card{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:25px;
    text-align:center;
    font-weight:600;
    transition:.3s;
}

.route-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* ==================================================
   SECTION 00 : GLOBAL RESET
================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:var(--white);
    padding-top:80px;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}


/* ==================================================
   SECTION 00 : REUSABLE CLASSES
================================================== */

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header span{
    color:var(--primary);
    font-weight:600;
    letter-spacing:1px;
}

.section-header h2{
    font-size:42px;
    margin-top:15px;
    color:var(--secondary);
}

.section-header p{
    max-width:700px;
    margin:20px auto 0;
    color:var(--gray);
    line-height:1.8;
}

/* ==================================================
   SECTION 01 : HEADER
================================================== */

.header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    background:var(--white);

    z-index:1000;

    box-shadow:0 2px 20px rgba(0,0,0,.05);
}



.nav-container{

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

    height:80px;
}

.logo{

    font-size:30px;
    font-weight:800;
    color:var(--secondary);
}

.logo span{
    color:var(--primary);
}

.nav-links{

    display:flex;
    gap:35px;
}

.nav-links a{

    color:var(--secondary);
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--primary);
}

.call-btn{

    background:var(--primary);
    color:var(--secondary);

    padding:12px 25px;

    border-radius:50px;

    font-weight:600;
    transition:.3s;
}

.call-btn:hover{
    transform:translateY(-2px);
}

.menu-toggle{

    display:none;

    font-size:30px;

    cursor:pointer;
}


/* ==================================================
   SECTION 02 : HERO SECTION
================================================== */

/* ==========================================
   PAGE HERO
========================================== */

.page-hero{
    padding:140px 0 80px;
    background:#f8fafc;
    text-align:center;
}

.page-hero h1{
    font-size:52px;
    line-height:1.2;
    color:var(--secondary);
    margin-bottom:20px;
}

.page-hero p{
    max-width:850px;
    margin:0 auto 30px;
    line-height:1.8;
    color:var(--gray);
}

.page-hero .btn-primary{
    display:inline-block;
    margin-right:15px;
}

.page-hero .btn-secondary{
    display:inline-block;
    border:2px solid var(--secondary);
    color:var(--secondary);
}

.hero{

    min-height:100vh;

    background:
    linear-gradient(
    rgba(15,23,42,.85),
    rgba(15,23,42,.85)
    ),
    url('../assets/images/hero.jpg');

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

    display:flex;
    align-items:center;

    padding-top:100px;
}

.hero-wrapper{

    display:grid;
    grid-template-columns:1.2fr .8fr;

    gap:50px;
    align-items:center;
}

.hero-badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#fff;

    padding:10px 18px;

    border-radius:50px;

    margin-bottom:25px;
}

.hero-content h1{

    color:#fff;

    font-size:54px;
    line-height:1.2;

    margin-bottom:20px;
}

.hero-content p{

    color:#ddd;

    line-height:1.8;

    margin-bottom:30px;
}

.hero-buttons{

    display:flex;

    gap:15px;

    margin-bottom:30px;
}

.btn-primary{

    background:var(--primary);

    color:var(--secondary);

    padding:15px 30px;

    border-radius:50px;

    font-weight:600;
}

.btn-secondary{

    border:2px solid var(--white);

    color:var(--white);

    padding:15px 30px;

    border-radius:50px;

    font-weight:600;
}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    color:var(--white);
}


/* ==================================================
   SECTION 02A : BOOKING FORM
================================================== */

.booking-card{

    background:var(--white);

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);
}

.booking-card h3{

    margin-bottom:25px;

    color:var(--secondary);
}

.booking-card form{

    display:flex;
    flex-direction:column;

    gap:15px;
}

.booking-card input,
.booking-card select{

    height:55px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 15px;
}

.booking-card button{

    height:55px;

    border:none;

    background:var(--primary);

    color:var(--secondary);

    font-weight:700;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;
}

.booking-card button:hover{

    background:#ffb300;
}


/* ==================================================
   SECTION 03 : TRUST STATISTICS
================================================== */

.stats{

    padding:80px 0;

    background:var(--white);
}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.stat-card{

    text-align:center;

    padding:35px;

    border-radius:20px;

    background:var(--white);

    box-shadow:var(--shadow);
}

.stat-card h3{

    font-size:40px;

    color:var(--primary);
}

.stat-card p{

    margin-top:10px;
}


/* ==================================================
   SECTION 04 : WHY CHOOSE TOPCABS
================================================== */

.why-us{

    padding:100px 0;

    background:var(--light);
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.why-card{

    background:var(--white);

    padding:40px 30px;

    text-align:center;

    border-radius:20px;

    box-shadow:var(--shadow);
}

.why-card i{

    font-size:50px;
}

.why-card h3{

    margin:20px 0;

    color:var(--secondary);
}


/* ==================================================
   SECTION 05 : SERVICES SECTION
================================================== */

.services{

    padding:100px 0;

    background:var(--white);
}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
}

.service-card{

    padding:40px;

    border-radius:20px;

    background:var(--white);

    box-shadow:var(--shadow);

    transition:.3s;
}

.service-card:hover{

    transform:translateY(-8px);
}

.service-card h3{

    margin-bottom:15px;

    color:var(--secondary);
}

.service-card p{

    color:var(--gray);

    line-height:1.7;
}


/* ==================================================
   SECTION 06+
   RESERVED FOR FUTURE SECTIONS
================================================== */

/* =========================
   06. FLEET
========================= */

.fleet-section{
    padding:100px 0;
    background:#fff;
}

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:50px;
}

.fleet-card{
    background:#fff;
    border:1px solid #eaeaea;
    border-radius:20px;
    padding:30px;
    text-align:center;
    transition:0.3s ease;
}

.fleet-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.fleet-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,193,7,.15);
}

.fleet-icon i{
    font-size:28px;
    color:var(--primary);
}

.fleet-card h3{
    font-size:22px;
    margin-bottom:10px;
}

.fleet-card p{
    font-weight:600;
    margin-bottom:10px;
}

.fleet-card span{
    color:#666;
    font-size:14px;
    line-height:1.6;
}


/* =========================
   07. POPULAR SERVICES
========================= */


/* =========================
   08. TRAVEL SOLUTIONS
========================= */

.travel-solutions{
    padding:100px 0;
    background:#f8fafc;
}

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

.solution-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    transition:0.3s ease;
}

.solution-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.solution-card i{
    font-size:38px;
    color:var(--primary);
    margin-bottom:20px;
}

.solution-card h3{
    margin-bottom:15px;
    font-size:22px;
}

.solution-card p{
    color:#666;
    line-height:1.7;
}
/* Outstation Cabs */

/* Popular Services */

.popular-services{
    padding:100px 0;
    background:#f8fafc;
}

.service-keywords-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.keyword-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    border:1px solid #e5e7eb;
    transition:.3s ease;
}

.keyword-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.keyword-card h3{
    margin-bottom:12px;
    font-size:22px;
}

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





/* =========================
   09. TESTIMONIALS
========================= */

.testimonials{
    padding:100px 0;
    background:#fff;
}

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

.testimonial-card{
    background:#f8fafc;
    padding:35px;
    border-radius:20px;
    border:1px solid #e5e7eb;
}

.stars{
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h4{
    font-size:18px;
    font-weight:600;
}


/* Floting buttons */

/* ==========================================
   FLOATING ACTION BUTTONS
========================================== */

.floating-call,
.floating-whatsapp{
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

.floating-call{
    background: #ff6b00;
    bottom: 95px;
    right: 20px;
}

.floating-whatsapp{
    background: #25D366;
    bottom: 20px;
    right: 20px;
}

/* CTA Section */

.cta-section{
    padding:100px 0;
    background:var(--primary);
    text-align:center;
}

.cta-section h2{
    font-size:42px;
    color:var(--secondary);
    margin-bottom:20px;
}

.cta-section p{
    max-width:700px;
    margin:0 auto 20px;
    color:var(--secondary);
    line-height:1.8;
}

.cta-box{
    text-align:center;
    color:#fff;
}

.cta-box h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}



/* Contact Section */



.contact-section{
    padding:100px 0;
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.contact-card{
    background:#f8fafc;
    padding:35px 25px;
    text-align:center;
    border-radius:20px;
    border:1px solid #e5e7eb;
}

.contact-card i{
    font-size:32px;
    color:var(--primary);
    margin-bottom:20px;
}

.contact-card h3{
    margin-bottom:12px;
}

.contact-card a{
    color:#333;
    font-weight:600;
    word-break:break-word;
}




/* FAQ */


.faq-section{
    padding:100px 0;
    background:#fff;
}

.faq-container{
    max-width:1000px;
    margin:50px auto 0;
}

.faq-item{
    background:#f8f9fb;
    padding:25px;
    border-radius:12px;
    margin-bottom:20px;
}

.faq-item h3{
    font-size:20px;
    margin-bottom:10px;
}

.faq-item p{
    line-height:1.8;
    color:#666;
}



/* Footer */

.footer{
    background:#111827;
    color:#fff;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-col h3{
    margin-bottom:20px;
}

.footer-col p,
.footer-col li{
    color:#cbd5e1;
    line-height:1.8;
}

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

.footer-col a{
    color:#cbd5e1;
}

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
}