/*-------------Home page-------------*/
/* CSS Root Variables */
:root {
    /* ================= Colors ================= */
    --primary-color: #0097A7;
    --secondary-color: #FBC02D;
    --text-heading-color: #37474F;
    --text-subheading-color: #6D767B;
    --background-color: #f5f5f5;
    --border-color: #D9D9D9;
    --success-color: #4CAF50;
    --error-color: #E53935;

    /* ================= Desktop Typography ================= */
    --font-primary: 'Poppins', sans-serif;
    --hero-heading-desktop: bold 50px/1.2 var(--font-primary);
    --paragraph-desktop: 300 14px/1.6 var(--font-primary);
    --sub-paragraph-desktop: regular 12px/1.6 var(--font-primary);
    --sub-heading-desktop: 600 40px/1.3 var(--font-primary);
    --section-heading-desktop: 600 48px/1.3 var(--font-primary);

    /* ================= Mobile Responsive Typography ================= */
    --hero-heading-mobile: bold 40px/1.2 var(--font-primary);
    --paragraph-mobile: regular 16px/1.6 var(--font-primary);
    --sub-paragraph-mobile: regular 14px/1.6 var(--font-primary);
    --sub-heading-mobile: 600 30px/1.3 var(--font-primary);
    --section-heading-mobile: 600 38px/1.3 var(--font-primary);
    --paragraph-sm-mobile: regular 12px/1.6 var(--font-primary);
}

/* General Styles */
body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--text-subheading-color);
}

/* ======================================Header Section======================================*/
header {
    padding: 12px 0;
    background: white;
}

.logo-img {
    height: 50px;
    width: auto;
}

.contacts-container {
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 14px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    font-size: 11px;
    color: var(--text-subheading-color);
}

.contact-text .info {
    font-weight: 600;
    color: var(--text-heading-color);
    font-size: 14px;
    line-height: 1.2;
}

.login-dropdown .btn-login {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s;
}

.login-dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.login-dropdown .dropdown-item {
    padding: 5px 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: all 0.2s;
    color: var(--text-subheading-color);
}

.login-dropdown .dropdown-item:hover {
    background: rgba(0, 151, 167, 0.1);
    color: var(--text-heading-color);
}

/* ======================================Navbar Section======================================*/
.custom-navbar {
    background-color: var(--primary-color);
    padding: 8PX;
}

.custom-navbar .navbar-nav {
    margin: 0 auto;
}

.custom-navbar .nav-link {
    color: white !important;
    font-weight: 400;
    padding: 10px;
    transition: all 0.3s;
    position: relative;
    margin: 0 15px;
}

.custom-navbar .nav-link:hover {
    color: var(--secondary-color) !important;
}

.custom-navbar .nav-link.active {
    font-weight: 500;
}

.custom-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    height: 2px;
    width: 100%;
    left: 0;
    background-color: white;
}

/* ======================================Mobile Header======================================*/
.mobile-header {
    display: none;
    padding: 10px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hamburger-menu {
    font-size: 24px;
    color: var(--primary-color);
    background: none;
    border: none;
    padding: 5px 10px;
}

/* ======================================Redesigned Offcanvas Sidebar======================================*/
.offcanvas {
    background-color: var(--primary-color);
    max-width: 80%;
}

.offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: start;
}

.offcanvas-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.offcanvas-body {
    padding: 30px 0;
}

.offcanvas .nav-link {
    color: white !important;
    padding: 16px 25px;
    font-size: 16px;
    transition: all 0.3s;
}

.offcanvas .nav-link {
    font-weight: 400;
}

.offcanvas .nav-link.active {
    font-weight: 500;
    color: white !important;
}

.offcanvas .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.logo-img {
    height: 75px;
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .custom-navbar {
        display: none;
    }

    .contacts-container {
        display: none;
    }

    .logo-img {
        height: 50px;
    }

    .btn-login {
        padding: 8px 16px !important;
        font-size: 10px;
        align-items: center;
    }

    .dropdown-item {
        font-size: 10px;
    }
}

@media (min-width: 993px) {
    .mobile-header {
        display: none;
    }
}





/* ======================================HERO SECTION======================================*/
.hero-section {
    background: url("../assets/photos/herobg.svg") center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-heading {
    font: var(--hero-heading-desktop);
    color: #f5f5f5;
    line-height: 1.4;
}

.hero-text {
    font: var(--paragraph-desktop);
    color: #a0a0a0;
    margin-bottom: 60px;
}

/* Features */
.hero-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-img {
    width: 60px;
    height: 60px;
}

.feature-text h6 {
    margin: 4px 0;
    font-weight: 500;
    color: var(--background-color);
    font-size: 16px;
}

.feature-text p {
    margin: 0;
    font-size: 12px;
    color: #a0a0a0;
}

/* Booking Card - Increased Width */
.booking-card {
    background: rgba(245, 245, 245, 0.12);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
    padding: 30px 30px 10px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
    margin-left: auto;
}

.booking-card h5 {
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--background-color);
    font-size: 24px;
}

.booking-card p {
    color: #a0a0a0;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 15px;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #a0a0a0;
    padding: 12px 15px;
    color: #a0a0a0;
    background-color: transparent;
    font-size: 16px;
    font-weight: 300;
    height: 45px;
}

