/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #4e5e68;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}


.app-feature-icon img,
.area-image img {
    object-fit: contain;
}

/* H Add this */

/* For images that need to fill but keep aspect ratio */
.area-image img {
    object-fit: cover;
    /* Use this if you want images to fill the container */
}

/* H Add this */

.search-icon img,
.tour-icon img,
.store-icon img,
.feature-icon img,
.app-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* H Add this */

img {
    max-width: 100%;
    display: block;
    object-fit: contain;
    /* H Add this */
}

.desktop-home {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0 auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    height: 1000px;
    width: 100%;
    color: white;

    padding-bottom: 200px;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: black;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    padding-top: 231px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 50px;
    line-height: 60px;
    max-width: 807px;
    margin-bottom: 20px;
    text-align: center;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 35px;
    font-weight: 500;
    max-width: 590px;
    margin-bottom: 60px;
    text-align: center;
}

/* Search Wrapper */
.search-wrapper {
    position: relative;
    width: 679px;
    margin-bottom: 40px;
    z-index: 60;
}

/* Search Bar */
.search-container {
    position: relative;
    width: 100%;
    height: 68px;
    background: white;
    border-radius: 50px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    padding: 0 10px 0 34px;
}

.search-bar {
    display: flex;
    width: 100%;
    align-items: center;
}

.search-icon {
    width: 32px;
    height: 32px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: black;
}

.search-button {
    background-color: #70b0e9;
    color: white;
    border: none;
    width: 112px;
    height: 37px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: -0.25px;
    margin-right: 6px;
}

/* Search Results Dropdown - GetYourGuide Style */
#searchResults {
    display: none;
    position: absolute;
    /*  top: calc(100% + 6px);*/
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-height: 440px;
    /*   overflow-y: auto; */
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.08);
    z-index: 100;
    /* scrollbar-width: thin;
    scrollbar-color: #d4d4d4 transparent; */
}

#searchResults::-webkit-scrollbar {
    width: 6px;
}

#searchResults::-webkit-scrollbar-track {
    background: transparent;
}

#searchResults::-webkit-scrollbar-thumb {
    background-color: #d4d4d4;
    border-radius: 3px;
}

/* Section header labels */
.sr-section-label {
    padding: 12px 16px 4px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.sr-list {
    padding: 2px 0;
}

/* Individual result item */
.sr-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    gap: 12px;
    text-decoration: none;
}

.sr-item:hover {
    background-color: #ebeef1;
    border-radius: 10px;
}

.sr-item+.sr-item {
    border-top: 1px solid #eeeff1;
}

/* Thumbnail / icon container */
.sr-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.sr-item-icon svg {
    width: 20px;
    height: 20px;
}

.sr-item-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

/* Text content area */
.sr-item-text {
    /*flex: 1; */
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sr-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.35;
}

.sr-item-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #63687a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 3px;
}

.sr-item-desc svg {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}

/* Rating and price on the right */
.sr-item-meta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}

.sr-item-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
}

.sr-item-rating svg {
    width: 13px;
    height: 13px;
}

.sr-item-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
}

.sr-item-price span {
    font-size: 11px;
    font-weight: 400;
    color: #6b7280;
}

/* Divider between sections */
.sr-divider {
    height: 1px;
    background-color: #eeeff1;
    margin: 2px 16px;
}

/* Footer - see all results */
.sr-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px;
    border-top: 1px solid #eeeff1;
    cursor: pointer;
    transition: background-color 0.15s ease;
    border-radius: 0 0 16px 16px;
    margin: -6px 0px 0px 0px;
}

.sr-footer:hover {
    background-color: #f5f5f7;
}

.sr-footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.sr-footer-left svg {
    flex-shrink: 0;
    color: #6b7280;
}

.sr-footer-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #f3f4f6;
    transition: background-color 0.15s ease;
}

.sr-footer:hover .sr-footer-arrow {
    background-color: #e5e7eb;
}

