/* ------------------------------------
   Stili Globali
------------------------------------ */
body {
    font-family: 'Montserrat', sans-serif;
}

/* ------------------------------------
   Stili Header
------------------------------------ */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    max-width: 1200px;
    padding: 0 20px;
}

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

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 16px;
    margin-left: 30px;
    color: #333;
}

.navbar-nav .nav-link:hover {
    color: #007BFF;
}

/* ------------------------------------
   Stili Pulsante Hamburger
------------------------------------ */
.navbar-toggler {
    border: none;
    z-index: 1050; /* Assicurati che sia sopra gli altri contenuti */
}

/* ------------------------------------
   Stili Offcanvas Menu
------------------------------------ */
.offcanvas {
    width: 250px; /* Larghezza del menu laterale */
}

.offcanvas-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.offcanvas-body {
    padding: 20px;
}


/* ------------------------------------
   Stili Sezione Hero
------------------------------------ */
.hero-section {
    background-image: url('/image/altamarea.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #fff;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #FFD700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #fff;
}

/* CTA Buttons */
.cta-buttons {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(45deg, #25D366, #128C7E);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-discover {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-discover:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Gallery Thumbnails */
.hero-gallery {
    margin-top: 30px;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid rgba(255,255,255,0.3);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
    border-color: #FFD700;
}

.gallery-thumb:hover img {
    transform: scale(1.15);
}

/* Form Styles - Più compatto e trasparente */
.hero-form {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15), 
                0 0 0 1px rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,215,0,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.hero-form:hover::before {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-form h3 {
    color: #2C3E50;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(45deg, #007BFF, #0056B3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-control {
    padding: 14px 18px;
    border: 2px solid rgba(0,123,255,0.15);
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.4s ease;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-control:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15), 
                0 8px 25px rgba(0,123,255,0.1);
    outline: none;
    transform: translateY(-2px);
    background: rgba(255,255,255,0.9);
}

.form-control::placeholder {
    color: #6C757D;
    font-weight: 500;
}

.form-check {
    margin: 25px 0;
    padding: 12px;
    background: rgba(0,123,255,0.08);
    border-radius: 10px;
    border: 1px solid rgba(0,123,255,0.15);
}

.form-check-input {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 2px solid #007BFF;
}

.form-check-input:checked {
    background-color: #007BFF;
    border-color: #007BFF;
}

.form-check-label {
    color: #2C3E50;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #007BFF, #0056B3, #004085);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,123,255,0.4);
    background: linear-gradient(135deg, #0056B3, #004085, #003366);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
        color: #fff;
    }
    
    .hero-description {
        font-size: 16px;
        color: #fff;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .btn-whatsapp {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .btn-discover {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .hero-gallery .col-2 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .hero-form {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .hero-form h3 {
        font-size: 20px;
    }
    
    .hero-section {
        background-attachment: scroll;
        padding: 60px 0;
    }
}


/* ------------------------------------
   Sezione Features - Perché Scegliere Noi
------------------------------------ */
.features-section {
    position: relative;
    background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 50%, #d1ecfa 100%);
    overflow: hidden;
    padding: 100px 0;
}

#perche-scegliere-noi {
    padding-top: 5rem !important;
    padding-bottom: 6rem !important;
}

.features-bg-decoration {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,123,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.features-bg-decoration::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

/* Header Sezione */
.section-header {
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #007BFF, #0056B3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: #6C757D;
    margin-bottom: 30px;
    font-weight: 400;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.decoration-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #007BFF, transparent);
    border-radius: 2px;
}

.decoration-anchor {
    font-size: 24px;
    color: #007BFF;
    animation: bounce 2s infinite;
}

/* Feature Cards */
.feature-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,123,255,0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,123,255,0.15);
    border-color: rgba(0,123,255,0.3);
}

/* Feature Icons */
.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    border-radius: 50%;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0,123,255,0.3);
    transition: all 0.3s ease;
}

