
/* ===== HERO SECTION ===== */

.hero-section {
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Poppins', sans-serif;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 96px 0;
}

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    color: #ffffff;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    max-width: 720px;
}

.hero-text {
    margin-top: 20px;
    font-size: 18px;
    max-width: 640px;
    color: #e5e7eb;
}

.hero-highlight {
    color: #fde047;
    font-weight: 600;
}

/* ===== SEARCH BAR ===== */

.hero-search {
    position: absolute;
    left: 50%;
    bottom: -90px;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
    padding: 0 16px;
}

.search-box {
    max-width: 1100px;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 36px;
    padding: 28px 32px;
    border: 1px solid #e5e7eb;
}

.search-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
}

/* Fields */
.search-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 6px;
}

.search-field select,
.search-field input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

/* Button */
.search-btn {
    height: 48px;
    border-radius: 16px;
    background: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #111111;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-search {
        bottom: -140px;
    }

    .search-grid {
        grid-template-columns: 1fr;
    }
}
/*/ text style /*/

/* ===== TRUST SECTION ===== */

.trust-section {
    background: #ffffff;
    padding: 160px 0 80px; /* extra top space after hero */
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.trust-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.trust-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}

.trust-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 640px) {
    .trust-section {
        padding: 120px 0 64px;
    }

    .trust-title {
        font-size: 28px;
    }

    .trust-text {
        font-size: 15px;
    }
}

/* ===== ROUTE NETWORK SECTION ===== */

.route-network {
    background: #ffffff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Heading */
.route-heading {
    text-align: center;
    margin-bottom: 56px;
}

.route-heading h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.route-heading p {
    font-size: 18px;
    color: #6b7280;
}

.text-red {
    color: #ef4444;
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Map */
.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Routes Card */
.routes-card {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    height: 100%;
    padding: 40px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(14px);
    border-left: 1px solid rgba(255,255,255,0.4);
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.routes-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #111827;
}

/* Routes List */
.routes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.routes-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
}

.routes-list hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.5);
    margin: 20px 0;
}

/* Dots */
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red {
    background: #ef4444;
}

.dot.orange {
    background: #fb923c;
}

.dot.black {
    background: #111827;
}

