:root {
    /* colors */
    --primary: #a40a2a;
    --primary-hover: #7b081f;
    --primary-light: #ffe5eb;
    --secondary: #ffffff;
    --secondary-hover: #c51f42;
    --secondary-light: #fffcf3;
    --accent: #b21032;
    --dark: #1a242f;
    --modal-accent: #cacdf2;
    --light: #f8f8f8;
    --font-dark: #3d3d3d;
    --font-light: #ffffff;
    --white: #ffffff;
    --light-grey: #f6f6f6;
    --grey: #d9d9d9;
    --box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.3);
    --box-shadow-color: rgba(0, 0, 0, 0.25);
    /* breakpoints */
    --width-lg: 1150px;

    /* font sizes */
    --h1: 48px;
    --h2: 36px;
    --h3: 28px;
    --h4: 24px;
    --h5: 22px;
    --h6: 20px;
    --p: 16px;
}

.loading,
.autocomplete-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-content .spinner {
    border: 16px solid var(--light);
    border-top: 16px solid var(--primary);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

.auto-loading-content .spinner {
    border: 6px solid var(--light);
    border-top: 6px solid var(--primary);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    margin-inline: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.modal.show {
    display: flex !important;
    align-items: center !important;
}

.fade:not(.show) {
    opacity: 0;
    display: none !important;
}

.modal-backdrop {
    z-index: 101 !important;
    background-color: rgba(0, 0, 0, 1) !important;
}

.modal-dialog {
    padding-top: 0.5rem;
}

.fw-bold-s {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

h1 {
    color: var(--font-dark);
    font-size: var(--h1);
}

h2 {
    color: var(--font-dark);
    font-size: var(--h2);
}

h3 {
    color: var(--font-dark);
    font-size: var(--h3);
}

h4 {
    color: var(--font-dark);
    font-size: var(--h4);
}

h5 {
    color: var(--font-dark);
    font-size: var(--h5);
}

h6 {
    color: var(--font-dark);
    font-size: var(--h6);
}

p {
    color: var(--font-dark);
    font-size: var(--p);
}

a {
    font-weight: 500;
    text-decoration: none;
    color: var(--font-dark);
}

textarea {
    padding: 0.5rem 1rem;
}

input {
    border-radius: 50px;
    border: 2px solid var(--primary);
    padding: 0.5rem 1rem;
    color: var(--font-dark);
    /* width: 100%; */
    /* min-width: 200px; */
}

input:focus,
input:active,
textarea:focus,
textarea:active {
    outline: none;
    /* border: 1px solid var(--primary) !important; */
}
.fs-h1 {
    font-size: var(--h1) !important;
}

.fs-h2 {
    font-size: var(--h2) !important;
}

.fs-h3 {
    font-size: var(--h3) !important;
}

.fs-h4 {
    font-size: var(--h4) !important;
}

.fs-h5 {
    font-size: var(--h5) !important;
}

.fs-h6 {
    font-size: var(--h6) !important;
}

.br-10 {
    border-radius: 10px !important;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

.w-80 {
    width: 80% !important;
}

.w-85 {
    width: 85% !important;
}

.bg-app-primary {
    background-color: var(--primary) !important;
}

.bg-app-primary-light {
    background-color: var(--primary-light);
}

.bg-app-dark {
    background-color: var(--dark);
}

.text-ellipsis {
    width: 100%; /* Ensure it takes up the full width of the container */
    display: -webkit-box; /* Required for applying -webkit-line-clamp */
    -webkit-box-orient: vertical; /* Set the box orientation to vertical */
    overflow: hidden; /* Hide overflow content */
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    line-clamp: 3; /* Non-standard, but some older browsers might use this */
    text-overflow: ellipsis; /* Add the ellipsis (...) */
}

.text-ellipsis-2 {
    width: 100%; /* Ensure it takes up the full width of the container */
    display: -webkit-box; /* Required for applying -webkit-line-clamp */
    -webkit-box-orient: vertical; /* Set the box orientation to vertical */
    overflow: hidden; /* Hide overflow content */
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    line-clamp: 2; /* Non-standard, but some older browsers might use this */
    text-overflow: ellipsis; /* Add the ellipsis (...) */
}

.text-app-dark {
    color: var(--font-dark);
}

.text-app-secondary {
    color: var(--secondary);
}

.text-app-primary {
    color: var(--primary) !important;
}

section {
    width: 100%;
    z-index: 98;
    position: relative;
    /* border: 1px solid red; */
}

html,
main {
    padding: 0;
}

html {
    overflow-x: hidden;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
}

.main-content {
    background-color: var(--secondary);
    margin: 1rem 0 0 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Source Sans 3", sans-serif;
    /* overflow-x: hidden; */
}

.content-container {
    width: 100%;
    max-width: var(--width-lg);
    margin: auto;
    position: relative;
    z-index: 99;
    /* overflow-x: hidden; */
    padding: 1rem 0.5rem;
}

.section-pages > .content-container {
    max-width: 1244px;
}

.br-20 {
    border-radius: 20px !important;
}

.border-bottom-white {
    border-bottom: 1px solid var(--white);
}

.app-btn {
    outline: 0;
    border: none;
}

.text-btn {
    background: none;
    outline: none;
    border: none;
}

.fa-user:hover {
    color: var(--primary-hover) !important;
}

.text-btn:focus {
    outline: none;
}

.text-btn-hover-basic:hover {
    color: var(--grey);
}

.text-btn-hover-primary {
    color: var(--primary);
}

.text-btn-hover-primary:hover {
    color: var(--primary-hover);
}

.text-btn-hover-secondary {
    color: var(--secondary);
}

.text-btn-hover-secondary:hover {
    color: var(--secondary-hover);
}

.app-btn-secondary {
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.5rem 2.5rem;
    font-size: 16px;
}

.app-btn-secondary:hover {
    background-color: var(--secondary-hover);
}

.app-btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50px;
    padding: 0.5rem 2.5rem;
    font-size: 16px;
}

.app-btn-primary:hover {
    background-color: var(--primary-hover);
}

.app-btn-white {
    background-color: var(--white);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.5rem 2.5rem;
    font-size: 16px;
}

.app-btn-white:hover {
    background-color: var(--light);
}

.app-btn-dark {
    background-color: var(--font-dark);
    color: var(--white);
    border-radius: 50px;
    padding: 0.5rem 2.5rem;
    font-size: 16px;
}

.app-btn-dark:hover {
    background-color: #000;
}

/* Hide the actual checkbox */
.custom-checkbox {
    display: none;
}

/* Style the custom checkbox */
.custom-checkbox + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.custom-checkbox + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-radius: 4px;
    background-color: white;
}

/* Style the checked state */
.custom-checkbox:checked + label::before {
    background-color: var(--primary);
}

.custom-checkbox:checked + label::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 8px;
    background-color: white;
}

/* CAROUSEL */
/* CAROUSEL */

.carousel-control-prev,
.carousel-control-next {
    width: fit-content;
    bottom: -85%;
}

.home-partner-carousel-desk {
    display: block;
    /* margin-top: ; */
}

.home-partner-carousel-mobile {
    display: none;
}

#homePartnerCarousel > .carousel-control-prev,
#homePartnerCarousel > .carousel-control-next,
#homePartnerCarouselMobile > .carousel-control-prev,
#homePartnerCarouselMobile > .carousel-control-next {
    width: fit-content;
    height: 100%;
    bottom: -50px;
}