.icon-bg-effect {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(0,123,255,0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(0,123,255,0.4);
}

/* Feature Content */
.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: #6C757D;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Feature Decorations */
.feature-decoration {
    margin-top: auto;
    padding-top: 20px;
}

.wave-decoration {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #007BFF, transparent);
    border-radius: 2px;
    position: relative;
}

.wave-decoration::before,
.wave-decoration::after {
    content: '';
    position: absolute;
    top: -1px;
    width: 6px;
    height: 6px;
    background: #007BFF;
    border-radius: 50%;
}

.wave-decoration::before {
    left: 20%;
    animation: wave-dot 2s infinite;
}

.wave-decoration::after {
    right: 20%;
    animation: wave-dot 2s infinite 0.5s;
}

/* Floating Decorations */
.floating-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-bubble {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: float-bubble 8s infinite linear;
}

.bubble-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.bubble-3 {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

.bubble-4 {
    top: 40%;
    right: 40%;
    animation-delay: 6s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

@keyframes wave-dot {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; }
}

@keyframes float-bubble {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .features-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .feature-card {
        margin-bottom: 30px;
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    .decoration-line {
        width: 60px;
    }
    
    .floating-bubble {
        font-size: 18px;
    }
}


/* ------------------------------------
   Sezione Chi Siamo e Recensioni
------------------------------------ */
.reviews-section {
    position: relative;
    background-image: url('/image/chi-siamo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.reviews-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}

/* Header Sezione */
.reviews-section .section-header {
    margin-bottom: 10px;
}

.reviews-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.reviews-section .section-subtitle {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.reviews-section .title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.reviews-section .decoration-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
}

.reviews-section .decoration-star {
    font-size: 24px;
    color: #FFD700;
    animation: glow 2s infinite alternate;
    text-shadow: 0 0 10px #FFD700;
}

/* Review Cards */
.review-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 100%;
    animation: shimmer-line 3s infinite;
}

.review-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,215,0,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.review-card:hover::after {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border-color: rgba(255,215,0,0.3);
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
    border: 3px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,123,255,0.5);
}

.reviewer-details h5 {
    color: #2C3E50;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.review-date {
    display: block;
    color: #6C757D;
    font-size: 14px;
    margin-top: 2px;
    font-weight: 500;
}

.review-language {
    display: block;
    color: #007BFF;
    font-size: 12px;
    font-style: italic;
    margin-top: 2px;
    font-weight: 500;
}

.review-stars {
    color: #FFD700;
    font-size: 16px;
}

.review-stars i {
    margin-right: 2px;
    text-shadow: 0 2px 4px rgba(255,215,0,0.3);
    transition: all 0.3s ease;
}

.review-card:hover .review-stars i {
    transform: scale(1.1);
    text-shadow: 0 0 10px #FFD700;
}

/* Review Content */
.review-content {
    flex-grow: 1;
}

.review-text {
    color: #2C3E50;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.read-more {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007BFF;
    transition: width 0.3s ease;
}

.read-more:hover {
    color: #0056B3;
    text-decoration: none;
}

.read-more:hover::after {
    width: 100%;
}

/* Pulsante altre recensioni */
.btn-more-reviews {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    color: #2C3E50;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
    transition: all 0.4s ease;
    border: 3px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-more-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-more-reviews:hover::before {
    left: 100%;
}

.btn-more-reviews:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.5);
    background: linear-gradient(135deg, #FFA500, #FFD700, #FFA500);
    color: #2C3E50;
    text-decoration: none;
    border-color: rgba(255,255,255,0.5);
}

/* Video Wrapper */
.video-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border: 4px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.1);
}

.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 35px 70px rgba(0,0,0,0.5);
    border-color: rgba(255,215,0,0.5);
}

.video-wrapper iframe {
    border-radius: 21px;
    display: block;
}

/* Animations */
@keyframes glow {
    0% { 
        text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700;
        transform: scale(1);
    }
    100% { 
        text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
        transform: scale(1.05);
    }
}