/* Responsive */
@media (max-width: 900px) {
    .routes-card {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 20px;
        border-left: none;
        box-shadow: none;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}
/* ===== PREMIUM ROUTES ===== */

.premium-routes {
    background: #fafafa;
    padding: 112px 0;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Heading */
.section-heading {
    text-align: center;
    margin-bottom: 80px;
}

.section-heading h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-heading p {
    font-size: 16px;
    color: #6b7280;
}

.text-red {
    color: #ef4444;
}

/* Grid */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.route-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Image */
.route-image {
    position: relative;
}

.route-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Badge */
.badge-popular {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #ef3b24;
    color: #ffffff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 500;
}

/* Content */
.route-content {
    padding: 32px;
}

.route-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

/* Meta */
.route-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* Description */
.route-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Features */
.route-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.route-features span {
    background: #f3f4f6;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
}

/* Button */
.route-btn {
    display: block;
    width: 100%;
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 14px 0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.route-btn:hover {
    background: #FFFFFF;
}

/* Responsive */
@media (max-width: 992px) {
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .routes-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 34px;
    }
}
/* ===== LUXURY EXPERIENCE ===== */

.luxury-experience {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.luxury-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* Heading */
.luxury-title {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.luxury-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 720px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

.text-red {
    color: #ef4444;
}

/* Grid */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Card */
.luxury-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 48px 28px;
    box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.08),
            0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Icon */
.luxury-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-red {
    background: #fff7ed;
}

.bg-yellow {
    background: #fff7ed;
}

.bg-pink {
    background: #fff7ed;
}

.bg-orange {
    background: #fff7ed;
}

/* Card text */
.luxury-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

.luxury-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1100px) {
    .luxury-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .luxury-grid {
        grid-template-columns: 1fr;
    }

    .luxury-title {
        font-size: 34px;
    }

    .luxury-subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }
}
/* ===== TESTIMONIALS ===== */

.testimonials {
    background: #fafafa;
    padding: 120px 0;
    font-family: 'Poppins', sans-serif;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Heading */
.testimonials-heading {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.testimonials-heading p {
    font-size: 18px;
    color: #6b7280;
}

/* Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Card */
.testimonial-card {
    border-radius: 22px;
    padding: 40px;
    color: #ffffff;
    position: relative;
}

/* Variants */
.dark-card {
    background: #222525;
}

.red-card {
    background: #c40000;
}

/* Top */
.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.stars {
    color: #f59e0b;
    font-size: 18px;
}

.quote {
    font-size: 56px;
    line-height: 1;
}

/* Text */
.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-role {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-heading h2 {
        font-size: 32px;
    }

    .testimonials-heading p {
        font-size: 16px;
    }
}
/* ===== FAQ SECTION ===== */

.faq-section {
    background: #f7f7f7;
    padding: 112px 0;
    font-family: 'Poppins', sans-serif;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Heading */
.faq-heading {
    text-align: center;
    margin-bottom: 64px;
}

.faq-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.faq-heading p {
    font-size: 18px;
    color: #6b7280;
}

.text-red {
    color: #ef4444;
}

/* FAQ List */
.faq-list {
    border-top: 1px solid #e5e7eb;
}

/* Item */
.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
}

/* Button */
.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 16px 0;

    display: grid;
    grid-template-columns: 1fr auto; /* text | icon */
    align-items: center;

    font-size: 16px;
    font-weight: 500;
    color: #000;
}


/* REMOVE BOOTSTRAP DEFAULT ICON */
.faq-question::after {
    display: none !important;
}

/* Title */
.faq-title {
    text-align: left;
    line-height: 1.4;
}


/* Icon container */
.faq-icon {
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
    margin-left: 16px;
    transition: transform 0.2s ease;
}

/* CLOSED = + */
.faq-question.collapsed .faq-icon::before {
    content: "+";
}

/* OPEN = − */
.faq-question:not(.collapsed) .faq-icon::before {
    content: "−";
}

/* Answer wrapper */
.faq-answer {
    padding: 0;
    background: transparent;
}

/* Answer text */
.faq-answer-inner {
    padding: 8px 0 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;

    margin-left: 32px;
}


/* Empty */
.faq-empty {
    text-align: center;
    color: #6b7280;
    margin-top: 32px;
}

/* Responsive */
@media (max-width: 640px) {
    .faq-heading h2 {
        font-size: 28px;
    }

    .faq-heading p {
        font-size: 16px;
    }
}



/* ===== NEWSLETTER SECTION ===== */

.newsletter-section {
    position: relative;
    width: 100%;
    background-color: #4a4a4a;
    padding: 112px 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Decorative line */
.newsletter-line {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 260px;
    height: 2px;
    background-color: #ef4444;
    border-radius: 999px;
}

/* Container */
.newsletter-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
}

/* Title */
.newsletter-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

/* Text */
.newsletter-text {
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: 64px;
}

/* Form */
.newsletter-form {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.newsletter-form input {
    width: 100%;
    height: 64px;
    padding: 0 160px 0 32px;
    border-radius: 999px;
    border: none;
    font-size: 16px;
    color: #374151;
}

.newsletter-form input:focus {
    outline: none;
}

/* Button */
.newsletter-form button {
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    padding: 0 32px;
    background-color: #ef4444;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #dc2626;
}

/* Check icon */
.check-icon {
    width: 24px;
    height: 24px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 640px) {
    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-text {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .newsletter-form input {
        padding-right: 120px;
    }

    .newsletter-form button {
        padding: 0 20px;
        gap: 8px;
    }
}




/* ===== ROUTE NETWORK SECTION ===== */

.route-network {
    background: #ffffff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Heading */
.route-heading {
    text-align: center;
    margin-bottom: 56px;
}

.route-heading h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.route-heading p {
    font-size: 18px;
    color: #6b7280;
}

.text-red {
    color: #ef4444;
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Map */
.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Routes Card */
.routes-card {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    height: 100%;
    padding: 40px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(14px);
    border-left: 1px solid rgba(255,255,255,0.4);
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.routes-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #111827;
}

/* Routes List */
.routes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.routes-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
}

.routes-list hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.5);
    margin: 20px 0;
}

/* Dots */
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red {
    background: #ef4444;
}

.dot.orange {
    background: #fb923c;
}

.dot.black {
    background: #111827;
}

/* Responsive */
@media (max-width: 900px) {
    .routes-card {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 20px;
        border-left: none;
        box-shadow: none;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}
/* ===== PREMIUM ROUTES ===== */

.premium-routes {
    background: #fafafa;
    padding: 112px 0;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Heading */
.section-heading {
    text-align: center;
    margin-bottom: 80px;
}

.section-heading h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-heading p {
    font-size: 16px;
    color: #6b7280;
}

.text-red {
    color: #ef4444;
}

/* Grid */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.route-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Image */
.route-image {
    position: relative;
}

.route-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Badge */
.badge-popular {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #ef3b24;
    color: #ffffff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 500;
}

/* Content */
.route-content {
    padding: 32px;
}

.route-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

/* Meta */
.route-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* Description */
.route-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Features */
.route-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.route-features span {
    background: #f3f4f6;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
}

/* Button */
.route-btn {
    display: block;
    width: 100%;
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 14px 0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.route-btn:hover {
    background: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .routes-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 34px;
    }
}
/* ===== LUXURY EXPERIENCE ===== */

.luxury-experience {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.luxury-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* Heading */
.luxury-title {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.luxury-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 720px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

.text-red {
    color: #ef4444;
}

/* Grid */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Card */
.luxury-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 48px 28px;
    box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.08),
            0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Icon */
.luxury-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-red {
    background: #fff7ed;
}

.bg-yellow {
    background: #fff7ed;
}

.bg-pink {
    background: #fff7ed;
}

.bg-orange {
    background: #fff7ed;
}

/* Card text */
.luxury-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

.luxury-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1100px) {
    .luxury-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .luxury-grid {
        grid-template-columns: 1fr;
    }

    .luxury-title {
        font-size: 34px;
    }

    .luxury-subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }
}
/* ===== TESTIMONIALS ===== */

.testimonials {
    background: #fafafa;
    padding: 120px 0;
    font-family: 'Poppins', sans-serif;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Heading */
.testimonials-heading {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.testimonials-heading p {
    font-size: 18px;
    color: #6b7280;
}

/* Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Card */
.testimonial-card {
    border-radius: 22px;
    padding: 40px;
    color: #ffffff;
    position: relative;
}

/* Variants */
.dark-card {
    background: #222525;
}

.red-card {
    background: #c40000;
}

/* Top */
.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.stars {
    color: #f59e0b;
    font-size: 18px;
}

.quote {
    font-size: 56px;
    line-height: 1;
}

/* Text */
.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-role {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-heading h2 {
        font-size: 32px;
    }

    .testimonials-heading p {
        font-size: 16px;
    }
}
/* ===== FAQ SECTION ===== */


/* ===== NEWSLETTER SECTION ===== */

.newsletter-section {
    position: relative;
    width: 100%;
    background-color: #4a4a4a;
    padding: 112px 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Decorative line */
.newsletter-line {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 260px;
    height: 2px;
    background-color: #ef4444;
    border-radius: 999px;
}

/* Container */
.newsletter-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
}

/* Title */
.newsletter-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

/* Text */
.newsletter-text {
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: 64px;
}

/* Form */
.newsletter-form {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.newsletter-form input {
    width: 100%;
    height: 64px;
    padding: 0 160px 0 32px;
    border-radius: 999px;
    border: none;
    font-size: 16px;
    color: #374151;
}

.newsletter-form input:focus {
    outline: none;
}

/* Button */
.newsletter-form button {
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    padding: 0 32px;
    background-color: #ef4444;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #dc2626;
}

/* Check icon */
.check-icon {
    width: 24px;
    height: 24px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 640px) {
    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-text {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .newsletter-form input {
        padding-right: 120px;
    }

    .newsletter-form button {
        padding: 0 20px;
        gap: 8px;
    }
}



/* ===== PREMIUM FLEET (TAILWIND MATCH) ===== */
/* ===== PREMIUM FLEET ===== */
/* ================= PREMIUM FLEET ================= */

.premium-fleet {
    background: #f7f7f7;
    padding: 120px 0;
    font-family: 'Poppins', sans-serif;
}

.fleet-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Heading */
.fleet-heading {
    text-align: center;
    margin-bottom: 64px;
}

.fleet-heading h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fleet-heading p {
    font-size: 17px;
    color: #6b7280;
}

/* Top row */
.fleet-top {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 32px;
}

.fleet-copy {
    max-width: 70%;
}

.fleet-copy h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-left: 20px;
}

.fleet-copy p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

/* Arrows */
.fleet-nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

.fleet-arrow {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid #1f2937;
    background: transparent;
    font-size: 28px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fleet-arrow:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* Body layout */
.fleet-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Image */
.fleet-image-wrap {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.fleet-image-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
}

.fleet-price {
    position: absolute;
    bottom: 16px;
    right: 16px;
    text-align: right;
}

.fleet-price span {
    font-size: 14px;
    color: #374151;
}

.fleet-price strong {
    font-size: 20px;
    color: #000;
}

/* Features grid */
.fleet-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    align-content: start;
    margin-top:50px;
}

/* Feature cards */
.fleet-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px 18px;
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.06);
    transition: 0.25s ease;
    min-height: 130px;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.10);
}

/* Icon */
.fleet-card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
}

.fleet-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Title */
.fleet-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: #ef4444;
    margin: 0 0 8px 0;
}

/* Description */
.fleet-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

/* ================= CAROUSEL ================= */
.fleet-slide {
    display: none;
    animation: fleetFade 0.35s ease-in-out;
}

.fleet-slide.active {
    display: block;
}

@keyframes fleetFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .fleet-top {
        flex-direction: column;
    }

    .fleet-copy {
        max-width: 100%;
    }

    .fleet-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .fleet-features {
        grid-template-columns: 1fr;
    }
}


/*office contact*/
/* ===== OFFICE LOCATION SECTION ===== */

.office-section {
    background: #ffffff;
    padding: 120px 0;
    font-family: 'Poppins', sans-serif;
}

.office-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Heading */
.office-heading {
    text-align: center;
    margin-bottom: 64px;
}

.office-heading h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.office-heading p {
    font-size: 16px;
    color: #6b7280;
}

/* Grid */
.office-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
}