.sr-footer-arrow svg {
    width: 16px;
    height: 16px;
    color: #1a1a2e;
}

/* No results state */
.sr-no-results {
    padding: 28px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.sr-no-results svg {
    width: 36px;
    height: 36px;
    color: #d1d5db;
}

.sr-no-results-text {
    font-weight: 600;
    color: #374151;
}

.sr-no-results-sub {
    font-size: 13px;
    color: #9ca3af;
}

/* Tour Buttons */
.tour-buttons {
    display: flex;
    gap: 105px;
    margin-bottom: 50px;
}

.tour-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* cursor: pointer;*/
    color: white;
}

.tour-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-btn span {
    font-weight: 700;
    font-size: 16px;
}

/* Rating */
.rating-review {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.rating-review .stars {
    width: 101px;
    height: 30px;

}

.rating-review p {
    font-size: 14px;
}

/* App Buttons (Header) */
.app-buttons {
    display: flex;
    gap: 30px;
}

.store-btn {
    display: flex;
    align-items: center;
    background-color: black;
    border: 1px solid #a6a6a6;
    border-radius: 6px;
    width: 160px;
    height: 50px;
    padding: 5px 12px;
    text-decoration: none;
    color: white;
    box-sizing: border-box;
    justify-content: center;
    gap: 10px;
}

.store-icon {
    width: 20px;
    height: 24px;
    margin-right: 8px;
    object-fit: contain;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-text .small-text {
    font-size: 9px;
    line-height: 9px;
    text-transform: uppercase;
}

.store-text .large-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    font-family: 'SF Compact Display', 'Montserrat', sans-serif;
}

/* Promo Banner (Overlapping) */
.promo-banner-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    margin-top: -60px;
    padding: 0 20px;
}

.promo-banner {
    display: flex;
    width: 850px;
    height: 280px;
    border: 10px solid white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.promo-tabs {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}


.promo-tab {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 18px 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-transform: uppercase;
    transition: filter 0.3s ease;
    cursor: pointer;
}

.promo-tab:hover {
    filter: brightness(1.1);
    cursor: pointer;
}

.promo-tabs-left .promo-tab {
    transform: rotate(180deg);
}

.tab-app {
    background-color: #5B9BD5;
}

.tab-tours {
    background-color: #5DBB9E;
}

.tab-guides {
    background-color: #F5A623;
}

.tab-transfers {
    background-color: #E87A90;
}

.promo-content-area {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.promo-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(0 0 0 / 60%) 0%, rgb(0 0 0 / 30%) 60%, transparent 100%);
    display: flex;
    align-items: center;
}

.promo-text-content {
    padding: 30px 50px;
    color: white;
    max-width: 100%;
}

.promo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 12px;
}

.promo-title {
    font-family: 'Lora', serif;
    font-size: 34px;
    font-weight: 700;
    color: white;
    margin: 0 0 14px 0;
    line-height: 1.15;
}

.promo-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 22px 0;
    line-height: 1.6;
}

.promo-download-btn {
    background-color: #70b0e9;
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(112, 176, 233, 0.4);
}

.promo-download-btn:hover {
    background-color: #5a9dd8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 176, 233, 0.5);
}

.promo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.59);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.26);
    transition: all 0.3s ease;
}

.promo-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.promo-nav-prev {
    left: 2px;
}

.promo-nav-next {
    right: 2px;
}

