
            .promo-banner {
                position: relative;
                background: linear-gradient(90deg, #d4af37, #fffacd, #d4af37);
                background-size: 200% 100%;
                color: #000;
                padding: 10px;
                text-align: center;
                font-weight: bold;
                border-radius: 4px;
                margin-bottom: 10px;
                box-shadow: 0 0 8px 2px #ffd700;
                animation: shine 3s linear infinite;
                overflow: hidden;
                text-transform: uppercase;
                font-family: "Orbitron", sans-serif;
            }

            @keyframes shine {
                0% {
                    background-position: 200% 0;
                }
                100% {
                    background-position: -200% 0;
                }
            }
            .services-cards-title {
                text-align: center;
                box-shadow: 4px 4px 0px 1px #e33a36;
                display: inline-block;
                margin: 0 0 2rem 0;
                background: #111;
                border-radius: 10px;
                padding: 0.5rem 4rem;
                border-top: 2px solid #222;
                border-left: 2px solid #222;
                font-family: "Orbitron", sans-serif;
            }
            .prezzo-display {
                position: relative;
                background: linear-gradient(90deg, var(--accent), #6a19a2, #9700ff);
                background-size: 200% 100%;
                color: #eee;
                padding: 6px;
                text-align: center;
                font-weight: 900;
                border-radius: 6px;
                margin-top: 15px;
                box-shadow: 0 0 10px 1px #ff4b1f;
                animation: shine-prezzo 3s linear infinite;
                font-family: "Orbitron", sans-serif;
                text-transform: uppercase;
                letter-spacing: 1.5px;
                display: inline-block;
                min-width: 120px;
                width: 100%;
            }
            .prezzo-primasconto {
                text-decoration: line-through;
                opacity: 0.7;
                margin-right: 10px;
                font-weight: 700;
                font-size: 0.9rem;
            }
            .prezzo {
                font-size: 1.3rem;
                font-weight: 900;
            }
            @keyframes shine-prezzo {
                0% {
                    background-position: 200% 0;
                }
                100% {
                    background-position: -200% 0;
                }
            }

            
            @media (max-width: 768px) {

            }

    /* Enhanced Services Page Styles */
    .black-red-services-page {
        background-color: #111;
        color: #fff;
        font-family: 'Arial', sans-serif;
        overflow-x: hidden;
    }

    .services-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('<?php echo esc_url(get_template_directory_uri() . "/assets/services-bg.avif"); ?>');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 4rem 20px;
        text-align: center;
        border-bottom: 3px solid #d00;
        position: relative;
    }

    .services-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at center, rgba(208, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 70%);
        pointer-events: none;
    }

    .services-hero .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
    }

    .services-hero h1 {
        color: #fff;
        font-size: 3.5rem;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        font-family: "Orbitron", sans-serif;
    }

    .services-hero p {
        color: #aaa;
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto 30px;
        line-height: 1.6;
        font-family: "Orbitron", sans-serif;
    }

    .selection-counter {
        background: rgba(208, 0, 0, 0.2);
        border: 1px solid #d00;
        border-radius: 50px;
        padding: 12px 25px;
        display: inline-flex;
        align-items: center;
        gap: 15px;
        backdrop-filter: blur(5px);
        animation: pulse 2s infinite;
    }

    .selection-counter #selectedCount {
        font-weight: bold;
        color: #d00;
        font-size: 1.2rem;
    }

    .selection-counter .view-selection {
        color: #fff;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s;
        border-bottom: 1px dotted #d00;
    }

    .selection-counter .view-selection:hover {
        color: #d00;
    }

    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(208, 0, 0, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(208, 0, 0, 0); }
        100% { box-shadow: 0 0 0 0 rgba(208, 0, 0, 0); }
    }

    .services-intro {
        max-width: 1200px;
        margin: 80px auto;
        padding: 0 20px;
        text-align: center;
    }

    .services-intro h2 {
        color: #fff;
        font-size: 2.5rem;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    .services-intro h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #d00;
    }

    .services-intro p {
        color: #aaa;
        font-size: 1.1rem;
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto 80px;
        padding: 0 20px;
    }

    .service-card {
        background-color: #222;
        padding: 30px;
        border-radius: 8px;
        border-top: 4px solid #333;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(208, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-card.selected {
        border-top-color: #d00;
        box-shadow: 0 0 0 2px #d00;
    }

    .service-card.selected::before {
        opacity: 1;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background-color: rgba(208, 0, 0, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: all 0.3s;
    }

    .service-card:hover .service-icon {
        background-color: rgba(208, 0, 0, 0.2);
        transform: rotate(15deg) scale(1.1);
    }

    .service-card.selected .service-icon {
        background-color: rgba(208, 0, 0, 0.3);
    }

    .service-icon span {
        color: #d00;
        font-size: 30px;
    }

    .service-card h3 {
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 15px;
        transition: color 0.3s;
    }

    .service-card:hover h3 {
        color: #d00;
    }

    .service-card p {
        color: #aaa;
        margin-bottom: 20px;
        line-height: 1.6;
        min-height: 60px;
    }

    .service-features {
        margin: 25px 0;
    }

    .service-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .service-features li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
        color: #ccc;
    }

    .service-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #d00;
        font-weight: bold;
    }

    .service-actions {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }

    .service-toggle {
        flex: 1;
        padding: 12px;
        background-color: transparent;
        color: #d00;
        border: 1px solid #d00;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: bold;
    }

    .service-toggle:hover {
        background-color: rgba(208, 0, 0, 0.1);
    }

    .service-toggle.selected {
        background-color: #d00;
        color: #fff;
    }

    .service-toggle.selected:hover {
        background-color: #b30000;
    }

    .learn-more {
        display: inline-block;
        padding: 12px 20px;
        background-color: transparent;
        color: #aaa;
        border: 1px solid #444;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s;
    }

    .learn-more:hover {
        background-color: rgba(255, 255, 255, 0.05);
        color: #fff;
    }

    .service-details {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        margin-top: 0;
        opacity: 0;
    }

    .service-details:target {
        max-height: 500px;
        opacity: 1;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #333;
    }

    .services-features {
        background-color: #181818;
        padding: 100px 20px;
        position: relative;
    }

    .services-features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('<?php echo esc_url(get_template_directory_uri() . "/assets/dots-pattern.png"); ?>');
        opacity: 0.05;
        pointer-events: none;
    }

    .features-content {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .features-content h2 {
        color: #fff;
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 70px;
        position: relative;
    }

    .features-content h2::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background-color: #d00;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 40px;
    }

    .feature {
        text-align: center;
        padding: 30px;
        background-color: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        transition: all 0.3s;
    }

    .feature:hover {
        background-color: rgba(208, 0, 0, 0.1);
        transform: translateY(-5px);
    }

    .feature-number {
        font-size: 3rem;
        font-weight: bold;
        color: rgba(255, 255, 255, 0.05);
        margin-bottom: 15px;
        position: relative;
        transition: all 0.3s;
    }

    .feature:hover .feature-number {
        color: rgba(208, 0, 0, 0.2);
    }

    .feature-number::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background-color: #d00;
    }

    .feature h4 {
        color: #fff;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .feature p {
        color: #aaa;
        line-height: 1.8;
    }

    .services-contact {
        background-color: #000;
        padding: 100px 20px;
        position: relative;
    }

    .services-contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('<?php echo esc_url(get_template_directory_uri() . "/assets/grid-pattern.png"); ?>');
        opacity: 0.03;
        pointer-events: none;
    }

    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        position: relative;
        z-index: 2;
    }

    .contact-info {
        padding-right: 30px;
    }

    .contact-info h2 {
        color: #fff;
        font-size: 2.5rem;
        margin-bottom: 20px;
        position: relative;
    }

    .contact-info h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: #d00;
    }

    .contact-info p {
        color: #aaa;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .selected-services-review {
        background-color: rgba(208, 0, 0, 0.1);
        border: 1px solid rgba(208, 0, 0, 0.3);
        border-radius: 8px;
        padding: 25px;
        margin-top: 40px;
    }

    .selected-services-review h3 {
        color: #fff;
        font-size: 1.3rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(208, 0, 0, 0.3);
    }

    .services-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .selected-service-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        background-color: rgba(208, 0, 0, 0.05);
        border-radius: 4px;
    }

    .selected-service-item span {
        color: #fff;
    }

    .remove-service {
        background: none;
        border: none;
        color: #d00;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 0 5px;
        transition: all 0.2s;
    }

    .remove-service:hover {
        color: #fff;
        transform: scale(1.2);
    }

    .no-services {
        color: #666;
        font-style: italic;
        text-align: center;
        padding: 20px 0;
    }

    .contact-form {
        background-color: #181818;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .form-group {
        margin-bottom: 25px;
        position: relative;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        background-color: #222;
        border: 1px solid #333;
        border-radius: 4px;
        color: #fff;
        font-size: 1rem;
        transition: all 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #d00;
        box-shadow: 0 0 0 2px rgba(208, 0, 0, 0.2);
    }

    .form-group textarea {
        min-height: 150px;
        resize: vertical;
    }

    .submit-button {
        width: 100%;
        padding: 15px;
        background-color: #d00;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .submit-button:hover {
        background-color: #b30000;
        transform: translateY(-2px);
    }

    .submit-button svg {
        transition: transform 0.3s;
    }

    .submit-button:hover svg {
        transform: translateX(5px);
    }

    .form-success {
        text-align: center;
        padding: 40px 20px;
    }

    .form-success h3 {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .form-success p {
        color: #aaa;
        line-height: 1.6;
    }

    .form-error {
        background-color: rgba(208, 0, 0, 0.2);
        border: 1px solid #d00;
        color: #fff;
        padding: 15px;
        margin-bottom: 25px;
        border-radius: 4px;
    }

    @media (max-width: 768px) {
        .contact-container {
            grid-template-columns: 1fr;
        }
        
        .contact-info {
            padding-right: 0;
            margin-bottom: 40px;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .services-hero h1 {
            font-size: 2.5rem;
        }
        
        .services-hero p {
            font-size: 1rem;
        }
    }
    .service-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.8);
        backdrop-filter: blur(5px);
    }

    .modal-content {
        background-color: #222;
        margin: 10% auto;
        padding: 30px;
        border: 1px solid #d00;
        border-radius: 8px;
        width: 80%;
        max-width: 700px;
        position: relative;
        animation: modalopen 0.4s;
    }

    @keyframes modalopen {
        from {opacity: 0; transform: translateY(-50px);}
        to {opacity: 1; transform: translateY(0);}
    }

    .close-modal {
        position: absolute;
        right: 20px;
        top: 20px;
        color: #aaa;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s;
    }

    .close-modal:hover {
        color: #d00;
    }

    #modalTitle {
        color: #d00;
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    #modalDescription {
        color: #ccc;
        line-height: 1.6;
    }
    .service-actions {
        position: relative;
        z-index: 2;
    }

    .service-card {
        transform-style: preserve-3d;
    }

    .service-toggle, .learn-more {
        position: relative;
        z-index: 3;
    }

    .service-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.9);
    }

    .modal-content {
        position: relative;
        background-color: #222;
        margin: 5% auto;
        padding: 30px;
        border: 1px solid #d00;
        width: 90%;
        max-width: 700px;
        border-radius: 5px;
        animation: modalopen 0.3s;
    }

    @keyframes modalopen {
        from {opacity: 0; transform: translateY(-50px);}
        to {opacity: 1; transform: translateY(0);}
    }