/* =========================================================
   TRAVEL HERO SECTION
========================================================= */

.travel-hero {
    position: relative;
    width: 100%;
    min-height: 600px;

    background-image: url("../img/travel/hero.png");
    background-size: cover;
    background-position: 60% center;
    background-repeat: no-repeat;

    overflow: hidden;

    /* ADD THESE */
    display: flex;
    align-items: center;
}

.travel-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.93) 0%,
            rgba(255, 255, 255, 0.78) 28%,
            rgba(255, 255, 255, 0.40) 48%,
            rgba(255, 255, 255, 0.08) 72%,
            rgba(255, 255, 255, 0) 100%);
}


/* =========================================================
   HERO CONTENT
========================================================= */

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

    width: 100%;
    max-width: 720px;

    padding: 1rem 1rem;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.travel-hero-content h1 {
    margin: 0 0 1rem;

    color: #242f67;

    font-size: 60px;
    line-height: 1.15;
    font-weight: 700;
}


/* =========================================================
   SUB TITLE
========================================================= */

.travel-hero-content h2 {
    margin: 0 0 1rem;

    color: #242f67;

    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.travel-hero-description {
    max-width: 520px;

    margin: 0 0 18px;

    color: #242f67;

    font-size: 16px;
    line-height: 1.45;
    font-weight: 300;
}


/* =========================================================
   SERVICE HIGHLIGHTS
========================================================= */

.travel-highlights {
    display: flex;
    align-items: flex-start;

    gap: 2rem;

    margin-bottom: 24px;
}


.travel-highlight {
    display: flex;
    align-items: flex-start;

    gap: 7px;

    min-width: 135px;
}


/* =========================================================
   ICON
========================================================= */

.travel-highlight-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #242f67;
    color: #ffffff;

    border-radius: 50%;

    font-size: 19px;
}


/* =========================================================
   HIGHLIGHT TEXT
========================================================= */

.travel-highlight-text {
    display: flex;
    flex-direction: column;

    padding-top: 2px;
}


.travel-highlight-text strong {
    color: #242f67;

    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;

    white-space: nowrap;
}


.travel-highlight-text span {
    margin-top: 3px;

    color: #242f67;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
}


/* =========================================================
   CALCULATE PRICE BUTTON
========================================================= */

.travel-calculate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 235px;

    padding: 14px 18px;

    background: #242f67;
    color: #ffffff;

    border-radius: 18px;

    text-decoration: none;

    font-size: 24px;
    font-weight: 500;

    transition: all 0.2s ease;
}


.travel-calculate-btn:hover {
    background: #1f275c;
    color: #ffffff;

    transform: translateY(-2px);
}


.travel-calculate-btn i {
    font-size: 21px;
}

/* =========================================================
   LARGE DESKTOP
   1201px+
========================================================= */

@media (min-width: 1201px) {

    .travel-hero {
        min-height: 500px;
        display: flex;
        align-items: center;
        background-size: cover;
        background-position: 60% center;
    }

    .travel-hero-content {
        max-width: 820px;
        padding: 40px;
    }

    .travel-hero-content h1 {
        margin-bottom: 10px;
    }

    .travel-hero-content h2 {
        margin-bottom: 16px;
    }

    .travel-hero-description {
        margin-bottom: 20px;
    }

    .travel-highlights {
        margin-top: 6px;
        margin-bottom: 18px;
        gap: 20px;
    }
}


/* =========================================================
   LAPTOP
   1001px - 1200px
========================================================= */

@media (min-width: 1001px) and (max-width: 1200px) {

    .travel-hero {
        min-height: 480px;
        display: flex;
        align-items: center;
        background-size: cover;
        background-position: 65% center;
    }

    .travel-hero-content {
        max-width: 680px;
        padding: 35px 30px;
    }

    .travel-highlights {
        margin-top: 6px;
        margin-bottom: 18px;
        gap: 1.5rem;
    }
}


/* =========================================================
   TABLET
   769px - 1000px
========================================================= */

@media (min-width: 769px) and (max-width: 1000px) {

    .travel-hero {
        min-height: 430px;
        display: flex;
        align-items: center;
        background-size: cover;
        background-position: 100% center;
    }

    .travel-hero-content {
        max-width: 850px;
        padding: 28px 25px 35px;
    }

    .travel-hero-description {
        margin-bottom: 14px;
    }

    .travel-highlights {
        gap: 15px;
        margin-top: 5px;
        margin-bottom: 17px;
    }
}


