:root {
    --primary-color: #033668;
    --accent-color: #ca4a32;
    --text-dark: #1a2b4a;
    --text-muted: #6b7a99;
    --card-radius: 18px;
    --transition: 0.35s ease;
}

body {
    overflow-x: hidden;
    font-family: var(--ltn__heading-font) !important;
}

.container-fluid {
    width: 94%;
}

.__bg_primary_color {
    background: var(--primary-color);
}

.ltn__header-5 .ltn__header-middle-area {
    padding: 5px 0;
}

.site-logo {
    width: 70%;
}
button, input, optgroup, select, textarea {
    font-family: var(--ltn__heading-font) !important;
}


/* ================================================
   TAXI ROUTES SECTION
   ================================================ */

.taxi-routes-section {
    padding: 80px 0 90px;
    background: #ffffff;
}

/* ---- Section heading ---- */
.tr-section-heading {
    text-align: center;
    margin-bottom: 52px;
}

.tr-section-heading .tr-tagline {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.tr-section-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.tr-section-heading h2 span {
    color: var(--text-dark);
}

/* ---- Routes grid ---- */
.tr-routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* ---- Individual route card ---- */
.tr-route-card {
    background: #ffffff;
    border-radius: var(--card-radius);
    box-shadow: 0 4px 24px rgba(3, 54, 104, 0.10);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.tr-route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(3, 54, 104, 0.18);
}

/* ---- Route image ---- */
.tr-route-img {
    width: 100%;
    /*aspect-ratio: 1 / 1;*/
    overflow: hidden;
    position: relative;
    background: #eef2ff;
}

.tr-route-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.tr-route-card:hover .tr-route-img img {
    transform: scale(1.05);
}

/* ---- Card body ---- */
.tr-route-body {
    padding: 18px 20px 20px;
    text-align: center;
}

.tr-route-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 16px;
    line-height: 1.45;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Action buttons ---- */
.tr-route-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.tr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition);
}

.tr-btn--book {
    background: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(202, 74, 50, 0.35);
}

.tr-btn--book:hover {
    background: #b03a22;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(202, 74, 50, 0.50);
    transform: translateY(-2px);
}

.tr-btn--price {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid #d0d8e8;
}

.tr-btn--price:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .tr-routes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .tr-section-heading h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .taxi-routes-section {
        padding: 56px 0 64px;
    }

    .tr-section-heading h2 {
        font-size: 24px;
    }

    .tr-routes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tr-route-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tr-routes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ================================================
   DESTINATION BY CATEGORIES SECTION
   ================================================ */

.destination-categories-section {
    padding: 80px 0 90px;
    background: #ffffff;
}

/* Section heading */
.destination-categories-section .section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.destination-categories-section .section-heading .tagline {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.destination-categories-section .section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.destination-categories-section .section-heading h2 span {
    color: var(--accent-color);
}

/* Cards grid */
.destination-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Individual card */
.dest-cat-card {
    background: #ffffff;
    border-radius: var(--card-radius);
    box-shadow: 0 4px 24px rgba(3, 54, 104, 0.10);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.dest-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(3, 54, 104, 0.18);
    text-decoration: none;
}

/* Image wrapper */
.dest-cat-card .card-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--card-radius);
    position: relative;
}

.dest-cat-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
    display: block;
}

.dest-cat-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

/* Subtle overlay on hover */
.dest-cat-card .card-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(3, 54, 104, 0.18) 100%);
    border-radius: var(--card-radius);
    opacity: 0;
    transition: opacity var(--transition);
}

.dest-cat-card:hover .card-img-wrapper::after {
    opacity: 1;
}

/* Card body */
.dest-cat-card .card-body {
    padding: 18px 20px 20px;
}

.dest-cat-card .card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: color var(--transition);
}

.dest-cat-card:hover .card-title {
    color: var(--accent-color);
}

/* ================================================
   CAR RENTAL SECTION
   ================================================ */

.car-rental-section {
    padding: 30px 0;
    background: #f5f8ff;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.car-rental-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(3, 54, 104, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.car-rental-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ---- Section heading ---- */
.cr-section-heading {
    text-align: center;
    margin-bottom: 52px;
}

.cr-section-heading .cr-tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cr-section-heading h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px;
    line-height: 1.2;
}

.cr-section-heading h2 span {
    color: var(--accent-color);
}

.cr-section-heading p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Features / USP strip ---- */
.cr-features-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin-bottom: 56px;
    padding: 28px 32px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(3, 54, 104, 0.07);
}

.cr-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 160px;
}

.cr-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f0fe 0%, #d0e4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 18px;
    transition: background var(--transition), color var(--transition);
}

.cr-feature-item:hover .cr-feature-icon {
    background: var(--primary-color);
    color: #ffffff;
}