.promo-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.promo-dot {
    width: 30px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-dot.active {
    background: white;
    width: 40px;
}

.promo-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* =========================
   MOBILE IMAGE TABS MODE
   ========================= */
@media (max-width: 768px) {

    .promo-banner-wrapper {
        margin-top: -30px;
        padding: 0 12px;
    }

    .promo-banner {
        flex-direction: column;
        width: 100%;
        height: auto;
        border-width: 8px;
    }

    /* Hide vertical side tabs */
    .promo-tabs-left,
    .promo-tabs-right {
        display: none;
    }

    /* Content area becomes taller */
    .promo-content-area {
        height: 320px;
    }

    /* Bottom image tabs */
    .promo-mobile-tabs {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        height: 120px;
    }

    .promo-tab {
        writing-mode: horizontal-tb;
        transform: none !important;
        padding: 0;
        font-size: 12px;
        letter-spacing: 1.2px;
        position: relative;
        overflow: hidden;
    }

    .promo-tab::before {
        content: "";
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        filter: brightness(0.75);
        transition: transform 0.4s ease;
    }

    .promo-tab::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.65),
                rgba(0, 0, 0, 0.15));
    }

    .promo-tab span,
    .promo-tab {
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .promo-tab:hover::before {
        transform: scale(1.05);
    }

    /* Images per tab */
    .tab-app::before {
        background-image: url("img/mobile-app.jpg");
    }

    .tab-tours::before {
        background-image: url("img/mobile-tours.jpg");
    }

    .tab-guides::before {
        background-image: url("img/mobile-guides.jpg");
    }

    .tab-transfers::before {
        background-image: url("img/mobile-transfers.jpg");
    }

    /* Text styling */
    .promo-tab {
        color: white;
        font-weight: 700;
        text-transform: uppercase;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    }

    /* Arrows tighter on mobile */
    .promo-nav-prev {
        left: 10px;
    }

    .promo-nav-next {
        right: 10px;
    }

    /* Text adjustments */
    .promo-title {
        font-size: 26px;
    }

    .promo-desc {
        font-size: 13px;
    }

    .promo-download-btn {
        padding: 14px 30px;
        font-size: 13px;
    }
}

/* Promo banner ovelapping */

/* Unlock Areas Section */
.unlock-areas {
    padding-top: 46px;
    text-align: center;
    margin-bottom: 100px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 40px;
    color: #4e5e68;
    margin-bottom: 60px;
    text-transform: capitalize;
}

.areas-grid {
    display: flex;
    justify-content: center;
    gap: 18px;
    max-width: 1012px;
    margin: 0 auto;
    position: relative;
    flex-wrap: wrap;
    /* Safety wrap */
}

.area-card {
    position: relative;
    width: 230px;
    height: 290px;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
}

.area-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.area-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to top, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0));*/
}

.area-name {
    position: absolute;
    bottom: 10px;
    left: 35%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    z-index: 2;
}


/* Why Book Section */
.why-book {
    text-align: center;
    padding: 60px 0;
    margin-bottom: 40px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 18px;
    color: #4e5e68;
    margin-bottom: 15px;
    line-height: 1.5;
}

.feature-desc {
    font-size: 14px;
    color: black;
    line-height: 22px;
}

/* Explore Button */
.explore-btn-container {
    text-align: center;
    margin-bottom: 80px;
}

.explore-btn {
    width: 165px;
    height: 47px;
    border-radius: 30px;
    background-color: #70b0e9;
    color: white;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
}

/* Best Selling Tours Section */
.best-selling {
    text-align: center;
    padding-bottom: 100px;
    position: relative;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.region-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.region-tab {
    width: 165px;
    height: 47px;
    border-radius: 30px;
    border: 1px solid #70b0e9;
    background-color: white;
    color: #70b0e9;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-tab.active {
    background-color: #70b0e9;
    color: white;
}

.tours-grid {
    display: flex;
    /*justify-content: center;*/
    gap: 42px;
    max-width: 1400px;
    margin: 0 auto 40px auto;
    flex-wrap: wrap;
    padding: 0 20px;
}

.tour-card {
    cursor: pointer;
    width: 300px;
    height: 410px;
    background-color: #f7f7f7;
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    text-align: left;
}

.tour-image {
    height: 160px;
    overflow: hidden;
    margin-top: -20px;
}

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

.tour-content {
    padding: 20px 20px;
}

.tour-location {
    color: #67bfbf;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 5.1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tour-title {
    font-size: 20px;
    color: #4e5e68;
    margin-bottom: 10px;
    /*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-desc {
    font-size: 12px;
    color: #4e5e68;
    margin-bottom: 15px;
    line-height: normal;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-stars {
    /*width: 106px; */
    height: 32px;
}

.star-icon {
    width: 20px;
    height: 20px;
    fill: #FFB800;
}

.tour-price {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 16px;
    color: #4e5e68;
}

.tours-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    padding: 0 100px;
    pointer-events: none;
    transform: translateY(-50%);
}