/* =========================================================
   MOBILE
   768px and below
========================================================= */

@media (max-width: 768px) {

    .travel-hero {
        min-height: 650px;
        display: flex;
        align-items: center;
        background-size: cover;
        background-position: 80% center;
    }

    .travel-hero-content {
        max-width: 100%;
        padding: 30px 22px;
    }

    .travel-hero-content h1 {
        font-size: 2.5rem;
    }

    .travel-hero-description {
        max-width: 100%;
        font-size: 15px;
    }


    .travel-highlights {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        margin-top: 18px;
        margin-bottom: 18px;
    }

    .travel-highlight {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
        min-width: 0;
    }

    .travel-highlight-icon {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .travel-highlight-text {
        display: flex;
        flex-direction: column;
        padding-top: 2px;
    }

    .travel-highlight-text strong {
        font-size: 11px;
        line-height: 1.25;
        white-space: normal;
    }

    .travel-highlight-text span {
        margin-top: 2px;
        font-size: 9px;
        line-height: 1.3;
    }

    .travel-calculate-btn {
        width: 100%;
        min-width: 0;
        font-size: 20px;
    }
}

/* ===========================================================================*/

/* =========================================================
   ASIA TOUR PACKAGES
========================================================= */


.tour-packages-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
}


.tour-packages-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 0 24px;

    box-sizing: border-box;
}


/* =========================================================
   TITLE
========================================================= */

.tour-section-title {
    margin: 12px 0;

    color: #242f67;

    font-size: 2rem;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================================
   CAROUSEL
========================================================= */

.tour-carousel {

    position: relative;

    width: 100%;

    padding: 15px 28px 18px;

    box-sizing: border-box;

    background: #f2f6fb;

    border-radius: 18px;
}


/* =========================================================
   VIEWPORT

   The viewport is responsive.
   The cards are NOT responsive.
========================================================= */

.tour-carousel-viewport {
    width: 100%;

    overflow: hidden;
}


/* =========================================================
   TRACK
========================================================= */

.tour-carousel-track {
    display: flex;

    gap: 20px;

    width: max-content;

    transition: transform 0.4s ease;

    will-change: transform;
}


/* =========================================================
   TOUR CARD
   FIXED SIZE ON ALL DEVICES
========================================================= */

.tour-card {
    width: 300px;
    height: 320px;

    min-width: 300px;
    max-width: 300px;

    min-height: 320px;
    max-height: 320px;

    flex: 0 0 300px;

    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.20);
}


/* IMAGE */

.tour-card > img {
    width: 300px;
    height: 170px;

    min-width: 300px;
    max-width: 300px;

    min-height: 170px;
    max-height: 170px;

    object-fit: cover;

    display: block;

    flex-shrink: 0;

    border-radius: 16px 16px 12px 12px;
}


/* BODY */

.tour-card-body {
    width: 300px;
    height: 205px;

    min-height: 205px;
    max-height: 205px;

    padding: 0 16px 12px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    flex-shrink: 0;
}



/* =========================================================
   COUNTRY
========================================================= */

.tour-country {
    align-self: flex-start;

    height: 22px;

    min-height: 22px;

    padding: 0 15px;

    margin-top: -10px;

    margin-bottom: 10px;

    background: #242f67;

    color: #ffffff;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 600;

    line-height: 22px;

    white-space: nowrap;

    position: relative;

    z-index: 5;
}


/* =========================================================
   TOUR INFORMATION
========================================================= */

.tour-info {
    display: flex;
    flex-direction: column;

    gap: 7px;

    color: #242f67;

    font-size: 11px;

    line-height: 1.3;
}


/* Individual information row */