.cr-feature-text {
    display: flex;
    flex-direction: column;
}

.cr-feature-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.cr-feature-text span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ---- Vehicle cards grid ---- */
.cr-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-bottom: 52px;
}

/* ---- Individual vehicle card ---- */
.cr-vehicle-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(3, 54, 104, 0.09);
    overflow: visible;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.cr-vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(3, 54, 104, 0.16);
}

/* Featured card accent border */
.cr-vehicle-card--featured {
    border: 2px solid var(--accent-color);
}

.cr-vehicle-card--featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--accent-color), #ff6fb0);
    z-index: 0;
    opacity: 0;
    transition: opacity var(--transition);
}

/* ---- Badge ---- */
.cr-vehicle-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
    background: var(--primary-color);
    color: #ffffff;
}

.cr-vehicle-badge--hot {
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
}

.cr-vehicle-badge--suv {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.cr-vehicle-badge--group {
    background: linear-gradient(135deg, #059669, #10b981);
}

/* ---- Vehicle image ---- */
.cr-vehicle-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
    background: #eef2ff;
}

.cr-vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.cr-vehicle-card:hover .cr-vehicle-img img {
    transform: scale(1.05);
}

/* gradient overlay on image bottom */
.cr-vehicle-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
}

/* ---- Card body ---- */
.cr-vehicle-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cr-vehicle-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.cr-vehicle-model {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 18px;
    line-height: 1.5;
}

/* ---- Specs list ---- */
.cr-vehicle-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 4px;
}

.cr-vehicle-specs li {
    font-size: 13px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 7px;
}

.cr-vehicle-specs li i {
    color: var(--primary-color);
    font-size: 13px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* ---- Card footer ---- */
.cr-vehicle-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #eef2ff;
}

.cr-price {
    display: flex;
    flex-direction: column;
}

.cr-price-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cr-price-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

.cr-price-value small {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

/* ---- Book Now button ---- */
.cr-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b35 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: box-shadow var(--transition), transform var(--transition), opacity var(--transition);
    box-shadow: 0 4px 16px rgba(255, 45, 120, 0.35);
}

.cr-book-btn:hover {
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 8px 28px rgba(255, 45, 120, 0.50);
    transform: translateY(-2px);
}

/* featured card — invert button */
.cr-vehicle-card--featured .cr-book-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a57b0 100%);
    box-shadow: 0 4px 16px rgba(3, 54, 104, 0.35);
}

.cr-vehicle-card--featured .cr-book-btn:hover {
    box-shadow: 0 8px 28px rgba(3, 54, 104, 0.50);
}

/* ---- CTA Banner ---- */
.cr-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 36px 48px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a57b0 60%, #1a6bd0 100%);
    position: relative;
    overflow: hidden;
}

/* decorative circle inside banner */
.cr-cta-banner::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.cr-cta-banner::after {
    content: '';
    position: absolute;
    right: 80px;
    bottom: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cr-cta-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.cr-cta-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.cr-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cr-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition);
}

.cr-cta-btn--primary {
    background: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 45, 120, 0.45);
}

.cr-cta-btn--primary:hover {
    color: #ffffff;
    text-decoration: none;
    background: #e0005f;
    box-shadow: 0 8px 28px rgba(255, 45, 120, 0.60);
    transform: translateY(-2px);
}

.cr-cta-btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.cr-cta-btn--outline:hover {
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}

/* ---- Empty state (no vehicles) ---- */
.cr-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 24px;
    color: var(--text-muted);
}

.cr-empty-icon {
    font-size: 56px;
    color: #d0d8e8;
    margin-bottom: 20px;
}

