/* ============================================================
   COMFORT GO - Car Rental Service | Jamalpur, Ahmedabad
   Palette from Lemanhouse template:
   Sky #56ccf2 | Navy #13293d | Blue #2f80ed | Deep #114a82
   Grays #6d7d8b / #8e99a3 | Light #f0f9fb / #dfebee
   Developed by S K Digital Ahmedabad
   ============================================================ */

:root {
    --sky:        #56ccf2;
    --sky-dark:   #12b5ea;
    --navy:       #13293d;
    --navy-2:     #1b3a55;
    --blue:       #2f80ed;
    --deep:       #114a82;
    --gray:       #6d7d8b;
    --gray-lt:    #8e99a3;
    --light:      #f0f9fb;
    --border:     #dfebee;
    --border-2:   #d8e5f0;
    --white:      #ffffff;
    --green:      #25d366;
    --shadow:     0 8px 30px rgba(19, 41, 61, .10);
    --shadow-lg:  0 16px 48px rgba(19, 41, 61, .16);
    --radius:     14px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray);
    font-size: 15.5px;
    line-height: 1.75;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .brand-font {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    color: var(--navy);
    line-height: 1.3;
    font-weight: 700;
}

a { text-decoration: none; color: var(--blue); transition: .25s; }
a:hover { color: var(--sky-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 30px; border-radius: 50px;
    font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
    border: none; cursor: pointer; transition: .3s;
}
.btn-primary { background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%); color: #fff; box-shadow: 0 8px 22px rgba(47,128,237,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(47,128,237,.45); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--deep); color: #fff; }
.btn-wa { background: var(--green); color: #fff; }
.btn-wa:hover { background: #1fb958; color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--sky); color: var(--navy); }
.btn-outline:hover { background: var(--sky); color: #fff; }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy); color: #cfe3ef; font-size: 13.5px; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: var(--sky); font-weight: 600; }
.topbar i { color: var(--sky); margin-right: 6px; }
.topbar-left span { margin-right: 18px; }

/* ---------- Header ---------- */
.site-header {
    background: var(--white); position: sticky; top: 0; z-index: 999;
    box-shadow: 0 2px 18px rgba(19,41,61,.08);
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; height: 74px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: linear-gradient(135deg, var(--sky), var(--blue));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 21px; box-shadow: 0 6px 16px rgba(47,128,237,.3);
}
.logo-text h1 { font-size: 22px; letter-spacing: -.3px; }
.logo-text h1 span { color: var(--blue); }
.logo-text p { font-size: 11px; color: var(--gray-lt); text-transform: uppercase; letter-spacing: 2.4px; font-weight: 600; line-height: 1; }

.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
    display: block; padding: 10px 15px; color: var(--navy);
    font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 14.5px; border-radius: 8px;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); background: var(--light); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: flex; align-items: center; gap: 10px; }
.header-phone i {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--light); color: var(--blue);
    display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.header-phone small { display: block; font-size: 11px; color: var(--gray-lt); text-transform: uppercase; letter-spacing: 1px; }
.header-phone a { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy); font-size: 15px; }

.hamburger { display: none; background: none; border: none; cursor: pointer; width: 42px; height: 42px; border-radius: 10px; background: var(--light); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px auto; border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(140deg, var(--navy) 0%, var(--deep) 55%, var(--blue) 100%);
    position: relative; overflow: hidden; color: #fff;
    padding: 80px 0 90px;
}
.hero::before {
    content: ''; position: absolute; right: -160px; top: -160px;
    width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(86,204,242,.28), transparent 65%);
}
.hero::after {
    content: ''; position: absolute; left: -120px; bottom: -180px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(86,204,242,.16), transparent 65%);
}
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(86,204,242,.16); border: 1px solid rgba(86,204,242,.4);
    color: var(--sky); padding: 7px 18px; border-radius: 50px;
    font-size: 13px; font-weight: 600; letter-spacing: .5px; margin-bottom: 22px;
}
.hero h2 { color: #fff; font-size: 46px; font-weight: 800; letter-spacing: -1px; margin-bottom: 18px; }
.hero h2 span { color: var(--sky); }
.hero p.lead { color: #b9d3e3; font-size: 17px; max-width: 480px; margin-bottom: 30px; }
.hero-stats { display: flex; gap: 36px; margin-top: 36px; }
.hero-stats .stat h4 { color: var(--sky); font-size: 28px; font-weight: 800; }
.hero-stats .stat p { color: #9fbdd0; font-size: 13px; text-transform: uppercase; letter-spacing: 1.4px; }

/* ---------- Booking Card ---------- */
.booking-card {
    background: #fff; border-radius: 20px; padding: 32px;
    box-shadow: var(--shadow-lg);
}
.booking-card h3 { font-size: 21px; margin-bottom: 4px; }
.booking-card > p { font-size: 13.5px; color: var(--gray-lt); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { position: relative; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    display: block; font-size: 12px; font-weight: 700; color: var(--navy);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 15px; font-size: 14.5px; color: var(--navy);
    border: 1.5px solid var(--border-2); border-radius: 10px;
    background: var(--light); outline: none; transition: .25s;
    font-family: 'Open Sans', sans-serif;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--sky); background: #fff; box-shadow: 0 0 0 4px rgba(86,204,242,.15);
}
.booking-card .btn { width: 100%; justify-content: center; padding: 15px; font-size: 16px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Sections ---------- */
section { padding: 78px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.section-head .eyebrow {
    display: inline-block; color: var(--blue); font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}
.section-head h2 { font-size: 34px; font-weight: 800; letter-spacing: -.6px; margin-bottom: 12px; }
.section-head p { color: var(--gray-lt); }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); }

/* ---------- Fleet Cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.fleet-card {
    background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
    padding: 30px 24px; text-align: center; transition: .3s;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky); }
.fleet-icon {
    width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 20px;
    background: linear-gradient(135deg, var(--light), var(--border));
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 30px; transition: .3s;
}
.fleet-card:hover .fleet-icon { background: linear-gradient(135deg, var(--sky), var(--blue)); color: #fff; }
.fleet-card h3 { font-size: 19px; margin-bottom: 4px; }
.fleet-card .example { font-size: 13px; color: var(--gray-lt); margin-bottom: 14px; }
.fleet-card .rate { font-family: 'Poppins', sans-serif; font-weight: 800; color: var(--blue); font-size: 22px; }
.fleet-card .rate small { font-size: 12.5px; color: var(--gray-lt); font-weight: 500; }
.fleet-card .seats { display: inline-block; margin-top: 10px; background: var(--light); border-radius: 50px; padding: 4px 14px; font-size: 12.5px; color: var(--gray); }

/* ---------- Feature Cards ---------- */
.feature-card {
    background: #fff; border-radius: var(--radius); padding: 32px 26px;
    box-shadow: var(--shadow); transition: .3s; border-top: 4px solid transparent;
}
.feature-card:hover { border-top-color: var(--sky); transform: translateY(-5px); }
.feature-card i {
    width: 58px; height: 58px; border-radius: 16px; font-size: 24px;
    background: linear-gradient(135deg, var(--sky), var(--blue)); color: #fff;
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
    box-shadow: 0 8px 18px rgba(47,128,237,.28);
}
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; }

/* ---------- Routes ---------- */
.route-chip {
    display: flex; justify-content: space-between; align-items: center;
    background: #fff; border: 1.5px solid var(--border); border-radius: 12px;
    padding: 16px 20px; transition: .25s; color: var(--navy);
}
.route-chip:hover { border-color: var(--sky); box-shadow: var(--shadow); transform: translateX(4px); color: var(--navy); }
.route-chip .r-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14.5px; }
.route-chip .r-name i { color: var(--blue); margin: 0 8px; font-size: 12px; }
.route-chip .r-km { font-size: 13px; color: var(--gray-lt); background: var(--light); padding: 4px 12px; border-radius: 50px; white-space: nowrap; }
.routes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* ---------- Route Detail ---------- */
.page-hero {
    background: linear-gradient(140deg, var(--navy), var(--deep));
    color: #fff; padding: 60px 0; position: relative; overflow: hidden;
}
.page-hero::after {
    content: ''; position: absolute; right: -140px; top: -140px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(86,204,242,.25), transparent 65%);
}
.page-hero h2 { color: #fff; font-size: 34px; letter-spacing: -.5px; position: relative; z-index: 2; }
.page-hero .crumb { color: #9fbdd0; font-size: 13.5px; margin-bottom: 10px; position: relative; z-index: 2; }
.page-hero .crumb a { color: var(--sky); }

.route-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; position: relative; z-index: 2; }
.route-meta span {
    background: rgba(86,204,242,.14); border: 1px solid rgba(86,204,242,.35);
    color: #d6f0fb; padding: 8px 18px; border-radius: 50px; font-size: 13.5px;
}
.route-meta span i { color: var(--sky); margin-right: 7px; }

.fare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.fare-table th {
    background: var(--navy); color: #fff; font-family: 'Poppins', sans-serif;
    font-size: 13.5px; text-transform: uppercase; letter-spacing: 1px;
    padding: 15px 18px; text-align: left; font-weight: 600;
}
.fare-table td { padding: 16px 18px; border-bottom: 1px solid var(--border); font-size: 14.5px; color: var(--navy); }
.fare-table tr:last-child td { border-bottom: none; }
.fare-table .price { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--blue); font-size: 16px; }
.fare-table tr:hover td { background: var(--light); }