/* Info */
.office-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.office-item {
    display: flex;
    gap: 20px;
}

.office-icon {
    font-size: 22px;
    color: #ef4444;
    line-height: 1.4;
}

.office-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.office-item p,
.office-item li,
.office-item a {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    text-decoration: none;
}

.office-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Map */
.office-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.office-map iframe {
    width: 100%;
    height: 380px;
    border: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .office-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .office-heading h2 {
        font-size: 32px;
    }
}

/*//btn-color*/
 .btn-primary {
     background-color: #ffc107 !important;   /* yellow */
     border-color: #ffc107 !important;
     color: #000 !important;                 /* better on yellow */
 }

.btn-primary:hover {
    background-color: #e0a800 !important;   /* darker yellow hover */
    border-color: #e0a800 !important;
    color: #000 !important;
}

/*//operator login hover**/
.login-btn:hover,
.login-btn:focus,
.login-btn:active {
    background: #000 !important;
    color: #fff !important;
    box-shadow: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.login-btn:hover span,
.login-btn:hover svg {
    color: #fff !important;
    stroke: #fff !important;
}


/* Base font and box-sizing */
html {
    font-size: 16px; /* Default desktop font size */
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #111;
    background-color: #fff;
}

/* Clean focus styles (accessible and safe) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.4);
    outline-offset: 2px;
}
body {
    overflow-x: hidden;
}

::selection {
    background: red;
    color: pink;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em 0;
    line-height: 1.2;
}

p {
    margin: 0 0 1em 0;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}

/* Optional: make inputs/buttons scale on mobile */
input, button, select, textarea {
    font-size: 1rem;
}

/*<!--       from to date format-->*/
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 3rem !important;               /* h-12 */
    border-radius: 16px !important;        /* rounded-[16px] */
    border: 1px solid #d1d5db !important;  /* border-gray-300 */
    padding-left: 2.75rem !important;      /* pl-11 */
    padding-right: 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    background-color: white !important;
}