.tours-nav .nav-arrow {
    pointer-events: auto;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tours-nav .nav-arrow.prev img {
    transform: rotate(180deg);
}


/* Reviews Section */
.reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 20px 100px 20px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #4e5e68;
    text-align: center;
    margin-bottom: 33px;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 930px;
}

.slider-container {
    display: flex;
    gap: 22px;
    transition: transform 0.4s ease-in-out;
}

.slider-arrow {
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: #4e5e68;
}

.slider-arrow:hover {
    background-color: #4e5e68;
    color: #fff;
    border-color: #4e5e68;
}

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

.slider-arrow:disabled:hover {
    background-color: #fff;
    color: #4e5e68;
    border-color: #ddd;
}

.review-card {
    width: 454px;
    height: 504px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 313px 38px 0 38px;
    flex-shrink: 0;
}

.review-bg-wrapper {
    position: absolute;
    top: 60px;
    left: 31px;
    width: 743px;
    height: 465px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.review-bg {
    width: 128px;
    height: 128px;
    opacity: 0.8;
}

.review-content {
    position: relative;
    z-index: 1;
}

.review-stars {
    width: 174px;
    height: 52px;
    margin-bottom: 15px;
    position: absolute;
    top: -70px;
    left: -7px;
}

.review-text {
    font-size: 14px;
    color: #4e5e68;
    margin-bottom: 30px;
    line-height: normal;
}

.review-author {
    font-weight: 700;
    font-size: 14px;
    color: #4e5e68;
}

/* Responsive adjustments - Tablet */
@media (max-width: 768px) {
    .reviews {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 0 120px 0;
        position: relative;
    }

    .slider-wrapper {
        width: 100%;
        max-width: 100%;
        display: block;
        overflow: hidden;
        padding-left: 20px;
    }

    .slider-container {
        display: flex;
        gap: 0;
    }

    .review-card {
        width: 280px;
        min-width: 280px;
        height: 507px;
        flex-shrink: 0;
        padding: 250px 20px 0 20px;
        margin-right: 20px;
    }

    .review-bg-wrapper {
        top: 20px;
        left: 10px;
        width: 400px;
        height: 350px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        position: absolute;
        bottom: -10px;
    }

    .slider-arrow-left {
        right: 65px;
        left: auto;
    }

    .slider-arrow-right {
        right: 15px;
        left: auto;
    }
}


/* App Banner Section */
.app-banner {
    position: relative;
    margin-top: 50px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.app-banner-container {
    width: 929px;
    height: 540px;
    background-color: #67bfbf;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.app-content {
    padding-left: 84px;
    width: 60%;
    color: white;
}

.app-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.app-desc {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 40px;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.app-feature-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.app-feature-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.app-feature-text p {
    font-size: 12px;
    line-height: 20px;
}

.app-buttons-banner {
    display: flex;
    gap: 15px;
}

.app-mockup {
    position: absolute;
    right: -110px;
    top: 0;
    bottom: 0;
    width: 571px;
    filter: drop-shadow(4px -5px 4px rgba(0, 0, 0, 0.13));
}


.app-buttons-banner {
    display: flex;
    gap: 15px;
    align-items: center;
}

.app-buttons-banner img {
    height: 30px;
    /* Adjust as needed */
    width: 30px;
    max-width: 100%;
}



/* Logo Section */
.logo h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.tagline {
    font-size: 12px;
    margin: -5px 0 20px 0;
    opacity: 0.8;
}

.address {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.address p {
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}

/* Contact Section */
.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: #0a0819;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
}

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

.btn-secondary {
    background-color: #ffffff;
    color: #1a2332;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Social Media Section */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.legal h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.legal a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
}

/* App Download Section */
.app-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #232d3a;
    color: #fffeff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: transform 0.2s;
}

.app-button:hover {
    transform: translateY(-2px);
}

.app-button img {
    width: 24px;
    height: 24px;
}

.app-button div {
    display: flex;
    flex-direction: column;
}

.app-button .small {
    font-size: 10px;
    opacity: 0.7;
}

.app-button .large {
    font-size: 14px;
    font-weight: 600;
}







/* ============================================
   MOBILE SEARCH MODAL (GetYourGuide style)
   ============================================ */
.mobile-search-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: #fff;
    flex-direction: column;
    overflow: hidden;
}

.mobile-search-modal.open {
    display: flex;
}

/* Header with back button + input */
.mobile-search-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    flex-shrink: 0;
}