.cr-empty-state h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.cr-empty-state p {
    font-size: 15px;
    max-width: 420px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1199px) {
    .destination-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .destination-categories-section .section-heading h2 {
        font-size: 30px;
    }

    /* Car rental */
    .cr-vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .cr-section-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .cr-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 28px;
    }

    .cr-cta-actions {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .destination-categories-section {
        padding: 56px 0 64px;
    }

    .destination-categories-section .section-heading h2 {
        font-size: 26px;
    }

    .destination-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Car rental */
    .car-rental-section {
        padding: 60px 0 70px;
    }

    .cr-section-heading h2 {
        font-size: 27px;
    }

    .cr-features-strip {
        gap: 14px 20px;
        padding: 22px 20px;
    }

    .cr-feature-item {
        min-width: 130px;
    }

    .cr-vehicles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .cr-cta-banner {
        padding: 28px 22px;
    }

    .cr-cta-text h3 {
        font-size: 20px;
    }

    .cr-cta-btn {
        padding: 11px 20px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .cr-vehicles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cr-features-strip {
        justify-content: flex-start;
    }

    .cr-cta-actions {
        flex-direction: column;
    }

    .cr-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .destination-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ================================================
   FOOTER — JPT REDESIGN
   ================================================ */

/* ── Shared container ── */
.jpt-footer__container {
    width: 94%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── Root wrapper ── */
.jpt-footer {
    background: #04203f;
    /* deep navy, slightly lighter than --primary-color */
    color: rgba(255, 255, 255, 0.72);
    font-size: 14.5px;
    line-height: 1.65;
}

/* ── Divider utility ── */
.jpt-footer [class*="ltn__footer"],
.jpt-footer [class*="ltn__copyright"],
.jpt-footer [class*="footer-top"],
.jpt-footer [class*="footer-widget"] {
    /* neutralise any inherited styles from the base theme */
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ================================================
   NEWSLETTER BAR
   ================================================ */

.jpt-footer__newsletter-bar {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b35 100%);
    padding: 26px 0;
}

.jpt-newsletter-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.jpt-newsletter-bar-text {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    flex: 1;
    min-width: 240px;
}

.jpt-newsletter-bar-icon {
    font-size: 28px;
    opacity: 0.92;
    flex-shrink: 0;
}

.jpt-newsletter-bar-text strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.jpt-newsletter-bar-text span {
    font-size: 13.5px;
    opacity: 0.88;
}

/* Form */
.jpt-newsletter-form {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
    min-width: 320px;
}

.jpt-newsletter-form input[type="email"] {
    flex: 1;
    height: 48px;
    padding: 0 18px;
    border: none;
    border-radius: 50px 0 0 50px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-size: 14px;
    outline: none;
    transition: background 0.2s;
}

.jpt-newsletter-form input[type="email"]:focus {
    background: #ffffff;
}

.jpt-newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.jpt-newsletter-form button {
    height: 48px;
    padding: 0 24px;
    border: none;
    border-radius: 0 50px 50px 0;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}

.jpt-newsletter-form button:hover {
    background: #021e3a;
    transform: translateX(2px);
}

/* ================================================
   MAIN BODY — 4-column grid
   ================================================ */

.jpt-footer__body {
    padding: 72px 0 56px;
    position: relative;
}

/* Decorative top-right glow */
.jpt-footer__body::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.jpt-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px 40px;
}

/* ── Column titles ── */
.jpt-footer__col-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 22px;
    padding-bottom: 12px;
    position: relative;
    letter-spacing: 0.3px;
}

/* Accent underline */
.jpt-footer__col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ff6b35);
}

/* ── Brand column ── */
.jpt-footer__logo {
    display: inline-block;
    margin-bottom: 18px;
}

.jpt-footer__logo img {
    max-height: 56px;
    width: auto;
    /* keep logo readable on dark bg */
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.jpt-footer__about-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 5px;
    line-height: 1.75;
}

/* ── Contact list ── */
.jpt-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jpt-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.68);
    margin-top:0;
}

.jpt-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
    transition: background var(--transition);
}

.jpt-contact-list li:hover .jpt-contact-icon {
    background: var(--accent-color);
    color: #ffffff;
}

.jpt-contact-list a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: color var(--transition);
}

.jpt-contact-list a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* ── Social icons ── */
.jpt-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.jpt-social__link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.70);
    font-size: 15px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition),
        border-color var(--transition), transform var(--transition);
}

.jpt-social__link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
}

/* ── Nav link lists (Quick Links / Destinations / Services) ── */
.jpt-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.jpt-footer__links li{
    margin-top: 0rem;
}
.jpt-footer__links li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition), gap var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.jpt-footer__links li:last-child a {
    border-bottom: none;
}

.jpt-footer__links li a i {
    font-size: 11px;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.jpt-footer__links li a:hover {
    color: #ffffff;
    gap: 13px;
    text-decoration: none;
}

.jpt-footer__links li a:hover i {
    transform: translateX(3px);
}

/* ================================================
   BOTTOM BAR
   ================================================ */

.jpt-footer__bottom {
    background: rgba(0, 0, 0, 0.30);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.jpt-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.jpt-footer__copyright {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.52);
    margin: 0;
}

.jpt-footer__copyright strong {
    color: rgba(255, 255, 255, 0.80);
    font-weight: 600;
}

.jpt-footer__bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 4px 20px;
    flex-wrap: wrap;
}

.jpt-footer__bottom-links li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.50);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}

.jpt-footer__bottom-links li a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width var(--transition);
}