.select2-selection__rendered {
    font-size: 0.875rem !important;        /* text-sm */
    color: #000 !important;
    line-height: normal !important;
}

.select2-selection__placeholder {
    color: #9ca3af !important;             /* gray-400 */
}

.select2-selection__arrow {
    height: 100% !important;
    right: 0.75rem !important;
}

/* Focus (same as Tailwind ring) */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #facc15 !important;      /* yellow-400 */
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.4);
}

/* Dropdown */
.select2-dropdown {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Options */
.select2-results__option {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

/* Highlight */
.select2-results__option--highlighted {
    background-color: #facc15 !important;
    color: black !important;
}

/*<!--       from to date format-->*/
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 3rem !important;               /* h-12 */
    border-radius: 16px !important;        /* rounded-[16px] */
    border: 1px solid #d1d5db !important;  /* border-gray-300 */
    padding-left: 2.75rem !important;      /* pl-11 */
    padding-right: 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    background-color: white !important;
}

.select2-selection__rendered {
    font-size: 0.875rem !important;        /* text-sm */
    color: #000 !important;
    line-height: normal !important;
}

.select2-selection__placeholder {
    color: #9ca3af !important;             /* gray-400 */
}

.select2-selection__arrow {
    height: 100% !important;
    right: 0.75rem !important;
}

/* Focus (same as Tailwind ring) */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #facc15 !important;      /* yellow-400 */
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.4);
}

