



.hero-section-mobile {
    background-color: var(--color-surface);
    
    color: var(--color-text);
    
    padding: 20px 0 10px 0;
    
    margin-bottom: 10px;
}

.hero-title-mobile {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
    
    line-height: 1.2;
}

.hero-subtitle-mobile {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}


.home-featured-section {
    margin-top: 50px;
}

.home-featured-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    text-align: left;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.2;
}

.hotel-slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

.hotel-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px 0;
    scrollbar-width: none;
    
    -ms-overflow-style: none;
    
    width: 100%;
}

.hotel-slider::-webkit-scrollbar {
    display: none;
    
}

.hotel-card {
    flex: 0 0 calc((100% - 45px) / 4);
    
    min-width: 260px;
    
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: white;
    box-shadow: none;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

@media (max-width: 992px) {
    .hotel-card {
        flex: 0 0 calc(33.333% - 15px);
        
    }
}

@media (max-width: 768px) {
    .hotel-card {
        flex: 0 0 calc(50% - 15px);
        
    }
}

@media (max-width: 576px) {
    .hotel-card {
        flex: 0 0 calc(85% - 15px);
        
    }
}

.slider-arrow {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--color-primary);
}

.slider-arrow.prev {
    left: -20px;
}

.slider-arrow.next {
    right: -20px;
}

.hotel-card:hover {
    box-shadow: var(--shadow);
}

.hotel-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    
}

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

.heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: transform 0.2s ease;
}

.heart-icon.active {
    transform: scale(1.1);
}

.heart-icon.active i {
    color: #cc0000 !important;
    font-weight: 900;
}

.heart-icon:hover {
    transform: scale(1.1);
}

.hotel-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hotel-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotel-name a {
    color: var(--color-text);
    text-decoration: none;
}

.hotel-location {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.hotel-rating-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.hotel-rating-badge {
    background-color: var(--color-primary);
    color: white;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: 5px 5px 5px 0;
    font-size: 0.9rem;
    min-width: 30px;
    text-align: center;
}

.hotel-rating-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.hotel-reviews {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}


.offers-section {
    padding: 40px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr 1fr;
    }
}





.offer-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    box-shadow: var(--shadow);
    position: relative;
    height: 240px;
}

.offer-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    max-width: 60%;
}

.offer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.offer-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.offer-button {
    background-color: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
    font-size: 0.9rem;
}

.offer-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background-size: cover;
    background-position: center;
}


.cities-section {
    padding: 40px 0;
}

.cities-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
    gap: 20px;
}

.city-card-new {
    position: relative;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.city-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.city-card-new:hover img {
    transform: scale(1.05);
}

.city-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.city-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.city-name-overlay {
    color: white;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}



.offer-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    box-shadow: var(--shadow);
    position: relative;
    height: 240px;
}


.offer-card-background .offer-title,
.offer-card-background .offer-subtitle,
.offer-card-background .offer-description {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.offer-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    max-width: 60%;
}

.offer-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-text);
    
}

.offer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
}

.offer-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.offer-button {
    background-color: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
    font-size: 0.9rem;
}

.offer-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background-size: cover;
    background-position: center;
}


.help-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.help-item {
    background-color: #ebebeb;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    
    flex-direction: row;
    align-items: flex-start;
    padding: 15px;
    gap: 15px;
    min-height: auto;
    aspect-ratio: auto;
    text-align: left;
}

.help-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    
    margin-bottom: 0;
    width: 40px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.help-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.help-text {
    font-size: 0.9rem;
    
    color: var(--color-text-muted);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .help-text {
        font-size: 0.9rem;
        -webkit-line-clamp: unset;
    }
}


.header-main-content .hero-title {
    font-size: 3.0rem;
    margin-bottom: 0;
    line-height: 1.2;
    color: var(--color-surface);
}

.hero-subtitle {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 0 auto;
    font-weight: 200;
}


.hero-quick-links-mobile {
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: left;
    
    line-height: 1.4;
}

.hero-quick-links-mobile a {
    color: var(--color-primary);
    
    text-decoration: none;
    font-weight: 500;
}

.hero-quick-links-mobile a:hover {
    text-decoration: underline;
}

.hero-quick-links-mobile .separator {
    margin: 0 5px;
    opacity: 0.7;
}



.hero-quick-links-desktop {
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: start;
    line-height: 1.4;
}

.hero-quick-links-desktop a {
    color: white;
    text-decoration: none;
    font-weight: 200;
}

.hero-quick-links-desktop a:hover {
    text-decoration: underline;
}

.hero-quick-links-desktop .separator {
    margin: 0 5px;
    opacity: 0.7;
}




@media (max-width: 767px) {

    
    .offers-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        scrollbar-width: none;
    }

    .offers-grid::-webkit-scrollbar {
        display: none;
    }

    .offer-card {
        min-width: 85vw;
        scroll-snap-align: center;
        height: 350px;
        position: relative;
        flex-direction: column;
        border: none;
        overflow: hidden;
    }

    
    .offer-content {
        max-width: 100%;
        width: 100%;
        height: 100%;
        padding: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        text-align: left;
        position: relative;
        z-index: 2;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    }

    .offer-content .offer-subtitle {
        color: white !important;
        opacity: 0.9;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
        margin-bottom: 5px;
    }

    .offer-content .offer-title {
        color: white !important;
        font-size: 1.4rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
        margin-bottom: 8px;
    }

    .offer-content .offer-description {
        color: rgba(255, 255, 255, 0.95) !important;
        font-size: 0.95rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
        margin-bottom: 20px;
    }

    
    .offer-image {
        position: absolute !important;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        flex-shrink: 0;
        border-radius: var(--border-radius);
    }

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

    .offer-button {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 0;
        background-color: white;
        color: var(--color-primary);
        font-weight: 700;
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }
}