@keyframes shimmer-line {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-section {
        padding: 80px 0;
    }
    
    .reviews-section .section-title {
        font-size: 36px;
    }
    
    .reviews-section .section-subtitle {
        font-size: 18px;
    }
    
    .review-card {
        margin-bottom: 30px;
        padding: 25px;
    }
    
    .btn-more-reviews {
        font-size: 16px;
        padding: 15px 35px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        background-attachment: scroll;
        padding: 60px 0;
    }
    
    .reviews-section .section-title {
        font-size: 28px;
    }
    
    .reviews-section .section-subtitle {
        font-size: 16px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviewer-info {
        gap: 10px;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .review-stars {
        align-self: flex-start;
    }
    
    .btn-more-reviews {
        font-size: 14px;
        padding: 12px 25px;
        letter-spacing: 1px;
    }
    
    .video-wrapper {
        margin-top: 30px;
    }
    
    .reviews-section .decoration-line {
        width: 60px;
    }
}

@media (max-width: 576px) {
    .review-text {
        font-size: 15px;
    }
    
    .reviewer-details h5 {
        font-size: 16px;
    }
    
    .review-date,
    .review-language {
        font-size: 12px;
    }
}

.reviews-section .white-title {
    color: #fff !important;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
}


/* ------------------------------------
   Sezione Call to Action Finale
------------------------------------ */
.final-cta-section {
    background: linear-gradient(135deg, #0c2d5a 0%, #1e3c72 25%, #2a5298 75%, #007BFF 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-decoration 8s ease-in-out infinite;
}

.cta-bg-decoration::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-decoration 10s ease-in-out infinite reverse;
}

/* Header CTA */
.cta-header {
    margin-bottom: 60px;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-decoration {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.decoration-wave {
    font-size: 32px;
    animation: wave-bounce 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Contact Cards */
.contact-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007BFF, #0056B3, #007BFF);
    background-size: 200% 100%;
    animation: slide-gradient 3s infinite;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border-color: rgba(0,123,255,0.3);
}

/* CTA Card Speciale */
.cta-card {
    background: linear-gradient(135deg, rgba(255,215,0,0.95), rgba(255,165,0,0.95));
    border-color: rgba(255,215,0,0.3);
}

.cta-card::before {
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
}

.cta-card:hover {
    border-color: rgba(255,215,0,0.5);
}

/* Contact Icons */
.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,123,255,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(0,123,255,0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.cta-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 10px 25px rgba(255,215,0,0.3);
}

.cta-icon::after {
    border-color: rgba(255,215,0,0.3);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(0,123,255,0.4);
}

.contact-card:hover .cta-icon {
    box-shadow: 0 15px 35px rgba(255,215,0,0.4);
}

/* Contact Content */
.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 25px;
}

.contact-details p {
    margin-bottom: 10px;
    color: #2C3E50;
    line-height: 1.5;
}

.contact-primary {
    font-weight: 600;
    font-size: 16px;
    color: #007BFF !important;
}

.contact-location {
    font-size: 15px;
    margin-bottom: 5px !important;
}

.contact-address {
    font-size: 15px;
    font-weight: 500;
}

.contact-reference {
    font-size: 14px;
    font-style: italic;
    margin-top: 10px !important;
}

.contact-person {
    font-size: 18px;
    font-weight: 600;
    color: #007BFF !important;
    margin-bottom: 15px !important;
}

/* Contact Links */
.contact-phone,
.contact-email,
.contact-website {
    display: block;
    padding: 8px 0;
    color: #2C3E50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 5px;
}

.contact-phone:hover,
.contact-email:hover,
.contact-website:hover {
    color: #007BFF;
    text-decoration: none;
    background: rgba(0,123,255,0.1);
    transform: translateX(5px);
}

.contact-phone i,
.contact-email i,
.contact-website i {
    margin-right: 8px;
    width: 16px;
}

/* Main CTA Button */
.btn-main-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #007BFF, #0056B3, #004085);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(0,123,255,0.4);
    transition: all 0.4s ease;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.btn-main-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-main-cta:hover::before {
    left: 100%;
}

.btn-main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,123,255,0.5);
    color: white;
    text-decoration: none;
}

.cta-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px !important;
    color: #2C3E50 !important;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    font-size: 28px;
    opacity: 0.4;
    animation: float-around 12s infinite linear;
}

.element-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    top: 70%;
    right: 10%;
    animation-delay: 4s;
}

.element-3 {
    top: 45%;
    left: 15%;
    animation-delay: 8s;
}

