/* ================= SECTION ================= */
/* ================= SECTION ================= */
.taxi-details-section {
    padding: 80px 0;
    background: #f9fafc;
}

/* IMAGE */
.taxi-image img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}

/* CONTENT */
.taxi-content h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 15px;
}

.taxi-content p {
    color: #666;
    line-height: 1.7;
}

/* FEATURES */
.taxi-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.feature {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature i {
    color: #00bcd4;
}

/* FORM */

.booking-form {
    background: #fff;

    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    /* changed */
    top: 0;
    margin-top: 15px;
    /* removed sticky */
}

.booking-form h3 {
    margin-bottom: 20px;
}

/* INPUT */
.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

/* ROW INPUT */
.booking-form .row input {
    margin-bottom: 12px;
}

/* BUTTON */
.btn-submit {
    width: 100%;
    padding: 12px;
    border: none;
    background: linear-gradient(90deg, #00bcd4, #ff7a00);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

/* CONTACT CTA */
.form-contact {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.call-btn,
.whatsapp-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
}

.call-btn {
    background: #ff7a00;
}

.whatsapp-btn {
    background: #25d366;
}


/* RIGHT SIDE IMAGE CARD */
.side-image-card {
    position: relative;
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.side-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

/* HOVER ZOOM */
.side-image-card:hover img {
    transform: scale(1.05);
}

/* OVERLAY */
.side-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}


/* BUTTON */
.side-image-overlay a {
    display: inline-block;
    background: linear-gradient(90deg, #00bcd4, #ff7a00);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.side-image-overlay a:hover {
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 576px) {
    .side-image-card img {
        height: 200px;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .booking-form {
        position: static;
        margin-top: 30px;
    }

    .taxi-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .taxi-content h2 {
        font-size: 24px;
    }

    .taxi-details-section {
        padding: 50px 0;
    }
}

/* ================= PRICING SECTION ================= */
.pricing-section {
    padding: 80px 0;
    background: #f9fafc;
}

/* HEADING */
.section-heading h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-heading p {
    color: #666;
    font-size: 15px;
}

/* ================= TABLE WRAPPER ================= */

/* IMPORTANT: enable horizontal scroll */
.custom-table {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* SCROLL CONTAINER */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* SCROLLBAR STYLE (Premium Look) */
.table-responsive::-webkit-scrollbar {
    height: 6px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #eee;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00bcd4, #ff7a00);
    border-radius: 10px;
}

/* ================= TABLE ================= */

.pricing-table {
    width: 100%;
    min-width: 900px;
    /* 🔥 IMPORTANT: forces horizontal scroll */
    border-collapse: collapse;
}

/* HEADER */
.pricing-table thead {
    background: linear-gradient(90deg, #00bcd4, #ff7a00);
    color: #fff;
}

.pricing-table th {
    padding: 16px;
    font-size: 13px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* BODY */
.pricing-table td {
    padding: 16px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

/* PREVENT TEXT BREAK */
.pricing-table td,
.pricing-table th {
    white-space: nowrap;
}

/* DETAILS COLUMN WRAP ONLY */
.pricing-table .details {
    white-space: normal;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ROW HOVER */
.pricing-table tbody tr {
    transition: 0.3s;
}

.pricing-table tbody tr:hover {
    background: #f4faff;
}

/* BUTTON */
.btn-book {
    display: inline-block;
    padding: 7px 14px;
    background: #ff7a00;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-book:hover {
    background: #e66a00;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 991px) {

    .pricing-table th,
    .pricing-table td {
        padding: 12px;
        font-size: 13px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .section-heading h2 {
        font-size: 26px;
    }

    .pricing-section {
        padding: 50px 0;
    }

    /* KEEP TABLE — JUST SCROLL */
    .pricing-table {
        min-width: 800px;
    }
}

/* ================= AREAS SECTION ================= */
.areas-section {
    padding: 80px 0;
    background: #f9fafc;
}

/* WRAPPER */
.areas-wrapper {
    margin-top: 40px;
}

/* BOX */
.area-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #f1f1f1;
}

/* HOVER */
.area-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* LIST */
.area-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* LIST ITEM */
.area-box ul li {
    margin-bottom: 12px;
    /* space between cards */
}

/* LINK TRANSFORMED TO CARD */
.area-box ul li a {
    text-decoration: none;
    color: #444;
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

/* ICON AS BOOTSTRAP PSEUDO ELEMENT */
.area-box ul li a::before {
    font-family: "bootstrap-icons";
    content: "\F3E8";
    /* The unicode for location/geo pin in bootstrap-icons */
    font-size: 16px;
    color: #ff6f61;
    /* A soft red/orange as seen in the image */
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.area-box ul li a:hover {
    color: #000;
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 111, 97, 0.12);
    border-color: rgba(255, 111, 97, 0.2);
}

.area-box ul li a:hover::before {
    transform: scale(1.1);
    color: #e64a19;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .area-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {

    .areas-section {
        padding: 50px 0;
    }

    .area-box {
        padding: 15px;
    }

    .area-box ul li a {
        font-size: 13px;
    }
}


/* ================= NEW PREMIUM INNER HERO ================= */

.inner-hero {
    position: relative;
    z-index: 10;
    /* Ensure this stays above the following sections for overflow items like stats bar */
    min-height: 650px;
    background: url("../image/header-bg.jpeg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 120px 0 140px;
    /* Added bottom padding for the overlay counter */
    overflow: visible !important;
    /* CRITICAL FIX: Explicitly override style.css constraint */
}

/* Ensure overlay stays below content */
.inner-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(0, 0, 0, 0.92) 30%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.inner-content {
    text-align: left !important;
    /* Override text-center */
    max-width: 100%;
    position: relative;
    z-index: 2;
}

/* Breadcrumb override for premium styling */
.inner-hero .breadcrumb-custom {
    background: none;
    backdrop-filter: none;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    gap: 10px;
}

.inner-hero .breadcrumb-custom a {
    color: #ccc;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.inner-hero .breadcrumb-custom a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.inner-hero .breadcrumb-custom .active {
    color: #ff7a00;
}

/* Title */
.inner-hero .main-title {
    font-size: 54px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.inner-hero .main-title span {
    color: #ff7a00;
}

/* Highlights Bar */
.hero-highlights {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.hero-highlights span {
    color: #fff;
}

.hero-highlights::before {
    content: "";
    /* just in case we want bullet points differently */
}

/* Description */
.inner-hero .inner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
}

/* Badges/Pills Wrapper */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pill-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.pill-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.pill-badge i {
    color: #ff7a00;
    font-size: 16px;
}

/* Hero Booking Form */
.hero-booking-form {
    border: 1px solid rgba(255, 122, 0, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .inner-hero {
        display: block;
        /* Change from flex to block for natural stacking */
    }

    .hero-booking-form {
        margin-top: 20px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .hero-booking-form {
        padding: 15px;
        margin-top: 25px;
    }

    .booking-form h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .booking-form input {
        padding: 10px;
        font-size: 13px;
    }

    .form-contact {
        flex-direction: column;
    }
}

/* STATS BAR SECTION (at bottom of inner-hero or relative to it) */
.stats-counter-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -40px;
    width: 95%;
    max-width: 1320px;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.9) 70%, #e66a00 70%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Fallback for browsers not supporting transparent gradient or just styling fix for the orange corner in screenshot */
.stats-counter-bar {
    background: #000;
    /* default black */
    background: linear-gradient(90deg, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0.95) 65%, #ff7a00 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 122, 0, 0.3);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    flex: 1;
}

.stat-item i {
    font-size: 32px;
    color: #ff7a00;
}

/* The items that end up on the orange part need white icons */
.stat-item:last-child i {
    color: #fff !important;
}

.stat-item h4 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.stat-item p {
    font-size: 13px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.stat-item:last-child p {
    color: #fff;
}

/* Adjust overall page padding for the overlay counter */
.taxi-details-section {
    padding-top: 120px !important;
}

/* RESPONSIVE FOR NEW HERO */
@media (max-width: 1200px) {
    .hero-car-img {
        width: 100%;
        right: -20px;
    }

    .inner-hero .main-title {
        font-size: 44px;
    }
}

@media (max-width: 991px) {
    .inner-hero {
        min-height: auto;
        height: auto !important;
        padding: 120px 0 80px;
        /* ample room for top navbar */
    }

    .inner-content {
        text-align: center !important;
        margin-bottom: 40px;
        width: 100%;
    }

    .inner-hero .main-title {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .inner-hero .inner-desc {
        margin: 0 auto 30px;
        max-width: 90%;
    }

    .hero-highlights,
    .hero-pills {
        justify-content: center;
    }

    /* Redesign stats counter to sit cleanly on mobile/tablet */
    .stats-counter-bar {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 40px 0 0 0;
        /* Remove negative margin to prevent overlap */
        flex-wrap: wrap;
        gap: 0;
        padding: 20px;
        background: linear-gradient(135deg, #1a1a1a 0%, #111 100%) !important;
        border: 1px solid #333;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        justify-content: space-between;
    }

    .stat-item {
        flex: 0 0 48%;
        padding: 15px 10px;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .stat-item i {
        font-size: 28px !important;
        color: #ff7a00 !important;
        /* Ensure icons are always orange and visible */
    }

    .stat-item h4 {
        font-size: 20px;
    }

    .stat-item p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .taxi-details-section {
        padding-top: 60px !important;
    }
}

@media (max-width: 576px) {
    .inner-hero {
        padding: 100px 15px 80px;
        min-height: 450px;
    }

    .inner-hero .main-title {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-highlights {
        font-size: 13px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        margin-bottom: 20px;
    }

    .hero-highlights span {
        white-space: nowrap;
    }

    .hero-pills {
        justify-content: center;
        gap: 10px;
        row-gap: 12px;
    }

    .pill-badge {
        padding: 8px 16px;
        font-size: 13px;
        flex: 1 1 auto;
        justify-content: center;
        max-width: 100%;
    }

    .stats-counter-bar {
        max-width: 100%;
        border-radius: 12px;
        margin-top: 40px;
    }

    .stat-item {
        flex: 0 0 50%;
        /* Keep 2x2 layout grid which looks super clean on mobile */
    }

    .stat-item i {
        font-size: 24px !important;
    }

    .stat-item h4 {
        font-size: 18px;
    }
}


/* ================= NEW BOTTOM SEO SECTION ================= */

.bottom-seo-section {
    padding: 80px 0;
    background: #fff;
}

.seo-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.seo-content-col {
    flex: 1;
}

.seo-img-col {
    flex: 0 0 450px;
}

.seo-content-col h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.seo-content-col h2 span {
    color: #ff7a00;
}

.seo-content-col p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

.seo-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.seo-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.seo-feat-item img,
.seo-feat-item i {
    font-size: 28px;
    color: #ff7a00;
}

.bottom-banner-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 300px;
}

.bottom-banner-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-overlay-text {
    position: absolute;
    top: 25px;
    left: 25px;
    color: #fff;
    z-index: 2;
}

.img-overlay-text h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.img-overlay-text p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* RESPONSIVE FOR NEW SECTION */
@media (max-width: 991px) {
    .seo-row {
        flex-direction: column;
        gap: 30px;
    }

    .seo-img-col {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .seo-content-col h2 {
        font-size: 26px;
        text-align: center;
    }

    .seo-content-col p {
        text-align: center;
    }

    .seo-features-inline {
        justify-content: center;
    }
}


/* ================= WHY CHOOSE US SECTION ================= */

.why-choose-section {
    padding: 80px 0;
    background: #f9fafc;
    /* slightly grey offset */
    text-align: center;
}

.why-choose-section .section-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.why-choose-section .section-heading h2 span {
    color: #ff7a00;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.choose-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.1);
    border-color: rgba(255, 122, 0, 0.15);
}

.choose-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.choose-card:hover .choose-icon-wrap {
    background: #ff7a00;
}

.choose-icon-wrap i {
    font-size: 24px;
    color: #ff7a00;
    transition: all 0.3s ease;
}

.choose-card:hover .choose-icon-wrap i {
    color: #fff;
}

.choose-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 42px;
    /* ensure vertical alignment of texts */
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* RESPONSIVE WHY CHOOSE */
@media (max-width: 1200px) {
    .choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .why-choose-section .section-heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= PREMIUM PRICING TABLE UI ================= */

.pricing-section {
    background: #ffffff;
    padding: 80px 0;
}

.pricing-section .section-heading h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pricing-section .section-heading p {
    color: #777;
    margin-bottom: 40px;
}

.custom-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

/* PREMIUM GRADIENT HEADER */
.pricing-table thead tr {
    background: linear-gradient(to right, #1e1e1e 0%, #1e1e1e 20%, #e65100 100%) !important;
}

.pricing-table th {
    color: #fff !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 13px;
    padding: 20px 15px;
    letter-spacing: 0.5px;
    border: none !important;
}

.pricing-table th:first-child {
    padding-left: 25px;
}

/* ROW STYLES */
.pricing-table td {
    padding: 20px 15px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    vertical-align: middle;
    border-bottom: 1px solid #f1f1f1;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table td:first-child {
    padding-left: 25px;
    font-weight: 700;
    color: #222;
    font-size: 15px;
}

.pricing-table td.details {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* BOOK BUTTON STYLE OVERRIDE */
.pricing-table .btn-book {
    display: inline-block;
    padding: 8px 18px;
    border: 1.5px solid #ff7a00;
    color: #ff7a00 !important;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: none;
    text-align: center;
    background: transparent;
}

.pricing-table .btn-book:hover {
    background: #ff7a00;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

/* Responsiveness for Table container scrolling */
@media (max-width: 991px) {

    .pricing-table th,
    .pricing-table td {
        padding: 15px 10px;
        font-size: 13px;
        white-space: nowrap;
    }

    .pricing-table td.details {
        white-space: normal;
        min-width: 180px;
    }
}


/* ================= PREMIUM FAQ SECTION ================= */

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section .section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .section-heading h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.faq-section .section-heading span {
    color: #ff7a00;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    font-weight: 700;
    font-size: 16px;
    color: #222;
    user-select: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-header::after {
    font-family: "bootstrap-icons";
    content: "\F282";
    /* bi-chevron-down */
    font-size: 16px;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* WHEN OPENED (will be activated via simple toggle script in HTML or standard Bootstrap collapse if user prefers) 
Let's use standard bootstrap collapse structure for extreme stability across the HTMLs! */

/* CSS customization for BOOTSTRAP ACCORDION class if injected */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 12px !important;
    margin-bottom: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.accordion-button {
    font-weight: 700 !important;
    color: #222 !important;
    font-size: 17px !important;
    padding: 22px 25px !important;
    box-shadow: none !important;
    background-color: #fff !important;
}

.accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #ff7a00 !important;
    box-shadow: none !important;
}

.accordion-button::after {
    background-image: none !important;
    font-family: "bootstrap-icons";
    content: "\F282";
    /* bi-chevron-down */
    transform: none;
    color: #333;
    font-size: 18px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: "\F286";
    /* bi-chevron-up */
    color: #ffffff !important;
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 25px 25px 25px !important;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .accordion-button {
        font-size: 15px !important;
        padding: 18px 20px !important;
    }
}


/* ================= PREMIUM CTA BOTTOM BAR ================= */

.cta-bar-wrapper {
    margin-top: 40px;
    margin-bottom: 60px;
    width: 100%;
}


.cta-bar {
    background: linear-gradient(135deg, #091020 0%, #0c1830 100%);
    border-radius: 16px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Decorative Background Texture or Glow */
.cta-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.cta-left-content {
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.cta-car-img {
    display: none;
    /* Explicitly removed as requested */
}

.cta-text h3 {
    color: #fff;
    font-size: 26px;
    /* Slightly larger for premium impact */
    font-weight: 800;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.cta-right-actions {
    display: flex;
    gap: 15px;
    z-index: 2;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-btn-call {
    background: linear-gradient(to right, #ff6a00, #ff9100);
}

.cta-btn-whatsapp {
    background: linear-gradient(to right, #1b9f42, #25d366);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn i {
    font-size: 18px;
}

/* Responsive Layout */
@media (max-width: 991px) {
    .cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }

    .cta-left-content {
        flex-direction: column;
        gap: 20px;
    }

    .cta-right-actions {
        width: 100%;
        justify-content: center;
    }

    .cta-car-img {
        width: 180px;
    }
}

@media (max-width: 576px) {
    .cta-right-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ================= CONTENT INLINE IMAGES ================= */
.content-inline-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.content-inline-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.content-inline-img:hover img {
    transform: scale(1.03);
}

.img-caption {
    background: #f4f6f8;
    padding: 10px 16px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    border-top: 2px solid #ff7a00;
}

.img-caption i {
    color: #ff7a00;
    font-size: 14px;
}

.seo-sub-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 18px 0 8px;
}

.seo-sub-section h5 {
    font-size: 14px;
    font-weight: 700;
    color: #ff7a00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 14px 0 6px;
}

@media (max-width: 576px) {
    .content-inline-img img {
        height: 200px;
    }
}

/* ================= SUPPORT CONTACT CARD (SIDEBAR) ================= */
.support-contact-card {
    margin-top: 24px;
    background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 36px 24px 24px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 122, 0, 0.15);
    text-align: center;
    overflow: visible;
}

/* Decorative orange glow top-right */
.support-contact-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* FLOATING ICON */
.scc-icon-wrap {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scc-icon-ring {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6a00, #ff9100);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.45);
    border: 3px dashed rgba(255, 255, 255, 0.25);
    animation: pulseScc 2.5s ease-in-out infinite;
}

.scc-icon-ring i {
    font-size: 22px;
    color: #fff;
}

@keyframes pulseScc {

    0%,
    100% {
        box-shadow: 0 8px 20px rgba(255, 106, 0, 0.45);
    }

    50% {
        box-shadow: 0 8px 35px rgba(255, 106, 0, 0.7);
    }
}

/* BADGE */
.scc-badge {
    display: inline-block;
    background: rgba(255, 122, 0, 0.12);
    border: 1px solid rgba(255, 122, 0, 0.3);
    color: #ff7a00;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    margin-top: 10px;
}

/* TITLE */
.scc-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.scc-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* DIVIDER */
.scc-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 122, 0, 0.4), transparent);
    margin: 20px 0;
}

/* CONTACT ITEMS */
.scc-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.scc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.scc-item:hover {
    background: rgba(255, 122, 0, 0.1);
    border-color: rgba(255, 122, 0, 0.3);
    transform: translateX(4px);
}

/* ITEM ICON */
.scc-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.scc-call .scc-item-icon {
    background: rgba(255, 122, 0, 0.15);
    color: #ff7a00;
}

.scc-email .scc-item-icon {
    background: rgba(0, 188, 212, 0.12);
    color: #00bcd4;
}

.scc-whatsapp .scc-item-icon {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

/* ITEM INFO */
.scc-item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
}

.scc-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.scc-value {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    word-break: break-all;
}

/* ARROW */
.scc-arrow {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.15);
    transition: color 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.scc-item:hover .scc-arrow {
    color: #ff7a00;
    transform: translateX(3px);
}

/* BOTTOM NOTE */
.scc-note {
    margin-top: 18px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0;
}

.scc-note i {
    color: #ff7a00;
    font-size: 13px;
}

@media (max-width: 576px) {
    .support-contact-card {
        padding: 32px 16px 18px;
    }

    .scc-title {
        font-size: 19px;
    }

    .scc-value {
        font-size: 12px;
    }
}

/* ================= SHORT PRICE TABLE (No scroll) ================= */
.short-price-wrap h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.short-price-wrap h3 i {
    color: #ff7a00;
}

.short-price-wrap>p {
    font-size: 13px;
    color: #666;
}

.short-price-table-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid #eee;
}

.short-price-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.short-price-table thead tr {
    background: linear-gradient(to right, #1a1a1a 0%, #1a1a1a 60%, #ff7a00 100%);
}

.short-price-table th {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 13px 14px;
    text-align: left;
}

.short-price-table td {
    padding: 12px 14px;
    font-size: 13px;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.short-price-table td i {
    color: #ff7a00;
    font-size: 13px;
    margin-right: 5px;
}

.short-price-table tbody tr:last-child td {
    border-bottom: none;
}

.short-price-table tbody tr:hover {
    background: #fff8f3;
}

.spt-book-btn {
    display: inline-block;
    padding: 5px 14px;
    background: #ff7a00;
    color: #fff !important;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}

.spt-book-btn:hover {
    background: #e66a00;
}

/* ================= INLINE WHY CHOOSE US ================= */
.inline-why-choose {
    margin-top: 10px;
}

.inline-why-choose>h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inline-why-choose>p {
    font-size: 13px;
    color: #666;
}

.iwc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.iwc-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
}

.iwc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 0, 0.2);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.08);
}

.iwc-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: background 0.3s;
}

.iwc-card:hover .iwc-icon {
    background: #ff7a00;
}

.iwc-icon i {
    font-size: 20px;
    color: #ff7a00;
    transition: color 0.3s;
}

.iwc-card:hover .iwc-icon i {
    color: #fff;
}

.iwc-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.iwc-card p {
    font-size: 12px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .iwc-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .short-price-table th,
    .short-price-table td {
        padding: 10px 10px;
        font-size: 12px;
    }
}

/* ================= SIDEBAR STICKY FIXES ================= */
.taxi-details-section .row {
    align-items: flex-start !important;
}

.taxi-details-section .col-lg-5 {
    align-self: flex-start !important;
}

.sidebar-sticky {
    position: sticky;
    top: 95px;
    z-index: 10;
}

@media (max-width: 991px) {
    .sidebar-sticky {
        position: static !important;
        margin-top: 40px;
    }
}

/* ================= PREMIUM ROUTE INFORMATION CARD ================= */
.route-card-premium {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px 24px;
    margin-top: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: left;
}

.route-card-premium:hover {
    box-shadow: 0 20px 50px rgba(255, 122, 0, 0.08);
    border-color: rgba(255, 122, 0, 0.15);
}

/* Decorative badge */
.rcp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 122, 0, 0.1);
    color: #ff7a00;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.rcp-badge i {
    font-size: 12px;
}

.rcp-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
    text-align: left;
}

.rcp-subtitle {
    font-size: 13px;
    color: #777;
    margin-bottom: 24px;
}

/* Visual Map UI */
.rcp-visual-map {
    background: #fdfdfd;
    border: 1px solid #f5f5f5;
    border-radius: 16px;
    padding: 20px 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.rcp-node {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.rcp-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.rcp-node-start .rcp-circle {
    border-color: #25d366;
    color: #25d366;
}

.rcp-node-end .rcp-circle {
    border-color: #ff7a00;
    color: #ff7a00;
}

.rcp-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.rcp-text strong {
    font-size: 15px;
    color: #222;
    font-weight: 700;
}

.rcp-text span {
    font-size: 11px;
    color: #999;
}

/* Visual connector */
.rcp-connector {
    padding-left: 18px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.rcp-line {
    position: absolute;
    left: 17px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #25d366 0%, #ff7a00 100%);
    z-index: 1;
}

.rcp-taxi-icon {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff7a00;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(255, 122, 0, 0.4);
    animation: rideVertical 3s infinite ease-in-out;
}

@keyframes rideVertical {

    0%,
    100% {
        top: 25%;
    }

    50% {
        top: 75%;
    }
}

.rcp-via-tag {
    margin-left: 24px;
    background: #f5f6f8;
    color: #555;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    border-left: 2px solid #ff7a00;
    width: max-content;
}

/* Route Stats Grid */
.rcp-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.rcp-stat-item {
    background: #fcfcfc;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.rcp-stat-item:hover {
    background: #fffcf9;
    border-color: rgba(255, 122, 0, 0.1);
}

.rcp-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 122, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7a00;
    font-size: 15px;
    flex-shrink: 0;
}

.rcp-stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.rcp-stat-info span {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.rcp-stat-info strong {
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

/* Card footer */
.rcp-footer {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px dashed #eee;
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
    font-style: italic;
    text-align: left;
}

.rcp-footer i {
    color: #00bcd4;
    font-size: 12px;
}

@media (max-width: 576px) {
    .route-card-premium {
        padding: 24px 18px 18px;
    }

    .rcp-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================= PREMIUM SIDEBAR AREAS COVERED CARD ================= */
.sidebar-routes-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    margin-top: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
}

.sidebar-routes-card:hover {
    box-shadow: 0 20px 50px rgba(255, 122, 0, 0.08);
    border-color: rgba(255, 122, 0, 0.15);
}

.src-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 122, 0, 0.1);
    color: #ff7a00;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.src-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
    text-align: left;
}

.src-subtitle {
    font-size: 13px;
    color: #777;
    margin-bottom: 24px;
}

/* Accordion Reset & Styling */
.src-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.src-accordion .accordion-item {
    border: 1px solid #f1f1f1;
    border-radius: 12px !important;
    overflow: hidden;
    background: #fcfcfc;
}

.src-accordion .accordion-button {
    background: #fcfcfc;
    color: #333;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 16px;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.src-accordion .accordion-button:not(.collapsed) {
    background: #fff9f2;
    color: #ff7a00;
}

.src-accordion .accordion-button::after {
    background-size: 12px;
    width: 12px;
    height: 12px;
}

.src-accordion .accordion-button i {
    font-size: 16px;
    color: #ff7a00;
}

.src-accordion .accordion-body {
    padding: 10px 15px 15px;
    background: #fff;
    border-top: 1px solid #fcf1e8;
}

/* Link Grid / List */
.src-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 4px;
}

/* Custom scrollbar for links */
.src-link-list::-webkit-scrollbar {
    width: 4px;
}

.src-link-list::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 4px;
}

.src-link-list::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 4px;
}

.src-link-list::-webkit-scrollbar-thumb:hover {
    background: #ff7a00;
}

.src-link-list li {
    border-bottom: 1px dashed #f1f1f1;
}

.src-link-list li:last-child {
    border-bottom: none;
}

.src-link-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    padding: 8px 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.src-link-list a i {
    font-size: 10px;
    color: #bbb;
    transition: all 0.2s ease;
}

.src-link-list a:hover {
    background: rgba(255, 122, 0, 0.05);
    color: #ff7a00;
    padding-left: 10px;
}

.src-link-list a:hover i {
    color: #ff7a00;
    transform: translateX(2px);
}

@media (max-width: 576px) {
    .sidebar-routes-card {
        padding: 24px 18px;
    }
}

/* ================= CONTENT INLINE FAQ ================= */
.inline-faq-wrap {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
}

.faq-heading-small h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
}

.faq-heading-small p {
    font-size: 14px;
    color: #777;
}

.inline-faq-wrap .accordion {
    --bs-accordion-bg: #fff;
    --bs-accordion-border-color: #f1f1f1;
    --bs-accordion-border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inline-faq-wrap .accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
    border: 1px solid #f1f1f1;
}

.inline-faq-wrap .accordion-button {
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    background: #fcfcfc;
    box-shadow: none !important;
}

.inline-faq-wrap .accordion-button:not(.collapsed) {
    background: #fff9f2;
    color: #ff7a00;
}

.inline-faq-wrap .accordion-body {
    padding: 20px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #555;
    background: #fff;
    border-top: 1px solid #fff1e5;
}

@media (max-width: 576px) {
    .inline-faq-wrap {
        padding: 20px 16px;
    }

    .faq-heading-small h3 {
        font-size: 20px;
    }
}

/* ================= PREMIUM SIDEBAR WHY CHOOSE CARD ================= */
.sidebar-why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
}

.sidebar-why-card:hover {
    box-shadow: 0 20px 50px rgba(255, 122, 0, 0.08);
    border-color: rgba(255, 122, 0, 0.15);
}

.sw-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 122, 0, 0.1);
    color: #ff7a00;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.sw-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
    text-align: left;
}

.sw-subtitle {
    font-size: 13px;
    color: #777;
    margin-bottom: 24px;
}

.sw-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sw-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px;
    background: #fcfcfc;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sw-item:hover {
    background: #fff9f2;
    border-color: #ffeedb;
    transform: translateX(4px);
}

.sw-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 122, 0, 0.1);
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sw-item:hover .sw-icon {
    background: #ff7a00;
    color: #fff;
}

.sw-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}

.sw-content p {
    font-size: 12px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .sidebar-why-card {
        padding: 24px 18px;
    }
}

/* ================= PREMIUM BOTTOM CTA 2-COLUMN SECTION ================= */
.premium-bottom-cta {
    position: relative;
    padding: 10px 0;
}

.bcta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 122, 0, 0.1);
    color: #ff7a00;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 122, 0, 0.15);
}

.bcta-title {
    font-size: 34px;
    font-weight: 850;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.highlight-orange {
    color: #ff7a00;
    position: relative;
}

.bcta-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 25px;
}

/* Right Side Card Styling */
.bcta-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bcta-form-card:hover {
    box-shadow: 0 25px 60px rgba(255, 122, 0, 0.06);
    border-color: rgba(255, 122, 0, 0.15);
}

.bcta-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff7a00 0%, #ff9538 100%);
}

.bcta-form-header {
    margin-bottom: 20px;
    text-align: left;
}

.bcta-form-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.bcta-form-header p {
    font-size: 13px;
    color: #777;
    margin-bottom: 0;
}

.bcta-form .form-control {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    font-size: 14px;
    color: #222;
    padding: 0 16px;
    background: #fcfcfc;
    transition: all 0.2s ease;
}

.bcta-form input[type="date"].form-control {
    color: #777;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}

.bcta-form .form-control:focus {
    border-color: #ff7a00 !important;
    background: #fff;
}

.bcta-submit-btn {
    background: #ff7a00;
    color: #ffffff;
    border: none;
    width: 100%;
    height: 52px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 5px;
}

.bcta-submit-btn:hover {
    background: #e06a00;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 122, 0, 0.35);
}

.bcta-form-footer i {
    color: #ff7a00;
    margin-right: 3px;
}

/* Mini Action Links Hover styles */
.bcta-contact-bar .btn-dark {
    background: #1a1a1a;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.bcta-contact-bar .btn-dark:hover {
    background: #ff7a00 !important;
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.25);
}

.bcta-contact-bar .btn-dark:hover .text-warning {
    color: #fff !important;
}

.bcta-contact-bar .btn-success {
    background: #25D366;
    border: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.15);
    transition: all 0.2s ease;
}

.bcta-contact-bar .btn-success:hover {
    background: #1fb856;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31, 184, 86, 0.25);
}

@media (max-width: 991px) {
    .premium-bottom-cta {
        text-align: center;
    }

    .bcta-title {
        font-size: 28px;
    }

    .bcta-feature-item {
        text-align: left;
        max-width: 500px;
        margin-inline: auto;
    }

    .bcta-contact-bar {
        justify-content: center;
    }

    .bcta-form-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .bcta-form-header {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .bcta-badge {
        margin-bottom: 12px;
    }

    .bcta-title {
        font-size: 24px;
    }

    .bcta-desc {
        font-size: 14px;
    }

    .bcta-form-card {
        padding: 28px 20px;
    }
}

/* ================= PREMIUM FAQ SECTION ================= */
.premium-faq-section {
    position: relative;
    overflow: hidden;
}

.faq-badge {
    background: rgba(255, 122, 0, 0.1);
    color: #ff7a00;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.faq-main-title {
    font-size: 38px;
    color: #1a1a1a;
    line-height: 1.2;
}

.premium-accordion .accordion-item {
    border: none;
    background: #fff;
    transition: all 0.3s ease;
}

.premium-accordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
}

.premium-accordion .accordion-button {
    background: #fff;
    color: #1a1a1a;
    font-size: 16px;
    border-radius: 12px !important;
}

.premium-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: #ff7a00;
    box-shadow: none;
}

.premium-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%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");
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

.premium-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff7a00'%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");
    transform: rotate(-180deg);
}

/* FAQ IMAGE STYLES */
.faq-image-wrapper {
    z-index: 1;
}

.faq-image-card {
    border: 8px solid #fff;
}

.experience-badge-faq {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: #ff7a00;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.4);
    z-index: 2;
    text-align: center;
}

.eb-inner h4 {
    font-size: 32px;
    font-weight: 800;
}

.eb-inner span {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .faq-main-title {
        font-size: 30px;
    }

    .experience-badge-faq {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }

    .eb-inner h4 {
        font-size: 24px;
    }
}