.mobile-search-back {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background-color 0.15s;
}

.mobile-search-back:active {
    background-color: #f3f4f6;
}

.mobile-search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: 24px;
    padding: 0 14px;
    height: 44px;
    gap: 8px;
}

.mobile-search-input-icon {
    flex-shrink: 0;
}

.mobile-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #1a1a2e;
    height: 100%;
}

.mobile-search-input::placeholder {
    color: #9ca3af;
    font-size: 14px;
}

.mobile-search-clear {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    flex-shrink: 0;
}

.mobile-search-clear:active {
    background-color: #e5e7eb;
}

/* Scrollable results body */
.mobile-search-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Placeholder state */
.mobile-search-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 12px;
    text-align: center;
}

.mobile-search-placeholder p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* Mobile result items */
.mobile-sr-section-label {
    padding: 14px 16px 6px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.mobile-sr-list {
    padding: 2px 0;
}

.mobile-sr-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    gap: 12px;
}

.mobile-sr-item:active {
    background-color: #f5f5f7;
}

.mobile-sr-item+.mobile-sr-item {
    border-top: 1px solid #eeeff1;
}

.mobile-sr-item-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.mobile-sr-item-icon svg {
    width: 22px;
    height: 22px;
}

.mobile-sr-item-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
}

.mobile-sr-item-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-sr-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

.mobile-sr-item-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #63687a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 3px;
}

.mobile-sr-item-desc svg {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}

.mobile-sr-item-meta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.mobile-sr-item-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
}

.mobile-sr-item-rating svg {
    width: 13px;
    height: 13px;
}

.mobile-sr-item-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
}

.mobile-sr-item-price span {
    font-size: 11px;
    font-weight: 400;
    color: #6b7280;
}

/* Mobile footer */
.mobile-sr-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-top: 1px solid #eeeff1;
    cursor: pointer;
}

.mobile-sr-footer:active {
    background-color: #f5f5f7;
}

.mobile-sr-footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.mobile-sr-footer-left svg {
    flex-shrink: 0;
}

.mobile-sr-footer-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #f3f4f6;
}

