/*--------------------------------------------------------------
4. Header
--------------------------------------------------------------*/
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.85));
    backdrop-filter: blur(10px);
}

.header-topbar {
    background: #000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,0,0,0.1);
}

.header-topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,0,0,0) 0%,
        rgba(255,0,0,0.3) 50%,
        rgba(255,0,0,0) 100%);
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
}

.info-item i {
    color: #ff0000;
}

.info-item a {
    color: #ffffff;
    text-decoration: none;
}

.info-item a:hover {
    color: #ff0000;
}

/* Social Icons - Header e Footer */
.social-links a, .footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    transition: all 0.3s ease;
    position: relative;
}

.social-links a i, .footer-social a i {
    position: relative;
    z-index: 2;
}

.social-links .facebook, .footer-social .facebook {
    background: rgba(59, 89, 152, 0.1);
    border: 1px solid #3b5998;
}

.social-links .facebook:hover, .footer-social .facebook:hover {
    background: #3b5998;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.3);
}

.social-links .instagram, .footer-social .instagram {
    background: rgba(225, 48, 108, 0.1);
    border: 1px solid #e1306c;
}

.social-links .instagram:hover, .footer-social .instagram:hover {
    background: #e1306c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.social-links .youtube, .footer-social .youtube {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
}

.social-links .youtube:hover, .footer-social .youtube:hover {
    background: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Top Bar */  
.header-topbar {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,0,0,0.1);
    background: rgba(0, 0, 0, 0.9);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.info-item i {
    color: var(--primary);
    transition: all 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.2);
}

.info-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