.jpt-footer__bottom-links li a:hover {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.jpt-footer__bottom-links li a:hover::after {
    width: 100%;
}

/* ================================================
   FOOTER RESPONSIVE
   ================================================ */

@media (max-width: 1199px) {
    .jpt-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 36px;
    }

    .jpt-footer__col--brand {
        grid-column: 1 / -1;
        /* full width on tablet */
    }

    /* re-lay brand column content horizontally */
    .jpt-footer__col--brand {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 36px;
        align-items: start;
    }

    .jpt-footer__logo,
    .jpt-footer__about-text {
        grid-column: 1;
    }

    .jpt-contact-list {
        grid-column: 2;
        grid-row: 1 / span 2;
        margin-bottom: 0;
        align-self: start;
    }


    .jpt-social {
        grid-column: 1;
    }
}

@media (max-width: 991px) {
    .jpt-newsletter-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .jpt-newsletter-form {
        width: 100%;
        min-width: 0;
    }

    .jpt-newsletter-form input[type="email"] {
        flex: 1;
    }
}

@media (max-width: 767px) {
    
    .jpt-footer__body {
        padding: 52px 0 40px;
    }

    .jpt-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .jpt-footer__col--brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
    }

    .jpt-contact-list {
        margin-bottom: 20px;
    }

    .jpt-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .jpt-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .jpt-newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .jpt-newsletter-form input[type="email"] {
        width: 100%;
        border-radius: 50px;
    }

    .jpt-newsletter-form button {
        width: 100%;
        border-radius: 50px;
        justify-content: center;
    }

    .jpt-footer__bottom-links {
        gap: 8px 12px;
    }
}

/* ================================================
   HEADER — ENHANCED STYLES
   ================================================ */

/* ── Top bar ── */
.ltn__header-top-area.__bg_primary_color {
    background: var(--primary-color) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ltn__header-top-area .ltn__top-bar-menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ltn__header-top-area .ltn__top-bar-menu ul li a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color var(--transition);
    letter-spacing: 0.2px;
}

.ltn__header-top-area .ltn__top-bar-menu ul li a:hover {
    color: #ffffff;
}

.ltn__header-top-area .ltn__top-bar-menu ul li a i {
    font-size: 12px;
    opacity: 0.80;
}

/* Social icons in top bar */
.ltn__header-top-area .ltn__social-media ul {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ltn__header-top-area .ltn__social-media ul li a {
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.ltn__header-top-area .ltn__social-media ul li a:hover {
    background: var(--accent-color);
    color: #ffffff;
}

/* ── Main nav bar ── */
.ltn__header-middle-area {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(3, 54, 104, 0.08);
    transition: box-shadow var(--transition), padding var(--transition);
}

/* Sticky state — tighter padding, stronger shadow */
.ltn__header-middle-area.sticky-active {
    box-shadow: 0 4px 32px rgba(3, 54, 104, 0.14) !important;
    padding: 5px !important;
}

/* Logo */
.site-logo-wrap .site-logo {
    width: auto;
}

.site-logo-wrap .site-logo img {
    max-height: 54px;
    width: auto;
    transition: transform var(--transition);
}

.site-logo-wrap .site-logo img:hover {
    transform: scale(1.03);
}

/* ── Main menu ── */
.ltn__main-menu>ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px;
}

.ltn__main-menu>ul>li>a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.2px;
    position: relative;
    transition: color var(--transition);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

/* Animated underline */
.ltn__main-menu>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
}

.ltn__main-menu>ul>li>a:hover,
.ltn__main-menu>ul>li.active>a {
    color: var(--accent-color);
}

.ltn__main-menu>ul>li>a:hover::after,
.ltn__main-menu>ul>li.active>a::after {
    transform: scaleX(1);
}


/* Mobile hamburger */
.mobile-menu-toggle svg path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 40px;
    stroke-linecap: round;
    transition: stroke var(--transition);
}

/* ================================================
   HERO / BANNER SECTION
   ================================================ */

.jpt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ── Background slides ── */
.jpt-hero__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.jpt-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease, transform 8s ease;
    transform: scale(1.06);
}

.jpt-hero__slide.active {
    opacity: 1;
    transform: scale(1);
}

.jpt_background {
    background-image: linear-gradient(160deg, rgba(3, 54, 104, 0.55) 0%, rgba(0, 0, 0, 0.40) 100%);
}

/* Three slide backgrounds — using the existing slider image + CSS gradients as fallback */
.jpt-hero__slide--1 {
    background-image: linear-gradient(160deg, rgba(3, 54, 104, 0.55) 0%, rgba(0, 0, 0, 0.40) 100%), url('../images/slider1.png');
}

.jpt-hero__slide--2 {
    background-image:
        linear-gradient(160deg, rgba(3, 54, 104, 0.60) 0%, rgba(255, 45, 120, 0.20) 100%),
        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600&q=80');
}

.jpt-hero__slide--3 {
    background-image:
        linear-gradient(160deg, rgba(0, 0, 0, 0.50) 0%, rgba(3, 54, 104, 0.55) 100%),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1600&q=80');
}