#homePartnerCarousel > .carousel-control-prev {
    left: -2.5%;
}

#homePartnerCarousel > .carousel-control-next {
    right: -2.5%;
}

.carousel-control-prev {
    left: 2.5%;
}

.carousel-control-next {
    right: 2.5%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    color: var(--primary-hover) !important;
}

.carousel-control-prev span,
.carousel-control-next span {
    font-size: 28px;
    background-color: var(--primary);
    color: white !important;
    padding: 0.35rem 0 0 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.carousel-indicators {
    bottom: 20px !important;
}

.banner-indicators {
    bottom: 0 !important;
}

.home-company-indicators {
    bottom: -2% !important;
}

.home-company-indicators-mobile {
    bottom: -10% !important;
}

.home-company-indicators button {
    background-color: var(--light-grey) !important;
    border: none;
}

.partner-carousel-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
    width: 100%;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: auto; /*calc(-0.5 * var(--bs-gutter-x)); */
    margin-left: auto; /*calc(-0.5 * var(--bs-gutter-x)); */
}

.partner-carousel-image {
    margin-bottom: 3rem;
    flex: 0 0 auto;
    width: 33%;
    min-width: 360px;
}

.carousel-indicators button {
    background-color: var(--light-grey) !important;
    /* border: 1px solid var(--white) !important; */
    border-radius: 50% !important;
    width: 14px !important;
    height: 14px !important;
    text-indent: -999px;
}

.carousel-indicators button::marker {
    visibility: hidden !important;
    display: none !important;
}

.carousel-indicators button.active {
    background-color: var(--primary) !important;
}

.carousel-inner {
    padding-bottom: 2rem;
    padding-top: 1rem;
    width: 75%;
}

.carousel-item.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* text-align: center; */
}

.carousel-item.active > h6 {
    justify-self: self-start;
}

/* END CAROUSEL */
/* HOME NEW */
/* Scroll Animation Styles */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s ease-out;
    max-width: 100%;
}

.scroll-animate.animate-from-left {
    transform: translateX(-60px);
}

.scroll-animate.animate-from-right {
    transform: translateX(60px);
}

.scroll-animate.animate-from-bottom {
    transform: translateY(40px);
}

.scroll-animate.animate-fade {
    transform: none;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* Reduce animation distance on mobile to prevent overflow */
@media (max-width: 768px) {
    .scroll-animate.animate-from-left {
        transform: translateX(0);
    }

    .scroll-animate.animate-from-right {
        transform: translateX(0);
    }

    .scroll-animate.animate-from-bottom {
        transform: translateY(10px);
    }
}

@media (max-width: 810px) {
    .main-content {
        margin: 0;
    }
}

/* Staggered animation delays for grid items */
.scroll-animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    max-width: 100%;
}

.scroll-animate-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-item:nth-child(1) {
    transition-delay: 0.1s;
}
.scroll-animate-item:nth-child(2) {
    transition-delay: 0.2s;
}
.scroll-animate-item:nth-child(3) {
    transition-delay: 0.3s;
}
.scroll-animate-item:nth-child(4) {
    transition-delay: 0.4s;
}
.scroll-animate-item:nth-child(5) {
    transition-delay: 0.5s;
}
.scroll-animate-item:nth-child(6) {
    transition-delay: 0.6s;
}
.scroll-animate-item:nth-child(7) {
    transition-delay: 0.7s;
}
.scroll-animate-item:nth-child(8) {
    transition-delay: 0.8s;
}
.scroll-animate-item:nth-child(9) {
    transition-delay: 0.9s;
}

/* Reduce animation distance on mobile for staggered items */
@media (max-width: 768px) {
    .scroll-animate-item {
        transform: translateY(15px);
    }
}