.tour-info span {
    display: flex;
    align-items: center;

    gap: 6px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.tour-info i {
    width: 15px;

    flex-shrink: 0;

    color: #242f67;

    font-size: 12px;
}


/* =========================================================
   PRICE
========================================================= */

.tour-price {
    margin-top: 12px;

    margin-bottom: 12px;

    color: #242f67;

    font-size: 14px;

    line-height: 1.3;

    white-space: nowrap;
}


/* =========================================================
   VIEW DETAILS BUTTON
========================================================= */

.tour-details-btn {
    width: 100%;
    height: 38px;

    min-width: 100%;
    max-width: 100%;

    min-height: 38px;
    max-height: 38px;

    padding: 0 16px;

    margin: 0;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    background: #242f67;

    color: #ffffff;

    border-radius: 7px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    flex-shrink: 0;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.tour-details-btn:hover {
    background: #1b2452;

    color: #ffffff;

    transform: translateY(-1px);
}


/* Arrow */

.tour-details-btn i {
    font-size: 14px;
}


/* =========================================================
   ARROWS
========================================================= */

.tour-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 20;

    width: 42px;
    height: 42px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #242f67;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.2);

    transition: 0.2s ease;
}

.tour-arrow:hover {
    background: #1b2452;
}

.tour-arrow i {
    font-size: 18px;
}


/* Put arrows OUTSIDE the card content */

.tour-arrow-left {
    left: -2px;
}

.tour-arrow-right {
    right: -2px;
}


/* Disabled */

.tour-arrow.disabled {
    opacity: 0.35;

    pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .tour-packages-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .tour-carousel {
        padding-left: 25px;
        padding-right: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .tour-packages-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .tour-section-title {
        font-size: 24px;

        margin-bottom: 18px;
    }

    .tour-carousel {
        padding-left: 10px;
        padding-right: 10px;
    }

    /*
       IMPORTANT:

       DO NOT CHANGE .tour-card WIDTH.
       DO NOT CHANGE .tour-card HEIGHT.

       It remains:

       300px × 400px
    */

    .tour-arrow {
        width: 38px;
        height: 38px;
    }

    .tour-arrow i {
        font-size: 16px;
    }

}

/* =========================================
   TOUR CARD HOVER EFFECT
========================================= */

.tour-card,
.vietnam-tour-card {
    overflow: hidden;
}

.tour-card img,
.vietnam-tour-card img {
    transition: transform 0.35s ease;
}

.tour-card:hover img,
.vietnam-tour-card:hover img {
    transform: scale(1.08);
}

/* =========================================
   CONTACT US DIALOG
========================================= */

.contact-dialog {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-dialog.active {
    display: flex;
}

.contact-dialog-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.contact-dialog-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: contactDialogIn 0.25s ease;
}

@keyframes contactDialogIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-dialog-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f1f3f7;
    color: #242f67;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-dialog-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #242f67;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.contact-dialog-box h2 {
    margin: 0 0 12px;
    color: #242f67;
    font-size: 26px;
    font-weight: 700;
}

.contact-dialog-box > p {
    margin: 0 auto 25px;
    max-width: 400px;
    color: #666;
    line-height: 1.6;
}

.contact-dialog-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    text-align: left;
}

.contact-dialog-info div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f5f7fb;
    border-radius: 10px;
    color: #333;
    font-size: 14px;
}

.contact-dialog-info i {
    width: 20px;
    color: #242f67;
    text-align: center;
}

.contact-dialog-buttons {
    display: flex;
    gap: 12px;
}