/* ── Overlay ── */
.jpt-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(3, 54, 104, 0.20) 0%,
            rgba(0, 0, 0, 0.10) 50%,
            rgba(0, 0, 0, 0.55) 100%);
}

/* ── Inner content ── */
.jpt-hero__inner {
    position: relative;
    z-index: 2;
    width: 94%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 60px;
    align-items: center;
}

/* ── Hero text (left column) ── */
.jpt-hero__text {
    color: #ffffff;
}

.jpt-hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
    color: #fff;
}

.jpt-hero__heading {
    font-size: clamp(36px, 5vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 20px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.30);
}

.jpt-hero__heading span {
    color: var(--accent-color);
    position: relative;
}

/* Wavy underline on span */
.jpt-hero__heading span::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ff6b35);
    opacity: 0.70;
}

.jpt-hero__sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin: 0 0 28px;
    max-width: 480px;
}

/* Trust badges */
.jpt-hero__badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.jpt-hero__badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    padding: 7px 16px;
    border-radius: 50px;
    transition: background var(--transition), border-color var(--transition);
}

.jpt-hero__badges span i {
    color: var(--accent-color);
    font-size: 13px;
}

.jpt-hero__badges span:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.36);
}

/* ── Booking Form (right column) ── */
.jpt-booking-form {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(3, 54, 104, 0.22), 0 2px 8px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.60);
}

/* Tabs */
.jpt-booking-form__header {
    display: flex;
    background: var(--primary-color);
    padding: 6px;
    gap: 4px;
}

.jpt-booking-tab {
    flex: 1;
    padding: 10px 8px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.jpt-booking-tab.active {
    background: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 3px 12px rgba(255, 45, 120, 0.40);
}

.jpt-booking-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

/* Form body */
.jpt-booking-form__body {
    padding: 24px 24px 20px;
}

/* Fields grid */
.jpt-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    margin-bottom: 16px;
}

.jpt-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.jpt-form-field label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.jpt-form-field label i {
    color: var(--accent-color);
    font-size: 12px;
    width: 14px;
}

.jpt-optional {
    font-weight: 400;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    margin-left: 2px;
}

.jpt-form-field input,
.jpt-form-field select {
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--text-dark);
    background: #f8faff;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    appearance: none;
    -webkit-appearance: none;
    margin-bottom: 0 !important;
}

.jpt-form-field input::placeholder {
    color: #aab4c8;
}

.jpt-form-field input:focus,
.jpt-form-field select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 45, 120, 0.10);
    background: #ffffff;
}

/* Chevron for select */
.jpt-form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ff2d78' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* Form actions row */
.jpt-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.jpt-form-note {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.jpt-form-note i {
    color: #10b981;
    font-size: 13px;
}

/* Search button */
.jpt-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 32px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a57b0 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(3, 54, 104, 0.35);
    transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
    white-space: nowrap;
}

.jpt-search-btn:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b35 100%);
    box-shadow: 0 10px 30px rgba(255, 45, 120, 0.40);
    transform: translateY(-2px);
}

/* ── Slide dots ── */
.jpt-hero__dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.jpt-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.40);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition);
}

.jpt-hero__dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

/* ── Scroll cue ── */
.jpt-hero__scroll-cue {
    position: absolute;
    bottom: 24px;
    right: 40px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    animation: jpt-bounce 1.8s ease infinite;
    transition: background var(--transition);
}

.jpt-hero__scroll-cue:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
}

@keyframes jpt-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ================================================
   HERO + HEADER RESPONSIVE
   ================================================ */

@media (max-width: 1199px) {
    .jpt-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 130px 0 80px;
    }

    .jpt-hero__text {
        text-align: center;
    }

    .jpt-hero__sub {
        max-width: 100%;
    }

    .jpt-hero__badges {
        justify-content: center;
    }

    .jpt-hero__tagline {
        margin: 0 auto 22px;
    }

    .jpt-booking-form {
        max-width: 680px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .jpt-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .jpt-hero__slides {
    position: relative;
    
}
.jpt-hero__slides2{
    position: absolute !important;
}
    .jpt-hero {
        min-height: auto;
    }

    .jpt-hero__inner {
        padding: 110px 0 60px;
    }

    .jpt-hero__heading {
        font-size: clamp(30px, 8vw, 42px);
    }

    .jpt-hero__sub {
        font-size: 15px;
    }

    .jpt-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .jpt-booking-form__body {
        padding: 18px 16px 16px;
    }

    .jpt-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .jpt-search-btn {
        width: 100%;
        justify-content: center;
    }

    /* Header top bar — stack on small screens */
    .ltn__header-top-area .row {
        flex-direction: column;
        gap: 4px;
    }

    .ltn__header-top-area .col-md-5 {
        text-align: left !important;
    }
}

