/* ========================================
   HOTEL DETAIL PAGE 25 - Stile Frontend25
   ======================================== */

.hotel-detail-page-25 {
    background: #f8f9fa;
    padding: 30px 0;
}

.breadcrumbs-wrapper-25 {
    margin-bottom: 20px;
}

/* ========================================
   Header con Gallery
   ======================================== */

.hotel-detail-header-25 {
    margin-bottom: 40px;
}

.hotel-detail-gallery-25 {
    position: relative;
}

/* Immagine principale */
.main-image-wrapper-25 {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-bottom: 15px;
}

.main-hotel-image-25 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-image-wrapper-25:hover .main-hotel-image-25 {
    transform: scale(1.05);
}

/* Overlay sull'immagine principale */
.hotel-detail-overlay-25 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    padding: 40px 30px 30px;
    z-index: 10;
}

.hotel-detail-title-25 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hotel-detail-subtitle-25 {
    color: #ff9800;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hotel-detail-stars-25 {
    display: flex;
    gap: 5px;
    margin-bottom: 12px;
}

.hotel-detail-stars-25 i {
    color: #ffc107;
    font-size: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hotel-detail-location-25 a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.hotel-detail-location-25 a:hover {
    color: #3498db;
}

.hotel-detail-location-25 i {
    font-size: 18px;
}

.hotel-detail-address-25 {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-top: 8px;
}

/* Thumbnails Grid */
.thumbnails-grid-25 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.thumbnail-item-25 {
    position: relative;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail-item-25:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.thumbnail-item-25 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-images-25 {
    position: relative;
}

.more-overlay-25 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

/* Scalapay sotto gallery */
.scalapay-detail-25 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border-left: 4px solid #3498db;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #2c3e50;
}

.scalapay-detail-25 i {
    color: #3498db;
    font-size: 20px;
}

.scalapay-detail-25 .scalapay-logo-25 {
    height: 24px;
    margin-left: auto;
}

/* ========================================
   CTA Box
   ======================================== */

.hotel-detail-cta-box-25 {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.cta-box-title-25 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 12px;
}

.cta-box-title-25 i {
    color: #3498db;
}

.btn-call-detail-25 {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
    margin-bottom: 25px;
}

.btn-call-detail-25:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-call-detail-25 i {
    animation: ring 2s infinite;
}

/* Advantages Box */
.advantages-box-25 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border-radius: 8px;
    padding: 20px;
}

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

.advantages-title-25 i {
    color: #27ae60;
}

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

.advantages-list-25 li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(52, 152, 219, 0.2);
}

.advantages-list-25 li:last-child {
    border-bottom: none;
}

.advantages-list-25 li i {
    color: #27ae60;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.advantages-list-25 li .fa-star {
    color: #ffc107;
}

/* ========================================
   Content Section
   ======================================== */

.hotel-detail-content-25 {
    margin-bottom: 50px;
}

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

.section-title-25 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 12px;
}

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

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

.section-content-25 p {
    margin-bottom: 15px;
}

/* Services Grid */
.services-grid-25 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.service-item-25 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #27ae60;
    transition: all 0.3s ease;
}

.service-item-25:hover {
    background: #e8f4f8;
    transform: translateX(5px);
}

.service-item-25 i {
    color: #27ae60;
    font-size: 18px;
}

.service-item-25 span {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   Call Banner Sticky
   ======================================== */

.call-banner-sticky-25 {
    transition: all 0.3s ease;
}

.call-banner-sticky-25.stuck {
    position: fixed;
    top: 20px;
    width: calc(33.333% - 30px);
    z-index: 999;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.call-banner-content-25 {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
}

.call-banner-content-25 i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
}

.call-banner-content-25 h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #fff;
}

.btn-call-banner-25 {
    background: #fff;
    color: #3498db;
    border: none;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-call-banner-25:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    color: #2980b9;
    text-decoration: none;
}

.btn-call-banner-25 i {
    animation: ring 2s infinite;
}

/* ========================================
   Offers Section
   ======================================== */

.hotel-offers-section-25 {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid #e0e0e0;
}

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

.offers-section-title-25 i {
    color: #e74c3c;
    font-size: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

@media (max-width: 991px) {
    .hotel-detail-title-25 {
        font-size: 28px;
    }

    .main-image-wrapper-25 {
        height: 400px;
    }

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

    .hotel-detail-cta-box-25 {
        margin-top: 30px;
        position: static;
    }

    .call-banner-sticky-25 {
        display: none !important;
    }

    .services-grid-25 {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 767px) {
    .hotel-detail-title-25 {
        font-size: 22px;
    }

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

    .hotel-detail-stars-25 i {
        font-size: 16px;
    }

    .main-image-wrapper-25 {
        height: 300px;
    }

    .thumbnails-grid-25 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .thumbnail-item-25 {
        height: 100px;
    }

    .hotel-detail-overlay-25 {
        padding: 20px 15px 15px;
    }

    .scalapay-detail-25 {
        flex-direction: column;
        align-items: flex-start;
        font-size: 12px;
    }

    .scalapay-detail-25 .scalapay-logo-25 {
        margin-left: 0;
    }

    .hotel-detail-section-25 {
        padding: 20px;
    }

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

    .section-content-25 {
        font-size: 14px;
    }

    .services-grid-25 {
        grid-template-columns: 1fr;
    }

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