.hero-section {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    width: 100%;
    max-width: var(--width-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
    align-items: center;
    height: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.hero-text {
    font-size: 18px;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.hero-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 2.5rem;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
}

.hero-woman-img {
    max-width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: contain;
    display: block;
}

/* Section Styling */
.section-title {
    font-size: 32px;
    font-weight: 700;
    /* color: var(--font-dark); */
    margin: 0 0 40px 0;
    text-align: center;
}

.title-primary {
    color: var(--primary) !important;
}

.section-title .title-bold {
    font-weight: 700;
}

.section-title .title-regular {
    font-weight: 400;
    color: var(--primary);
}

.section-title-white {
    color: var(--white);
}

/* Category Filters */
.category-filters-container {
    margin-bottom: 1rem;
    margin-top: -1.5rem;
    display: flex;
    justify-content: center;
}

.category-filters.pill-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    background: var(--primary);
    padding: 4px;
    border-radius: 29px;
    width: fit-content;
}

.category-filter-btn {
    background: var(--primary);
    border: none;
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter-btn:hover,
.category-filter-btn.active {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
}

/* Offer Category Filters */
.offer-category-filters-container {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
}

.offer-category-filters.rectangular-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    background: var(--light-grey);
    padding: 0.25rem;
    border-radius: 15px;
    width: fit-content;
}

.offer-category-filter-btn {
    background: var(--light-grey);
    border: none;
    color: var(--font-dark);
    padding: 0.5rem 2rem;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-category-filter-btn:hover,
.offer-category-filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* Mobile Category Filter Collapse */
.category-filter-collapse,
.offer-category-filter-collapse {
    display: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Category Filter (Red/Primary) */
.category-filter-collapse .filter-collapse-header {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.category-filter-collapse .filter-collapse-header:hover {
    background: var(--primary-hover);
}

.category-filter-collapse .filter-collapse-header.active {
    border-radius: 15px 15px 0 0;
}

.category-filter-collapse .filter-collapse-body.active {
    background: var(--primary);
}

.category-filter-collapse .filter-radio-input:checked + .filter-radio-label {
    background: var(--secondary-hover);
    color: var(--white) !important;
    font-weight: 600;
}

/* Offer Category Filter (Grey) */
.offer-category-filter-collapse .filter-collapse-header {
    background: var(--light-grey);
    color: var(--font-dark);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.offer-category-filter-collapse .filter-collapse-header:hover {
    background: var(--grey);
}

.offer-category-filter-collapse .filter-radio-item:hover {
    background: var(--grey);
}

.offer-category-filter-collapse .filter-collapse-header.active {
    border-radius: 15px 15px 0 0;
}

.offer-category-filter-collapse .filter-collapse-body.active {
    background: var(--light-grey);
}

.offer-category-filter-collapse
    .filter-radio-input:checked
    + .filter-radio-label {
    background: var(--grey);
    color: var(--font-dark);
    font-weight: 600;
}

/* Common Collapse Styles */
.filter-collapse-header .arrow-icon {
    transition: transform 0.3s ease;
}

.filter-collapse-header.active .arrow-icon {
    transform: rotate(180deg);
}

.filter-collapse-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.filter-collapse-body.active {
    max-height: 500px;
}

.filter-radio-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-radio-item {
    margin: 0;
}

.filter-radio-label {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: transparent;
    color: var(--font-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    border-radius: 0;
}

.filter-radio-label:hover {
    background: rgba(255, 255, 255, 0.1);
}

.filter-radio-input {
    display: none;
}

/* Make label text white in category filter */
.category-filter-collapse .filter-collapse-body.active .filter-radio-label {
    color: var(--white);
}
/* Deal card */
.deal-card {
    background: var(--primary);
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.deal-card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0px 12px 40px 0px rgba(0, 0, 0, 0.2); */
}

.deal-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.deal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    transition: transform 0.3s ease;
}

.deal-discount-badge {
    position: absolute;
    left: -45px;
    top: 33px;
    border-bottom: 40px solid #c41e3a;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    height: 0;
    width: 203px;
    transform: rotate(-45deg);
    z-index: 10;
    /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4); */
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* padding-bottom: 10px; */
}

/* .deal-discount-badge::before, */
.deal-discount-badge::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Bottom fold */
/* .deal-discount-badge::before {
    left: -20px;
    bottom: -10px;
    border-width: 0 10px 10px 0;
    border-color: transparent #7b1820 transparent transparent;
} */

/* Right fold */
.deal-discount-badge::after {
    right: -40px;
    bottom: -48px;
    border-width: 8px 0px 0px 10px;
    border-color: #7b1820 transparent transparent transparent;
}

.deal-discount-badge-text {
    color: var(--white);
    position: absolute !important;
    top: 6px;
    font-size: 20px;
}

.deal-card-content {
    padding: 30px 20px 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    overflow: visible;
    border-radius: 0 0 12px 12px;
}

.deal-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.deal-card-description {
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px 0;
    opacity: 0.8;
    flex-grow: 1;
}

.deal-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.deal-card-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.deal-card-original-price-container {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.deal-card-original-price {
    font-size: 12px;
    color: var(--white);
    text-decoration: line-through;
    opacity: 0.7;
}

.promo-info-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.promo-info-icon {
    font-size: 12px;
    color: var(--white);
    opacity: 1;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.promo-info-icon:hover {
    opacity: 0.8;
}

.promo-info-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: -10px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 11px;
    line-height: 1.4;
    white-space: normal;
    max-width: 330px;
    width: max-content;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.promo-info-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 20px;
    border: 6px solid transparent;
    border-top-color: var(--primary-light);
}

.promo-info-wrapper:hover .promo-info-tooltip {
    opacity: 1;
    pointer-events: auto;
}

.deal-card-current-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.deal-card-button {
    background: var(--white);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.deal-card-button:hover {
    background: var(--grey);
    color: var(--primary);
    text-decoration: none;
}
/* Deal card end */
/* Deals Grid */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 3rem;
    transition: opacity 0.3s ease;
}

.deals-grid.latest-deals,
.deals-grid.popular-deals,
.deals-grid.all-deals {
    grid-template-columns: repeat(3, 1fr);
}

.deals-grid.featured-deals {
    grid-template-columns: repeat(3, 1fr);
}

/* Tablet responsive for deals grid */
@media (max-width: 920px) {
    .deals-grid.latest-deals,
    .deals-grid.popular-deals,
    .deals-grid.all-deals,
    .deals-grid.featured-deals {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Blog Section */
.blog-section {
    background: var(--white);
}

.blog-carousel-wrapper {
    position: relative;
    margin-bottom: 40px;
    max-width: 1132px; /* 4 cards: (265 * 4) + (24 * 3) = 1132px */
    margin-left: auto;
    margin-right: auto;
}

.blog-carousel-container {
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
}

.blog-cards-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    padding: 10px 0;
    transition: transform 0.5s ease;
}

.blog-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--light-grey);
    color: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.blog-arrow-btn:hover:not(:disabled) {
    background: var(--grey);
    transform: translateY(-50%) scale(1.1);
}

.blog-arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.blog-arrow-left {
    left: -70px;
}

.blog-arrow-right {
    right: -70px;
}

.blog-section-actions {
    text-align: center;
    margin-top: 20px;
}

/* Deal Card Carousel - Optimized for 3 cards */
.deal-carousel-wrapper {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
}

.deal-carousel-container {
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
}

.deal-cards-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    padding: 10px 0;
    transition: transform 0.5s ease;
}

.deal-cards-track .deal-card {
    /* 3 cards with 2 gaps of 24px */
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    flex-shrink: 0;
    height: auto;
    align-self: stretch;
}

.deal-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--light-grey);
    color: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.deal-arrow-btn:hover:not(:disabled) {
    background: var(--grey);
    transform: translateY(-50%) scale(1.1);
}

.deal-arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.deal-arrow-left {
    left: -70px;
}

.deal-arrow-right {
    right: -70px;
}
/* Travel deal show page */
/* Login Modal Styles */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.login-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.login-modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 590px;
    width: 90%;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.3);
}

.login-modal-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px 0;
    text-align: center;
}