@media (max-width: 575px) {
    .jpt-hero__inner {
        padding: 100px 0 50px;
    }

    .jpt-hero__badges {
        gap: 8px;
    }

    .jpt-hero__badges span {
        font-size: 12px;
        padding: 6px 12px;
    }

    .jpt-booking-tab {
        font-size: 12.5px;
        padding: 9px 6px;
    }

    .jpt-hero__scroll-cue {
        display: none;
    }
}

/* ================================================
   VEHICLE ENQUIRY MODAL
   ================================================ */

/* Override Bootstrap defaults cleanly */
#vehicleEnquiryModal .modal-content.veq-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(3, 54, 104, 0.22);
}

/* ── Header ─────────────────────────────────────── */
.veq-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a57b0 100%);
    padding: 22px 28px;
    border-bottom: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.veq-header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.veq-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.veq-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px;
    line-height: 1.3;
}

.veq-modal-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.4;
}

.veq-close-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.85);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition);
    padding: 0;
    margin-top: 4px;
}

.veq-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ── Vehicle info bar ────────────────────────────── */
.veq-vehicle-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 12px 28px;
    background: #f0f6ff;
    border-bottom: 1px solid #dbe9ff;
    font-size: 13.5px;
    color: var(--text-dark);
}

.veq-bar-icon {
    color: #10b981;
    font-size: 15px;
}

.veq-bar-label {
    color: var(--text-muted);
    font-weight: 500;
}

.veq-vehicle-bar strong {
    color: var(--primary-color);
    font-weight: 700;
}

.veq-bar-sep {
    color: #c4d4e8;
}

.veq-bar-rate {
    font-weight: 700;
    color: var(--accent-color);
}

/* ── Body / form ─────────────────────────────────── */
.veq-modal-body {
    padding: 24px 28px 8px;
    background: #ffffff;
}

.veq-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-bottom: 14px;
}

.veq-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.veq-form-group--full {
    margin-bottom: 10px;
}

.veq-form-group label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.veq-form-group label i {
    color: var(--accent-color);
    font-size: 12px;
    width: 13px;
    text-align: center;
}

.veq-required {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    margin-left: 1px;
}

.veq-optional {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    margin-left: 2px;
}

/* Inputs */
.veq-input {
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid #dde4f0;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    background: #f8faff;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition),
        background var(--transition);
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
}

.veq-input::placeholder {
    color: #aab4c8;
    font-size: 13.5px;
}

.veq-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(3, 54, 104, 0.10);
    background: #ffffff;
}

.veq-input--error {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.10) !important;
    background: #fff8f8 !important;
}

.veq-input--valid {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.08) !important;
}

/* Textarea */
.veq-textarea {
    height: auto;
    padding: 12px 14px;
    resize: vertical;
    min-height: 88px;
    line-height: 1.55;
}

/* Select chevron */
.veq-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23033668' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* Inline error messages */
.veq-error {
    font-size: 12px;
    color: #e53e3e;
    min-height: 16px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.veq-error:not(:empty)::before {
    content: '\f06a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 11px;
    flex-shrink: 0;
}

/* Privacy note */
.veq-privacy-note {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0 4px;
}

.veq-privacy-note i {
    color: #10b981;
}

/* ── Footer ──────────────────────────────────────── */
.veq-modal-footer {
    padding: 16px 28px 24px;
    background: #ffffff;
    border-top: 1px solid #eef2ff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

/* Shared button base */
.veq-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: all var(--transition);
    line-height: 1;
}

.veq-btn--cancel {
    background: #f1f5f9;
    color: var(--text-muted);
    border: 1.5px solid #dde4f0;
}

.veq-btn--cancel:hover {
    background: #e2e8f0;
    color: var(--text-dark);
    border-color: #c4d4e8;
}

.veq-btn--submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a57b0 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(3, 54, 104, 0.28);
    min-width: 168px;
    justify-content: center;
}

.veq-btn--submit:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b35 100%);
    box-shadow: 0 8px 28px rgba(255, 45, 120, 0.36);
    transform: translateY(-2px);
}

.veq-btn--submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
}

/* ── Success state ───────────────────────────────── */
.veq-success-state {
    padding: 48px 28px 40px;
    background: #ffffff;
    text-align: center;
    border-top: none;
}

.veq-success-icon {
    font-size: 60px;
    color: #10b981;
    margin-bottom: 18px;
    animation: veq-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes veq-pop {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.veq-success-state h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.veq-success-state p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0 0 24px;
    line-height: 1.65;
}

.veq-success-contact {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.veq-success-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: #f0f6ff;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #dbe9ff;
    transition: all var(--transition);
}

.veq-success-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    text-decoration: none;
}