.contact-primary-btn,
.contact-secondary-btn {
    flex: 1;
    min-height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.contact-primary-btn {
    background: #242f67;
    color: #ffffff;
}

.contact-primary-btn:hover {
    background: #1c2554;
    color: #ffffff;
}

.contact-secondary-btn {
    border: 1px solid #d8dce5;
    background: #ffffff;
    color: #242f67;
}

.contact-secondary-btn:hover {
    background: #f5f7fb;
}

@media (max-width: 576px) {
    .contact-dialog {
        padding: 15px;
    }

    .contact-dialog-box {
        padding: 30px 20px 25px;
        border-radius: 18px;
    }

    .contact-dialog-box h2 {
        font-size: 22px;
    }

    .contact-dialog-buttons {
        flex-direction: column;
    }
}

/* =========================================================
   VIETNAM TOURS
   Same carousel structure as Asia Tour Packages
========================================================= */


/* =========================================================
   VIETNAM CARD
========================================================= */

.vietnam-tour-card {
    width: 300px;
    height: 230px;

    min-width: 300px;
    max-width: 300px;

    min-height: 230px;
    max-height: 230px;

    flex: 0 0 198px;

    position: relative;

    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   IMAGE
========================================================= */

.vietnam-tour-card > img {
    width: 300px;
    height: 170px;

    min-width: 300px;
    max-width: 300px;

    min-height: 170px;
    max-height: 170px;

    object-fit: cover;

    display: block;

    flex-shrink: 0;

    border-radius: 14px 14px 10px 10px;
}


/* =========================================================
   CARD BODY
========================================================= */

.vietnam-tour-body {
    width: 300px;
    height: 48px;

    min-height: 48px;
    max-height: 48px;

    position: relative;

    box-sizing: border-box;

    background: #ffffff;

    flex-shrink: 0;
}


/* =========================================================
   CATEGORY PILL
========================================================= */

.vietnam-tour-category {
    position: absolute;

    left: 12px;
    top: -10px;

    z-index: 5;

    height: 20px;

    max-width: 174px;

    padding: 0 10px 0 0;

    box-sizing: border-box;

    display: flex;
    align-items: center;

    gap: 5px;

    background: #b9dcfa;

    color: #242f67;

    border-radius: 12px;

    font-size: 10px;
    font-weight: 400;

    line-height: 20px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =========================================================
   LOCATION ICON
========================================================= */

.vietnam-tour-category i {
    width: 24px;
    height: 24px;

    min-width: 24px;

    margin-left: 0;

    border-radius: 50%;

    background: #242f67;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 10px;
}


/* =========================================================
   SEE MORE
========================================================= */

.vietnam-see-more {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 4px;

    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 47px;

    color: #242f67;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    line-height: 20px;
}


.vietnam-see-more:hover {
    opacity: 0.5;
}


.vietnam-see-more i {
    font-size: 8px;
}


/* =========================================================
   VIETNAM CAROUSEL
   Uses the same light-blue background as Asia
========================================================= */

.vietnam-carousel {
    position: relative;

    width: 100%;

    padding: 15px 28px 14px;

    box-sizing: border-box;

    background: #f2f6fb;

    border-radius: 18px;
}


/* =========================================================
   VIETNAM TRACK
========================================================= */

.vietnam-carousel .tour-carousel-track {
    display: flex;

    gap: 20px;

    width: max-content;

    transition: transform 0.4s ease;

    will-change: transform;
}


/* =========================================================
   VIETNAM VIEWPORT
========================================================= */

.vietnam-carousel .tour-carousel-viewport {
    width: 100%;

    overflow: hidden;
}


/* =========================================================
   VIETNAM ARROWS
   Reuse Asia arrow style
========================================================= */

.vietnam-carousel .tour-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 20;

    width: 42px;
    height: 42px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #242f67;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.20);

    transition: 0.2s ease;
}


.vietnam-carousel .tour-arrow:hover {
    background: #1b2452;
}


.vietnam-carousel .tour-arrow i {
    font-size: 18px;
}


.vietnam-carousel .tour-arrow-left {
    left: -2px;
}


.vietnam-carousel .tour-arrow-right {
    right: -2px;
}


.vietnam-carousel .tour-arrow.disabled {
    opacity: 0.35;

    pointer-events: none;
}

/* =========================================
   FREE & EASY DIALOG
========================================= */

.free-easy-dialog {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;
}

.free-easy-dialog.active {
    display: flex;
}


/* DARK OVERLAY */

.free-easy-dialog-overlay {
    position: absolute;
    inset: 0;

    background: rgba(36, 47, 103, 0.45);
}


/* DIALOG BOX */

.free-easy-dialog-box {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 520px;

    max-height: 80vh;

    background: #ffffff;

    border-radius: 8px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25);

    overflow: hidden;

    display: flex;
    flex-direction: column;
}


/* =========================================
   HEADER
========================================= */

.free-easy-dialog-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 18px 20px 12px;
}

.free-easy-dialog-header h3 {
    margin: 0;

    color: #242f67;

    font-size: 18px;
    font-weight: 700;
}


/* CLOSE X */

.free-easy-dialog-close {
    width: 30px;
    height: 30px;

    padding: 0;

    border: none;

    background: transparent;

    color: #333;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.free-easy-dialog-close:hover {
    color: #242f67;
}

.free-easy-dialog-close i {
    font-size: 15px;
}


/* =========================================
   BODY
========================================= */

.free-easy-dialog-body {
    padding: 5px 20px 15px;

    overflow-y: auto;

    display: flex;
    flex-direction: column;

    gap: 8px;
}


/* =========================================
   TOUR ITEM
========================================= */

.free-easy-dialog-tour {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 10px 35px 10px 12px;

    background: #f5f7fb;

    border-radius: 6px;

    text-decoration: none;

    transition: 0.2s ease;
}