.login-modal-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: center;
    margin: 0 0 0.5rem 0;
}

.login-modal-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.login-benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
}

.login-benefit-item.benefit-highlighted {
    background: var(--primary-light);
}

.login-benefit-icon {
    width: 42px;
    height: 42px;
    display: flex;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.login-benefit-icon img {
    width: 23px;
    height: 23px;
    object-fit: contain;
}

.login-benefit-item span {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.login-modal-actions {
    display: flex;
    gap: 16px;
}

.login-modal-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-btn {
    background: var(--primary);
    color: white;
}

.login-btn:hover {
    background: var(--secondary-hover);
    color: white;
    text-decoration: none;
}

.register-btn {
    background: var(--primary);
    color: var(--white);
}

.register-btn:hover {
    background: var(--secondary-hover);
    color: white;
    text-decoration: none;
}

/* Deal Details Styles */
.deal-details-section {
    background: white;
}

.deal-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.deal-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 16px 0;
}

.deal-short-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 30px 0;
}

.deal-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
}

.deal-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.deal-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
}

.deal-info-item.deal-info-highlighted {
    background: var(--primary-light);
}

.deal-info-icon {
    font-size: 18px;
    color: var(--primary);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.deal-info-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    flex-shrink: 0;
}

.deal-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    flex-grow: 1;
}