/* Animations */
@keyframes float-decoration {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes wave-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes slide-gradient {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

@keyframes float-around {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(20px) rotate(90deg); }
    50% { transform: translateY(0px) translateX(40px) rotate(180deg); }
    75% { transform: translateY(20px) translateX(20px) rotate(270deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .final-cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 40px;
    }
    
    .cta-subtitle {
        font-size: 20px;
    }
    
    .contact-card {
        margin-bottom: 30px;
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 22px;
    }
    
    .btn-main-cta {
        font-size: 16px;
        padding: 15px 30px;
    }
    
    .float-element {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 26px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .contact-phone,
    .contact-email,
    .contact-website {
        font-size: 14px;
    }
}

/* ------------------------------------
   Header Discount Button
------------------------------------ */
.header-discount-btn {
    margin-left: 20px;
}

.discount-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    padding: 8px 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse-border 2s infinite;
}

.discount-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.discount-btn:hover::before {
    left: 100%;
}

.discount-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    border-color: rgba(255,255,255,0.5);
    color: white;
    text-decoration: none;
}

.discount-text {
    white-space: nowrap;
}

.discount-info {
    font-size: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.discount-btn:hover .discount-info {
    opacity: 1;
    transform: scale(1.1);
}

/* Mobile Discount Button */
.mobile-discount-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 20px;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px 0 10px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse-border 2s infinite;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-discount-btn:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Pulse Border Animation */
@keyframes pulse-border {
    0% {
        border-color: rgba(255,255,255,0.3);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        border-color: rgba(255,255,255,0.6);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 4px rgba(37, 211, 102, 0.2);
    }
    100% {
        border-color: rgba(255,255,255,0.3);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
}

/* Tooltip Customization */
.tooltip {
    font-size: 12px;
}

.tooltip-inner {
    background-color: #2C3E50;
    color: white;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 500;
}

.tooltip .tooltip-arrow {
    border-bottom-color: #2C3E50;
}

/* Responsive */
@media (max-width: 1200px) {
    .discount-btn {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .discount-text {
        font-size: 12px;
    }
    
    .header-discount-btn {
        margin-left: 15px;
    }
}

@media (max-width: 992px) {
    .header-discount-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-discount-btn {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* ------------------------------------
   Pulsante Torna Su
------------------------------------ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    backdrop-filter: blur(10px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top img {
    width: 22px;
    height: 22px;
    transform: rotate(180deg); /* Rovescia l'ancora per farla sembrare una freccia */
    transition: all 0.3s ease;
    filter: brightness(0.2); /* Rende l'immagine scura */
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 123, 255, 0.3);
}

.back-to-top:hover img {
    filter: brightness(0.2) saturate(0) sepia(1) hue-rotate(200deg); /* Colora di blu al hover */
    transform: rotate(180deg) scale(1.1);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top img {
        width: 18px;
        height: 18px;
    }
}

/* ------------------------------------
   Strisciolina Promo Mobile
------------------------------------ */
.mobile-promo-bar {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    animation: pulse-glow 2s infinite alternate;
    display: none; /* Nascosto di default */
}

.promo-text {
    display: inline-block;
    animation: slide-text 0.5s ease-out;
}

/* Mostra solo su mobile */
@media (max-width: 768px) {
    .mobile-promo-bar {
        display: block;
    }
    
    /* Aggiusta il padding del body per compensare la barra promo */
    body {
        padding-top: 35px;
    }
    
    /* Aggiusta la posizione dell'header */
    .main-header {
        top: 35px;
    }
}

/* Animazioni */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    }
    100% {
        box-shadow: 0 2px 15px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.2);
    }
}

@keyframes slide-text {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Versione alternativa cliccabile (opzionale) */
.mobile-promo-bar.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-promo-bar.clickable:active {
    transform: scale(0.98);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

/* ------------------------------------
   Stili Moderni per il Form
------------------------------------ */
.form-control {
    border: 1px solid #ddd; /* Bordo più sottile */
    border-radius: 10px; /* Bordi leggermente arrotondati */
    padding: 15px;
    font-size: 16px;
    background-color: #f8f9fa; /* Leggera differenziazione dello sfondo */
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #007BFF; /* Colore blu durante il focus */
    background-color: #fff; /* Sfondo bianco durante il focus */
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2); /* Effetto ombra */
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.btn-primary {
    background-color: #007BFF;
    border: none;
    padding: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Ombra per il form */
.bg-white {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------
   Stili Sezione Galleria
------------------------------------ */
#galleria {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.gallery-image {
    width: 100%;
    height: 200px; /* Altezza fissa per tutte le immagini */
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Croppa l'immagine mantenendo il focus centrale */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* ------------------------------------
   Stili Prezzo Evidenziato
------------------------------------ */
.price {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
}

.highlighted-price {
    background-color: #FFD700; /* Colore giallo oro per evidenziare il prezzo */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    display: inline-block;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.highlighted-price:hover {
    background-color: #ff8c00; /* Cambia colore al passaggio del mouse */
    color: #fff;
}

/* Video Centrato - Sezione Chi Siamo */
.video-wrapper {
    overflow: hidden;
    border-radius: 10px; /* Opzionale: arrotondare gli angoli del video */
}

/* Sezione Dettagli Tecnici - Sezione Hero */

/* Applica margine negativo solo su schermi più grandi */
@media (min-width: 768px) {
    #dettagli-tecnici .col-md-6:last-child {
        margin-top: -150px; /* Mantiene il margine negativo solo su schermi più grandi */
    }
}

/* Rimuove il margine negativo su dispositivi mobili */
@media (max-width: 767.98px) {
    #dettagli-tecnici .col-md-6:last-child {
        margin-top: 0; /* Rimuove il margine negativo su dispositivi mobili */
    }
}

/* Pulsanti fissi nella parte inferiore della finestra */
.fixed-buttons {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* Invisibile di default */
    z-index: 1000;
    gap: 10px; /* Spazio tra i pulsanti */
}

/* Mostra i pulsanti quando la classe 'show' è aggiunta */
.fixed-buttons.show {
    display: flex;
}

/* Pulsanti Hero originali */
.hero-section .cta-buttons {
    display: flex;
    gap: 10px;
}

.hero-section .cta-buttons a {
    display: inline-block;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background-color: #007BFF;
    border-radius: 5px;
}

.hero-section .cta-buttons a.btn-call {
    background-color: #28A745;
}

.hero-section .cta-buttons a:hover {
    opacity: 0.8;
}

/* Pulsanti fissi nella parte inferiore della finestra */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* Invisibile di default */
    z-index: 1000;
    gap: 10px; /* Spazio tra i pulsanti */
}

/* Mostra i pulsanti quando la classe 'show' è aggiunta */
.fixed-buttons.show {
    display: flex;
    justify-content: center;
    width: 100%;
    bottom: 10px;
    position: fixed;
    z-index: 1000;
}

/* Stile per i pulsanti */
.fixed-buttons a {
    display: inline-block;
    padding: 10px 20px; /* Ridotto il padding */
    font-size: 14px; /* Ridotto il font-size per adattarsi meglio */
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background-color: #007BFF;
    border-radius: 5px;
    text-align: center;
    min-width: 140px; /* Larghezza minima per uniformità */
}

.fixed-buttons a.btn-call {
    background-color: #28A745;
}

.fixed-buttons a:hover {
    opacity: 0.8;
}


:root {
  --cc-bg: #fff;
  --cc-text: #333;
  --cc-accent: #007bff;
  --cc-accent-hover: #0056b3;
  --cc-reject: #dc3545;
  --cc-reject-hover: #a71d2a;
  --cc-backdrop: rgba(0,0,0,0.4);
  --cc-z-index: 10000;
  --cc-transition: 0.3s ease;
}

/* Banner */
.cc-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--cc-bg);
  color: var(--cc-text);
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
  padding: 1rem;
  z-index: var(--cc-z-index);
  transform: translateY(100%);
  transition: transform var(--cc-transition);
}
.cc-banner:not(.hidden) {
  transform: translateY(0);
}
.cc-container {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.cc-container p {
  margin: 0;
  flex: 1 1 auto;
}
.cc-container a {
  color: var(--cc-accent);
  text-decoration: underline;
}
.cc-buttons {
  display: flex;
  gap: 0.5rem;
  flex: 0 0 auto;
  margin-top: 0.5rem;
}
.cc-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: #e0e0e0;
  color: var(--cc-text);
  cursor: pointer;
  transition: background var(--cc-transition);
}
.cc-btn:hover {
  background: #d5d5d5;
}
.cc-btn--accept {
  background: var(--cc-accent);
  color: #fff;
}
.cc-btn--accept:hover {
  background: var(--cc-accent-hover);
}
.cc-btn--reject {
  background: var(--cc-reject);
  color: #fff;
}
.cc-btn--reject:hover {
  background: var(--cc-reject-hover);
}
.cc-btn--settings {
  background: transparent;
  color: var(--cc-text);
  text-decoration: underline;
}

/* Modal */
.cc-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: grid;
  place-items: center;
  z-index: calc(var(--cc-z-index) + 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--cc-transition);
}
.cc-modal:not(.hidden) {
  opacity: 1;
  pointer-events: all;
}
.cc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--cc-backdrop);
}
.cc-modal__dialog {
  position: relative;
  background: var(--cc-bg);
  color: var(--cc-text);
  padding: 1.5rem;
  max-width: 500px;
  width: 90%;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: var(--cc-z-index);
}
.cc-modal__dialog h2 {
  margin-top: 0;
}
.cc-option {
  display: block;
  margin: 0.75rem 0;
}
.cc-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}