.booking-card .form-control:focus {
    color: #a0a0a0;
    background-color: transparent;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

/* White date picker icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* White dropdown arrow for select */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.form-label {
    font-weight: 300;
    color: var(--background-color);
    font-size: 16px;
    margin-bottom: 8px;
}

.btn-search {
    background: rgba(251, 192, 45, 0.7);
    border: none;
    color: #fff;
    font-weight: 400;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 14px;
    margin-top: 10px;
    height: 45px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

.btn-search:hover {
    background: rgba(251, 192, 45, 0.9);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .custom-navbar {
        display: none;
    }

    .contacts-container {
        display: none;
    }

    .booking-card {
        max-width: 100%;
        margin-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font: var(--hero-heading-mobile);
    }

    .hero-text {
        font: var(--paragraph-mobile);
        margin-bottom: 40px;
    }

    .feature-text h6 {
        font-size: 14px;
    }

    .feature-text P {
        font-size: 10px;
    }

    .hero-text {
        font: var(--paragraph-mobile);
    }

    .feature-img {
        width: 50px;
        height: 50px;
    }

    .feature-item {
        gap: 10px;
        padding: 0px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .booking-card {
        padding: 20px;
    }

    .booking-card h5 {
        font-size: 20px;
    }

    .form-control,
    .form-select {
        padding: 10px 12px;
        font-size: 14px;
        height: 45px;
    }

    .btn-search {
        padding: 12px;
        font-size: 16px;
    }
}

/*====================================About Section=========================================*/
.about-section {
    background: #fff;
}

.section-title {
    font-size: 46px;
    font-weight: 400;
    color: var(--text-heading-color);
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.section-title span {
    color: var(--primary-color);
    font-weight: 600;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1px auto 0 40%;
    border-radius: 3px;
}

.about-heading {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-heading-color);
    line-height: 1.4;
}

.about-section p {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
}

.btn-readmore {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s;
    text-decoration: none;
    margin-bottom: 30px;
}

.btn-readmore:hover {
    background: var(--primary-color);
    color: #fff;
}

.about-img {
    max-width: 100%;
}

/*==================================Quick bus booking Section=========================================*/
.booking-section {
    background: var(--primary-color);
    color: var(--white);
}

.booking-title {
    font-size: 46px;
    font-weight: 400;
    color: white;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.booking-title span {
    color: var(--secondary-color);
    font-weight: 600;
}


.booking-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    position: absolute;
    left: 5px;
    bottom: -10px;
    border-radius: 2px;
}

.booking-subtitle {
    font-size: 32px;
    font-weight: 500;
    margin-top: 20px;
    line-height: 1.4;
}

.phone-number {
    font-size: 24px;
    font-weight: 400;
    margin-top: 35px;
    display: flex;
    align-items: center;
}

.phone-number i {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Form */
.booking-form {
    background: white;
    border-radius: 20px;
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-heading-color);
}

.form-subtitle {
    font-size: 14px;
    color: var(--text-subheading-color);
    margin-bottom: 20px;
}

.form-labels {
    font-weight: 500;
    color: var(--text-heading-color);
}

.form-control {
    border-radius: 6px;
    padding: 10px 12px;
    border: 1px solid #ccc;
}

.btn-send {
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

.btn-send:hover {
    background-color: #e69500;
    color: white;
}

/*====================================Get App Section=========================================*/
.app-section {
    background: #fff;
}

.app-section .section-title::after {
    width: 100px;
    margin: 1px auto 0 32%;
}

.sub-heading {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-heading-color);
    line-height: 1.4;
}

.text-muted {
    color: var(--text-subheading-color);
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.8;
}

.download-text {
    font-weight: 500;
    color: var(--text-heading-color);
}

.app-phone {
    max-width: 320px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.app-badge {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/*================================Bus Amenities Section=========================================*/
.amenities-sec .section-title::after {
    width: 100px;
    margin: 1px auto 0 34%;
    margin-bottom: 50px;
}

.amenities-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.amenities-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

/* Icon hover effect only */
.amenities-card:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.amenities-card h5 {
    font-size: 14px;
    color: var(--text-heading-color);
    font-weight: 500;
    margin: 0;
}

/*=========================================Client Testimonial===========================================*/
.testimonial-section {
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    position: relative;
}

.section-title span {
    color: #008c9e;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: #008c9e;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.about-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

/* Navigation Buttons */
.navigation-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #008c9e;
    background: transparent;
    color: #008c9e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navigation-btn.filled {
    background: #008c9e;
    color: #fff;
}

.navigation-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 140, 158, 0.3);
}

.navigation-btn:active {
    transform: scale(0.95);
}

/* Container */
.marquee-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 280px;
}

/* Track - Infinite Loop Animation */
.marquee-track {
    display: flex;
    gap: 30px;
    animation: 75s linear infinite;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Row 1: Right to Left */
.marquee-left {
    animation-name: marqueeLeftInfinite;
    animation-timing-function: linear;
}

/* Row 2: Left to Right */
.marquee-right {
    animation-name: marqueeRightInfinite;
    animation-timing-function: linear;
}

/* Testimonial Card */
.testimonial-card {
    background: linear-gradient(145deg, #ffffff, #f5f8ff);
    border-radius: 16px;
    padding: 40px 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 400px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.testimonial-card:hover {
    transform: translateY(-2px) scale(1.01) translateZ(0);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); */
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 50px;
    color: #008c9e;
    opacity: 0.3;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card:hover .quote-icon {
    opacity: 5;
    transform: scale(1.05);
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 60px 0 25px;
    word-wrap: break-word;
    transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card:hover .testimonial-text {
    color: #000000;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    text-align: right;
}

.client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card:hover .client-image {
    border-color: #008c9e;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 140, 158, 0.3);
}

.client-image-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #008c9e, #00a8bd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(0, 140, 158, 0.3);
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card:hover .client-image-placeholder {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 140, 158, 0.4);
}

.client-name {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a202c;
    font-size: 16px;
    transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card:hover .client-name {
    color: #008c9e;
}

.client-location {
    color: #008c9e;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.client-location i {
    font-size: 10px;
}

/* Smoke Overlay */
.smoke-overlay {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.smoke-left {
    left: 0;
    background: linear-gradient(to right,
            rgba(249, 249, 249, 1) 0%,
            rgba(249, 249, 249, 0.9) 25%,
            rgba(249, 249, 249, 0.6) 50%,
            rgba(249, 249, 249, 0.2) 75%,
            rgba(249, 249, 249, 0) 100%);
}

.smoke-right {
    right: 0;
    background: linear-gradient(to left,
            rgba(249, 249, 249, 1) 0%,
            rgba(249, 249, 249, 0.9) 25%,
            rgba(249, 249, 249, 0.6) 50%,
            rgba(249, 249, 249, 0.2) 75%,
            rgba(249, 249, 249, 0) 100%);
}

/* Proper Infinite Keyframes */
@keyframes marqueeLeftInfinite {
    0% {
        transform: translateX(0) translateZ(0);
    }

    100% {
        transform: translateX(-25%) translateZ(0);
    }
}

@keyframes marqueeRightInfinite {
    0% {
        transform: translateX(-25%) translateZ(0);
    }

    100% {
        transform: translateX(0) translateZ(0);
    }
}

/* Pause on hover */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* Alert styling */
.alert {
    padding: 20px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(145deg, #e3f2fd, #f8f9fa);
    color: #1976d2;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-card {
        width: 300px;
        padding: 30px 20px 20px;
    }

    .marquee-track {
        gap: 20px;
        animation-duration: 60s;
    }

    .marquee-container:first-of-type {
        margin-bottom: 15px;
    }

    .marquee-container:last-of-type {
        margin-top: 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .navigation-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .smoke-overlay {
        width: 100px;
    }

    .quote-icon {
        font-size: 45px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        width: 280px;
        padding: 25px 15px 15px;
    }

    .marquee-track {
        animation-duration: 55s;
        gap: 15px;
    }

    .marquee-container:first-of-type {
        margin-bottom: 20px;
    }

    .marquee-container:last-of-type {
        margin-top: 20px;
    }

    .marquee-container {
        height: 260px;
    }

    .quote-icon {
        font-size: 40px;
        top: 15px;
        left: 20px;
    }

    .testimonial-text {
        margin: 50px 0 20px;
        font-size: 13px;
    }

    .client-image,
    .client-image-placeholder {
        width: 45px;
        height: 45px;
    }

    .client-image-placeholder {
        font-size: 14px;
    }

    .client-name {
        font-size: 15px;
    }

    .smoke-overlay {
        width: 80px;
    }
}

@media (max-width: 375px) {
    .marquee-container:first-of-type {
        margin-bottom: 25px;
    }

    .marquee-container:last-of-type {
        margin-top: 25px;
    }

    .marquee-container {
        height: 240px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }

    .testimonial-card,
    .navigation-btn,
    .quote-icon,
    .client-image,
    .client-image-placeholder {
        transition: none;
    }

    .testimonial-card:hover {
        transform: none;
    }

    .navigation-btn:hover {
        transform: none;
    }
}

.navigation-btn:focus {
    outline: 2px solid #008c9e;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 140, 158, 0.2);
}

.marquee-track.transitioning {
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.marquee-track,
.testimonial-card {
    transform-style: preserve-3d;
}

.testimonial-section * {
    box-sizing: border-box;
}

/* .marquee-track {
    contain: layout style paint;
} */



/*===========================================footer===============================================*/
.footer {
    background: var(--primary-color);
    color: white;
}

.footer-logo {
    max-width: 180px;
}

.footer-heading {
    font-weight: 500;
    margin-bottom: 1rem;
    color: white;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
}

.footer a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
    display: inline-block;
}

.footer-contact li {
    margin-bottom: 18px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.store-badge {
    height: 40px;
}

.footer-bottom {
    background: #fff;
    color: var(--text-heading-color);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-color);
    font-weight: 600;
}

/*============================================User & OTP modal===============================================*/
/* Modal styles */
::placeholder {
    color: var(--text-subheading-color) !important;
    opacity: 1;
}

.modal-title {
    position: relative;
    display: inline-block;
    color: var(--text-heading-color);
}

.modal-title::after {
    content: "";
    display: block;
    width: 200px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 6px;
    border-radius: 2px;
}

/* Remove line under OTP modal title */
.no-underline::after {
    display: none !important;
}

.btn-warning-custom {
    background-color: var(--secondary-color);
    border: none;
    color: #fff;
    height: 50px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px;
}

.btn-warning-custom:hover {
    background-color: #e69500;
    color: #fff;
}

.form-labels {
    color: var(--text-heading-color);
    font-weight: 500;
    padding-bottom: 4px;
    font-size: 13px;
}

.modal-content {
    border-radius: 10px;
}

.btn-refresh {
    height: 40px;
    padding: 0 10px;
    background: transparent;
    border: none;
}

.otp-input-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.otp-input {
    width: 48px;
    height: 50px;
    border: 2px solid #ccc;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    outline: none;
    transition: border-color 0.2s;
}

.otp-input:focus {
    border-color: #0097A7;
    box-shadow: none;
}

.resend-text {
    font-size: 14px;
    color: #6D767B;
    text-align: center;
    margin-bottom: 20px;
}

.toggle-password {
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;
}

/* ==================== 576px SCREEN SIZE ONLY ==================== */
@media (max-width: 576px) {

    /* Typography */
    .hero-heading,
    .section-title {
        font-size: 28px !important;
        line-height: 1.3;
        margin-bottom: 0px;
    }

    .hero-text,
    .about-section p,
    .booking-card p,
    .form-subtitle,
    .text-muted,
    .footer-text,
    .footer a,
    .footer-contact li,
    .resend-text,
    .testimonial-text,
    .booking-section p {
        font-size: 12px;
    }

    .about-heading,
    .booking-subtitle,
    .sub-heading {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .about-heading {
        font-size: 20px;
    }

    .feature-text h6,
    .amenities-card h5,
    .client-name {
        font-size: 13px;
    }

    .feature-text p,
    .client-location {
        font-size: 11px;
        margin: 0;
    }

    .booking-title {
        font-size: 26px;
    }

    .phone-number {
        font-size: 16px;
        margin-top: 15px;
    }

    /* Layout & Spacing */
    .hero-text,
    .about-section p {
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .section-title::after,
    .booking-title::after {
        width: 40px;
        height: 2px;
        margin: 5px auto 12px !important;
    }

    .booking-title::after {
        bottom: -18px;
    }

    .form-label {
        font-size: 14px;

    }

    /* Components */
    .feature-item {
        margin-bottom: 10px;
        gap: 8px;
    }

    .feature-img {
        width: 32px;
        height: 32px;
    }

    .booking-card,
    .booking-form {
        padding: 15px;
    }

    .booking-card h5,
    .form-title {
        font-size: 16px;
    }

    .form-control,
    .form-select {
        padding: 7px 10px;
        font-size: 12px;
        height: 38px;
    }

    .btn-search,
    .btn-readmore {
        padding: 8px;
        font-size: 13px;
    }

    .btn-readmore {
        padding: 7px 16px;
    }

    .phone-number i {
        font-size: 14px;
        padding: 8px;
    }

    .marquee-container {
        height: 220px;
    }

    .testimonial-card {
        width: 280px;
        padding: 25px 15px 15px;
    }

    .marquee-track {
        gap: 20px;
    }

    .quote-icon {
        font-size: 35px;
        top: 15px;
        left: 15px;
    }

    .testimonial-text {
        margin: 40px 0 15px;
        font-size: 13px;
    }

    .client-info {
        flex-direction: column-reverse;
        align-items: flex-end;
        gap: 8px;
    }

    .navigation-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .smoke-overlay {
        width: 40px;
    }

    .footer-logo {
        max-width: 120px;
    }

    .footer-heading {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-contact i {
        width: 22px;
        height: 22px;
        font-size: 10px;
        padding: 5px;
        margin-right: 6px;
    }

    /* Modals */
    .modal-content {
        padding: 12px;
    }

    .modal-title {
        font-size: 16px;
    }

    .modal-title::after {
        width: 100px;
        height: 2px;
    }

    .form-labels {
        font-size: 12px;
    }

    .otp-input-container {
        gap: 6px;
        margin: 15px 0;
    }

    .otp-input {
        width: 32px;
        height: 38px;
        font-size: 14px;
    }

    .btn-warning-custom {
        height: 42px;
        font-size: 13px;
    }

    .footer-bottom .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center !important;
        margin: 5px 0;
    }

    .footer-bottom p {
        font-size: 12px;

    }

}









/*-------------About us page-------------*/
.heros-section {
    background: url("../assets/photos/herobg.svg") center/cover no-repeat;
    min-height: 35vh;
    display: flex;
    align-items: center;
    position: relative;
}

.heros-section .section-title::after {
    margin: 2px auto 0 -7%;
}





/*-------------Contact & Location page-------------*/
.contact-section,
.location-section {
    padding: 60px 0;
}

.section-subtitle {

    font-weight: 500;
    color: var(--text-heading-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: var(--secondary-color);
    margin-top: 8px;
    border-radius: 2px;
}

.location-section .section-subtitle::after {
    width: 100%;
}

/* Card Styles */
.contact-card,
.location-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover,
.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.office-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8e8e8;
    font-size: 1.25rem;
}

/* Contact Info Styles */
.contacts-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-subheading-color);
}

.contacts-info i {
    font-size: 18px;
    color: var(--text-subheading-color);
    margin-right: 12px;
    margin-top: 2px;
    min-width: 20px;
    text-align: center;
}

.contacts-info a {
    text-decoration: none;
    color: var(--text-subheading-color);
    transition: color 0.2s ease;
}

.contacts-info a:hover {
    color: var(--secondary-color);
}

.contact-text {
    line-height: 1.5;
}

.support-text {
    background-color: rgba(251, 192, 45, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 16px;
    border-radius: 0 8px 8px 0;
    margin-top: 25px;
    font-size: 0.9rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Location Card Specific Styles */
.location-header {
    padding-bottom: 20px;
    background-color: white;
    border-bottom: 2px solid #e8e8e8;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-header h3 {
    margin: 0;
    font-size: 16px;
    color: var(--text-heading-color);
    font-weight: 500;
}

.location-header .chevron {
    transition: transform 0.3s ease;
    color: var(--text-subheading-color);
}

.location-header[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}


@media (max-width: 400px) {
    .section-subtitle {
        font-size: 20px;
    }

    .office-title {
        font-size: 16px;
    }

    .contact-card,
    .location-card {
        padding: 14px;
    }

    .contacts-info {
        font-size: 12px;
    }

    .contacts-info i {
        font-size: 14px;
    }

    .support-text {
        font-size: 11px;
        padding: 10px;
    }

    .location-header h3 {
        font-size: 12px;
    }
}



/*-------------Hire Bus-------------*/
/* Inquiry Card */
.inquiry-card {
    background: var(--primary-color);
    border-radius: 30px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}


/* Form Card */
.form-card {
    border-radius: 30px;
}

/* Inputs */
.form-control {
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 12px;
}

/* Input + Icon Wrapper */
.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 14px;
    pointer-events: none;
}

/* Style selects so arrow is hidden */
.input-icon select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
}

@media (max-width: 400px) {

    .inquiry-card,
    .form-card {
        border-radius: 20px !important;
        padding: 15px;
    }

    .booking-title {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }

    .icon-circle {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .ms-2 {
        margin-left: 10px !important;
        font-size: 12px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .inquiry-card {
        padding: 25px 15px;
    }

    .inquiry-card .booking-title {
        font-size: 24px;
        margin-bottom: 25px;
        text-align: left;
    }

    .inquiry-card .d-flex {
        justify-content: left;
        text-align: left;
        gap: 10px;
    }

    .inquiry-card .d-flex span {
        font-size: 14px;
    }

    .icon-circle {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

}

/* Small Mobile */
@media (max-width: 480px) {
    .inquiry-card {
        padding: 20px 10px;
    }

    .inquiry-card .booking-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .inquiry-card .d-flex span {
        font-size: 13px;
    }

    .icon-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/*-------------------My Booking-----------------------*/
.nav-tabs-custom .nav-link {
    color: var(--text-subheading-color);
    border: none;
    font-weight: 500;
    margin: 0 10px;
    padding: 10px 15px;
    font-size: 16px;
}

.nav-tabs-custom .nav-link.active {
    color: var(--text-heading-color);
    border-bottom: 3px solid var(--secondary-color);
    background-color: transparent;
}

.bookings-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    transition: all 0.3s ease;
}

.tab-content {
    overflow-x: hidden;
}

.row {
    flex-wrap: wrap;
}

.bookings-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.bookings-header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.badge-upcoming {
    background-color: rgba(249, 201, 64, 0.2);
    color: var(--secondary-color);
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.key {
    font-weight: 500;
    color: var(--text-heading-color);
    font-size: 14px;
}

.value {
    color: var(--text-subheading-color);
    text-align: right;
    font-size: 14px;
}

.btn-view {
    background-color: white;
    border: 1px solid #e0e0e0;
    color: black;
    width: 100%;
    border-radius: 6px;
    padding: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-view:hover {
    background-color: #f8f9fa;
    border-color: #c0c0c0;
}

.btn-cancel {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    width: 100%;
    border-radius: 6px;
    padding: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background-color: #e6b828;
    color: white;
}

.section-gap {
    margin-bottom: 80px;
}

.ticket-container {
    width: 100%;
    /* max-width: 420px; */
    position: relative;
}

.ticket-card {
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

/* Top Section with Teal Background */
.top-section {
    background: #00a6b2;
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    border-radius: 16px 16px 0 0;
}

.route {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.dates {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Single White Section */
.white-section {
    padding: 25px 20px;
    position: relative;
}

/* Middle Section with Timing */
.timing {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-box {
    text-align: center;
    flex: 1;
}

.time {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.location {
    font-size: 1rem;
    color: #7f8c8d;
}

.duration {
    position: relative;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.duration-line {
    width: 80px;
    height: 2px;
    border-top: 2px dashed #bdc3c7;
    margin: 8px 0;
}

.duration-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    background: white;
    padding: 0 5px;
}

/* Grey Underline with Circle Cutouts */
.grey-underline {
    height: 2px;
    background-color: #bdc3c7;
    margin: 25px 0;
    position: relative;
}

.grey-underline::before,
.grey-underline::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #f5f7fa;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.grey-underline::before {
    left: -10px;
}

.grey-underline::after {
    right: -10px;
}

/* Bottom Section */
.bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
}

.seats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.seat {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* No Data Image */
.no-data-img {
    max-width: 250px;
    height: auto;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 1199.98px) {
    .nav-tabs-custom .nav-link {
        margin: 0 8px;
        padding: 8px 12px;
        font-size: 15px;
    }
}

@media (max-width: 991.98px) {
    .nav-tabs-custom .nav-link {
        margin: 0 5px;
        padding: 8px 10px;
        font-size: 14px;
    }

    .bookings-card {
        padding: 18px;
    }

    .key,
    .value {
        font-size: 13.5px;
    }

    .btn-view,
    .btn-cancel {
        padding: 7px;
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .nav-tabs-custom {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 10px;
    }

    .nav-tabs-custom .nav-link {
        white-space: nowrap;
        margin: 0 8px;
    }

    .bookings-card {
        margin-bottom: 20px;
    }

    .col-md-4 {
        margin-bottom: 20px;
    }

    .no-data-img {
        max-width: 200px;
    }
}

@media (max-width: 575.98px) {
    .section-gap {
        margin-bottom: 60px;
    }

    .nav-tabs-custom .nav-link {
        font-size: 13px;
        padding: 6px 8px;
        margin: 0 5px;
    }

    .bookings-card {
        padding: 15px;
        border-radius: 10px;
    }

    .bookings-header {
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .bookings-header h6 {
        font-size: 14px;
    }

    .badge-upcoming {
        font-size: 11px;
        padding: 4px 10px;
    }

    .key,
    .value {
        font-size: 13px;
    }

    .row.mb-2 {
        margin-bottom: 12px !important;
    }

    .row.mb-4 {
        margin-bottom: 20px !important;
    }

    .btn-view,
    .btn-cancel {
        padding: 6px;
        font-size: 12px;
    }

    .no-data-img {
        max-width: 180px;
    }

    .text-muted {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .nav-tabs-custom .nav-link {
        font-size: 12px;
        padding: 5px 6px;
        margin: 0 3px;
    }

    .bookings-card {
        padding: 12px;
    }

    .key,
    .value {
        font-size: 12px;
    }

    .value {
        text-align: left;
    }

    .btn-view,
    .btn-cancel {
        font-size: 11px;
        padding: 5px;
    }

    .no-data-img {
        max-width: 150px;
    }
}

/*------------------Search Buses----------------------*/
/* Offer Cards */
.offer-card {
    border-radius: 12px;
    transition: 0.3s ease;
}

.bg-light-yellow {
    background: #fffde7;
}

.bg-light-pink {
    background: #fce4ec;
}

.bg-light-blue {
    background: #e3f2fd;
}

.bg-light-gray {
    background: #eefdf0;
}

/* Coupon Box */
.coupon-box {
    background: #fff;
    border: 1px dashed var(--text-subheading-color);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
}

/* Coupon Text */
.coupon {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-heading-color);
    margin-right: 6px;
}

/* Copy Icon */
.copy-icon {
    cursor: pointer;
    color: var(--text-subheading-color);
    font-size: 16px;
    transition: color 0.3s ease;
}

.copy-icon:hover {
    color: var(--primary-color);
}

/* ====================Filters====================== */
.main-section {
    display: flex;
    gap: 40px;
    max-width: 1380px;
    margin: 0 auto;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* FILTER SECTION STYLES (Unchanged) */
.filter-section {
    width: 300px;
    background: #fff;
    border-radius: 15px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.filter-header {
    background-color: white;
    padding: 15px 20px;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-title {
    font-weight: 400;
    color: var(--text-heading-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-title i {
    color: var(--text-subheading-color);
}

.filter-clear {
    color: var(--text-subheading-color);
    text-decoration: none;
    transition: color 0.2s;
}

.filter-clear:hover {
    color: var(--primary-color);
}

.filter-item {
    border: 1px solid #e8e8e8;
    margin: 10px 0px;
    border-radius: 10px;
    overflow: hidden;
}

.filter-btn {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    height: 40px;
    color: #37474F;
    transition: background 0.2s;
}

.filter-btn:hover {
    background: #f8f9fa;
}

.filter-options {
    background: #fdfdfd;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid #e0e0e0;
}

.filter-options.active {
    max-height: 400px;
    overflow-y: auto;
    padding: 12px 16px;
    border-top: 1px solid #e0e0e0;
}

.time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.time-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 12px;
    color: var(--text-heading-color);
}

.time-card small {
    font-size: 10px;
    color: var(--text-subheading-color);
}

.time-card.active {
    border-color: var(--primary-color);
    background: white;
    color: var(--primary-color);
}

.option-item {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.option-item+.option-item {
    border-top: 1px solid #e8e8e8;
}

.location-details {
    flex: 1;
}

.location-name {
    font-weight: 600;
    color: var(--text-heading-color);
    margin-bottom: 3px;
    font-size: 12px;
}

.location-address {
    color: var(--text-subheading-color);
    font-size: 10px;
    line-height: 1.3;
}

.option-item input[type="radio"] {
    margin-top: 3px;
    margin-right: 10px;
    accent-color: #0097A7;
}

.panel {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid #e8e8e8;
    display: none;
}

.panel.active {
    display: block;
}

.panel-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-heading-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-title i {
    color: var(--primary-color);
}

.action-btn {
    padding: 10px 18px;
    border: 1px solid #dee2e6;
    background-color: #fff;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-subheading-color);
    transition: all 0.2s;
    width: fit-content;

}

.action-btn.active i {
    transform: rotate(180deg);
}

.point-item {
    padding: 12px 0;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.point-item:last-child {}

.point-time {
    font-weight: 500;
    color: var(--text-heading-color);
    min-width: 60px;
    font-size: 14px;
}

.point-details {
    flex: 1;
}

.point-name {
    font-weight: 500;
    color: var(--text-heading-color);
    margin-bottom: 5px;
    font-size: 12px;
}

.point-address {
    color: var(--text-subheading-color);
    font-size: 10px;
    line-height: 1.4;
}

/* BUS CARD STYLES */
.bus-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    width: 100%;
    /* max-width: 900px; */
    min-width: 0;
    border: 1px solid #eaeaea;
    margin-bottom: 12px;
}

.bus-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.route-info {
    flex: 1;
}

.route-cities {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}

.city {
    display: flex;
    flex-direction: column;
}

.city-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-heading-color);
    line-height: 1.2;
}

.city-time {
    font-size: 12px;
    color: var(--text-subheading-color);
    margin-top: 5px;
}

.arrow {
    font-size: 18px;
    color: #adb5bd;
}

.bus-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    color: var(--text-subheading-color);
    font-size: 12px;
}

.detail-item {
    display: flex;
    align-items: start;
    align-items: baseline;
    gap: 5px;
    justify-content: flex-start;
    flex-direction: row;
}

.seats-left {
    background: var(--error-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
}

.divider {
    height: 1px;
    background: #eaeaea;
    margin: 10px 0;
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.btn-send {
    background: var(--secondary-color);
    color: white;
    font-weight: 500;
    font-size: 12px;
    padding: 10px;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
    width: 180px;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    /* Flexible columns */
    gap: 12px;
}

.action-btn-text {
    font-size: 12px;
    font-weight: 500;
    color: #37434f;
    text-align: center;

    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

/* Amenities Panel */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amenity-icon {
    display: flex;
    color: var(--text-subheading-color);
    font-size: 15px;
}

.amenity-name {
    font-weight: 400;
    color: var(--text-subheading-color);
    font-size: 12px;
}

/* Cancellation Policy */
.cancellation-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cancellation-table th {
    background-color: #e9ecef;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border: 1px solid #e8e8e8;
    font-size: 14px;
}

.cancellation-table td {
    padding: 12px 15px;
    border: 1px solid #e8e8e8;
    vertical-align: top;
    font-size: 12px;
}

.time-period {
    color: var(--text-heading-color);
    font-weight: 500;
    width: 40%;
    font-size: 14px;
}

.refund-amount {
    color: var(--primary-color);
    font-weight: 600;
    width: 20%;
    text-align: center;
}

.no-refund {
    color: var(--error-color);
}

.policy-note {
    background-color: #e6f7f9;
    border-left: 4px solid #0097A7;
    padding: 15px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-heading-color);
    line-height: 1.5;
}


/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {

    /* Search Section */
    .search-box {
        padding: 15px !important;
        .action-buttons
    }

    .form-labels {
        font-size: 12px;
    }

    .form-control {
        font-size: 12px;
        padding: 6px 10px;
    }

    .btn-send {
        font-size: 14px;
        padding: 8px;
    }

    /* Offers */
    .offer-card h6 {
        font-size: 14px;
    }

    .offer-card p {
        font-size: 11px;
    }

    .coupon {
        font-size: 12px;
    }

    /* Main Section */
    .main-section {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }

    .filter-section {
        width: 100% !important;
        padding: 12px;
    }

    .bus-card {
        padding: 15px;
        max-width: 100%;
    }

    /* Cities */
    .city-name {
        font-size: 16px;
    }

    .city-time {
        font-size: 12px;
    }

    .arrow {
        font-size: 16px;
    }

    /* Bus Details */
    .bus-details {
        flex-direction: row;
        gap: 5px;
        font-size: 12px;
        flex-wrap: wrap;
    }

    .detail-item {
        gap: 4px;
        font-size: 12px;
    }

    /* Seats & Price */
    .seats-left {
        font-size: 11px;
        padding: 4px 10px;
    }

    .price {
        font-size: 18px;
        width: 250PX;
    }

    .price-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    .price-section .btn-send {
        /* width: 100% !important; */
    }

    /* Action Buttons */
    .action-buttons {
        display: flex;
        /* flex-direction: column; */
        /* stack on small screens */
        gap: 10px;
    }

    .action-btn {
        /* width: 100%; */
        justify-content: center;
        font-size: 12px;
    }

    .action-btn-text {
        font-size: 11px;
    }

    /* Panels */
    .panel {
        padding: 15px;
    }

    .panel-title {
        font-size: 14px;
    }

    .amenity-item {
        font-size: 11px;
    }

    .point-time {
        font-size: 12px;
    }

    .point-name {
        font-size: 12px;
    }

    .point-address {
        font-size: 10px;
    }

    /* Cancellation Table */
    .cancellation-table th,
    .cancellation-table td {
        font-size: 11px;
        padding: 8px;
    }

    .policy-note {
        font-size: 11px;
        padding: 10px;
    }

    .operate-sec {
        margin-top: 10px;
    }
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: #fff;
    overflow: hidden;
    transition: 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.overlay.active {
    width: 450px;
    max-width: 100%;
}

.overlay-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.overlay-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-color);
}

.overlay-header h3 {
    margin: 0;
    color: var(--text-heading-color);
    font-size: 20px;
}

.overlay-header .route {
    font: var(--sub-paragraph-desktop);
    color: var(--text-subheading-color);
    margin-top: 5px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-subheading-color);
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--error-color);
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: space-around;
    background: #fff;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-subheading-color);
    transition: all 0.3s;
    position: relative;
    font-size: 12px;
}

.tab.active {
    color: var(--text-heading-color);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px 3px 0 0;
}

.tab:hover {
    background: #f8f9fa;
}

/* Tab Content */
.tab-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Seat Layout */
.legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    font: var(--paragraph-sm-mobile);
    background: #f8f9fa;
    border-radius: 8px;
}

.legend div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
}

.seats {
    width: 15px;
    height: 15px;
    border-radius: 4px;
    border: 1px solid;
}

.seats.available {
    background: #e6f7e6;
    border-color: var(--success-color);
}

.seats.booked {
    background: #f5f5f5;
    border-color: var(--border-color);
}

.seats.female {
    background: #fce4ec;
    border-color: #f48fb1;
}

.seats.male {
    background: #e3f2fd;
    border-color: #64b5f6;
}

/* Seat Layout */
.legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    font-size: 14px;
    background: #f8f9fa;
    border-radius: 8px;
}

.legend div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.seats {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid;
}

.seats.available {
    background: #e6f7e6;
    border-color: var(--success-color);
}

.seats.booked {
    background: #f5f5f5;
    border-color: var(--border-color);
}

.seats.female {
    background: #fce4ec;
    border-color: #f48fb1;
}

.seats.male {
    background: #e3f2fd;
    border-color: #64b5f6;
}

.seat-layout {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-family: Arial, sans-serif;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.deck-box {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    background: #fff;
    flex: 1;
    max-width: 250px;
}

.deck-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seat-grid {
    display: flex;
    gap: 10px;
}

.left-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.right-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
    margin-left: 10px;
}

.seat-row {
    display: flex;
    gap: 10px;
}

/* Normal seats */
.seat {
    width: 35px;
    height: 35px;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
}

/* Sleeper seats */
.sleeper-row {
    display: flex;
    gap: 10px;
}

.left-col .sleeper {
    width: 40px;
    height: 80px;
}

.right-col .sleeper {
    width: 40px;
    height: 80PX;
    display: flex;

    gap: 10px;

    margin-left: 10px;

}

.sleeper {
    width: 50px;
    height: 80px;
    border: 1px solid #444;
    border-radius: 6px;
    font-size: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Status colors (updated) */
.seat.available,
.sleeper.available {
    background: #e6f7e6;
    border-color: var(--success-color);
    color: #2e7d32;
}

.seat.booked,
.sleeper.booked {
    background: #f5f5f5;
    border-color: var(--border-color);
    color: #9e9e9e;
    cursor: not-allowed;
}

.seat.female,
.sleeper.female {
    background: #fce4ec;
    border-color: #f48fb1;
    color: #d81b60;
}

.seat.male,
.sleeper.male {
    background: #e3f2fd;
    border-color: #64b5f6;
    color: #1565c0;
}

.seat.selected,
.sleeper.selected {
      background: var(--selected-bg);
    border-color: var(--selected-border);
    color: rgb(0, 0, 0) !important;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 151, 167, 0.4);
}

.seat.available:hover,
.seat.male:hover,
.seat.female:hover,
.sleeper.available:hover,
.sleeper.male:hover,
.sleeper.female:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Boarding Points */
.boarding-list {
    padding: 0px 20px;
}

.boarding-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.boarding-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.boarding-item.selected {
    background: #e8f4fd;
    border-color: var(--primary-color);
}

.boarding-time {
    padding-right: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.boarding-details {
    flex: 1;
    padding-right: 15px;
}

.boarding-location {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-heading-color);
    margin-bottom: 5px;
}

.boarding-address {
    font-size: 10px;
    color: var(--text-subheading-color);
    line-height: 1.4;
}

.boarding-radio {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* Tab Headings */
.tab-heading {
    padding: 15px 20px 5px;
    color: var(--text-heading-color);
    font-size: 16px;
    font-weight: 600;
}

/* Bottom card */
.bottom-card {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 20px 20px 0 0;
}

.bottom-card .next-btn {
    background: var(--secondary-color);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    color: white;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 151, 167, 0.3);
    font-size: 12px;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

.bottom-card .next-btn:hover {
    background: #e69500;
    transform: translateY(-2px);
}

#selected-info {
    font-weight: 600;
    color: var(--text-heading-color);
    font-size: 14px;
    margin-bottom: 2px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .overlay.active {
        width: 100%;
    }

    .seat-layout {
        flex-direction: row;
    }

    .deck-box {
        max-width: 100%;
        width: 100%;
    }

    .legend {
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .deck-box {
        padding: 10px;
    }

    .seat {
        width: 30px;
        height: 30px;
        font-size: 11px;
        line-height: 30px;
    }

    .sleeper {
        width: 45px;
        height: 70px;
        font-size: 11px;
    }

    .boarding-item {
        flex-direction: row;
    }

    .boarding-radio {
        align-self: center;
        margin-top: 10px;
    }
}

.passenger-details-section .container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-warning-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 8px;
    padding: 10px;
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.btn-warning-custom:hover {
    background-color: #e69500;
    color: white;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: #eee;
    border-color: #eee;
    color: var(--text-heading-color);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    color: var(--text-heading-color);
}

.add-passenger-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

.passenger-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.passenger-info {
    color: var(--text-heading-color);
}

.passenger-actions i {
    cursor: pointer;
    margin-left: 12px;
    color: var(--text-subheading-color);
    font-size: 14px;
}

.passenger-actions i:hover {
    color: var(--primary-color);
}

.passenger-actions .fa-trash:hover {
    color: var(--error-color);
}

.card-title {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    color: #37474F;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid var(--border-color);
    font-size: 14px;
}

.payment-option .form-check-input {
    margin: 0;
    flex-shrink: 0;
    transform: scale(1.1);
}

.payment-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
    border-radius: 6px;
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 14px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.important-note {
    background: #FFF8E1;
    border-left: 4px solid var(--secondary-color);
    padding: 16px;
    border-radius: 4px;
    font-size: 14px;
}

.important-note h5 {
    color: var(--text-heading-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.important-note p {
    font-size: 12px;
    margin-bottom: 0;
}

.footer-actions {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-top: 2rem;
}

.trip-summary .row {
    margin-bottom: 10px;
    font-size: 14px;
}

.trip-summary .total {
    border-top: 1px dashed var(--border-color);
    padding-top: 15px;
    color: var(--primary-color);
    font-size: 16px;
}

.card-body .key {
    color: var(--text-heading-color);
    font-weight: 500;
}

.card-body.value {
    color: var(--text-subheading-color);
}

.card-body .form-labels {
    font-size: 14px;
    color: var(--text-heading-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.card-body.form-control {
    font-size: 14px;
}

.card-body .terms .form-check-label {
    font-size: 12px;
}

@media (max-width: 576px) {
    .passenger-details-section .container {
        padding: 15px;
        margin-bottom: 15px;
    }

    .btn-warning-custom,
    .btn-outline-primary,
    .btn-secondary {
        width: 70% !important;
        max-width: 100% !important;
        font-size: 13px;
        padding: 8px 12px;
    }

    .trip-summary .row {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .important-note p,
    .card-body .form-labels,
    .card-body .terms .form-check-label {
        font-size: 11px;
    }

    .card-title {
        font-size: 14px;
    }

    .passenger-item {
        font-size: 12px;
        padding: 8px 0;
    }

    .payment-option {
        font-size: 13px;
        padding: 10px;
        gap: 8px;
    }

    .payment-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .add-passenger-btn {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }

    .important-note h5 {
        font-size: 14px;
    }

    .footer-actions .btn {
        width: 100% !important;
        margin-bottom: 10px;
    }

    .footer-actions .d-flex {
        flex-direction: column;
    }
}




/*----------------------------------------------Policy-----------------------------------------------------*/
.policy-section {
    padding: 40px 0;
}

.terms-card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    background: #fff;
}

.policy-section .shead {
    font-size: 18px;
    color: var(--text-heading-color);
    font-weight: 500;
    margin-bottom: 15px;
    padding-top: 10px;
}

.terms-card ul {
    margin-left: 0px;
}

.terms-card li {
    margin-bottom: 8px;
    font-size: 14px;
}

.policy-section .text-muted {
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 576px) {
    .policy-section {
        padding: 1rem 0;
    }

    .policy-section .shead {
        font-size: 14px;
    }

    .table-responsive {
        border-radius: 8px;
        border: 1px solid #dee2e6;
    }

    .table th,
    .table td {
        padding: 0.6rem;
    }

    ul li {
        font-size: 10px;
    }

    .policy-section .text-muted {
        font-size: 10px;
        font-weight: 500;
    }
}







/*------------------------------------Modal style---------------------------------*/
/* SweetAlert2 Modal Customization */
.swal2-popup {
    font-size: 16px !important;
    font-family: 'Poppins', sans-serif !important;
    border-radius: 15px !important;
    padding: 25px !important;
    width: auto !important;
    max-width: 500px !important;
}

.swal2-title {
    font-size: 24px !important;
    font-weight: 500 !important;
    color: var(--text-subheading-color) !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
}

.swal2-html-container {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--text-subheading-color) !important;
    margin: 0 0 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
}


.swal2-success [class^=swal2-success-line] {
    height: 4px !important;
}

.swal2-success .swal2-success-ring {
    border: 4px solid rgba(40, 167, 69, 0.2) !important;
}

.swal2-actions {
    margin: 20px 0 5px 0 !important;
}

.swal2-confirm {
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    background-color: var(--success-color) !important;
    border: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.swal2-confirm:hover {
    background-color: var(--success-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15) !important;
}

.swal2-confirm:focus {
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25) !important;
}

/* Custom class for specific modals */
.payment-success-swal .swal2-title {
    color: var(--success-color) !important;
    font-weight: 500 !important;
}

.payment-success-swal .swal2-html-container {
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* Warning modal styles */
.warning-swal .swal2-title {
    color: var(--secondary-color) !important;
}

.warning-swal .swal2-confirm {
    background-color: var(--secondary-color) !important;
}

.warning-swal .swal2-confirm:hover {
    background-color: #e69500 !important;
}

/* Draggable handle style */
.swal2-popup.swal2-draggable .swal2-icon {
    cursor: move !important;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .swal2-popup {
        font-size: 14px !important;
        padding: 20px !important;
        margin: 10px !important;
        width: calc(100% - 20px) !important;
    }

    .swal2-title {
        font-size: 20px !important;
    }

    .swal2-html-container {
        font-size: 10px !important;
    }

    .swal2-confirm {
        font-size: 14px !important;
        padding: 8px 20px !important;
    }
}
