@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

/* Global Paragraph Typography Rules */
p,
body p,
.page-content p {
    font-family: 'Lato', sans-serif !important;
    font-size: 15px !important;
}

/* ==========================================================================
   Delhi NCR Car Rental Page Custom Stylesheet
   File: css/car-rental-delhi.css
   ========================================================================== */

/* Subtitles & Typography */
.h2-subtitle {
    color: var(--widget-primary, #0f7c46);
    font-size: 19px;
    font-weight: 700;
    margin-top: -10px;
    margin-bottom: 18px;
}

.delhi-intro-text {
    font-size: 15.5px;
    line-height: 1.7;
}

.delhi-intro-text a {
    color: var(--widget-primary, #0f7c46);
    font-weight: 600;
    text-decoration: underline;
}

.delhi-intro-text a.phone-link {
    font-weight: 700;
    text-decoration: none;
}

/* Quick Jump Anchor Navigation */
.quick-jump-nav {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-left: 4px solid #0f7c46;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 25px;
    margin-bottom: 40px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.quick-jump-title {
    font-size: 12px;
    font-weight: 700;
    color: #0f7c46;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.quick-jump-title i {
    margin-right: 6px;
    font-size: 13px;
}

.quick-jump-links-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-jump-link {
    background: #f1f5f9;
    color: #1e293b;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.quick-jump-link i {
    color: #0f7c46;
    margin-right: 6px;
    font-size: 11px;
}

.quick-jump-link:hover {
    background: #e4efe7;
    color: #0f7c46;
    border-color: #0f7c46;
}

/* Fleet Categories & Tariffs Card */
.fleet-tariffs-card {
    margin-top: 35px;
    margin-bottom: 40px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--widget-primary, #0f7c46);
    padding: 26px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.fleet-tariffs-card h3 {
    margin-top: 0;
    font-size: 19px;
    font-weight: 700;
    color: #1a202c;
}

.fleet-tariffs-card h3 i {
    color: var(--widget-primary, #0f7c46);
    margin-right: 8px;
}

.fleet-tariffs-list {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 15px;
}

.btn-tariff-book {
    background-color: var(--widget-primary, #0f7c46);
    border-color: var(--widget-primary, #0f7c46);
    color: #ffffff;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-tariff-book:hover {
    background-color: #0d693b;
    color: #ffffff;
}

/* Self-Drive vs Chauffeur Comparison */
.sec-comparison-block {
    padding-top: 45px;
    margin-bottom: 45px;
}

.sec-comparison-block h2 {
    font-size: 21px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.sec-comparison-block h2 i {
    color: var(--widget-primary, #0f7c46);
    margin-right: 8px;
}

/* Comparison Section Redesign (Matches Screenshots Layout) */
.sec-comparison-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.sec-comparison-header p {
    font-size: 15px;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto 28px auto;
    line-height: 1.6;
}

/* Top Image Banner Cards */
.cmp-img-card {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.cmp-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.5) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 24px;
}

.cmp-img-badge {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.cmp-img-badge.hero {
    background: #0f7c46;
    color: #ffffff;
}

.cmp-img-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.cmp-img-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13.5px;
    margin: 0;
    font-weight: 500;
}

/* Detail Block Cards */
.cmp-block-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cmp-detail-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cmp-detail-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.cmp-detail-card.hero-border {
    border-left: 4px solid #2563eb;
}

.cmp-detail-card.neutral-border {
    border-left: 4px solid #0f7c46;
}

.cmp-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cmp-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-right: 12px;
    flex-shrink: 0;
}

.cmp-icon-box.hero-box {
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
}

.cmp-icon-box.neutral-box {
    background: rgba(15, 124, 70, 0.12);
    color: #0f7c46;
}

.cmp-card-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.cmp-card-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Tag Pills */
.cmp-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cmp-pill {
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
}

.cmp-pill.hero-pill {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
}

.cmp-pill.neutral-pill {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.comparison-footer-note {
    font-size: 14.5px;
    color: #64748b;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 0;
}

.comparison-footer-note a {
    color: var(--widget-primary, #0f7c46);
    font-weight: 600;
    text-decoration: underline;
}

/* Modern Promo Banner (Matching Screenshot Design) */
.cmp-promo-banner {
    background: linear-gradient(135deg, rgb(114 175 145 / 8%) 0%, rgb(255 255 255 / 37%) 100%);
    border: 1px solid rgba(114, 175, 145, 0.25);
    border-radius: 20px;
    padding: 28px 32px;
    color: #1e293b;
    position: relative;
    overflow: hidden;
    margin-top: 35px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.cmp-promo-content {
    position: relative;
    z-index: 2;
}

.cmp-promo-icon-badge {
    width: 44px;
    height: 44px;
    background: rgba(15, 124, 70, 0.1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0f7c46;
    margin-bottom: 12px;
}

.cmp-promo-title {
    font-size: 21px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cmp-promo-desc {
    font-size: 14px;
    color: #475569;
    margin-bottom: 18px;
    max-width: 580px;
    line-height: 1.6;
}

.cmp-promo-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cmp-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f7c46;
    color: #ffffff;
    font-weight: 700;
    font-size: 13.5px;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 124, 70, 0.2);
}

.cmp-promo-btn:hover {
    background: #0b6237;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.cmp-promo-btn.secondary {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.cmp-promo-btn.secondary:hover {
    background: #f8fafc;
    color: #0f7c46;
    border-color: #0f7c46;
}

.cmp-promo-img-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.cmp-promo-img {
    max-height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.cmp-promo-abs-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    max-height: 200px;
    object-fit: contain;
    object-position: right bottom;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .cmp-promo-abs-img {
        opacity: 0.15;
        max-height: 120px;
    }
}

/* Driver Safety Section */
.driver-safety-block {
    padding-top: 45px;
    margin-bottom: 45px;
}

.driver-safety-title {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.3;
}

.driver-safety-title span {
    color: #0f7c46;
    font-style: italic;
    font-family: Georgia, serif;
}

.driver-safety-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 28px;
}

.safety-feature-item {
    display: flex;
    align-items: flex-start;
}

.safety-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #e4efe7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}

.safety-icon-box i {
    color: #0f7c46;
    font-size: 20px;
}

.safety-feature-content h3 {
    font-size: 15.5px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.safety-feature-content p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.driver-safety-card {
    background: linear-gradient(to right, rgb(15 23 42 / 38%) 0%, rgb(15 23 42 / 21%) 45%, rgb(15 23 42 / 0%), #00000000 100%), url('../images/gallery/india-gate-girl.jpg') center right / cover no-repeat;
    border-radius: 20px;
    padding: 36px 30px;
    color: #ffffff;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.driver-safety-card-content {
    max-width: 78%;
}

.driver-safety-card .badge-text {
    text-transform: uppercase;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #FFC107;
    display: block;
    margin-bottom: 12px;
}

.driver-safety-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 14px;
}

.driver-safety-card p {
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 0;
}

.driver-safety-card .btn-ride {
    background: #ffffff;
    color: #0f7c46;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.driver-safety-card .btn-ride:hover {
    transform: translateY(-2px);
    background-color: #f8fafc;
    color: #0f7c46;
}

/* Airport Packages Section */
.sec-airport-packages-block {
    padding-top: 45px;
    margin-bottom: 45px;
}

.sec-airport-packages-block h2 {
    font-size: 21px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.sec-airport-packages-block h2 i {
    color: var(--widget-primary, #0f7c46);
    margin-right: 8px;
}

.sec-airport-packages-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.pkg-grid-row {
    margin-left: -6px;
    margin-right: -6px;
}

.pkg-grid-col {
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: 16px;
}

.pkg-grid-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
}

.pkg-grid-card.featured {
    border: 2px solid #0f7c46;
    box-shadow: 0 4px 14px rgba(15, 124, 70, 0.1);
    position: relative;
}

.pkg-featured-tag {
    position: absolute;
    top: -10px;
    right: 12px;
    background: #0f7c46;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 8px;
    text-transform: uppercase;
}

.pkg-badge {
    background: rgba(15, 124, 70, 0.1);
    color: #0f7c46;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 12px;
}

.pkg-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
}

.pkg-title i {
    color: var(--widget-primary, #0f7c46);
    margin-right: 8px;
    font-size: 16px;
}

.pkg-title.featured-title {
    color: #0f7c46;
}

.pkg-desc {
    font-size: 13px;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.6;
}

.pkg-btn {
    background: #0f7c46;
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    width: 100%;
    font-size: 12.5px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    padding: 8px 12px;
    transition: background-color 0.2s ease;
}

.pkg-btn:hover {
    background-color: #0d693b;
    color: #ffffff;
}

/* Delhi NCR Coverage Section */
.coverage-section-block {
    padding-top: 45px;
    margin-bottom: 45px;
}

.coverage-header-row {
    margin-bottom: 20px;
}

.coverage-header-row h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
}

.coverage-header-row h2 i {
    color: #0f7c46;
    margin-right: 10px;
    font-size: 24px;
}

.coverage-header-row p {
    font-size: 14.5px;
    color: #64748b;
    margin: 0;
}

.coverage-slider-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.coverage-slider-container::-webkit-scrollbar {
    display: none;
}

.coverage-card-item {
    flex: 0 0 calc(25% - 12px);
    min-width: 260px;
}

@media (max-width: 991px) {
    .coverage-card-item {
        flex: 0 0 calc(50% - 8px);
        min-width: 250px;
    }
}

@media (max-width: 575px) {
    .coverage-card-item {
        flex: 0 0 80%;
        min-width: 240px;
    }
}

.coverage-card-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coverage-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.coverage-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
}

.coverage-card-badge span {
    background: rgba(255, 255, 255, 0.95);
    color: #0f7c46;
    font-size: 11.5px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
}

.coverage-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 18px 16px 18px;
    color: #ffffff;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.65) 75%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.coverage-card-left h3 {
    font-size: 17.5px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 3px 0;
    line-height: 1.25;
}

.coverage-card-location {
    font-size: 13px;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.coverage-card-location i {
    color: #ffffff;
    margin-right: 5px;
    font-size: 12px;
}

.coverage-card-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.coverage-price-lbl {
    font-size: 11px;
    color: #cbd5e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 2px;
}

.coverage-price-val {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

/* Centered Identical Navigation Buttons */
.coverage-nav-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    margin-bottom: 10px;
}

.coverage-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    outline: none;
}

.coverage-nav-btn:hover {
    background: #0f7c46;
    border-color: #0f7c46;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 124, 70, 0.2);
}

.coverage-nav-btn i {
    font-size: 15px;
}

/* Rental Terms & Policies Section */
.sec-terms-block {
    padding-top: 45px;
    margin-bottom: 45px;
}

.sec-terms-block h2 {
    font-size: 21px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.sec-terms-block h2 i {
    color: var(--widget-primary, #0f7c46);
    margin-right: 8px;
}

.sec-terms-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.policy-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
}

.policy-card.terms-local {
    border-top: 4px solid #0f7c46;
}

.policy-card.terms-outstation {
    border-top: 4px solid #2563eb;
}

.policy-card.terms-guarantee {
    border-top: 4px solid #d97706;
}

.policy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.policy-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
}

.policy-header h3 i {
    margin-right: 8px;
}

.policy-header h3 i.icon-local {
    color: #0f7c46;
}

.policy-header h3 i.icon-outstation {
    color: #2563eb;
}

.policy-header h3 i.icon-guarantee {
    color: #d97706;
}

.policy-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

.policy-tag.tag-local {
    background: rgba(15, 124, 70, 0.1);
    color: #0f7c46;
}

.policy-tag.tag-outstation {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.policy-tag.tag-guarantee {
    background: rgba(217, 119, 6, 0.1);
    color: #d97706;
}

.policy-list {
    padding-left: 16px;
    margin-bottom: 0;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.7;
}

.policy-list a {
    color: var(--widget-primary, #0f7c46);
    font-weight: 600;
    text-decoration: underline;
}

/* Why Choose Us Section */
.why-choose-block {

    padding: 40px 32px;
    margin-top: 45px;
    margin-bottom: 45px;
}

.why-choose-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.why-choose-header-text {
    max-width: 650px;
}

.why-choose-header-text h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.why-choose-header-text p {
    font-size: 14.5px;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

.why-choose-btn-top {
    background: #0f7c46;
    color: #ffffff;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.why-choose-btn-top:hover {
    background: #0d693b;
    color: #ffffff;
}

.why-choose-row {
    margin-left: -8px;
    margin-right: -8px;
}

.why-choose-col {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}

.why-choose-card {
    background: #e4efe7;
    color: #1e293b;
    border-radius: 16px;
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-choose-card.featured {
    background: #0f7c46;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 124, 70, 0.18);
}

.why-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.why-choose-card.featured .why-icon-circle {
    background: rgba(255, 255, 255, 0.15);
}

.why-choose-card.featured .why-icon-circle i {
    font-size: 22px;
    color: #FFC107;
}

.why-choose-card .why-icon-circle {
    background: rgba(15, 124, 70, 0.12);
}

.why-choose-card .why-icon-circle i {
    font-size: 20px;
    color: #0f7c46;
}

.why-choose-card .why-icon-circle i.whatsapp-icon {
    font-size: 22px;
    color: #16a34a;
}

.why-choose-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.why-choose-card.featured h3 {
    color: #ffffff;
}

.why-choose-card h3 {
    color: #1e293b;
}

.why-choose-card p {
    font-size: 13.5px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.why-choose-card.featured p {
    color: #e2e8f0;
}

.why-choose-card p {
    color: #475569;
}

.why-choose-card-btn {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
    text-decoration: none;
}

.why-choose-card.featured .why-choose-card-btn {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.why-choose-card .why-choose-card-btn {
    background: #0f7c46;
    color: #ffffff;
}

.why-choose-card .why-choose-card-btn:hover {
    background: #0d693b;
    color: #ffffff;
}

/* Bottom Callout Booking CTA */
.bottom-booking-cta-card {
    background: linear-gradient(135deg, rgb(114 175 145 / 8%) 0%, rgb(255 255 255 / 37%) 100%);
    border: 1px solid rgba(15, 124, 70, 0.2);
    padding: 28px 26px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 45px;
    margin-bottom: 45px;
}

.bottom-booking-cta-card h3 {
    margin-top: 0;
    color: var(--widget-primary, #0f7c46);
    font-size: 20px;
    font-weight: 700;
}

.bottom-booking-cta-card h3 i {
    margin-right: 8px;
}

.bottom-booking-cta-card p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
}

.cta-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background-color: var(--widget-primary, #0f7c46);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-cta-primary:hover {
    background-color: #0d693b;
    color: #ffffff;
}

.btn-cta-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-cta-whatsapp:hover {
    background-color: #1eb857;
    color: #ffffff;
}

/* FAQ Section */
.faq-section-block {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding-top: 60px;
    padding-bottom: 60px;
}

.faq-section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq-section-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 8px;
}

.faq-section-header h2 i {
    color: var(--widget-primary, #0f7c46);
    margin-right: 8px;
}

.faq-section-header p {
    color: #64748b;
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
}

.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-accordion-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.faq-accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
}

.faq-accordion-header span i {
    color: var(--widget-primary, #0f7c46);
    margin-right: 10px;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #64748b;
    font-size: 14px;
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: #ffffff;
}

.faq-accordion-content {
    padding: 14px 22px 18px 22px;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
}

.faq-accordion-content a {
    color: var(--widget-primary, #0f7c46);
    font-weight: 600;
    text-decoration: underline;
}

/* Intro About Section (Matching Reference Screenshot Design) */
.intro-about-section {
    padding-top: 25px;
    margin-bottom: 45px;
}

/* Left Image Collage */
.intro-about-img-collage {
    position: relative;
    padding-bottom: 40px;
    padding-right: 30px;
}

.intro-about-img-main {
    width: 88%;
    height: 380px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.intro-about-img-badge {
    position: absolute;
    top: 24px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 2px solid #e2e8f0;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.intro-about-badge-text {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.intro-about-badge-sub {
    font-size: 11px;
    color: #0f7c46;
    font-weight: 700;
    line-height: 1.2;
}

.intro-about-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 62%;
    height: 180px;
    object-fit: cover;
    border-radius: 22px;
    border: 6px solid #ffffff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* Right Content Column */
.intro-about-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(15, 124, 70, 0.08);
    color: #0f7c46;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.intro-about-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.25;
    margin-bottom: 14px;
}

.intro-about-desc {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* 2 Feature Grid Columns */
.intro-about-features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 26px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 22px;
}

.intro-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.intro-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #0f7c46;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(15, 124, 70, 0.25);
}

.intro-feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.intro-feature-content p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Bottom Grid Row */
.intro-about-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.intro-award-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px 18px;
    text-align: center;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.intro-award-card i {
    font-size: 26px;
    color: #0f7c46;
    margin-bottom: 4px;
    display: block;
}

.intro-award-card span {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    display: block;
    line-height: 1.3;
}

.intro-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.intro-check-list li {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.intro-check-list li i {
    color: #0f7c46;
    font-size: 14px;
}

.intro-about-btn {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.intro-about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.4);
    text-decoration: none;
}

@media (max-width: 991px) {
    .intro-about-title {
        font-size: 26px;
    }

    .intro-about-img-collage {
        margin-bottom: 30px;
        padding-right: 20px;
    }

    .intro-about-img-main {
        width: 90%;
        height: 320px;
    }

    .intro-about-img-sub {
        width: 55%;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .intro-about-features-row {
        grid-template-columns: 1fr;
    }

    .intro-about-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .intro-award-card {
        width: 100%;
    }
}

/* Section Background Colors & Helper Classes */
.bg-soft-grey {
    background-color: #f8f9fa;
}

.bg-white-pure {
    background-color: #ffffff;
}

#sec-hero-banner {
    background-image: url('../images/banner/bnr1.webp');
    min-height: 400px;
    background-color: #f8f9fa;
}

.icon-award-intro {
    color: #0f7c46;
    font-size: 20px;
}

.icon-balance-cmp {
    color: #0f7c46;
    margin-right: 8px;
}

.cmp-link-highlight {
    color: #0f7c46;
    font-weight: 700;
    text-decoration: underline;
}

.driver-safety-col-pad {
    padding-right: 15px;
}

.btn-ride-wrap {
    margin-top: 24px;
}

.icon-arrow-btn {
    margin-left: 8px;
    font-size: 12px;
}

.icon-arrow-sm {
    margin-left: 6px;
    font-size: 12px;
}

/* Card Image Background Classes */
.cmp-img-card.chauffeur-bg {
    background-image: url('../images/gallery/chauffeur-driven -car-hire.webp');
}

.cmp-img-card.self-drive-bg {
    background-image: url('../images/gallery/self-drive-car-rental.webp');
}

.coverage-card-inner.delhi-bg {
    background-image: url('../images/gallery/india-gate.webp');
}

.coverage-card-inner.gurgaon-bg {
    background-image: url('../images/gallery/Gurgaon.webp');
}

.coverage-card-inner.noida-bg {
    background-image: url('../images/gallery/noida-water-park.webp');
}

.coverage-card-inner.gnoida-bg {
    background-image: url('../images/gallery/Greater Noida-gaur-city.webp');
}

.coverage-card-inner.ghaziabad-bg {
    background-image: url('../images/gallery/Ghaziabad-iskcon-temple.webp');
}

.coverage-card-inner.faridabad-bg {
    background-image: url('../images/gallery/Faridabad-Raja-Nahar-Singh-Palace.webp');
}

.coverage-card-inner.sonipat-bg {
    background-image: url('../images/gallery/Sonipat-Khwaja-Khizr-Tomb.webp');
}

.coverage-card-inner.meerut-bg {
    background-image: url('../images/gallery/meerut-Hastinapur.webp');
}

/* Section 8 Visual Terms Card Component (Matching Reference Image Design) */
.terms-visual-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-visual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.terms-card-img-wrap {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.terms-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.terms-visual-card:hover .terms-card-img {
    transform: scale(1.05);
}

.terms-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
    line-height: 1.35;
}

.terms-card-list {
    padding-left: 16px;
    margin-bottom: 18px;
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
}

.terms-card-list li {
    margin-bottom: 6px;
}

.terms-card-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 10px;
}

.terms-card-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
}

.terms-card-price-badge i {
    color: #0f7c46;
    font-size: 12px;
}

.terms-pill-btn {
    background: #e4efe7;
    color: #0f7c46;
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.terms-pill-btn:hover {
    background: #0f7c46;
    color: #ffffff;
    text-decoration: none;
}

.terms-card-footer-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 12.5px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    gap: 4px;
    transition: color 0.2s ease;
}

.terms-card-footer-link:hover {
    color: #0f7c46;
    text-decoration: none;
}

.terms-card-footer-link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.terms-card-footer-link:hover i {
    transform: translateX(3px);
}

/* Universal Main Section Heading Class */
.section-title-main {
    font-size: 32px !important;
    font-weight: 800;
    line-height: 1.3;
}

@media (max-width: 576px) {
    .section-title-main {
        font-size: 26px !important;
    }
}