.deal-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.original-price-show {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

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

/* Gallery Styles */
.deal-gallery {
    position: sticky;
    top: 100px;
}

.deal-gallery-main {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.deal-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.deal-gallery-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.gallery-arrow-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-arrow-btn:hover:not(:disabled) {
    background: var(--secondary-hover);
}

.gallery-arrow-btn:disabled {
    cursor: not-allowed;
}

.gallery-view-btn {
    flex-grow: 1;
    padding: 10px 20px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-view-btn:hover {
    background: var(--secondary-hover);
}

/* Gallery Modal Styles */
.gallery-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.gallery-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.gallery-modal-close:hover {
    background: var(--secondary-hover);
}

.gallery-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(211, 211, 211, 0.3);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.gallery-modal-arrow:hover:not(:disabled) {
    background: var(--secondary-hover);
}

.gallery-modal-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-modal-prev {
    left: 30px;
}

.gallery-modal-next {
    right: 30px;
}

/* Responsive Gallery Modal */
@media (max-width: 768px) {
    .gallery-modal-arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .gallery-modal-prev {
        left: 15px;
    }

    .gallery-modal-next {
        right: 15px;
    }

    .gallery-modal-close {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
        font-size: 20px;
    }

    .gallery-modal-content {
        max-width: 95vw;
    }
}

/* Action Buttons */
.deal-actions-container {
    background: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.deal-action-btn {
    padding: 0.5rem 2.5rem;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    transition: all 0.3s ease;
}

.flight-btn {
    background: var(--primary);
    color: white;
}

.flight-btn:hover {
    background: var(--secondary-hover);
    color: white;
    text-decoration: none;
}

.accommodation-btn {
    background: var(--primary);
    color: white;
}

.accommodation-btn:hover {
    background: var(--secondary-hover);
    color: white;
    text-decoration: none;
}

/* Description Section */
.deal-description-section {
    background: var(--primary-light);
}

.deal-full-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

/* Price Includes Container (White) */
.deal-price-includes-container {
    background: var(--white);
    border: 2px solid var(--primary);
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 20px;
}

.deal-price-info-title {
    color: var(--font-dark);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.deal-price-info-content {
    color: var(--font-dark);
    font-size: 16px;
    line-height: 1.8;
}

.deal-price-info-content ul,
.deal-price-info-content ol {
    margin: 5px 0;
    padding-left: 20px;
}

/* Price Excludes Container (Primary) */
.deal-extra-info-container {
    background: var(--primary);
    padding: 1rem;
    border-radius: 15px;
}

.deal-extra-info-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.deal-extra-info-content {
    color: white;
    font-size: 16px;
    line-height: 1.8;
}

.deal-extra-info-content p {
    color: white;
}

.deal-extra-info-content ul,
.deal-extra-info-content ol {
    margin: 5px 0;
    padding-left: 20px;
}

.deal-extra-info-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/* Similar Offers */
.similar-offers-section {
    background: white;
}

.no-similar-deals {
    text-align: center;
    padding: 60px 20px;
    background: var(--primary-light);
    border-radius: 12px;
}

.no-similar-deals p {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
}

/* Responsive */
@media (max-width: 920px) {
    .deal-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .deal-gallery {
        position: relative;
        top: 0;
    }

    .deal-title {
        font-size: 28px;
    }

    .login-modal-content {
        padding: 30px;
    }

    .login-modal-title {
        font-size: 24px;
    }

    .deal-actions-container {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .about-us-left {
        padding: 0 0.5rem;
    }

    .deal-title {
        font-size: 24px;
    }

    .deal-gallery-main {
        height: 280px;
    }

    .login-modal-content {
        padding: 24px;
    }

    .login-modal-title {
        font-size: 20px;
    }

    .login-modal-actions {
        flex-direction: column;
    }

    .deal-actions-container {
        padding: 20px;
    }

    .deal-action-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .gallery-view-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
}
/* Travel deal show page end */

/* Mobile optimizations for deal carousel */
@media (max-width: 1295px) {
    .deal-carousel-wrapper {
        padding: 0 80px; /* Add padding to make room for arrows when 3 cards are showing */
    }

    .deal-arrow-left {
        left: 10px;
    }

    .deal-arrow-right {
        right: 10px;
    }
}

@media (max-width: 920px) {
    .deal-carousel-wrapper {
        padding: 0 50px; /* Add padding to make room for arrows */
    }

    .deal-cards-track .deal-card {
        min-width: calc((100% - 24px) / 2); /* 2 cards with 1 gap of 24px */
        max-width: calc((100% - 24px) / 2);
    }

    .deal-arrow-btn {
        width: 40px;
        height: 40px;
    }

    .deal-arrow-left {
        left: 0;
    }

    .deal-arrow-right {
        right: 0;
    }
}

@media (max-width: 500px) {
    .deal-carousel-wrapper {
        padding: 0 40px; /* Add padding to make room for arrows */
    }

    .content-container {
        padding: 1rem;
    }

    .deal-cards-track {
        gap: 16px;
    }

    .deal-cards-track .deal-card {
        min-width: 100%; /* 1 card taking full width */
        max-width: 100%;
    }

    .deal-arrow-btn {
        width: 32px;
        height: 32px;
    }

    .deal-arrow-btn svg {
        width: 16px;
        height: 16px;
    }

    .deal-arrow-left {
        left: 4px;
    }

    .deal-arrow-right {
        right: 4px;
    }
}

.view-all-posts-btn {
    display: inline-block;
    padding: 0.75rem 3rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.view-all-posts-btn:hover {
    background: var(--secondary-hover);
    color: var(--white);
    text-decoration: none;
    /* transform: translateY(-2px); */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}
/* End blog section */
/* Blog Page */
.blog-header-section {
    background: white;
}

.blog-main-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 16px 0;
    text-align: center;
}

.blog-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

.blog-grid-section {
    background: var(--white);
}

.blog-navigation-wrapper {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    gap: 24px;
    align-items: center;
    margin-bottom: 40px;
}

.blog-nav-arrow {
    width: 50px;
    height: 50px;
    border: none;
    background: var(--light-grey);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.blog-nav-arrow:hover:not(:disabled) {
    background: var(--grey);
}

.blog-nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.blog-posts-grid .blog-card {
    width: 100%;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.blog-pagination-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--font-dark);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-pagination-arrow:hover {
    background: var(--secondary-hover);
    color: var(--white);
    text-decoration: none;
}

.blog-pagination-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.blog-page-number {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--font-dark);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-page-number:hover {
    background: var(--secondary-hover);
    color: white;
    text-decoration: none;
}

.blog-page-number.active {
    background: var(--primary);
    color: white;
}

.blog-card {
    background: var(--light-grey);
    border-radius: 15px;
    padding: 0.5rem;
    overflow: hidden;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    width: 265px;
    flex-shrink: 0;
    align-self: stretch;
}

.blog-card:hover {
    background: var(--grey);
}

.blog-card-image-wrapper {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 15px;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: transform 0.3s ease; */
}

/* .blog-card:hover .blog-card-image {
    transform: scale(1.05);
} */

.blog-card-body {
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--font-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    flex-grow: 1;
}

.blog-read-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    /* transition: background 0.3s ease; */
    text-align: center;
    align-self: flex-start;
}

.blog-read-btn:hover {
    background: var(--secondary-hover);
    color: var(--white);
    text-decoration: none;
}

.blog-published-date {
    background: var(--white);
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--font-dark);
    text-align: center;
    border-top: 1px solid #f0f0f0;
    border-radius: 10px;
}

.blog-published-date i {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1200px) {
    .blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 920px) {
    .blog-main-title {
        font-size: 36px;
    }

    .blog-subtitle {
        font-size: 20px;
    }

    .blog-navigation-wrapper {
        grid-template-columns: 50px 1fr 50px;
        gap: 16px;
    }

    .blog-nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .blog-card-title {
        font-size: 16px;
    }

    .blog-card {
        padding: 0.25rem;
    }

    .blog-card-body {
        padding: 0.5rem 0.25rem;
    }

    .blog-published-date {
        margin: 0;
    }

    .blog-main-title {
        font-size: 28px;
    }

    .blog-subtitle {
        font-size: 18px;
    }

    .blog-navigation-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-nav-arrow {
        display: none;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-posts-grid .blog-card {
        max-width: 400px;
        margin: 0 auto;
    }
}
/* End blog page */
/* Destinations Section */
.destinations-section {
    background: var(--light-grey);
}

.destinations-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.02);
}

.destination-card.destination-tall {
    grid-row: 1 / 3;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.destination-overlay h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: var(--white);
}

.destination-overlay p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    color: var(--white);
}

/* Social Carousel */
.social-carousel-section {
    background: var(--light-grey);
}

.social-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
}

.social-slide {
    display: none;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
}

.social-slide.active {
    display: block;
}

.social-slide-content {
    display: flex;
    align-items: center;
    min-height: 300px;
}

.social-slide-image {
    flex: 1;
    height: 300px;
}

.social-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-slide-text {
    flex: 1;
    padding: 40px;
}

.social-slide-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--font-dark);
    margin: 0 0 15px 0;
}