/* Dropdown */
.select2-dropdown {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Options */
.select2-results__option {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

/* Highlight */
.select2-results__option--highlighted {
    background-color: #facc15 !important;
    color: black !important;
}

/*<!--  header-->*/
/* ===== HEADER ===== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
}

/* Desktop Nav */
.main-nav {
    display: flex;
    gap: 40px;
}

.main-nav a {
    text-decoration: none;
    font-size: 16px;
    color: #111827;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #facc15;
}

/* Login Button */
.header-action {
    display: flex;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.login-icon {
    width: 18px;
    height: 18px;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav a {
    padding: 12px 24px;
    text-decoration: none;
    color: #111827;
    font-weight: 500;
}

.mobile-nav a:hover {
    background: #f3f4f6;
}

/* Responsive */
@media (max-width: 900px) {
    .main-nav,
    .header-action {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav.show {
        display: flex;
    }
}


/* ===== FOOTER ===== */

.site-footer {
    position: relative;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* Background */
.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

/* Content */
.footer-content {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

/* Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-bottom: 24px;
}

.logo-circle {
    width: 90px;
    height: 48px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.brand-text {
    color: #374151;
    margin-bottom: 24px;
    max-width: 320px;
}

/* Social */
.footer-title {
    font-weight: 500;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Links */
.footer-links h3,
.footer-contacts h3,
.footer-app h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.footer-links ul,
.footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contacts li {
    margin-bottom: 12px;
    color: #374151;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
}

/* App */
.footer-app p {
    color: #374151;
    margin-bottom: 24px;
}

.app-buttons a {
    display: block;
    text-align: center;
    padding: 12px 0;
    border-radius: 999px;
    border: 1px solid #ef4444;
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.app-buttons a:hover {
    background: #ef4444;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        padding: 60px 20px;
    }
}

/*map css*/
#routeMapTwo {
    width: 100%;
    height: 380px;
}
/* important: parent must be relative */
.route-network .map-wrapper {
    position: relative !important;
}

/* leaflet map should stay behind */
#routeMapTwo {
    width: 100%;
    height: 380px;
    position: relative;
    z-index: 1;
}

/* routes card must be above leaflet layers */
.route-network .routes-card {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    height: 100%;
    z-index: 50 !important;
}

/*//top 4 Setion */
/* ================= TRUST STATS SECTION ================= */
.trust-stats {
    padding: 90px 0;
    background: rgba(255, 255, 255, 0.28);
    margin-top : 90px;


}

.trust-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading like other sections */
.trust-stats-heading {
    text-align: center;
    margin-bottom: 55px;
}

.trust-stats-heading h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #111827;
}

.trust-stats-heading p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

/* Grid */
.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card style consistent with your site */
.trust-stats-card {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 26px;
    box-shadow: 0 14px 35px rgba(17, 24, 39, 0.08);
    padding: 40px 20px;
    text-align: center;
    transition: 0.3s ease;
}

.trust-stats-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
}

/* Icon */
.trust-stats-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px auto;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-stats-icon img {
    width: 44px;
    height: auto;
}

/* Number */
.trust-stats-card h3 {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    color: #111827;
}

/* Label */
.trust-stats-card p {
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .trust-stats-grid {
        grid-template-columns: 1fr;
    }

    .trust-stats-heading h2 {
        font-size: 30px;
    }
}