.free-easy-dialog-tour:hover {
    background: #eaf3fc;
}


/* DAYS */

.free-easy-dialog-tour span {
    color: #7a8193;

    font-size: 9px;

    font-weight: 500;

    line-height: 1.3;
}


/* TOUR NAME */

.free-easy-dialog-tour strong {
    margin-top: 2px;

    color: #242f67;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.4;
}


/* OPEN ICON */

.free-easy-dialog-tour > i {
    position: absolute;

    right: 12px;
    top: 50%;

    transform: translateY(-50%);

    color: #242f67;

    font-size: 12px;
}


/* =========================================
   FOOTER
========================================= */

.free-easy-dialog-footer {

    display: flex;

    justify-content: flex-end;

    padding: 10px 20px 15px;
}

.free-easy-dialog-footer button {

    min-width: 70px;

    height: 30px;

    padding: 0 14px;

    border: 1px solid #d5d9e2;

    border-radius: 4px;

    background: #ffffff;

    color: #333;

    font-size: 11px;

    cursor: pointer;
}

.free-easy-dialog-footer button:hover {
    background: #f2f6fb;

    color: #242f67;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .free-easy-dialog {
        padding: 15px;
    }

    .free-easy-dialog-box {
        max-width: 100%;

        max-height: 85vh;
    }

    .free-easy-dialog-header {
        padding: 16px 16px 10px;
    }

    .free-easy-dialog-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .free-easy-dialog-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

}

/* =========================================
   OUR CLIENTS
========================================= */

.our-clients-section {
    width: 100%;
    padding: 0 0 15px;
}

.our-clients-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}


/* TITLE */

.our-clients-title {
    margin: 12px 0;

    color: #242f67;

    font-size: 2rem;
    font-weight: 700;

    line-height: 1.2;
}


/* CAROUSEL */

.our-clients-carousel {
    position: relative;
    width: 100%;
    padding: 15px 28px 18px;
    box-sizing: border-box;
    background: #f2f6fb;
    border-radius: 18px;
}


/* VIEWPORT */

.our-clients-viewport {
    width: 100%;
    overflow: hidden;
}


/* TRACK */

.our-clients-track {
    display: flex;
    gap: 18px;

    transition: transform 0.45s ease;
    will-change: transform;
}


/* CARD */

.our-client-card {
    flex: 0 0 calc((100% - 36px) / 3);

    height: 224px;

    overflow: hidden;
    border-radius: 18px;

    background: #ffffff;
}


/* IMAGE */

.our-client-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ARROWS */

.our-clients-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 20;

    width: 42px;
    height: 42px;

    padding: 0;
    border: none;
    border-radius: 50%;

    background: #242f67;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 18px;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.20);

    transition: 0.2s ease;
}

.our-clients-arrow:hover {
    background: #1c2554;
}

.our-clients-arrow i {
    line-height: 1;
}

.our-clients-prev {
    left: -2px;
}

.our-clients-next {
    right: -2px;
}


/* =========================================
   TABLET
   2 CARDS
========================================= */

@media (max-width: 991px) {

    .our-clients-title {
        font-size: 34px;
    }

    .our-client-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }

}


/* =========================================
   MOBILE
   1 CARD
========================================= */

@media (max-width: 576px) {

    .our-clients-title {
        padding-left: 15px;
        font-size: 30px;
    }

    .our-clients-carousel {
        padding: 12px 15px;
        border-radius: 16px;
    }

    .our-client-card {
        flex: 0 0 100%;
        height: 220px;
        border-radius: 16px;
    }

    .our-clients-prev {
        left: 3px;
    }

    .our-clients-next {
        right: 3px;
    }

}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: 100%;
    background: #242f67;
    color: #ffffff;

    border-radius: 0 0 4px 4px;
}


/* MAIN FOOTER */

.footer-container {
    max-width: 1400px;
    margin: 0 auto;

    padding: 48px 24px 30px;

    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    column-gap: 70px;
}


/* COLUMNS */

.footer-column h3 {
    margin: 0 0 14px;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.45;
}

.footer-column p {
    margin: 0 0 12px;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.45;
}


/* LINKS */

.footer-column a {
    display: block;

    margin-bottom: 7px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.35;

    text-decoration: none;

    transition: opacity 0.2s ease;
}

.footer-column a:hover {
    color: #c73346;
}


