:root {
    --main-blue: #0a578c;
    --accent-yellow: #ffc107;
    --white: #ffffff;
    --gray: #f8f8f8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--white);
    color: #1a1a1a;
    line-height: 1.5;
}

header {
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}




.logo {
    width: 200px;
}

.search-section {
    padding: 2rem 1rem;
    text-align: center;
    color: white;
}

    .search-section h2 {
        color: var(--white);
        font-size: 36px;
        margin-bottom: 0.5rem;
    }

.benefits {
    font-size: 20px;
    margin-bottom: 1rem;
    color: #f0f0f0;
}

#kayak {
    margin: 0 auto;
    width: 700px;
    background-color: rgba(255, 255, 255, 0.53);
    padding: 20px;
    border-radius: 10px;
}

.logos, .partners {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem;
}

.logos {
    font-size: 16px;
    background-color: #0c548c;
    color: white;
    padding: 15px 20vw;

    @media screen and (max-width: 1091px) {
        padding: 15px 15vw;
    }

    @media screen and (max-width: 940px) {
        padding: 15px 10vw;
    }
}

.card-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 5px;
}

.card-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .card-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

.card-category {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.card-model {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.card-image {
    width: 100%;
    height: 120px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .card-image img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

.card-specs {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.card-spec-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #2196F3;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-spec-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.card-transmission {
    color: #2196F3;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-rental-company {
    height: 40px;
    display: flex;
    align-items: flex-end;
}

    .card-rental-company img {
        height: 100%;
    }

.card-company-logo {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
}

.avis {
    background-color: #e31e24;
}

.budget {
    background-color: #ff6600;
}

.thrifty {
    background-color: #2196F3;
}

.dollar {
    background-color: #00a651;
}

.card-price {
    text-align: right;
    height: 40px;
}

.card-price-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.card-price-period {
    color: #666;
    font-size: 0.9rem;
}

.card-view-button {
    width: 100%;
    background: linear-gradient(135deg,#ff690f 0%,#e8381b 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .card-view-button:hover {
        background: rgb(206, 134, 0);
    }

@media (max-width: 768px) {
    .card-title {
        font-size: 2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
}

.section-title {
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem 0;
    color: var(--main-blue);
}

.car-section {
    margin-bottom: 3rem;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
}

.card {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    width: 250px;
    background-color: var(--white);
    text-align: center;
    position: relative;
}

.card-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.card-subtitle {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.car-image {
    width: 100%;
    height: 80px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 4px;
}

    .car-image::before,
    .car-image::after {
        content: '';
        position: absolute;
        background: #ccc;
    }

    .car-image::before {
        width: 60%;
        height: 2px;
        top: 50%;
        left: 20%;
        transform: translateY(-50%);
    }

    .car-image::after {
        width: 2px;
        height: 60%;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
    }

.rating {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.star {
    width: 12px;
    height: 12px;
    background: #ddd;
    margin: 0 1px;
    border-radius: 1px;
}

    .star.filled {
        background: var(--accent-yellow);
    }

.price {
    color: var(--main-blue);
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
}

.view-button {
    background-color: var(--main-blue);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
}

    .view-button:hover {
        background-color: #084a73;
    }

.partners-section {
    margin-bottom: 3rem;
}

.partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover
}



.partner-name {
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
}


.section-title {
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 2rem 0 3rem 0;
    color: var(--main-blue);
}

.destinations-section {
    padding-left: 1rem;
    padding-right: 1rem;
}

.destinations-category {
    margin-bottom: 2.5rem;
}

.destinations-category-title {
    color: var(--main-blue);
    font-size: 20px;
    font-weight: bold;
    margin-left: 0;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.destinations {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 0;
    max-width: 1000px;
}

.destination-list {
    flex: 1;
    min-width: 200px;
    padding-left: 0;
}

    .destination-list p {
        font-size: 14px;
        line-height: 1.8;
        color: #333;
    }

    .destination-list a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .destination-list a:hover {
            color: orange;
            text-decoration: underline;
        }


.destinations-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.destinations-mobile {
    display: none;
}

@media (max-width: 767px) {
    .destinations-desktop {
        display: none;
    }

    .destinations-mobile {
        display: block;
    }

    .destinations-category {
        margin-bottom: 2rem;
    }

    .destinations-mobile .destinations {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem 2rem;
        padding: 1rem 0;
        justify-content: start;
    }

    .destinations-mobile .destination-list {
        min-width: auto;
        padding-left: 1rem;
    }

    .destinations-mobile .destinations-category-title {
        padding-left: 1rem;
    }
}

.destinations-category {
    max-width: 990px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.travel-smarter-section {
    padding: 2rem 1rem;
}

.travel-smarter-container {
    max-width: 1200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto;
    border: 2px solid #ffffff;
    border-radius: 8px;
    padding: 2rem;
    color: rgb(0, 0, 0);
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
    text-shadow: rgba(0, 0, 0, 0.8) 1px 1px 0px;
}

    .travel-smarter-container::before,
    .travel-smarter-container::after {
        content: '';
        position: absolute;
        background: #ffffff;
    }

    .travel-smarter-container::before {
        width: 100px;
        height: 2px;
        top: 30px;
        left: 30px;
    }

    .travel-smarter-container::after {
        width: 100px;
        height: 2px;
        top: 30px;
        right: 30px;
    }

.travel-smarter-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.travel-smarter-text {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 600px;
}

.compare-button {
    background: linear-gradient(135deg, #ff690f 0%, #e8381b 100%);
    ;
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

    .compare-button:hover {
        background-color: #555;
    }


.faq {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 1rem;
}



.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    cursor: pointer;
}


.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

    .faq-question:hover {
        background-color: #f8f9fa;
        padding-left: 10px;
        padding-right: 10px;
        border-radius: 4px;
    }

.faq-text {
    font-size: 1rem;
    color: #333;
    flex: 1;
    font-weight: bold;
    line-height: 1.4;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNiA4TDEwIDEyTDE0IDgiIHN0cm9rZT0iI2ZmNjkwZiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGZpbGw9Im5vbmUiLz4KPC9zdmc+');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1rem;
}

    .faq-answer.active {
        max-height: 200px;
        padding: 1rem;
    }

    .faq-answer p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }



    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 0.5rem;
    }

    .section-title {
        margin: 1.5rem 0 2rem 0;
    }

    .faq-question {
        padding: 0.8rem 0;
    }
}

.subscribe {
    background-color: var(--main-blue);
    color: var(--white);
    text-align: center;
    padding: 3rem 1rem;
}

    .subscribe h2 {
        font-size: 24px;
        margin-bottom: 1rem;
    }

    .subscribe p {
        font-size: 16px;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.subscribe-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.subscribe input[type="email"] {
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    width: 300px;
    font-size: 16px;
}

.subscribe button {
    background: linear-gradient(135deg, #ff690f 0%, #e8381b 100%);
    color: rgb(255, 255, 255);
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    font-size: 16px;
}

.benefits-mobile {
    display: none;
}

@media screen and (max-width:767px) {
    .benefits-mobile {
        display: block;
        text-align: center;
        margin-top: 10px;
        font-size: 12px;
    }

    .benefits {
        text-align: center !important;
    }

    .benefits-desktop {
        display: none;
    }
}

#navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.subscribe button:hover {
    background-color: #e6ac00;
}

footer {
    background-color: #002244;
    color: var(--white);
    padding: 2rem 1rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 2rem;
}

@media screen and (max-width: 440px) {
    .footer-links a {
        font-size: 13px !important;
    }
}

.footer-links a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
    font-size: 16px;
}

    .footer-links a:hover {
        text-decoration: underline;
    }

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #666;
    border-radius: 4px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .footer-icon::before,
    .footer-icon::after {
        content: '';
        position: absolute;
        background: #666;
    }

    .footer-icon::before {
        width: 16px;
        height: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .footer-icon::after {
        width: 2px;
        height: 16px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        max-width: 300px;
    }

    .partners {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .destinations {
        flex-direction: column;
        gap: 2rem;
    }

    .logos {
        padding: 15px 20px;
    }



    header {
        flex-direction: column;
        align-items: flex-start;
    }

    #kayak {
        width: auto;
        padding: 20px 0;
    }

    .search-section h2 {
        font-size: 24px;
    }

    .benefits {
        font-size: 13px;
    }

    .travel-smarter-container {
        padding: 1.5rem;
    }

    .travel-smarter-title {
        font-size: 24px;
    }

    .travel-smarter-text {
        font-size: 14px;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }



    .subscribe input[type="email"] {
        width: 100%;
        max-width: 300px;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

        .footer-links a {
            margin: 0;
        }
}

@media (max-width: 480px) {
    .travel-smarter-container::before,
    .travel-smarter-container::after {
        display: none;
    }

    .card {
        width: 95%;
    }

    .subscribe {
        padding: 2rem 1rem;
    }
}

.trustpilot-bar {
    background: transparent;
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 500;
    max-width: 500px;
    width: 100%;
    text-align: center;
    margin: 25px auto 0 auto;
}

.rating-text {
    font-weight: 600;
    font-size: 16px;
}

.stars-container {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star {
    width: 18px;
    height: 18px;
    position: relative;
}

    .star svg {
        width: 100%;
        height: 100%;
        fill: white;
    }

.star {
    background: #00B67A;
    border-radius: 2px;
    padding: 2px;
}

    .star.partial {
        position: relative;
        overflow: hidden;
        background: linear-gradient(to right, #00B67A 50%, #e0e0e0 50%);
    }

        .star.partial::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: transparent;
        }

.reviews-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.reviews-count {
    font-weight: 600;
}

.reviews-text {
    opacity: 0.9;
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trustpilot-icon {
    width: 20px;
    height: 20px;
    background: #00B67A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.trustpilot-text {
    font-weight: 600;
    opacity: 0.9;
}

@media (max-width: 480px) {
    .trustpilot-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .reviews-info {
        margin-left: 0;
    }
}

.supplier-logo {
    width: 50px;
}

#logo-mobile {
    display: none;
}

#logo-desktop {
    display: block;
}

@media screen and (max-width:767px) {
    #logo-mobile {
        display: block;
        margin-left: -17px;
    }

    #logo-desktop {
        display: none;
    }

    header {
        background: linear-gradient(135deg,#ff690f 0%,#e8381b 100%);
    }

    .search-section h2, .benefits {
        text-align: left;
        color: black;
    }
}



.carousel-container {
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.carousel-grid {
    display: inline-flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
    width: max-content;
}


.travel-card {
    position: relative;
    flex: 0 0 auto;
    width: 180px;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    background: #000;
}

    .travel-card:hover {
        transform: translateY(-6px) scale(1.04);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .travel-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        transition: transform 0.4s ease;
    }

    .travel-card:hover img {
        transform: scale(1.05);
    }

    .travel-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.1) 100%);
        z-index: 2;
    }

.travel-card-content {
    position: relative;
    z-index: 3;
    padding: 20px 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.travel-card h3 {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 0 10px;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    max-width: 160px;
    word-wrap: break-word;
    font-size: 13px;
    bottom: 40%;
}

@media screen and (max-width:767px) {
    .carousel-container, .card-container {
        display: none;
    }

    .search-section {
        background: white;
    }

    .trustpilot-bar {
        display: none;
    }
}

.info-banner {
    background: #0a578c;
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

:root {
    --primary: #ff690f;
    --primary-dark: #e85a00;
    --dark: #081126;
    --blue: #0d548d;
    --white: #ffffff;
    --gray: #f5f5f5;
    --border: #e7e7e7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    background: #fff;
    color: #111;
}

#navbar {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ececec;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1350px;
    margin: auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 190px;
}

.nav-icons {
    display: flex;
    gap: 14px;
}

.nav-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .nav-icon svg {
        width: 20px;
        height: 20px;
        stroke: #000;
        fill: #000;
        stroke-width: 2;
    }

    .nav-icon.active {
        background: var(--primary);
        border-color: var(--primary);
    }

        .nav-icon.active svg {
            stroke: #fff;
            fill: #fff;
        }

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.25s;
    padding: 0;
}

    .hamburger-btn span {
        display: block;
        width: 22px;
        height: 2px;
        background: #111;
        border-radius: 2px;
        transition: transform 0.35s ease, opacity 0.25s ease;
        transform-origin: center;
    }

    .hamburger-btn.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger-btn.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger-btn.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 17, 38, 0.45);
    z-index: 1998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

    .drawer-overlay.visible {
        opacity: 1;
        pointer-events: auto;
    }

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1999;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

    .drawer.open {
        transform: translateX(0);
    }

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid #ececec;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

.drawer-logo {
    width: 150px;
}

.drawer-close {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    flex-shrink: 0;
}

    .drawer-close:hover {
        background: #f5f5f5;
    }

    .drawer-close svg {
        width: 18px;
        height: 18px;
        stroke: #111;
        fill: none;
        stroke-width: 2.5;
    }

.drawer-section {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

    .drawer-section:last-child {
        border-bottom: none;
    }

.drawer-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #aaa;
    padding: 10px 22px 4px;
}

.drawer-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.18s, color 0.18s;
    border-radius: 0;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

    .drawer-item:hover {
        background: #fff5f0;
        color: var(--primary);
    }

    .drawer-item.active-item {
        color: var(--primary);
    }

        .drawer-item.active-item .drawer-icon {
            background: var(--primary);
        }

            .drawer-item.active-item .drawer-icon svg {
                fill: #fff;
            }

.drawer-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

    .drawer-icon svg {
        width: 20px;
        height: 20px;
        fill: #555;
        transition: fill 0.2s;
    }

.drawer-item:hover .drawer-icon {
    background: #ffe8d6;
}

    .drawer-item:hover .drawer-icon svg {
        fill: var(--primary);
    }

.badge-new {
    margin-left: auto;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.hero {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 720px;
    @media (max-width: 600px) {
        min-height: 650px;
    }
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.82);
    }

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1350px;
    padding: 45px 24px 60px;
    @media (max-width: 600px) {
        padding: 20px 24px 60px;
    }
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

    .main-title {
    font-size: 92px;
    line-height: 1;
    font-weight: 900;
    color: #07112b;
    letter-spacing: -4px;
}

    .main-title span {
        color: var(--primary);
        font-style: italic;
    }

.subtitle {
    font-size: 20px;
    color: #42526b;
}

.benefits {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #000;
    padding: 8px 18px;
    font-size: 18px;
    font-weight: 500;
}

.search-area {
    width: 100%;
    @media (max-width: 600px) {
        margin-top: -5px;
    }
}
    .car-widget-wrapper {
    position: relative;
    max-width: 1350px;
    margin: auto;
}

.dropdown {
    position: absolute;
    top: -50px;
    left: 0;
    z-index: 20;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    color: #111;
}

    .dropdown-toggle:hover {
        background: rgba(0,0,0,0.05);
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
}

    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu button {
        width: 100%;
        border: none;
        background: transparent;
        text-align: left;
        padding: 14px 18px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

        .dropdown-menu button:hover, .dropdown-menu .active {
            background: #fff3eb;
            color: #f97316;
        }

.car-form {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 26px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.form-group {
    flex: 1;
}

.input-box, .date-box {
    height: 72px;
    border: 1px solid #ddd;
    border-radius: 18px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    background: #fff;
}

    .input-box:hover, .date-box:hover {
        background: #fafafa;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .input-box input {
        width: 100%;
        border: none;
        outline: none;
        font-size: 18px;
        font-weight: 500;
        background: transparent;
    }

        .input-box input::placeholder {
            color: #777;
        }

.date-text {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.divider {
    width: 1px;
    height: 40px;
    background: #e5e5e5;
}

.search-btn {
    height: 72px;
    padding: 0 40px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(to right, #f97316, #ea580c);
    color: white;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 230px;
}

    .search-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(249,115,22,0.3);
    }

.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.trustpilot {
    display: flex;
    justify-content: center;
    margin: 70px 0;
}


.trustpilot-inner {
    background: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.excellent {
    font-weight: 700;
    color: #0d548d;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    width: 22px;
    height: 22px;
    background: #00b67a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.suppliers {
    background: #0d548d;
    color: #fff;
    padding: 18px 24px;
}

.suppliers-inner {
    max-width: 1350px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.suppliers img {
    height: 28px;
    object-fit: contain;
}

.nav-icons-mobile {
    display: none;
}

.benefits-mobile {
    display: none;
}

.widget-top-row {
    position: absolute;
    top: -50px;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
}

    .widget-top-row .dropdown {
        position: static;
    }

.pax-dropdown {
    position: relative;
}

.pax-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    color: #111;
}

    .pax-toggle:hover {
        background: rgba(0,0,0,0.05);
    }

.pax-popover {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 300px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 16px;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
}

    .pax-popover.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.pax-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

    .pax-row:last-of-type {
        border-bottom: none;
    }

.pax-label-main {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.pax-label-sub {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.pax-counter {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pax-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: 0.2s;
}

    .pax-btn:hover:not(:disabled) {
        border-color: #f97316;
        color: #f97316;
    }

    .pax-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

.pax-count {
    font-size: 16px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    color: #111;
}

.pax-sep {
    height: 1px;
    background: #eee;
    margin: 10px 0;
}

.pax-cabin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.pax-cabin-btn {
    border: 1.5px solid #ddd;
    background: #fff;
    border-radius: 10px;
    padding: 8px 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    color: #555;
    text-align: center;
}

    .pax-cabin-btn.active {
        border-color: #f97316;
        background: #fff3eb;
        color: #f97316;
    }

    .pax-cabin-btn:hover {
        border-color: #f97316;
        color: #f97316;
    }

.pax-done-btn {
    width: 100%;
    margin-top: 14px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(to right, #f97316, #ea580c);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

    .pax-done-btn:hover {
        opacity: 0.9;
    }

@media (max-width: 992px) {
    .main-title {
        font-size: 58px;
        letter-spacing: -2px;
    }

    .car-form {
        flex-direction: column;
        align-items: stretch;
    }

    .divider {
        display: none;
    }

    .search-btn {
        width: 100%;
    }

    .dropdown {
        position: relative;
        top: auto;
        margin-bottom: 15px;
    }

    .widget-top-row {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 15px;
        flex-wrap: wrap;
        gap: 4px;
    }

        .widget-top-row .dropdown {
            margin-bottom: 0;
        }
}

@media (max-width: 600px) {
    .main-title {
        font-size: 29px;
    }

    .subtitle {
        font-size: 16px;
    }

    .benefits {
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-icons {
        gap: 8px;
    }

    .nav-icon {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 600px) {
    nav .nav-icons {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .nav-icons-mobile {
        display: flex;
        gap: 0;
        justify-content: stretch;
        margin: -20px 0;
        width: 100%;
        padding: 0;
    }

    .nav-icon-with-label {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
        flex: 1;
        padding: 12px 0;
        border-bottom: 2px solid transparent;
        transition: border-color 0.2s;
    }

        .nav-icon-with-label.active {
            border-bottom-color: var(--primary);
        }

    .nav-icon {
        width: 48px;
        height: 48px;
    }

        .nav-icon svg {
            width: 24px;
            height: 24px;
        }

    .icon-label {
        font-size: 11px;
        font-weight: 500;
        color: #111;
    }

    .nav-icon-with-label.active .icon-label {
        color: var(--primary);
    }

    .subtitle {
        display: none;
    }

    .hero {
        background-image: none !important;
        background-color: #f3f4f6;
    }

        .hero::before {
            background: rgba(255,255,255,0.6);
        }

    .trustpilot {
        display: none;
    }

    .benefits {
        display: none;
    }

    .benefits-mobile {
        display: inline-flex;
    }
}

.date-input {
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    background: transparent;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    padding: 0;
    min-width: 130px;
}

    .date-input::-webkit-calendar-picker-indicator {
        cursor: pointer;
        opacity: 0.5;
    }

.location-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 50;
    overflow: hidden;
    min-width: 280px;
    text-align: left;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f5f5f5;
}

    .suggestion-item:last-child {
        border-bottom: none;
    }

    .suggestion-item:hover {
        background: #fff5f0;
    }

.suggestion-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
}

.suggestion-item[data-type="airport"] .suggestion-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23111'%3E%3Cpath d='M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E");
}

.suggestion-item[data-type="city"] .suggestion-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23111'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.suggestion-primary {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.suggestion-secondary {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.date-trigger {
    cursor: pointer;
    user-select: none;
}

    .date-trigger:hover {
        background: #fafafa !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    }

.date-trigger-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.date-trigger-label {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.datepicker-popover {
    display: none;
    position: absolute;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    z-index: 99999;
    padding: 24px;
    min-width: 680px;
}

    .datepicker-popover.open {
        display: block;
    }

.dp-calendars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.dp-month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dp-month-name {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.dp-nav-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    font-size: 18px;
    color: #555;
    line-height: 1;
}

    .dp-nav-btn:hover {
        background: #f5f5f5;
    }

    .dp-nav-btn.hidden {
        visibility: hidden;
        pointer-events: none;
    }

.dp-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 4px;
}

.dp-weekday {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    padding: 4px 0;
    text-transform: uppercase;
}

.dp-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.dp-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.12s;
    color: #111;
    position: relative;
}

    .dp-day:hover:not(.disabled):not(.empty) {
        background: #ffe8d6;
    }

    .dp-day.empty {
        cursor: default;
        pointer-events: none;
    }

    .dp-day.disabled {
        color: #ccc;
        cursor: not-allowed;
        pointer-events: none;
    }

    .dp-day.today {
        font-weight: 800;
    }

    .dp-day.start,
    .dp-day.end {
        background: var(--primary) !important;
        color: #fff !important;
        border-radius: 50% !important;
        z-index: 1;
    }

    .dp-day.in-range {
        background: #ffe8d6;
        border-radius: 0;
        color: #111;
    }

    .dp-day.range-left {
        border-radius: 50% 0 0 50%;
    }

    .dp-day.range-right {
        border-radius: 0 50% 50% 0;
    }

.dp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.dp-range-label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.dp-apply-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

    .dp-apply-btn:hover {
        background: var(--primary-dark);
    }

.mobile-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
}

    .mobile-modal-overlay.open {
        display: block;
    }

.mobile-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2001;
    flex-direction: column;
    overflow: hidden;
}

    .mobile-modal.open {
        display: flex;
    }

.mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mm-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.mm-close {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mm-close svg {
        width: 16px;
        height: 16px;
        stroke: #111;
        fill: none;
        stroke-width: 2.5;
    }

.mm-search-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 20px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 12px 16px;
}

.mm-search-icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.mm-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    color: #111;
    background: transparent;
}

    .mm-search-input::placeholder {
        color: #999;
    }

.mm-suggestions {
    flex: 1;
    overflow-y: auto;
    padding: 0 12px;
}

.mm-suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 8px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    gap: 12px;
    border-radius: 8px;
}

    .mm-suggestion-item:hover {
        background: #fff5f0;
    }

.mm-suggestion-icon {
    display: none;
}

.mm-suggestion-text {
    flex: 1;
    min-width: 0;
}

.mm-suggestion-primary {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    display: block;
}

.mm-suggestion-secondary {
    font-size: 13px;
    color: #888;
    display: block;
    margin-top: 2px;
}

.mm-suggestion-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    white-space: nowrap;
}

    .mm-suggestion-badge.town {
        background: #f0f0f0;
        color: #555;
    }

    .mm-suggestion-badge.city {
        background: #f0f0f0;
        color: #555;
    }

    .mm-suggestion-badge.airport {
        background: #e8f0fe;
        color: #1a73e8;
    }

.mdp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.mdp-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.mdp-selected-dates {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px;
    color: #fff;
}

.mdp-date-col {
    text-align: center;
}

.mdp-date-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.mdp-date-value {
    font-size: 22px;
    font-weight: 800;
}

.mdp-date-sep {
    font-size: 20px;
    opacity: 0.6;
}

.mdp-calendar-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.mdp-month {
    margin-bottom: 28px;
}

    .mdp-month .dp-month-header {
        justify-content: center;
    }

    .mdp-month .dp-month-name {
        font-size: 15px;
    }

.mdp-footer {
    padding: 16px 20px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.mdp-confirm-btn {
    width: 100%;
    background: #1a1a2e;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

    .mdp-confirm-btn:hover {
        background: #333;
    }

@media (max-width: 600px) {
    .datepicker-popover {
        display: none !important;
    }

    .input-box input {
        pointer-events: none;
    }

    .card-container {
        padding: 40px 16px;
    }

    .section-title {
        margin: 1.5rem 0 1rem 0;
        font-size: 1.3rem;
    }
}

.loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #ff8533 0%, #e8381b 100%);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .loading-overlay.open {
        display: flex;
    }

.loading-content {
    text-align: center;
    padding: 0 24px;
}

.loading-logo {
    width: 160px;
    margin-bottom: 36px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.loading-spinner {
    width: 52px;
    height: 52px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: lpSpin 0.85s linear infinite;
    margin: 0 auto 28px;
}

@keyframes lpSpin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.loading-sub {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    font-weight: 400;
}

.field-error {
    border-color: #e8381b !important;
    animation: fieldShake 0.35s ease;
}

@keyframes fieldShake {
    0%,100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}