/* Mobile no results */
.mobile-sr-no-results {
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-sr-no-results-text {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

.mobile-sr-no-results-sub {
    font-size: 13px;
    color: #9ca3af;
}


/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Large Tablets / Small Laptops */
@media (max-width: 1024px) {
    .hero {
        height: auto;
    }

    .hero-content {
        padding-top: 180px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 50px;
        max-width: 600px;
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 30px;
        padding: 0 20px;
    }

    .search-wrapper {
        width: 90%;
        max-width: 600px;
    }

    .tour-buttons {
        gap: 60px;
    }

    .promo-banner {
        width: 90%;
        max-width: 850px;
        height: 300px;
    }

    .promo-title {
        font-size: 34px;
    }

    .promo-text-content {
        padding: 30px 50px;
    }

    .areas-grid {
        gap: 15px;
    }

    .area-card {
        width: 200px;
        height: 260px;
    }

    .app-banner-container {
        width: 91%;
        max-width: 884px;
    }

    .app-mockup {
        right: 33px;
        width: 100%;
        height: auto;
        top: 167px;
    }

    .app-buttons {
        display: flex !important;

        gap: 15px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 700px;
        padding-bottom: 150px;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 42px;
        max-width: 90%;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 26px;
        max-width: 90%;
        margin-bottom: 40px;
    }

    .search-wrapper {
        width: 90%;
    }

    .search-container {
        height: 60px;
        padding: 0 8px 0 20px;
    }

    .sr-item-icon {
        width: 36px;
        height: 36px;
    }

    .sr-item-thumb {
        width: 36px;
        height: 36px;
    }

    .search-input {
        font-size: 14px;
    }

    .search-button {
        width: 100px;
        height: 34px;
        font-size: 12px;
    }

    .tour-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        max-width: 400px;
        margin: 50px auto 35px auto;
        padding: 0 20px;
        justify-content: center;
    }

    .tour-btn {
        width: calc(50% - 10px);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .rating-review p {
        font-size: 12px;
        padding: 0 20px;
    }

    .app-buttons {

        gap: 15px;
    }

    /* Promo Banner - Tablet */
    .promo-banner-wrapper {
        margin-top: -60px;
    }

    .promo-banner {
        width: 95%;
        height: auto;
        min-height: 320px;
        flex-wrap: wrap;
        border-width: 8px;
        border-radius: 18px;
    }

    .promo-tabs {
        flex-direction: row;
        width: 50%;
    }

    .promo-tabs-left {
        order: 2;
    }

    .promo-tabs-right {
        order: 3;
    }

    .promo-tab {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        padding: 12px 15px;
        font-size: 11px;
    }

    .promo-tabs-left .promo-tab {
        transform: none;
    }

    .promo-content-area {
        order: 1;
        width: 100%;
        min-height: 260px;
    }

    .promo-text-content {
        padding: 30px 60px;
        max-width: 100%;
    }

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

    .promo-desc {
        font-size: 14px;
    }

    .promo-download-btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .promo-nav {
        width: 36px;
        height: 36px;
    }

    .promo-nav-prev {
        left: 10px;
    }

    .promo-nav-next {
        right: 10px;
    }

    /* Unlock Areas - Tablet */
    .unlock-areas {
        padding-top: 100px;
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .areas-grid {
        gap: 12px;
        padding: 0 15px;
    }

    .area-card {
        width: calc(50% - 10px);
        max-width: 200px;

        border-radius: 30px;
    }

    .area-name {
        font-size: 20px;
        bottom: 20px;
    }

    /* Features Grid - Tablet */
    .features-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .feature-item {
        width: calc(50% - 20px);
    }

    /* Tours Grid - Tablet */
    .tours-grid {
        gap: 20px;
    }

    .tour-card {
        width: calc(50% - 15px);
        max-width: 280px;
    }

    .region-tabs {
        gap: 10px;
        padding: 0 15px;
    }

    .region-tab {
        width: 140px;
        height: 42px;
        font-size: 12px;
    }

    .tours-nav {
        padding: 0 20px;
    }

    /* Reviews - Tablet */
    .reviews {
        gap: 15px;
        padding: 0 15px 60px 15px;
    }

    .review-card {
        width: calc(50% - 10px);
        max-width: 400px;
        /*  height: 450px; */
        padding: 280px 25px 0 25px;
    }

    /* App Banner - Tablet */
    .app-banner-container {
        flex-direction: column;
        height: auto;
        padding: 40px 30px 50px 30px;
        text-align: center;
    }

    .app-content {
        width: 100%;
        padding-left: 0;
    }

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

    .app-desc {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .app-features {
        align-items: center;
    }

    .app-feature {
        max-width: 400px;
        text-align: left;
    }

    .app-buttons-banner {
        justify-content: center;
    }

    .app-mockup {
        position: relative;
        right: auto;
        top: 50px;
        margin-top: 0px;
        width: 100%;
        height: auto;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero {
        min-height: 650px;
        padding-bottom: 120px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .search-wrapper {
        width: 90% !important;
    }

    .search-container {
        width: 100% !important;
        height: auto !important;
        flex-direction: column !important;
        align-items: stretch !important;
        background: transparent !important;
        padding: 0 !important;
        gap: 15px !important;
        box-shadow: none !important;
        border-radius: 25px !important;
    }

    /* Hide desktop dropdown on mobile - modal takes over */
    #searchResults {
        display: none !important;
    }

    .search-bar {
        flex-direction: row !important;
        background: white !important;
        border-radius: 28px !important;
        padding: 14px 20px !important;
        height: 56px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    }

    .search-icon {
        width: 28px !important;
        height: 28px !important;
        margin-right: 12px !important;
    }

    .search-input {
        flex: 1 !important;
        border: none !important;
        font-size: 15px !important;
        background: transparent !important;
    }

    .search-button {
        width: 100% !important;
        height: 50px !important;
        background-color: #70b0e9 !important;
        padding: 15px 0px;
        color: white !important;
        border: none !important;
        border-radius: 25px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        box-shadow: 0 4px 15px rgba(112, 176, 233, 0.3) !important;
    }

    .search-input::placeholder {
        font-size: 12px;
    }

    .tour-buttons {
        gap: 20px;
        margin-bottom: 35px;
    }

    .tour-icon {
        width: 32px;
        height: 32px;
    }

    .tour-btn span {
        font-size: 12px;
    }

    .rating-review .stars {
        width: 80px;
        height: 24px;
    }

    .rating-review p {
        font-size: 11px;
    }

    .store-btn {
        width: 140px;
        height: 44px;
        padding: 4px 10px;
    }

    .store-text .large-text {
        font-size: 12px;
    }

    /* Promo Banner - Mobile */
    .promo-banner-wrapper {
        margin-top: -50px;
        padding: 0 10px;
    }

    .promo-banner {
        border-width: 6px;
        border-radius: 14px;
        min-height: 280px;
    }

    .promo-tab {
        padding: 10px 12px;
        font-size: 9px;
        letter-spacing: 1px;
    }

    .promo-content-area {
        min-height: 220px;
    }

    .promo-text-content {
        padding: 25px 50px;
    }

    .promo-subtitle {
        font-size: 9px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .promo-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .promo-desc {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .promo-download-btn {
        padding: 12px 14px;
        font-size: 11px;
    }

    .promo-nav {
        width: 32px;
        height: 32px;
    }

    .promo-nav svg {
        width: 10px;
        height: 10px;
    }

    .promo-nav-prev {
        left: 8px;
    }

    .promo-nav-next {
        right: 8px;
    }

    .promo-dots {
        bottom: 15px;
        gap: 6px;
    }

    .promo-dot {
        width: 22px;
        height: 6px;
    }

    .promo-dot.active {
        width: 30px;
    }

    /* Unlock Areas - Mobile */
    .unlock-areas {
        padding-top: 80px;
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .areas-grid {
        gap: 10px;
        padding: 0 10px;
    }

    .area-card {
        width: calc(50% - 5px);

        border-radius: 20px;
    }

    .area-name {
        font-size: 16px;
        bottom: 15px;
    }

    /* Features - Mobile */
    .why-book {
        padding: 40px 0;
        margin-bottom: 30px;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .feature-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        text-align: left !important;
        width: 300px;
        flex-direction: row;
    }

    .feature-icon {
        width: 70px !important;
        height: 70px !important;
        flex-shrink: 0 !important;
        margin-bottom: 0 !important;
    }

    .feature-content {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
    }

    .feature-title {
        font-size: 16px !important;
        margin: 0 0 4px 0 !important;
        line-height: 1.3 !important;
    }

    .feature-desc {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin: 0 !important;
    }

    /* Explore Button - Mobile */
    .explore-btn-container {
        margin-bottom: 50px;
    }

    .explore-btn {
        width: 150px;
        height: 44px;
        font-size: 13px;
    }

    /* Best Selling Tours - Mobile */
    .best-selling {
        padding-bottom: 60px;
    }

    .region-tabs {
        gap: 8px;
        margin-bottom: 40px;
    }

    .region-tab {
        width: calc(50% - 20px);
        max-width: 150px;
        height: 40px;
        font-size: 11px;
    }

    .tours-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .tour-card {
        width: 90%;
        max-width: 320px;
        height: auto;
    }

    .tour-image {
        height: 140px;
        margin-top: -15px;
    }

    .tour-content {
        padding: 15px 18px;
    }

    .tour-title {
        font-size: 18px;
    }

    .tour-desc {
        font-size: 11px;
    }

    .tour-price {
        font-size: 14px;
    }

    .tours-nav {
        position: relative;
        justify-content: center;
        gap: 40px;
        padding: 0;
        transform: none;
        top: auto;
    }

    /* Reviews - Mobile */
    .reviews {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0px 0px 60px 0px;
        position: relative;
    }

    .slider-wrapper {
        width: 100%;
        max-width: 100%;
        display: block;
        overflow: hidden;
        padding-left: 20px;
    }

    .slider-container {
        display: flex;
        gap: 0;
    }

    .review-card {
        width: 280px;
        min-width: 280px;
        height: 440px;
        flex-shrink: 0;
        padding: 250px 20px 0 20px;
        margin-right: 20px;
    }

    .slider-arrow-left {
        right: 65px;
        left: auto;
    }

    .slider-arrow-right {
        right: 15px;
        left: auto;
    }

    .review-bg-wrapper {
        top: 20px;
        left: 10px;
        width: 400px;
        height: 350px;
    }

    .review-stars {
        width: 174px;
        height: 52px;
        top: -70px;
        left: -7px;
    }

    .review-text {
        font-size: 13px;
        margin-bottom: 20px;
    }

    /* App Banner - Mobile */
    .app-banner {
        margin-top: 90px;
        padding-bottom: 60px;
    }

    .app-banner-container {
        width: 95%;
        padding: 30px 20px 40px 20px;
        border-radius: 15px;
    }

    .app-title {
        font-size: 22px;
    }

    .app-desc {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 25px;
    }

    .app-features {
        gap: 15px;
        margin-bottom: 25px;
    }

    /*
    .app-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    } */

    .app-feature-icon {
        margin-bottom: 10px;
    }

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

    .app-feature-text p {
        font-size: 11px;
        line-height: 18px;
    }

    .app-buttons-banner {
        /*  flex-direction: column;*/
        align-items: center;
        gap: 12px;
    }

    .app-buttons-banner .store-btn {
        width: 160px;
    }

    .app-mockup {
        width: 100%;
        margin-top: 25px;
        top: 40px;
    }

    .promo-download-btn-div {
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .hero-title {
        font-size: 22px;
        line-height: 32px;
    }

    .hero-subtitle {
        font-size: 13px;
        line-height: 22px;
    }

    .tour-buttons {
        gap: 15px;
    }

    .tour-icon {
        width: 28px;
        height: 28px;
    }

    .tour-btn span {
        font-size: 11px;
    }

    .promo-title {
        font-size: 18px;
    }

    .promo-desc {
        font-size: 10px;
    }

    .section-title {
        font-size: 22px;
    }

    .area-card {
        height: 150px;
    }

    .area-name {
        font-size: 14px;
    }

    .region-tab {
        width: calc(50% - 15px);
        height: 38px;
        font-size: 10px;
    }

    .app-title {
        font-size: 20px;
    }

    .promo-download-btn-div {
        text-align: center;
    }
}



.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.review-stars .star {
    width: 22px;
    height: 22px;
    transition: 0.2s ease;
}

.review-stars .star.filled {
    fill: #f5c518;
    /* Google gold */
}

.review-stars .star.empty {
    fill: #ddd;
}