.veq-btn--close-success {
    margin: 0 auto;
    display: flex;
}

/* ── cr-book-btn: convert <a> styles to <button> ── */
button.cr-book-btn {
    /* reset browser button defaults */
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
}

/* ================================================
   VEHICLE ENQUIRY MODAL — RESPONSIVE
   ================================================ */

@media (max-width: 767px) {
    #vehicleEnquiryModal .modal-dialog {
        margin: 12px;
    }

    #vehicleEnquiryModal .modal-content.veq-modal-content {
        border-radius: 16px;
    }

    .veq-modal-header {
        padding: 18px 18px;
    }

    .veq-modal-body {
        padding: 18px 18px 6px;
    }

    .veq-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .veq-modal-footer {
        padding: 14px 18px 20px;
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .veq-btn {
        width: 100%;
        justify-content: center;
    }

    .veq-vehicle-bar {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .veq-header-icon {
        display: none;
    }

    .veq-modal-title {
        font-size: 17px;
    }

    .veq-success-contact {
        flex-direction: column;
        align-items: center;
    }
}

/* ================================================
   PACKAGES SECTION
   ================================================ */

.pkg-section {
    padding: 30px 0;
    background: #f5f8ff;
    position: relative;
    overflow: hidden;
}

/* Subtle background blobs */
.pkg-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 54, 104, 0.055) 0%, transparent 70%);
    pointer-events: none;
}

.pkg-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202, 74, 50, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Section heading ── */
.pkg-heading {
    text-align: center;
    margin-bottom: 14px;
}

.pkg-tagline {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.pkg-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 14px;
    line-height: 1.2;
}

.pkg-heading h2 span {
    color: var(--accent-color);
}

/* Two-bar underline — matches screenshot exactly */
.pkg-heading-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 32px;
}

.pkg-heading-line span:first-child {
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 4px;
    background: var(--primary-color);
}

.pkg-heading-line span:last-child {
    display: block;
    width: 28px;
    height: 4px;
    border-radius: 4px;
    background: var(--accent-color);
}

/* ── Filter tabs ── */
.pkg-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pkg-filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    border: 1.5px solid #d0daea;
    background: #ffffff;
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition),
        border-color var(--transition), box-shadow var(--transition);
}

.pkg-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pkg-filter-btn.active {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(3, 54, 104, 0.22);
}

/* ── Cards grid ── */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-bottom: 44px;
}

/* ── Individual card ── */
.pkg-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(3, 54, 104, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(3, 54, 104, 0.16);
}

/* ── Card image ── */
.pkg-card__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e8eef8;
    flex-shrink: 0;
}

.pkg-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pkg-card:hover .pkg-card__img-wrap img {
    transform: scale(1.06);
}

/* Gradient scrim at bottom of image */
.pkg-card__img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    /* background: linear-gradient(to top, rgba(255,255,255,0.85), transparent); */
    pointer-events: none;
}

/* ── Badges ── */
.pkg-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 30px;
    color: #ffffff;
}

.pkg-card__badge--popular {
    background: linear-gradient(135deg, var(--accent-color), #e8732a);
}

.pkg-card__badge--featured {
    background: linear-gradient(135deg, var(--primary-color), #0a57b0);
}

/* ── Card body ── */
.pkg-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}

.pkg-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 14px;
    line-height: 1.45;
    /* max two lines before ellipsis */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Meta list ── */
.pkg-card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pkg-card__meta li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

@media screen and (max-width: 1400px) {
    .pkg-card__meta li {
        margin-top: 10px;
    }

    .pkg-card__meta {
        gap: 1px;
    }

    .cr-vehicle-body {
        padding: 12px 12px 20px;
    }

    .cr-vehicle-specs li {
        margin: 0;
    }

}

.pkg-card__meta li i {
    font-size: 12px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

/* Price row — accent colour for the amount */
.pkg-card__meta li:last-child {
    color: var(--text-dark);
    font-size: 14px;
}

.pkg-card__meta li:last-child i {
    color: var(--accent-color);
}

.pkg-card__meta li:last-child strong {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 15px;
}

/* Divider above price */
.pkg-card__meta li:last-child {
    padding-top: 10px;
    border-top: 1px solid #eef2ff;
    margin-top: 4px;
}

/* ── View Details button ── */
.pkg-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 11px 22px;
    border-radius: 50px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: background var(--transition), box-shadow var(--transition),
        transform var(--transition), gap var(--transition);
    box-shadow: 0 4px 14px rgba(3, 54, 104, 0.22);
}

.pkg-card__btn i {
    font-size: 12px;
    transition: transform var(--transition);
}

.pkg-card__btn:hover {
    background: var(--accent-color);
    box-shadow: 0 8px 24px rgba(202, 74, 50, 0.30);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    gap: 12px;
}

.pkg-card__btn:hover i {
    transform: translateX(3px);
}

/* ── View all CTA ── */
.pkg-view-all {
    text-align: center;
}

.pkg-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--transition), color var(--transition),
        box-shadow var(--transition), gap var(--transition);
}