/* ---------- CTA Strip ---------- */
.cta-strip {
    background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
    border-radius: 22px; padding: 46px 50px; color: #fff;
    display: flex; justify-content: space-between; align-items: center; gap: 26px; flex-wrap: wrap;
    box-shadow: 0 20px 50px rgba(47,128,237,.35);
}
.cta-strip h3 { color: #fff; font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.cta-strip p { color: #eaf7fd; font-size: 15px; }
.cta-strip .btn { background: #fff; color: var(--navy); }
.cta-strip .btn:hover { background: var(--navy); color: #fff; }

/* ---------- Testimonials ---------- */
.testi-card { background: #fff; border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); }
.testi-card .stars { color: #f0ad4e; margin-bottom: 14px; font-size: 14px; }
.testi-card p { font-size: 14.5px; font-style: italic; margin-bottom: 18px; }
.testi-user { display: flex; align-items: center; gap: 12px; }
.testi-user .avatar {
    width: 46px; height: 46px; border-radius: 50%; font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--sky), var(--blue)); color: #fff;
    display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.testi-user h4 { font-size: 15px; }
.testi-user small { color: var(--gray-lt); font-size: 12.5px; }

/* ---------- Steps ---------- */
.step-card { text-align: center; padding: 20px; }
.step-num {
    width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
    background: #fff; border: 2px dashed var(--sky); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px;
}
.step-card h3 { font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 14px; }

/* ---------- Contact ---------- */
.contact-box { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); text-align: center; }
.contact-box i {
    width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px;
    background: var(--light); color: var(--blue); font-size: 23px;
    display: flex; align-items: center; justify-content: center;
}
.contact-box h3 { font-size: 17px; margin-bottom: 6px; }
.contact-box a { font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #9fbdd0; padding: 66px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.site-footer h4 { color: #fff; font-size: 17px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.site-footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 38px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--sky), var(--blue)); }
.site-footer ul li { margin-bottom: 11px; }
.site-footer a { color: #9fbdd0; font-size: 14px; }
.site-footer a:hover { color: var(--sky); padding-left: 4px; }
.footer-about p { font-size: 14px; margin: 16px 0 20px; }
.footer-contact li { display: flex; gap: 12px; font-size: 14px; margin-bottom: 15px; }
.footer-contact i { color: var(--sky); margin-top: 5px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 10px; background: var(--navy-2);
    display: flex; align-items: center; justify-content: center; color: #cfe3ef; font-size: 15px;
}
.footer-social a:hover { background: linear-gradient(135deg, var(--sky), var(--blue)); color: #fff; padding-left: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: 13.5px; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--sky); font-weight: 600; }

/* ---------- Floating WhatsApp + Mobile Bottom Bar ---------- */
.wa-float {
    position: fixed; right: 20px; bottom: 88px; z-index: 998;
    width: 56px; height: 56px; border-radius: 50%; background: var(--green);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 26px; box-shadow: 0 10px 26px rgba(37,211,102,.45);
    animation: waPulse 2.2s infinite;
}
.wa-float:hover { color: #fff; transform: scale(1.08); }
@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.mobile-bar {
    display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 997;
    background: #fff; box-shadow: 0 -4px 24px rgba(19,41,61,.14);
    grid-template-columns: 1fr 1fr 1fr;
}
.mobile-bar a {
    padding: 12px 6px 10px; text-align: center; font-size: 12px; font-weight: 600;
    color: var(--navy); font-family: 'Poppins', sans-serif;
}
.mobile-bar a i { display: block; font-size: 19px; margin-bottom: 3px; color: var(--blue); }
.mobile-bar a.mb-wa i { color: var(--green); }
.mobile-bar a.mb-book { background: linear-gradient(135deg, var(--sky), var(--blue)); color: #fff; }
.mobile-bar a.mb-book i { color: #fff; }

/* ---------- Thank You ---------- */
.thanks-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.thanks-card { max-width: 520px; background: #fff; border-radius: 22px; padding: 50px 40px; box-shadow: var(--shadow-lg); }
.thanks-card .tick {
    width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 22px;
    background: linear-gradient(135deg, var(--sky), var(--blue)); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 38px;
}
.thanks-card h2 { font-size: 27px; margin-bottom: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero h2 { font-size: 38px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .routes-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .header-phone { display: none; }
}

@media (max-width: 768px) {
    body { padding-bottom: 58px; }
    .topbar-left span:nth-child(2) { display: none; }
    .hamburger { display: block; }
    .main-nav {
        position: fixed; top: 0; right: -290px; width: 280px; height: 100vh;
        background: #fff; box-shadow: -10px 0 40px rgba(19,41,61,.18);
        padding: 90px 24px 24px; transition: right .35s ease; z-index: 998;
    }
    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; gap: 6px; }
    .main-nav a { padding: 13px 16px; font-size: 15.5px; border-radius: 10px; }
    .header-cta .btn { display: none; }
    section { padding: 56px 0; }
    .hero { padding: 56px 0 66px; }
    .hero h2 { font-size: 31px; }
    .section-head h2 { font-size: 26px; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .routes-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .booking-card { padding: 24px 20px; }
    .cta-strip { padding: 34px 26px; text-align: center; justify-content: center; }
    .page-hero h2 { font-size: 25px; }
    .mobile-bar { display: grid; }
    .wa-float { bottom: 74px; right: 14px; width: 50px; height: 50px; font-size: 23px; }
    .hero-stats { gap: 22px; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .logo-text h1 { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
