/* ========================================
   Indore Cab Service — Shared Styles
   Home + Ujjain + Omkareshwar
   ======================================== */

/* Header */

header {
    padding: 20px;
    background: #111;
    color: white;
}

.header-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

header nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

header nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

header nav a:hover {
    text-decoration: underline;
}


/* Mobile */

@media (max-width: 700px) {

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    header nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px 18px;
    }

}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
}


main {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

.hero {
    padding: 40px 0 70px;
    max-width: 750px;
}

.eyebrow {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.hero h1,
h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 20px;
}

.intro {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

.hero-text {
    font-size: 20px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 22px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.btn-primary {
    background: #111;
    color: white;
}

.btn-secondary {
    border: 1px solid #111;
    color: #111;
    background: transparent;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.routes {
    padding: 40px 0;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.route-card {
    display: block;
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    color: #222;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.route-card:hover,
.route-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.route-card h3 {
    color: #222;
    margin-top: 0;
}

.route-card p {
    color: #555;
}

.services {
    padding: 50px 0;
}

.section-intro {
    margin-top: -5px;
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    padding: 28px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
}

.service-card h3 {
    margin: 15px 0 10px;
}

.service-card p {
    font-size: 16px;
    color: #555;
}

.service-icon {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}

.why-us {
    padding: 60px 0;
}

.why-us h2 {
    max-width: 600px;
    margin-top: 0;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    padding: 25px 0;
    border-top: 1px solid #ddd;
}

.why-card h3 {
    margin-bottom: 10px;
}

.why-card p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.faq {
    padding: 60px 0;
}

.faq h2 {
    margin-bottom: 30px;
}

.faq-list {
    max-width: 800px;
}

.faq-list details {
    background: white;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.faq-list summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.faq-list details p {
    font-size: 16px;
    color: #555;
    margin: 15px 0 0;
}

.final-cta {
    margin: 30px 0 60px;
    padding: 50px 30px;
    background: #111;
    color: white;
    border-radius: 12px;
}

.final-cta h2 {
    font-size: 36px;
    margin: 10px 0;
}

.final-cta p {
    max-width: 650px;
}

.final-cta .btn-primary {
    background: white;
    color: #111;
    margin-top: 15px;
}

.bottom-cta {
    margin-top: 60px;
    padding: 45px 30px;
    background: #f0f0f0;
    border-radius: 12px;
}

.bottom-cta h2 {
    font-size: 32px;
    margin: 10px 0 15px;
}

.bottom-cta p:not(.eyebrow) {
    max-width: 700px;
    color: #555;
}

.content {
    margin-top: 60px;
}

.content h2 {
    margin-top: 45px;
}

.content p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

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

.info-card {
    background: white;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.info-card strong {
    display: block;
    margin-bottom: 8px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span:last-child {
    color: #888;
}

.enquiry-list {
    padding-left: 20px;
    margin-top: 20px;
}

.enquiry-list li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #444;
}

.route-link {
    display: block;
    color: #222;
    text-decoration: none;
}

.route-image {
    margin: 30px 0;
}

.route-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
}

.route-image figcaption {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

.table-of-contents {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 22px 25px;
    margin: 30px 0;
}

.table-of-contents strong {
    display: block;
    font-size: 20px;
    margin-bottom: 12px;
}

.table-of-contents ul {
    margin: 0;
    padding-left: 20px;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: #333;
    text-decoration: none;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

footer {
    background: #111;
    color: white;
    padding: 40px 20px 20px;
}

.footer-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-inner p {
    color: #bbb;
    font-size: 15px;
}

.footer-bottom {
    max-width: 1100px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 13px;
}

@media (max-width: 700px) {
    main {
        padding: 60px 20px;
    }

    .hero h1,
    h1 {
        font-size: 36px;
    }

    .route-grid,
    .service-grid,
    .why-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        margin-left: 0;
        margin-top: 10px;
    }

    .bottom-cta {
        padding: 35px 20px;
    }

    .bottom-cta h2 {
        font-size: 27px;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .footer-inner {
        flex-direction: column;
    }
}