/* ========================================
   HOME PAGE 25 - Stile Frontend25
   ======================================== */

.home-page-25 {
    background: #f8f9fa;
}

/* ========================================
   Search Form
   ======================================== */

.search-form-25 {
    margin-bottom: 0;
}

.search-box-25 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    overflow: hidden;
}

.search-box-main-25 {
    padding: 30px;
}

.search-field-25 {
    margin-bottom: 0;
}

.search-label-25 {
    color: #2c3e50;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-label-25 i {
    color: #3498db;
    font-size: 14px;
}

.search-select-25,
.search-input-25 {
    height: 50px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    padding: 0 15px;
    background: #fff;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.search-select-25:focus,
.search-input-25:focus {
    border-color: #3498db;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

.search-btn-25 {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.search-btn-25:hover {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.5);
    color: #fff;
}

.search-btn-25 i {
    font-size: 18px;
}

/* Toggle Filtri */
.search-filters-toggle-25 {
    margin-top: 20px;
    text-align: center;
}

.btn-filters-toggle-25 {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #2c3e50;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-filters-toggle-25:hover,
.btn-filters-toggle-25.active {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
}

.btn-filters-toggle-25 i:last-child {
    transition: transform 0.3s ease;
}

.btn-filters-toggle-25.active i:last-child {
    transform: rotate(180deg);
}

/* Filtri Avanzati */
.search-filters-25 {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 30px;
}

.filter-group-25 {
    margin-bottom: 0;
}

.filter-title-25 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-title-25 i {
    color: #3498db;
    font-size: 18px;
}

.filter-options-25 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-scrollable-25 {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.filter-scrollable-25::-webkit-scrollbar {
    width: 6px;
}

.filter-scrollable-25::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 3px;
}

.filter-scrollable-25::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 3px;
}

.filter-scrollable-25::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.filter-checkbox-25 {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    background: #fff;
    transition: all 0.3s ease;
    margin-bottom: 0;
    border: 1px solid #e0e0e0;
}

.filter-checkbox-25:hover {
    background: #f8f9fa;
    border-color: #3498db;
}

.filter-checkbox-25 input[type="checkbox"] {
    display: none;
}

.checkbox-custom-25 {
    width: 20px;
    height: 20px;
    border: 2px solid #bbb;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: #fff;
}

.filter-checkbox-25 input[type="checkbox"]:checked + .checkbox-custom-25 {
    background: #27ae60;
    border-color: #27ae60;
}

.filter-checkbox-25 input[type="checkbox"]:checked + .checkbox-custom-25::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

.checkbox-label-25 {
    color: #2c3e50;
    font-size: 14px;
    flex-grow: 1;
}

.checkbox-label-25 i {
    color: #ffc107;
    font-size: 12px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section-25 {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 60px 0 80px;
    margin-bottom: 40px;
}

.hero-content-25 {
    text-align: center;
    margin-bottom: 40px;
}

.hero-title-25 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.3;
}

.hero-subtitle-25 {
    color: rgba(255,255,255,0.95);
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    line-height: 1.5;
}

/* ========================================
   Promo Banner
   ======================================== */

.promo-banner-25 {
    margin-bottom: 50px;
}

.promo-link-25 {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-link-25:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.promo-image-25 {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   About Section
   ======================================== */

.about-section-25 {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-title-25 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.4;
}

.about-text-25 {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.about-text-25 p {
    margin-bottom: 20px;
}

.benefits-list-25 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border-left: 4px solid #3498db;
    padding: 25px 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.benefits-title-25 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.benefits-items-25 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-items-25 li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.benefits-items-25 li i {
    color: #27ae60;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-cta-25 {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border-left: 4px solid #ff9800;
    padding: 25px 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.about-cta-25 p {
    margin-bottom: 15px;
}

.about-cta-25 p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Section Titles
   ======================================== */

.section-title-home-25 {
    color: #2c3e50;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title-home-25 i {
    color: #3498db;
    font-size: 34px;
}

.section-intro-25 {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.section-intro-25 p {
    margin-bottom: 0;
}

/* ========================================
   Featured Hotels Section
   ======================================== */

.featured-section-25 {
    margin-bottom: 60px;
}

.home-card-25 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
}

.home-card-25:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.home-card-link-25 {
    text-decoration: none;
    color: inherit;
    display: block;
}

.home-card-image-25 {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.home-card-content-25 {
    padding: 20px;
}

.home-card-title-25 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.home-card-text-25 {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================================
   Locations Section
   ======================================== */

.locations-section-25 {
    margin-bottom: 60px;
}

.location-card-25 {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    height: 250px;
}

.location-card-25:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.location-card-link-25 {
    text-decoration: none;
    display: block;
    height: 100%;
}

.location-card-image-25 {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.location-card-overlay-25 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    transition: background 0.3s ease;
}

.location-card-25:hover .location-card-overlay-25 {
    background: linear-gradient(to top, rgba(52, 152, 219, 0.9) 0%, rgba(52, 152, 219, 0.6) 50%, transparent 100%);
}

.location-card-title-25 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ========================================
   Guide Section
   ======================================== */

.guide-section-25 {
    margin-bottom: 60px;
}

.guide-card-25 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
}

.guide-card-25:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.guide-card-link-25 {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.guide-card-image-25 {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.guide-card-content-25 {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.guide-card-title-25 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 991px) {
    .search-box-main-25 {
        padding: 25px;
    }

    .search-label-25 {
        font-size: 12px;
    }

    .search-select-25,
    .search-input-25 {
        height: 45px;
        font-size: 14px;
    }

    .search-btn-25 {
        height: 45px;
        font-size: 15px;
    }

    .hero-title-25 {
        font-size: 32px;
    }

    .hero-subtitle-25 {
        font-size: 18px;
    }

    .section-title-home-25 {
        font-size: 28px;
    }

    .about-section-25 {
        padding: 30px 25px;
    }

    .location-card-25 {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .search-box-main-25 {
        padding: 20px;
    }

    .search-field-25 {
        margin-bottom: 15px;
    }

    .search-label-25 {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .search-select-25,
    .search-input-25 {
        height: 42px;
        font-size: 13px;
        padding: 0 12px;
    }

    .search-btn-25 {
        height: 42px;
        font-size: 14px;
        margin-top: 0;
    }

    .search-filters-toggle-25 {
        margin-top: 15px;
    }

    .btn-filters-toggle-25 {
        font-size: 13px;
        padding: 8px 20px;
    }

    .search-filters-25 {
        padding: 20px;
    }

    .filter-title-25 {
        font-size: 15px;
    }

    .filter-options-25 {
        gap: 8px;
    }

    .filter-checkbox-25 {
        padding: 6px 10px;
    }

    .checkbox-label-25 {
        font-size: 13px;
    }

    .hero-section-25 {
        padding: 40px 0 60px;
    }

    .hero-title-25 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .hero-subtitle-25 {
        font-size: 16px;
    }

    .section-title-home-25 {
        font-size: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .section-intro-25 {
        font-size: 15px;
    }

    .about-section-25 {
        padding: 25px 20px;
    }

    .about-title-25 {
        font-size: 22px;
    }

    .about-text-25 {
        font-size: 15px;
    }

    .benefits-list-25,
    .about-cta-25 {
        padding: 20px;
    }

    .home-card-image-25 {
        height: 180px;
    }

    .location-card-25 {
        height: 200px;
    }

    .location-card-title-25 {
        font-size: 20px;
    }

    .guide-card-image-25 {
        height: 150px;
    }

    .guide-card-content-25 {
        padding: 15px;
        min-height: 70px;
    }

    .guide-card-title-25 {
        font-size: 14px;
    }
}