/* BOTTOM */

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;

    padding: 22px 24px 38px;

    /* border-top: 1px solid rgba(255, 255, 255, 0.8); */

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.4;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.footer-social a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;

    /* border: 1px solid rgba(255, 255, 255, 0.7); */
    border-radius: 50%;

    color: #ffffff;

    font-size: 17px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.footer-social a:hover {
    /* background: #ffffff; */
    color: #ffffff;
    opacity: 0.5;
    transform: translateY(-3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        column-gap: 40px;
        row-gap: 35px;
    }

    .footer-company {
        grid-column: 1 / -1;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .footer-container {
        grid-template-columns: 1fr;

        padding: 35px 22px 25px;

        row-gap: 28px;
    }

    .footer-company {
        grid-column: auto;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column p,
    .footer-column a {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 20px 20px 30px;
    }

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

}

/* =========================================
   CHAT BUTTON
========================================= */

#chat-btn {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 62px;
    height: 62px;

    padding: 0;
    border: none;
    border-radius: 50%;

    background: #242f67;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 999999;

    font-size: 28px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

#chat-btn:hover {
    transform: scale(1.08);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


/* =========================================
   CHAT WIDGET
========================================= */

.chat-widget {
    position: fixed;

    right: 25px;
    bottom: 100px;

    width: 360px;
    max-width: calc(100vw - 30px);

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.22);

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(15px)
        scale(0.95);

    transform-origin: bottom right;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}


/* OPEN */

.chat-widget.active {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================
   CHAT HEADER
========================================= */

.chat-header {
    min-height: 65px;

    padding: 12px 15px;

    background: #242f67;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-title {
    display: flex;
    align-items: center;

    gap: 10px;
}

.chat-title img {
    width: 38px;
    height: 38px;

    object-fit: contain;

    background: #ffffff;
    border-radius: 50%;
}

.chat-title span {
    font-size: 16px;
    font-weight: 700;
}


.close-btn {
    width: 34px;
    height: 34px;

    border: none;
    background: transparent;

    color: #ffffff;

    font-size: 20px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    opacity: 0.7;
}


/* =========================================
   STATUS
========================================= */

.chat-status {
    padding: 8px 15px;

    font-size: 12px;

    color: #555;

    border-bottom: 1px solid #eeeeee;
}

.online-dot {
    display: inline-block;

    width: 8px;
    height: 8px;

    margin-right: 5px;

    border-radius: 50%;

    background: #2dbd59;
}


/* =========================================
   CHAT BODY
========================================= */

.chat-body {
    height: 260px;

    padding: 15px;

    overflow-y: auto;

    background: #f6f8fc;
}

.message {
    max-width: 90%;

    padding: 12px 14px;

    border-radius: 14px;

    font-size: 13px;

    line-height: 1.6;
}

.message.support {
    background: #ffffff;

    color: #333;

    border-top-left-radius: 4px;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.06);
}


/* =========================================
   CHAT FOOTER
========================================= */

.chat-footer {
    padding: 12px;

    background: #ffffff;

    border-top: 1px solid #eeeeee;
}


/* QUICK CONTACT */

.quick-contact {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 8px;

    margin-bottom: 10px;
}

.quick-contact button {
    height: 36px;

    border: 1px solid #242f67;

    border-radius: 8px;

    background: #ffffff;

    color: #242f67;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.quick-contact button:hover {
    background: #242f67;

    color: #ffffff;
}


/* =========================================
   INPUT
========================================= */

.chat-input-row {
    display: flex;

    gap: 8px;
}

.chat-input-row input {
    flex: 1;

    min-width: 0;

    height: 40px;

    padding: 0 12px;

    border: 1px solid #dddddd;

    border-radius: 8px;

    outline: none;

    font-size: 13px;
}

.chat-input-row input:focus {
    border-color: #242f67;
}


.send-btn {
    width: 42px;
    height: 40px;

    border: none;

    border-radius: 8px;

    background: #242f67;

    color: #ffffff;

    font-size: 18px;

    cursor: pointer;

    transition: background 0.2s ease;
}

.send-btn:hover {
    background: #1c2554;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    #chat-btn {
        right: 18px;
        bottom: 18px;

        width: 56px;
        height: 56px;
    }

    #chat-btn img {
        width: 34px;
        height: 34px;
    }

    .chat-widget {
        right: 15px;
        bottom: 85px;

        width: calc(100vw - 30px);
    }

}