/* Main Header */
.header-main {
    padding: 15px 0;
    background: transparent;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.site-branding {
    flex-shrink: 0;
}

.custom-logo {
    height: 45px;
    width: auto;
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 110px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

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

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.hero-content h1 span {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Feature Boxes */
.feature-boxes {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    max-width: 300px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
    animation-fill-mode: forwards;
    opacity: 0;
}

.feature-box:nth-child(1) { animation-delay: 0.3s; }
.feature-box:nth-child(2) { animation-delay: 0.5s; }
.feature-box:nth-child(3) { animation-delay: 0.7s; }

.feature-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255,0,0,0.2);
}

.feature-box i {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: #cccccc;
}

/* Hero CTA */
.hero-cta {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 1s ease 0.9s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.price-box {
    background: rgba(255, 0, 0, 0.1);
    padding: 20px 40px;
    border-radius: 50px;
    border: 2px solid #ff0000;
    animation: pulse 2s infinite;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.price-label {
    color: #cccccc;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
}

/* Network Section */
.network {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-logo {
    width: 150px;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-header h2 span {
    color: #ff0000;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
}

/* Centers Grid */
.centers-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.centers-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.center-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Aggiungi frecce di navigazione */
.centers-nav {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.prev-arrow {
    left: -20px;
}

.next-arrow {
    right: -20px;
}

.center-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,0,0,0.1);
}

.center-logo {
    width: 60px;
    margin-bottom: 15px;
}

.center-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.center-card p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.center-card i {
    color: #ff0000;
}

/* Contact Form Styling */
.contact {
    position: relative;
    overflow: hidden;
}

.contact .section-header {
    margin-bottom: 50px;
}

.contact .wpcf7 {
    position: relative;
    z-index: 2;
}

.contact .wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 100px; 
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    animation: formFloat 3s ease-in-out infinite;
}

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

/* Contact Form Styling */
.contact {
    position: relative;
    overflow: hidden;
    background: #111;
    padding: 100px 0;
}

.contact .section-header {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.contact .wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.contact .wpcf7-form label {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 500;
}

.contact .wpcf7-form input[type="text"],
.contact .wpcf7-form input[type="email"],
.contact .wpcf7-form input[type="tel"],
.contact .wpcf7-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact .wpcf7-form input:focus,
.contact .wpcf7-form textarea:focus {
    border-color: #ff0000;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.contact .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact .wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
}

/* Form validation messages */
.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid !important;
    color: #fff;
}

.wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
}

/* Loading Animation */
.wpcf7 .ajax-loader {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,0,0,0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255,0,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,0,0,0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-boxes {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-box {
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.master-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 110px;
}

.master-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.master-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

/* Feature Boxes */
.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    max-width: 300px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255,0,0,0.2);
}

.feature-box i {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: #cccccc;
}

/* Hero CTA */
.hero-cta {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.master-price-tag {
    background: rgba(255, 0, 0, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid #ff0000;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.price-label {
    color: #cccccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.slide-in {
    animation: slideIn 1s ease forwards;
}

.slide-in-delayed {
    animation: slideIn 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Particles Effect */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .master-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-box {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}


/*--------------------------------------------------------------
2. Base & Typography
--------------------------------------------------------------*/
html {
    margin-top: 0 !important; /* Rimuove la admin bar di WordPress */
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.site {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

.site-content {
    flex: 1;
    padding-top: 110px; /* Altezza dell'header */
    background: #fff;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Typography base */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Layout Sections */
.section {
    padding: 80px 0;
}

.section-sm {
    padding: 40px 0;
}

.section-lg {
    padding: 120px 0;
}

/* Background Utilities */
.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: var(--dark);
    color: var(--light);
}

.bg-primary {
    background-color: var(--primary);
    color: var(--light);
}

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.my-0 { margin-top: 0; margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.py-0 { padding-top: 0; padding-bottom: 0; }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Responsive Typography */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }

    .section {
        padding: 60px 0;
    }

    .section-lg {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .section {
        padding: 40px 0;
    }

    .section-lg {
        padding: 60px 0;
    }
}

/*--------------------------------------------------------------
5. Navigation
--------------------------------------------------------------*/
.main-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.primary-menu {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.primary-menu a:hover::after {
    width: 100%;
}

.header-cta {
    white-space: nowrap;
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    border-radius: 25px;
    color: #fff !important;
    font-size: 14px;
    border: none;
}

.header-cta:hover {
    background: var(--primary);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .main-navigation .primary-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-cta {
        font-size: 13px;
        padding: 8px 15px;
    }
}

/* Mobile Top Bar */
@media (max-width: 768px) {
    .header-topbar {
        background: #ffffff;
        padding: 8px 0;
    }

    .header-main {
        padding: 10px 0;
    }

    .custom-logo {
        height: 40px;
    }

    .header-flex {
        gap: 15px;
    }

    .contact-info {
        width: 100%;
        justify-content: center;
    }

    .info-item {
        color: #000000;
    }

    .info-item a {
        color: #000000;
    }
    
    .info-item a:hover {
        color: #ff0000;
    }
    
    .info-item i {
        color: #ff0000;
    }

    .social-links a {
        background: rgba(255,0,0,0.1);
        color: #000000 !important;
    }

    .social-links a:hover {
        background: #ff0000;
        color: #ffffff !important;
    }
}

.mobile-menu-toggle span {
   display: block;
   width: 100%;
   height: 2px;
   background: var(--light);
   position: absolute;
   left: 0;
   transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 10px; }
.mobile-menu-toggle span:nth-child(3) { top: 20px; }

.mobile-menu-toggle.active span:nth-child(1) {
   transform: rotate(45deg);
   top: 10px;
}

.mobile-menu-toggle.active span:nth-child(2) {
   opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
   transform: rotate(-45deg);
   top: 10px;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #000;
    padding: 60px 25px;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.mobile-menu-items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu-items li {
    margin-bottom: 10px;
}

.mobile-menu-items a {
    display: block;
    padding: 10px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-contact-info {
    margin-top: 30px;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #b0b0b0;
}

.mobile-contact-item {
   display: flex;
   align-items: center;
   gap: 10px;
   color: var(--light);
   margin-bottom: 15px;
}

.mobile-social-links {
   margin-top: 30px;
   display: flex;
   gap: 15px;
}

/* Overlay per mobile menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}

.mobile-menu-overlay.active {
    display: block;
}

/*--------------------------------------------------------------
7. Footer
--------------------------------------------------------------*/
/* Footer Styles Updated */
.site-footer {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #fff;
    position: relative;
    margin-top: 80px;
}

.footer-widgets {
    padding: 80px 0 60px;
    position: relative;
}

/* Effetto bordo superiore */
.footer-widgets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255,0,0,0) 0%,
        rgba(255,0,0,0.8) 50%,
        rgba(255,0,0,0) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Footer Info Section */
.footer-info {
    position: relative;
    padding-right: 30px;
}

.footer-info::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, 
        rgba(255,0,0,0) 0%,
        rgba(255,0,0,0.3) 50%,
        rgba(255,0,0,0) 100%);
}

.footer-info .footer-logo {
    margin-bottom: 25px;
}

.footer-info .custom-logo {
    height: 60px;
    transition: transform 0.3s ease;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Footer Contact Info */
.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact-info .contact-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
}

.footer-contact-info i {
    color: #ff0000;
    font-size: 1.2rem;
}

.footer-contact-info a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #ffffff;
}

/* Footer Social Icons - Stile identico all'header */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,0,0,0.1);
    border-radius: 50%;
    color: #fff !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,0,0,0.3);
}

.footer-social a i {
    position: relative;
    z-index: 2;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.footer-social .facebook {
    background: rgba(59, 89, 152, 0.1);
    border-color: #3b5998;
}
.footer-social .facebook:hover {
    background: #3b5998;
}

.footer-social .instagram {
    background: rgba(225, 48, 108, 0.1);
    border-color: #e1306c;
}
.footer-social .instagram:hover {
    background: #e1306c;
}

.footer-social .youtube {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
}
.footer-social .youtube:hover {
    background: #ff0000;
}

/* Widget Titles */
.widget-title {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, rgba(255,0,0,0.3));
    transition: width 0.3s ease;
}

.footer-widget:hover .widget-title::after {
    width: 60px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.footer-menu a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    margin-right: 10px;
    color: #ff0000;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter Form */
.newsletter-content {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.newsletter-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,0,0,0.1), transparent);
    z-index: 0;
}

.newsletter-content > * {
    position: relative;
    z-index: 1;
}

.newsletter-content p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-newsletter input[type="email"] {
    width: 100%;
    padding: 12px 1px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #ffffff;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-newsletter input[type="email"]:focus {
    border-color: #ff0000;
    background: rgba(255,255,255,0.08);
    outline: none;
    box-shadow: 0 0 15px rgba(255,0,0,0.1);
}

.footer-newsletter input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.8);
    padding: 25px 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,0,0,0) 0%,
        rgba(255,0,0,0.3) 50%,
        rgba(255,0,0,0) 100%);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #808080;
    font-size: 0.9rem;
}

.footer-bottom-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom-menu a {
    color: #808080;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-menu a:hover {
    color: #ff0000;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-info::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-widgets {
        padding: 60px 0 40px;
    }
}