.social-slide-text p {
    font-size: 16px;
    color: var(--font-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.social-follow-btn {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.social-follow-btn:hover {
    background: var(--secondary-hover);
    color: var(--white);
    text-decoration: none;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-hover);
}

.carousel-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--grey);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: var(--primary);
    width: 34px;
    border-radius: 50px;
}

/* Section Actions */
.section-actions {
    text-align: center;
}

.load-more-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.load-more-btn:hover {
    background: var(--primary-hover);
}

/* About Us Section */
.about-us-section {
    background: var(--primary-light);
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-us-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--font-dark);
    /* margin: 0 0 15px 0; */
}

.about-us-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    /* margin: 0 0 25px 0; */
}

.about-us-description {
    font-size: 16px;
    color: var(--font-dark);
    line-height: 1.6;
    /* margin: 0 0 40px 0; */
}

.about-us-right {
    align-self: flex-end;
}

.what-we-offer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--font-dark);
    /* margin: 0 0 20px 0; */
}

.offer-list {
    margin-bottom: 30px;
}

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

.offer-check {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.offer-item span {
    font-size: 14px;
    color: var(--font-dark);
}

.about-white-box {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.white-box-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--font-dark);
    margin: 0 0 8px 0;
}

.white-box-subtitle {
    font-size: 14px;
    color: var(--font-dark);
    margin: 0;
    opacity: 0.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 560px;
}

.benefit-card {
    background: var(--primary);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    aspect-ratio: 260 / 210;
    width: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    background: var(--primary);
}

.faq-container {
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--light-grey);
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: var(--font-dark);
}

.faq-arrow {
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1rem 25px 1rem 25px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--font-dark);
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */

@media (max-width: 1064px) {
    .about-us-right {
        align-self: center;
    }
}

@media (max-width: 840px) {
    /* Reduce category filter padding */
    .category-filter-btn {
        padding: 0.5rem 1rem;
    }

    .offer-category-filter-btn {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 600px) {
    /* Hide desktop filters */
    .category-filters-container .category-filters,
    .offer-category-filters-container .offer-category-filters {
        display: none;
    }

    /* Show mobile collapse filters */
    .category-filter-collapse,
    .offer-category-filter-collapse {
        display: block;
    }

    .category-filters-container,
    .offer-category-filters-container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 745px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        gap: 20px;
        padding: 20px;
        align-items: flex-start;
    }

    .hero-left {
        gap: 15px;
        align-items: center;
        padding-top: 1rem;
    }

    .hero-title {
        font-size: 32px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 28px;
        text-align: center;
    }

    .hero-text {
        font-size: 16px;
        text-align: center;
    }

    .hero-right {
        justify-content: center;
        align-items: flex-end;
        order: 2;
    }

    .hero-woman-img {
        max-height: 400px;
    }

    .deals-grid.latest-deals,
    .deals-grid.popular-deals,
    .deals-grid.all-deals,
    .deals-grid.featured-deals {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        height: auto;
        gap: 15px;
    }

    .destination-card.destination-tall {
        grid-column: 1 / 3; /* Span both columns */
        grid-row: span 2; /* Span 2 rows to be tall */
    }

    .social-slide-content {
        flex-direction: column;
        min-height: auto;
    }

    .social-slide-image {
        height: 200px;
    }

    .section-title {
        font-size: 24px;
    }
    .about-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 15px;
    }

    .benefit-card {
        min-height: 180px;
        padding: 1rem 0.75rem;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 0.75rem;
    }

    .benefit-text {
        font-size: 14px;
    }

    .about-us-title {
        font-size: 24px;
    }

    .about-us-subtitle {
        font-size: 18px;
    }
}

/* HOME NEW END */

/* HOME */
.home-slide-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* position: absolute; */
}

.home-slide-item.active {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* padding-top: 10rem; */
    margin-top: 0.2rem;
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}

.home-banner-bg {
    /* position: absolute; */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    top: 0;
    z-index: 0;
    overflow: hidden;
    padding: 0 0 0 0;
    /* clip-path: url("../images/wave.svg"); */
}

.home-slide-item {
    background-size: cover;
    background-position: center;
}

.home-slide-text {
    /* position: absolute;
    right: 10%; */
    top: 5%;
    display: flex;
    justify-content: flex-end;
    position: absolute;
}

.home-slide-text-dash {
    top: 0;
    display: flex;
    justify-content: flex-end;
}

.home-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    text-align: end;
    /* position: absolute; */
}

.home-text-container-dash {
    margin-top: -20rem;
}

.ui-menu-item > img {
    width: 100px;
    height: 100px;
}

