/* ========================================
   FRONTEND25 - Interfaccia Lista Offerte
   Stile ispirato a info-ischia.it
   ======================================== */

/* Container principale */
.hotel-list-box-25 {
    margin-top: 30px;
}

.main-title-25 h1 {
    color: #2c3e50;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

.main-description-25 {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

/* Card Offerta */
.hotel-card-25 {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    overflow: hidden;
}

.hotel-card-25:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.card-wrapper-25 {
    padding: 20px;
}

/* Immagine Hotel */
.hotel-image-25 {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    height: 200px;
}

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

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

.ribbon-25 {
    position: absolute;
    top: 15px;
    left: -5px;
    background-color: #ff9800;
    color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.ribbon-25:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    border-left: 5px solid #e67e00;
    border-bottom: 5px solid transparent;
}

/* Informazioni Hotel */
.hotel-info-25 {
    padding-left: 15px;
}

.hotel-title-25 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.hotel-title-25:hover {
    color: #3498db;
}

.hotel-meta-25 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.stars-25 {
    color: #f39c12;
    font-size: 16px;
}

.stars-25 i {
    margin-right: 2px;
}

.hotel-location-25 a {
    color: #7f8c8d;
    font-size: 14px;
    text-decoration: none;
}

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

.offer-dates-25 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 12px;
    display: inline-block;
}

.offer-dates-25 i {
    margin-right: 8px;
}

.offer-id-25 {
    color: #95a5a6;
    font-size: 13px;
    margin-bottom: 8px;
}

.offer-title-25 {
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 12px;
    padding: 10px;
    background-color: #ecf0f1;
    border-left: 3px solid #3498db;
}

.hotel-description-25 {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hotel-services-25 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.service-icon-25 {
    background-color: #ecf0f1;
    color: #3498db;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.service-icon-25:hover {
    background-color: #3498db;
    color: #fff;
    transform: scale(1.1);
}

/* Sezione Prezzi */
.price-section-25 {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-table-25 {
    background: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.price-table-25 thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.price-table-25 thead th {
    border: none;
    padding: 12px 10px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.price-table-25 tbody tr {
    cursor: pointer;
    transition: all 0.2s ease;
}

.price-row-25:hover {
    background-color: #e3f2fd !important;
    transform: scale(1.02);
}

.price-table-25 td {
    padding: 12px 10px;
    vertical-align: middle;
}

.price-value-25 {
    color: #27ae60;
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.price-label-25 {
    color: #95a5a6;
    font-size: 11px;
    display: block;
    margin-top: 2px;
}

.btn-request-25 {
    width: 100%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: auto;
    text-transform: uppercase;
}

.btn-request-25:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    color: #fff;
}

.btn-request-25 i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .hotel-info-25 {
        padding-left: 0;
        margin-top: 15px;
    }

    .price-section-25 {
        margin-top: 20px;
    }

    .main-title-25 h1 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .hotel-image-25 {
        height: 180px;
    }

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

    .offer-dates-25 {
        font-size: 14px;
        padding: 10px 12px;
    }

    .price-table-25 {
        font-size: 13px;
    }

    .price-value-25 {
        font-size: 16px;
    }
}

/* Pagination */
.pagination-wrap {
    margin-top: 30px;
    text-align: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pagination-wrap .pagination {
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.pagination-wrap .page-link {
    color: #3498db;
}

.pagination-wrap .page-item.active .page-link {
    background-color: #3498db;
    border-color: #3498db;
}

/* Pagination Mobile */
@media (max-width: 767px) {
    .pagination-wrap {
        margin-top: 20px;
        padding: 0 10px;
    }

    .pagination-wrap .pagination {
        gap: 3px;
        font-size: 14px;
    }

    .pagination-wrap .page-link {
        padding: 6px 10px;
        font-size: 13px;
        min-width: 36px;
    }

    .pagination-wrap .page-item:not(.active):not(:first-child):not(:last-child) {
        display: none;
    }

    .pagination-wrap .page-item.active,
    .pagination-wrap .page-item:first-child,
    .pagination-wrap .page-item:last-child,
    .pagination-wrap .page-item.active + .page-item,
    .pagination-wrap .page-item.active - .page-item {
        display: block;
    }
}

@media (max-width: 480px) {
    .pagination-wrap .page-link {
        padding: 5px 8px;
        font-size: 12px;
        min-width: 32px;
    }
}

/* Note Admin */
.admin-note-operator {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    margin-top: 15px;
    border-radius: 6px;
    font-size: 13px;
}

/* ========================================
   HEADER & FOOTER STYLES
   ======================================== */

/* Body */
.frontend25-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Top Bar */
.top-bar-25 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.contact-info-25 {
    display: flex;
    gap: 25px;
}

.phone-link-25,
.email-link-25 {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.phone-link-25:hover,
.email-link-25:hover {
    color: #ffd700;
}

.social-links-25 {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-links-25 a {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links-25 a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Main Header */
.main-header-25 {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-25 img {
    max-height: 70px;
    width: auto;
}

.navbar-25 .navbar-nav {
    gap: 5px;
}

.navbar-25 .nav-link {
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-25 .nav-link:hover {
    background-color: #3498db;
    color: #fff;
}

.navbar-25 .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-radius: 8px;
    margin-top: 10px;
}

.navbar-25 .dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.navbar-25 .dropdown-item:hover {
    background-color: #3498db;
    color: #fff;
}

.navbar-toggler {
    border-color: #3498db;
}

/* Main Content */
.main-content-25 {
    min-height: 400px;
    padding: 30px 0;
}

/* Footer */
.footer-25 {
    background: #2c3e50;
    color: #ecf0f1;
}

.footer-top-25 {
    padding: 50px 0 30px;
}

.footer-logo-25 img {
    max-height: 80px;
    margin-bottom: 20px;
}

.footer-description-25 {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social-25 {
    display: flex;
    gap: 12px;
}

.footer-social-25 a {
    color: #ecf0f1;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social-25 a:hover {
    background-color: #3498db;
    color: #fff;
    transform: translateY(-3px);
}

.footer-title-25 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title-25:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #3498db;
}

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

.footer-links-25 li {
    margin-bottom: 10px;
}

.footer-links-25 a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-25 a:hover {
    color: #3498db;
    padding-left: 5px;
}

.newsletter-text-25 {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form-25 .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px;
    border-radius: 5px;
}

.newsletter-form-25 .form-control::placeholder {
    color: #bdc3c7;
}

.newsletter-form-25 .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #3498db;
    color: #fff;
    box-shadow: none;
}

.newsletter-form-25 .custom-control-label {
    color: #bdc3c7;
    font-size: 13px;
}

.newsletter-form-25 .custom-control-label a {
    color: #3498db;
}

.btn-newsletter-25 {
    width: 100%;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-newsletter-25:hover {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.footer-bottom-25 {
    background-color: #1a252f;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-25,
.legal-info-25 {
    color: #95a5a6;
    font-size: 13px;
    margin: 0;
}

/* Fixed Contact Bar */
.contact-bar-25 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.contact-bar-item-25 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-bar-item-25:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.phone-bar-25 i {
    font-size: 20px;
    animation: pulse 2s infinite;
}

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

/* HOME PAGE STYLES */

/* Hero Section */
.hero-section-25 {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(41, 128, 185, 0.9) 100%),
                url('/images/ischia-hero.jpg') center/cover;
    padding: 60px 0;
    margin-bottom: 40px;
}

.hero-content-25 {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.hero-title-25 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle-25 {
    font-size: 20px;
    color: #fff;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Promo Banner */
.promo-banner-25 {
    margin: 30px 0;
}

.promo-banner-25 img {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Welcome Section */
.welcome-section-25 {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

.section-title-25 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.section-title-25:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

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

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

.features-list-25 {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.features-list-25 h3 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 15px;
}

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

.features-list-25 li {
    padding: 10px 0;
    font-size: 16px;
    color: #555;
}

.cta-box-25 {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.cta-box-25 h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-box-25 p {
    font-size: 16px;
    line-height: 1.6;
}

.cta-finale-25 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
}

/* Section Intro */
.section-intro-25 {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Featured Hotels, Locations, Guides */
.featured-hotels-25,
.locations-section-25,
.tourist-guide-25 {
    margin-bottom: 50px;
}

.hotel-card-home-25,
.location-card-25,
.guide-card-25 {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

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

.card-img-25,
.location-img-25,
.guide-img-25 {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.hotel-card-home-25:hover .card-img-25,
.location-card-25:hover .location-img-25,
.guide-card-25:hover .guide-img-25 {
    transform: scale(1.05);
}

.card-title-25,
.location-title-25,
.guide-title-25 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    padding: 15px;
    margin: 0;
}

.card-text-25 {
    color: #666;
    font-size: 14px;
    padding: 0 15px 15px;
    line-height: 1.6;
}

.hotel-card-home-25 a,
.location-card-25 a,
.guide-card-25 a {
    text-decoration: none;
    color: inherit;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title-25 {
        font-size: 28px;
    }

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

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

    .contact-info-25 {
        flex-direction: column;
        gap: 10px;
    }

    .social-links-25 {
        justify-content: flex-start;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .welcome-section-25 {
        padding: 25px 20px;
    }

    .footer-top-25 {
        padding: 30px 0 20px;
    }

    .footer-title-25 {
        font-size: 18px;
    }

    .contact-bar-25 {
        padding: 0;
    }
}

/* ========================================
   HOTEL SUPER LIST - Listone Offerte
   Stile info-ischia.it
   ======================================== */

/* Container Principale Hotel */
.hotel-super-list-25 {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

/* Header Hotel */
.hotel-header-25 {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px 25px;
    border-bottom: 3px solid #3498db;
}

.hotel-main-image-25 {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

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

.hotel-main-image-25:hover img {
    transform: scale(1.08);
}

/* Overlay su immagine con nome e stelle */
.hotel-image-overlay-25 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 70%, transparent 100%);
    padding: 20px 15px 15px;
    z-index: 10;
}

.hotel-overlay-title-25 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hotel-overlay-stars-25 {
    display: flex;
    gap: 3px;
}

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

.hotel-carousel-25 .hotel-image-overlay-25 {
    bottom: 40px; /* Sopra gli indicatori del carousel */
}

.ribbon-super-25 {
    position: absolute;
    top: 20px;
    left: -5px;
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.3);
}

.ribbon-super-25:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    border-left: 8px solid #e65100;
    border-bottom: 8px solid transparent;
}

/* Info Hotel Principale */
.hotel-main-info-25 {
    padding: 0 10px;
}

.hotel-main-title-25 {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.hotel-main-title-25:hover {
    color: #3498db;
}

.hotel-main-meta-25 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.stars-main-25 {
    color: #f39c12;
    font-size: 18px;
}

.stars-main-25 i {
    margin-right: 3px;
}

.hotel-main-location-25 a {
    color: #7f8c8d;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.hotel-main-description-25 {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.scalapay-info-25 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border-left: 4px solid #3498db;
    padding: 12px 15px;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #2c3e50;
    margin-top: -4px;
}

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

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

/* CTA Hotel */
.hotel-cta-25 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    height: 100%;
}

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

.btn-call-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;
}

.btn-call-25 i {
    animation: ring 2s infinite;
    flex-shrink: 0;
}

.btn-hotel-page-25 {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: #fff;
    border: none;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
    white-space: nowrap;
    line-height: 1.3;
}

.btn-hotel-page-25:hover {
    background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0deg); }
}

/* Lista Offerte Container */
.offers-list-container-25 {
    padding: 30px;
    background: #fafbfc;
}

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

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

/* Singola Offerta */
.offer-item-25 {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #3498db;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.offer-item-25:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    border-left-color: #e74c3c;
    transform: translateX(5px);
}

/* Info Offerta */
.offer-info-25 {
    padding-right: 20px;
}

.offer-period-25 {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.offer-period-25 i {
    font-size: 18px;
}

.date-range-25 {
    font-weight: 500;
}

.offer-name-25 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.offer-code-25 {
    margin-bottom: 15px;
}

.offer-code-25 .badge {
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 600;
}

.offer-services-25 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.service-badge-25 {
    background-color: #ecf0f1;
    color: #3498db;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.service-badge-25:hover {
    background-color: #3498db;
    color: #fff;
    transform: scale(1.15);
}

/* Selettori Prezzi Animati */
.offer-pricing-select-25 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border-radius: 12px;
    padding: 25px;
}

.price-selectors-25 {
    margin-bottom: 25px;
}

.selector-group-25 {
    margin-bottom: 15px;
}

.selector-label-25 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: block;
}

.selector-label-25 i {
    color: #3498db;
    margin-right: 6px;
}

.selector-nights-25,
.selector-treatment-25 {
    border: 2px solid #dce4ec;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    background-color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    height: auto;
    line-height: 1.4;
}

.selector-nights-25:focus,
.selector-treatment-25:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

.selector-nights-25:hover,
.selector-treatment-25:hover {
    border-color: #3498db;
    background-color: #f8fbff;
}

.price-display-box-25 {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid #3498db;
}

.price-animation-25 {
    margin-bottom: 12px;
}

.price-label-top-25 {
    font-size: 11px;
    color: #7f8c8d;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount-big-25 {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    line-height: 1;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.price-amount-big-25.price-updating-25 {
    opacity: 0.3;
    transform: scale(0.9);
}

.price-amount-big-25.price-updated-25 {
    animation: pricePopIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes pricePopIn {
    0% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.price-details-25 {
    font-size: 12px;
    color: #555;
    font-weight: 500;
}

.nights-display-25,
.treatment-display-25 {
    display: inline-block;
    padding: 0 3px;
}

.btn-book-big-25 {
    width: 100%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(231, 76, 60, 0.3);
}

.btn-book-big-25:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-book-big-25 i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn-book-big-25:hover i {
    transform: translateX(3px);
}

/* Tabella Prezzi (VECCHIO STILE - mantenuto per compatibilità) */
.offer-pricing-25 {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

.pricing-table-25 {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pricing-table-25 thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-table-25 thead th {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding: 14px 12px;
    border: none;
}

.pricing-table-25 tbody {
    background: #fff;
}

.pricing-row-25 {
    border-bottom: 1px solid #ecf0f1;
    transition: all 0.3s ease;
}

.pricing-row-25:hover {
    background-color: #f0f8ff;
    transform: scale(1.01);
}

.pricing-row-25:last-child {
    border-bottom: none;
}

.pricing-table-25 td {
    padding: 16px 12px;
    vertical-align: middle;
}

.nights-col-25 {
    font-size: 18px;
    color: #2c3e50;
    width: 15%;
}

.treatment-col-25 {
    color: #555;
    font-size: 14px;
    width: 35%;
}

.price-col-25 {
    width: 35%;
}

.price-display-25 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-amount-25 {
    color: #27ae60;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.price-per-person-25 {
    color: #95a5a6;
    font-size: 11px;
    margin-top: 3px;
}

.action-col-25 {
    width: 15%;
    text-align: center;
}

.btn-book-25 {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(231, 76, 60, 0.3);
}

.btn-book-25:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.5);
}

/* WhatsApp Mobile */
.whatsapp-mobile-25 {
    margin-top: 15px;
}

.btn-whatsapp-25 {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-whatsapp-25:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: #fff;
}

.btn-whatsapp-25 i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .hotel-header-25 {
        padding: 20px;
    }

    .hotel-main-image-25 {
        height: 200px;
        margin-bottom: 20px;
    }

    .hotel-main-title-25 {
        font-size: 24px;
    }

    .hotel-main-info-25 {
        padding: 0;
        margin-bottom: 20px;
    }

    .hotel-cta-25 {
        margin-bottom: 20px;
    }

    .offers-list-container-25 {
        padding: 20px;
    }

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

    .offer-item-25 {
        padding: 20px 15px;
    }

    .offer-info-25 {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .offer-pricing-25 {
        padding: 10px;
    }
}

@media (max-width: 767px) {
    .hotel-main-image-25 {
        height: 180px;
    }

    .hotel-overlay-title-25 {
        font-size: 16px;
    }

    .hotel-overlay-stars-25 i {
        font-size: 14px;
    }

    .hotel-carousel-25 .hotel-image-overlay-25 {
        bottom: 30px;
    }

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

    .hotel-main-description-25 {
        font-size: 14px;
    }

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

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

    .offer-period-25 {
        font-size: 13px;
        padding: 10px 14px;
    }

    .offer-name-25 {
        font-size: 17px;
    }

    .pricing-table-25 {
        font-size: 13px;
    }

    .pricing-table-25 thead th {
        font-size: 11px;
        padding: 10px 8px;
    }

    .pricing-table-25 td {
        padding: 12px 8px;
    }

    .nights-col-25 {
        font-size: 16px;
    }

    .treatment-col-25 {
        font-size: 12px;
    }

    .price-amount-25 {
        font-size: 18px;
    }

    .btn-book-25 {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* ========================================
   ACCORDION OFFERTE
   ======================================== */

.accordion-offers-25 {
    margin-top: 20px;
}

.accordion-item-25 {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item-25:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.accordion-header-25 {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.accordion-button-25 {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-button-25:hover {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
}

.accordion-button-25:focus {
    outline: none;
    box-shadow: none;
}

.accordion-button-25.collapsed .accordion-icon-25 {
    transform: rotate(0deg);
}

.accordion-button-25:not(.collapsed) .accordion-icon-25 {
    transform: rotate(180deg);
}

.accordion-title-content-25 {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    flex: 1;
}

/* Anteprima Prezzo nell'Header */
.accordion-price-preview-25 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    margin-left: auto;
    margin-right: 20px;
}

.price-from-25 {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-label-mini-25 {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    font-weight: 600;
}

.price-value-mini-25 {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
}

.price-details-mini-25 {
    font-size: 12px;
    color: #555;
    text-align: right;
}

.multiple-options-badge-25 {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    animation: pulse-badge 2s infinite;
}

.multiple-options-badge-25 i {
    font-size: 12px;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(52, 152, 219, 0);
    }
}

.offer-period-compact-25 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.offer-period-compact-25 i {
    font-size: 16px;
}

.offer-name-compact-25 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.accordion-icon-25 {
    color: #3498db;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.accordion-body-25 {
    padding: 25px;
    background: #fafbfc;
}

/* Sezione Servizi nell'Accordion */
.offer-services-section-25 {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section-subtitle-25 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.service-item-full-25 {
    background: #ecf0f1;
    padding: 10px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.service-item-full-25:hover {
    background: #3498db;
    color: #fff;
    transform: translateX(5px);
}

.service-item-full-25 i {
    font-size: 18px;
    color: #3498db;
    transition: color 0.3s ease;
}

.service-item-full-25:hover i {
    color: #fff;
}

/* Responsive Accordion */
@media (max-width: 991px) {
    .accordion-button-25 {
        padding: 15px 20px;
    }

    .accordion-title-content-25 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .accordion-button-25 {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px 40px 15px 20px;
    }

    .accordion-title-content-25 {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
        padding-right: 0;
    }

    .accordion-price-preview-25 {
        margin-left: 0;
        margin-right: 0;
        align-items: flex-start;
        width: 100%;
    }

    .price-details-mini-25 {
        text-align: left;
    }

    .offer-period-compact-25 {
        font-size: 12px;
        padding: 6px 10px;
    }

    .offer-period-compact-25 i {
        font-size: 14px;
    }

    .accordion-icon-25 {
        position: absolute !important;
        top: 18px !important;
        right: 15px !important;
        margin-left: 0 !important;
    }

    .offer-name-compact-25 {
        font-size: 14px;
    }

    .accordion-body-25 {
        padding: 20px 15px;
    }

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

@media (max-width: 767px) {
    .offer-services-section-25 {
        margin-bottom: 20px;
    }

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

    .price-value-mini-25 {
        font-size: 18px;
    }

    .multiple-options-badge-25 {
        font-size: 10px;
        padding: 3px 8px;
    }

    /* Riduci dimensioni box offerta su mobile */
    .accordion-body-25 {
        padding: 15px 10px;
    }

    .offer-pricing-select-25 {
        padding: 15px;
    }

    .price-selectors-25 {
        margin-bottom: 15px;
    }

    .selector-group-25 {
        margin-bottom: 10px;
    }

    .selector-label-25 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .selector-nights-25,
    .selector-treatment-25 {
        padding: 6px 10px;
        font-size: 13px;
    }

    .price-display-box-25 {
        padding: 12px;
    }

    .price-animation-25 {
        margin-bottom: 8px;
    }

    .price-label-top-25 {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .price-amount-big-25 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .price-details-25 {
        font-size: 11px;
    }

    .btn-book-big-25 {
        padding: 10px 16px;
        font-size: 13px;
    }

    .whatsapp-mobile-25 {
        margin-top: 10px;
    }

    .btn-whatsapp-25 {
        padding: 10px 16px;
        font-size: 14px;
    }

    /* Accordion dettagli offerta più compatto */
    .offer-details-accordion-25 .card {
        margin-bottom: 8px;
    }

    .offer-details-accordion-25 .card-header {
        padding: 8px;
    }

    .offer-details-accordion-25 .btn {
        font-size: 13px;
        padding: 8px;
    }

    .offer-details-accordion-25 .card-body {
        padding: 10px;
        font-size: 12px;
    }
}