.pkg-view-all-btn i {
    transition: transform var(--transition);
}

.pkg-view-all-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(3, 54, 104, 0.22);
    gap: 14px;
}

.pkg-view-all-btn:hover i {
    transform: translateX(4px);
}

/* ================================================
   PACKAGES — RESPONSIVE
   ================================================ */

@media (max-width: 1199px) {
    .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .pkg-heading h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .pkg-section {
        padding: 56px 0 64px;
    }

    .pkg-heading h2 {
        font-size: 26px;
    }

    .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pkg-card__title {
        font-size: 14px;
    }
    .ltn__header-top-area .ltn__top-bar-menu ul {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}
}

@media (max-width: 520px) {
    .pkg-section::before{
        content: none;
    }
    .pkg-section::after{
        content: none;
    }
    .car-rental-section::before{
        content: none;
    }
    .car-rental-section::after{
        content: none;
    }
    .jpt-footer__body::before{
        content: none;
    }
    .pkg-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pkg-filters {
        gap: 6px;
    }

    .pkg-filter-btn {
        font-size: 12.5px;
        padding: 8px 16px;
    }
}



/* ================================================
   STICKY CONTACT BUTTONS
   ================================================ */

.jpt-sticky-btns {
    position: fixed;
    bottom: 170px;
    right: 50px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

/* ---- Wrapper — holds pulse ring + button together ---- */
.jpt-sticky-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ---- Pulse ring — lives OUTSIDE overflow:hidden ---- */
.jpt-pulse-ring {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.jpt-pulse-ring::before,
.jpt-pulse-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: jpt-pulse 2.4s ease-out infinite;
    opacity: 0;
}

.jpt-pulse-ring::after {
    animation-delay: 1.2s;
}

/* WhatsApp — green rings */
.jpt-sticky-wrap--whatsapp .jpt-pulse-ring::before,
.jpt-sticky-wrap--whatsapp .jpt-pulse-ring::after {
    border: 3px solid #25d366;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
}

/* Call — navy rings */
.jpt-sticky-wrap--call .jpt-pulse-ring::before,
.jpt-sticky-wrap--call .jpt-pulse-ring::after {
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 0 0 rgba(3, 54, 104, 0.6);
}

@keyframes jpt-pulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }

    70% {
        transform: scale(1.9);
        opacity: 0;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

/* ---- Button ---- */
.jpt-sticky-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0;
    height: 56px;
    border-radius: 56px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    /* safe — ring is outside now */
    /* collapsed: show only the icon circle */
    width: 56px;
    transition: width 0.38s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

/* Icon circle */
.jpt-sticky-btn i {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: border-radius 0.38s ease;
}

/* Label — clipped until expanded */
.jpt-sticky-btn__label {
    padding: 0 20px 0 14px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s ease 0.12s,
        transform 0.25s ease 0.12s;
    pointer-events: none;
}

/* Expand on hover */
.jpt-sticky-btn:hover {
    width: 180px;
    transform: translateY(-3px);
    text-decoration: none;
}

.jpt-sticky-btn:hover i {
    border-radius: 56px 0 0 56px;
}

.jpt-sticky-btn:hover .jpt-sticky-btn__label {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* ---- WhatsApp colours ---- */
.jpt-sticky-btn--whatsapp {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.jpt-sticky-btn--whatsapp i {
    background: #1aad52;
    color: #ffffff;
}

.jpt-sticky-btn--whatsapp:hover {
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.60);
}

/* ---- Call colours ---- */
.jpt-sticky-btn--call {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(3, 54, 104, 0.40);
}

.jpt-sticky-btn--call i {
    background: #022f5a;
    color: #ffffff;
}

.jpt-sticky-btn--call:hover {
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(3, 54, 104, 0.55);
}

/* ---- Mobile ---- */
@media (max-width: 575px) {
    .jpt-sticky-btns {
        bottom: 18px;
        right: 14px;
        gap: 12px;
    }

    /* Icon-only circles, no expand */
    .jpt-sticky-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .jpt-sticky-btn i {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .jpt-sticky-btn:hover {
        width: 50px;
        transform: translateY(-2px);
    }

    .jpt-sticky-btn:hover i {
        border-radius: 50%;
    }

    .jpt-sticky-btn__label {
        display: none;
    }

    .jpt-pulse-ring {
        width: 50px;
        height: 50px;
    }
}