.ui-autocomplete {
    z-index: 9999;
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ui-menu-item {
    padding: 10px;
    display: flex;
    align-items: center;
}

/* .ui-menu-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
} */

.ui-menu-item .suggestion-text {
    font-size: 14px;
}

.favorite {
    background-color: #dc3545 !important;
    color: white !important;
}

.favorite:hover {
    background-color: red !important;
}
/* END HOME */

.meta-pills {
    display: flex;
    gap: 8px;
}

.meta-pills > span {
    padding-bottom: 0;
}

.meta-pill-list-lg {
    border-radius: 20px;
    padding: 0 1.5rem;
    font-size: 20px;
    font-weight: 700;
}

.meta-pill-list-sm {
    border-radius: 20px;
    padding: 0.1rem 0.5rem;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
}

.meta-pill-lg {
    border-radius: 20px;
    padding: 0 1.5rem;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.meta-pill-sm {
    border-radius: 20px;
    padding: 0.1rem 1rem;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.publisher-pill {
    background-color: var(--grey);
    color: var(--primary);
}

.category-pill {
    background-color: var(--secondary);
    color: var(--primary);
}

.time-pill {
    background-color: var(--accent);
    color: white;
}

.title-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* MODAL ANIMATION */
.modalfade {
    animation: fadeIn 2s;
    -moz-animation: fadeIn 2s; /* Firefox */
    -webkit-animation: fadeIn 2s; /* Safari and Chrome */
    -o-animation: fadeIn 2s; /* Opera */
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-moz-keyframes fadeIn {
    /* Firefox */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes fadeIn {
    /* Safari and Chrome */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-o-keyframes fadeIn {
    /* Opera */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@-moz-keyframes fadeOut {
    /* Firefox */
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@-webkit-keyframes fadeOut {
    /* Safari and Chrome */
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@-o-keyframes fadeOut {
    /* Opera */
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* MODAL ANIMATION END */

/* FOOTER */

.cookie-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 16px;
    padding: 0.5rem 0;
}

.cookie-flex > .cookie-text-container {
    width: 80%;
}

.cookie-link {
    font-weight: 500;
    color: var(--white);
}

.cookie-link:hover {
    color: var(--primary-hover);
}

.footer-btn {
    background-color: var(--dark);
    /* padding: 0.2rem 0.4rem 0.2rem 0.5rem; */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: none;
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-link-secondary,
.footer-link-secondary:visited {
    color: var(--secondary);
    font-weight: 600;
    font-size: 12px;
    text-align: center;
}
.footer-link-secondary:hover {
    color: var(--secondary-hover);
}

.footer-link-divider {
    border-right: 1px solid var(--secondary);
}

.footer-link,
.footer-link:visited {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

.footer-link-black,
.footer-link-black:visited {
    color: var(--white);
    font-size: 14px;
}

.footer-webinit-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fs-sm {
    font-size: 14px;
}

.footer-link,
.footer-link-black {
    margin: 0.5rem 0;
}

.footer-link-black:hover,
.footer-link:hover {
    color: var(--secondary);
}

.bg-app-grey {
    background-color: var(--grey);
}

.bg-app-light-grey {
    background-color: var(--light-grey);
}

.bg-app-secondary {
    background-color: var(--secondary);
}

.sec-footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.2rem 0;
    font-size: 14px;
}

.sec-footer-links {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 0.5rem;
}

.webinit-line {
    margin-left: 0.2rem;
    display: inline;
}

.barion-img {
    height: 32px;
    width: auto;
}

.barion-img-container > p {
    font-size: 14px;
}
.barion-img-container > img {
    height: 24px;
    width: auto;
}
.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-outer-col {
    display: flex;
    justify-content: space-between;
    min-width: 300px;
    width: 100%;
    /* width: 50%; */
}

.footer-outer-lg {
    width: 50%;
}

.footer-outer-sm {
    width: 100%;
}

.footer-col-container {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 10%;
    padding: 0.5rem;
    min-width: fit-content;
}

.footer-col-container-mobile {
    display: none;
}

.brands-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 25%;
    padding: 0.5rem;
    min-width: fit-content;
}

.footer-logo-mobile {
    display: none;
}

.footer-logo-desktop {
    display: block;
}

.footer-col-container-sm {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 30%;
    border-radius: 10px;
}

.footer-logo {
    margin-bottom: 0.5rem;
    /* width: 185px;
    height: 58px; */
}

.footer-text {
    font-size: 14px;
    font-weight: 300;
    width: 185px;
    color: var(--white);
}

/* END FOOTER */

/* NEW FOOTER REDESIGN */

.footer-top-section {
    background-image: url("../images/dv_footer_bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary);
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.footer-column {
    color: var(--white);
}

.footer-column-nav,
.footer-column-contact {
    background-color: var(--primary);
    padding: 1rem;
    border-radius: 15px;
    align-self: stretch;
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-nav-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 0.75rem;
}

.footer-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--grey);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1rem;
}

.footer-contact-icon {
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-bottom-section {
    background-color: var(--accent);
    padding: 0.75rem 0;
}

.footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
    display: flex;
    align-items: center;
}

.footer-copyright {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}

.footer-webinit-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-webinit-link:hover {
    color: var(--secondary);
}

.webinit-separator {
    margin-inline: 0.25rem;
    color: var(--white);
}

.webinit-brand {
    font-weight: 700;
    color: var(--secondary);
    margin-left: 0.25rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
}

.footer-social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #c51f42;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* SCROLL TO TOP BUTTON */
.scroll-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top-btn:hover {
    background-color: var(--secondary-hover);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-to-top-btn.scroll-to-top-btn-moving {
    bottom: 2rem;
}

/* END NEW FOOTER REDESIGN */

/* MEDIA QUERIES */

@media (max-width: 772px) {
    /* NEW FOOTER RESPONSIVE */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-column-logo,
    .footer-column-nav,
    .footer-column-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav-list,
    .footer-contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-top-section {
        padding: 3rem 0 2rem;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        justify-content: center;
    }

    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 18px;
    }

    .scroll-to-top-btn.scroll-to-top-btn-moving {
        bottom: 1.5rem;
    }
    /* END NEW FOOTER RESPONSIVE */

    .footer-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-col-container .w-40,
    .footer-col-container .w-60 {
        width: 100% !important;
    }

    .w-75 {
        width: 90% !important;
    }

    .footer-col-container.w-60 {
        text-align: center;
    }

    .footer-col-container.align-items-start {
        align-items: center !important;
    }
    .footer-logo {
        margin-left: 0;
    }

    .footer-col-container {
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    .footer-text {
        text-align: center;
    }

    .footer-logo-mobile {
        display: block;
    }

    .footer-logo-desktop {
        display: none;
    }

    .brands-row {
        margin-bottom: 1.5rem;
    }

    .footer-col-container > p {
        padding-left: 1rem;
    }

    .footer-col-container-sm {
        padding: 1.5rem;
        margin-bottom: 1rem;
        width: 100%;
        align-items: flex-start;
    }

    .footer-outer-col {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .footer-col-container-desktop {
        display: flex;
    }

    .footer-logo-container {
        width: 100%;
        align-items: center !important;
    }
    .brands-row {
        justify-content: center;
    }

    .footer-col-container-mobile {
        display: flex;
        flex-direction: row;
        background-color: var(--primary);
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        padding: 0.5rem 1rem;
        min-width: fit-content;
        border-radius: 20px;
        margin-bottom: 0.5rem;
    }

    .pb-5 {
        padding-bottom: 1.5rem !important;
    }

    .content-container.border-bottom-white {
        border-bottom: none;
    }

    .footer-download-container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .footer-col-container-desktop {
        display: none;
    }

    .footer-download-wrapper {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-download-container > a.me-4 {
        margin-right: 1rem !important;
        margin-bottom: 0 !important;
    }
}

/* Show 3 cards on medium screens */
@media screen and (max-width: 1280px) {
    .blog-carousel-wrapper {
        max-width: 963px; /* 3 cards + arrow space: 843px + (60px * 2) = 963px */
        padding: 0 60px;
    }

    .blog-arrow-left {
        left: 0;
    }

    .blog-arrow-right {
        right: 0;
    }
}

/* Show 2 cards on smaller tablets */
@media screen and (max-width: 920px) {
    .blog-carousel-wrapper {
        max-width: 674px; /* 2 cards + arrow space: 554px + (60px * 2) = 674px */
        padding: 0 60px;
    }

    .blog-arrow-left {
        left: 0;
    }

    .blog-arrow-right {
        right: 0;
    }
}

@media screen and (max-width: 970px) {
    /* BLOG CAROUSEL TABLET RESPONSIVE */

    /* NEW FOOTER TABLET RESPONSIVE */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-column-logo,
    .footer-column-nav,
    .footer-column-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav-list,
    .footer-contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-wrapper {
        justify-content: center;
        gap: 1.5rem;
    }
    /* END NEW FOOTER TABLET RESPONSIVE */

    .sec-footer-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .sec-footer-container > a {
        text-align: center;
        display: flex;
    }
    .sec-footer-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    h1 {
        font-size: var(--h2);
    }

    h2 {
        font-size: var(--h3);
    }

    h3 {
        font-size: var(--h4);
    }
    .home-bg {
        padding: 0 0 0 0;
    }
    .search-section {
        padding-top: 7rem;
    }

    .app-btn-primary {
        padding: 0.5rem 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .benefit-card {
        min-height: 125px;
        max-width: 350px;
        margin: 0 auto;
    }

    /* Show 1 card on mobile */
    .blog-carousel-wrapper {
        max-width: 365px; /* 1 card + arrow space: 265px + (45px * 2) = 355px */
        padding: 0 45px;
    }

    .blog-arrow-left {
        left: 0;
    }

    .blog-arrow-right {
        right: 0;
    }

    .blog-arrow-btn {
        width: 40px;
        height: 40px;
    }

    .pb-5 {
        padding-bottom: 1.5rem !important;
    }
    .py-5 {
        padding-top: 1.5rem !important;
    }

    .footer-col-container {
        margin-bottom: 1.5rem;
    }

    .foot-sec {
        background-color: var(--dark) !important;
    }

    .webinit-line {
        display: none;
    }
    .footer-col-container-sm {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }

    .mt-3 {
        margin-bottom: 1rem !important;
    }

    .newsletter-container {
        padding: 1.5rem 0;
    }

    .newsletter-text-container {
        padding: 1.5rem 1rem;
    }
    .newsletter-form-container {
        border-radius: 0;
        padding: 2rem 1.5rem;
    }

    .newsletter-form-container .app-btn.w-75 {
        width: 50% !important;
    }

    .home-banner-item {
        overflow: visible !important;
    }

    .home-banner-text {
        position: absolute;
        bottom: -50%; /* Half of the text container should be below the carousel */
        left: 50%;
        transform: translateX(-50%) translateY(45%); /* Center horizontally and adjust vertically */
        width: 90%; /* Adjust width as needed */
        z-index: 2; /* Ensure it stays above the carousel */
        height: min-content;
    }

    .home-partner-carousel-mobile::before {
        content: "";
        display: block;
        height: 200px;
        margin-top: calc(50% + 1.5rem);
    }

    /* .home-partner-carousel-mobile {
        margin-top: 8rem;
    } */

    .banner-btn-container {
        position: unset;
    }

    .banner-text-container {
        background-color: var(--primary);
        border-radius: 10px;
        color: var(--white);
        padding: 1rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .carousel-inner {
        overflow: visible; /* Ensure the overflow is visible so the text outside the carousel is shown */
    }

    .carousel-item {
        position: relative;
    }

    .home-slide-img {
        width: 100%;
        height: auto;
    }

    .review-index-container {
        bottom: 50px !important;
    }

    #homePartnerCarouselMobile > .carousel-control-prev,
    #homePartnerCarouselMobile > .carousel-control-next {
        margin-bottom: 0;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: fit-content;
        bottom: 0;
        align-items: center !important;
        margin-bottom: 15rem;
    }

    .banner-indicators {
        top: 10px !important;
        bottom: unset !important;
    }
}

/* END MEDIA QUERIES */
