:root {
    --amber-600: #d97706;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-600: #4b5563;
    --gray-400: #9ca3af;
    --amber-50: #fffbeb;
    --card-bg: #ffffff;
    --muted: var(--gray-600);
    --radius: 12px;
    --shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a !important;
    letter-spacing: 2px;
    text-align: center !important;
    display: block;
}

.nav-link {
    color: #1a1a1a !important;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #e17100 !important;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.4rem;
    color: #e17100;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

p.hero-subtitle {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 1rem;
}



.section-image {
    width: 100%;
    height: 650px;
    /* adjustable */
    object-fit: cover;
    display: block;
}



/* ===============================
   Services First Section (Isolated)
================================ */

.services-first-sec {
    position: relative;
    max-width: 1200px;
    height: 100vh;
    /* full screen like example */
    overflow: hidden;
    margin: 50px auto 0px auto;
    border-radius: 12px;
}

.services-first-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Center Content */
.services-first-sec .content-box {
    position: absolute;
    bottom: 40px;
    /* ⭐ Bottom se distance */
    left: 50%;
    transform: translateX(-50%);
    /* ⭐ Sirf X-axis center */
    text-align: center;
    color: #fff;
    padding: 20px;
    width: 100%;
}

.services-first-sec .content-box h2 {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.services-first-sec .content-box .date {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Button */
.services-first-sec .btn-discover {
    padding: 12px 35px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: 0.3s;
}

.services-first-sec .btn-discover:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .services-first-sec {
        height: 80vh;
    }

    .services-first-sec .content-box h2 {
        font-size: 1.8rem;
    }

    .section-image {
        margin: 0 10px 0 10px;
    }

    .services-first-sec {
        margin: 50px 10px 0px 10px;
    }

}


/* Why Choose Section */
.why-choose {
    background-color: #fffbeb;
    padding: 80px 0;
}

.why-choose-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.value-card {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e37500;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 1rem 0;
}

.stat-box {
    padding: 2rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e17100;
    display: block;
    margin-bottom: 0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-light-custom:nth-child(1) {
    color: #fff !important;
    background-color: #e17100;

}

.btn-light-custom:nth-child(1):hover {
    color: #e17100 !important;
    background-color: #fff;

}

.btn-light-custom {
    background-color: white;
    color: #e17100;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #e17100;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.btn-light-custom:hover {
    background-color: #e17100;
    color: #fff;
}

/* Footer */
footer {
    background-color: #0d0d0d;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-section h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #e17100;
}

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e17100;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {



    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {


    .navbar-brand {
        font-size: 1.3rem;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-content {
        padding: 40px 20px;
    }

    .stats-container {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-box {
        padding: 1rem;
    }
}

.hero-content .container {
    max-width: 900px;
    margin: 40px auto 10px auto;
    padding: 0 16px;
}

.features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    min-width: 150px;
}

.feature h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #d98100;
    font-weight: 700;
}

.feature p {
    margin: 0;
    font-size: 13px;
    color: #fff;
}

.sep {
    width: 6px;
    height: 6px;
    background: #c7c7c7;
    border-radius: 50%;
    flex: 0 0 auto;
}

/* Mobile Responsive */
@media (max-width: 680px) {
    .features {
        gap: 20px;
    }

    .sep {
        display: none;
    }
}

@media (min-width: 992px) {
    .call-btn {
        display: none;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 60px;
        /* button ke neeche khulega */
        left: 0;
        width: 100%;
        background: #fff;
        /* apni navbar ki background match kar do */
        padding: 15px 20px;
        z-index: 9999;
    }

    .navbar {
        position: relative;
    }
}

.faq-header {
    padding: 3rem 0 1rem 0;
    border-bottom: 1px solid #e0d5c7;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Accordion Styles */
.accordion-item {
    border: none;
    border-bottom: 1px solid #e0d5c7;
    margin-bottom: 1.5rem;
    background-color: transparent;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    background-color: #fffbf5;
    border-radius: 8px;
    border-bottom: 1px solid #e17100;
}

.accordion-button {
    background-color: transparent;
    border: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 1rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #e17100;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: #e17100;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e17100'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.25rem;
    height: 1.25rem;
}

.accordion-body {
    padding: 0 1rem 1.5rem 1rem;
    background-color: transparent;
    border: none;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    background: #fffbec;
    text-align: center;
}

.hero-section h1 {
    font-size: 56px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 40px;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background-color: white;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.about-image img:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.8;
}

.highlight-text {
    color: #d97706;
    font-weight: 600;
}

/* Highlights Grid */
.highlights-section {
    padding: 80px 0;
    background-color: #fffbec;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.highlight-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.highlight-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    font-size: 48px;
    color: #d97706;
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 12px;
}

.highlight-card p {
    color: #4b5563;
    line-height: 1.6;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .about-row,
    .about-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .about-image,
    .about-text {
        flex: 1 !important;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 16px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }


}


.services-grid-section {
    padding: 80px 0;
    background-color: white;
}

.services-grid-section h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--amber-600);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--amber-600);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 16px;
}

/* Includes Section */
.includes-section {
    padding: 80px 0;
    background-color: var(--amber-50);
}

.includes-section h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: var(--gray-900);
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.include-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.include-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.include-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.include-item p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .services-grid,
    .includes-grid {
        grid-template-columns: 1fr;
    }
}

.corporate-features {
    list-style: none;
}

.corporate-features li {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
}

.corporate-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--amber-600);
    font-weight: bold;
    font-size: 20px;
}

/* Service Features Section */
.features-section {
    padding: 80px 0;
    background-color: #fffbec;
}

.features-section h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: var(--gray-900);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--amber-600);
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--amber-600);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 16px;
}

/* Section wrapper */
.fleet-section {
    padding: 60px 10px;
    color: var(--gray-900);
}

.fleet-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 28px;
    letter-spacing: -0.2px;
    font-weight: 700;
}

/* Grid */
.fleet-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Card */
.vehicle-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s cubic-bezier(.2, .9, .3, 1), box-shadow .25s;
    border: 1px solid rgba(17, 24, 39, 0.04);
}

.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

/* Media area (image + price) */
.vehicle-media {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.06), rgba(255, 255, 255, 0));
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
    transition: transform .6s ease;
}

/* Slight zoom on hover */
.vehicle-card:hover .vehicle-img {
    transform: scale(1.05);
}

/* Price badge */
.price-badge {
    position: absolute;
    right: 14px;
    bottom: 12px;
    background: linear-gradient(90deg, rgba(217, 119, 6, 1), rgba(255, 166, 38, 1));
    color: white;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.18);
}

/* Body */
.vehicle-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vehicle-title {
    font-size: 18px;
    margin: 0;
    color: var(--gray-900);
    font-weight: 700;
}

.vehicle-sub {
    margin: 0;
    font-size: 14px;
    color: var(--gray-800);
    opacity: 0.95;
}

/* Specs */
.vehicle-specs {
    list-style: none;
    padding: 0;
    margin: 6px 0 0 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted);
}

.vehicle-specs li {
    background: rgba(31, 41, 55, 0.04);
    padding: 6px 8px;
    border-radius: 8px;
}

/* CTA */
.btn-cta {
    margin-top: 8px;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    background: transparent;
    color: var(--amber-600);
    font-weight: 700;
    border: 1.5px solid rgba(217, 119, 6, 0.12);
    transition: background .18s, color .18s, transform .12s;
}

.btn-cta:hover {
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.12), rgba(255, 166, 38, 0.06));
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-media {
        height: 220px;
    }
}

@media (min-width: 901px) and (max-width: 1199px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}