/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #366D54;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #666;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(54, 109, 84, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #366D54;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #5A6B82;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #366D54;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: #366D54;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #5A6B82;
    transform: translateY(-2px);
}

.cta-button::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #366D54;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #366D54;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #5A6B82;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* ===== TYPEWRITER ANIMATION ===== */
.typewriter-text {
    overflow: hidden;
    border-right: 2px solid #366D54;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 4s steps(60, end), blink-caret 0.75s step-end infinite;
    font-weight: 500;
    color: #366D54;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #366D54; }
}

/* Responsive typewriter */
@media (max-width: 768px) {
    .typewriter-text {
        white-space: normal;
        border-right: none;
        animation: fadeInUp 1s ease-out 0.4s both;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #366D54 0%, #5A6B82 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 20px 40px rgba(54, 109, 84, 0.3);
    transition: all 0.3s ease;
}

.hero-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(54, 109, 84, 0.4);
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #366D54;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #366D54;
    color: white;
}

.btn-primary:hover {
    background: #5A6B82;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(54, 109, 84, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #366D54;
    border: 2px solid #366D54;
}

.btn-secondary:hover {
    background: #366D54;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    color: #366D54;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #5A6B82;
    font-size: 1.2rem;
    font-weight: 500;
}

.bg-light {
    background: #f8f9fa;
}

/* ===== CHI SIAMO SECTION ===== */
.chi-siamo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chi-siamo-text h3 {
    color: #366D54;
    margin-top: 2rem;
    margin-bottom: 1rem;
    animation: slideInLeft 0.8s ease-out;
}

.chi-siamo-text h3:first-child {
    margin-top: 0;
}

.chi-siamo-text p {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #366D54 0%, #5A6B82 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 15px 30px rgba(54, 109, 84, 0.2);
    animation: slideInRight 0.8s ease-out;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(54, 109, 84, 0.3);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* ===== SERVIZI SECTION ===== */
.servizi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.servizio-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(54, 109, 84, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.servizio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #366D54;
}

.servizio-card h3 {
    color: #366D54;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.servizio-desc {
    color: #666;
    margin-bottom: 1.5rem;
}

.servizio-prezzo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #366D54;
}

/* ===== DESIGN SECTION ===== */
.design-content {
    display: grid;
    gap: 4rem;
}

.design-section h3 {
    color: #366D54;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.design-grid, .prodotti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.design-item, .prodotto-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #366D54;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out;
}

.design-item:hover, .prodotto-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-left-color: #5A6B82;
}

.design-item h4, .prodotto-item h4 {
    color: #366D54;
    margin-bottom: 0.5rem;
}

.design-item p, .prodotto-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== CONTATTI SECTION ===== */
.contatti-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contatto-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: slideInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.contatto-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.contatto-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #366D54 0%, #5A6B82 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contatto-details h3 {
    color: #366D54;
    margin-bottom: 0.5rem;
}

.contatto-details p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contatto-details a {
    color: #366D54;
    text-decoration: none;
    font-weight: 500;
}

.contatto-details a:hover {
    text-decoration: underline;
}

.orari p {
    margin-bottom: 0.5rem;
}

.orari .nota {
    font-style: italic;
    color: #366D54;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.map-container {
    height: auto;
}

.map-link {
    text-align: center;
    margin-top: 1rem;
}

.map-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
}

/* ===== PRENOTA SECTION ===== */
.prenota-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prenota-info h3 {
    color: #366D54;
    margin-bottom: 1rem;
    animation: slideInLeft 0.8s ease-out;
}

.prenota-info p {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.prenota-cta {
    margin: 2rem 0;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.prenota-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #366D54;
    animation: slideInRight 0.8s ease-out;
}

.prenota-note h4 {
    color: #366D54;
    margin-bottom: 1rem;
}

.prenota-note ul {
    list-style: none;
    padding: 0;
}

.prenota-note li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.prenota-note li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #366D54;
    font-weight: bold;
}

/* ===== FOOTER ===== */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    height: 80px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo .logo:hover {
    transform: scale(1.05);
}

.footer-logo p {
    color: #ccc;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-info a {
    color: #366D54;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-social p {
    color: #ccc;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #366D54;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #5A6B82;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-signature {
    color: #366D54 !important;
    font-style: italic;
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-placeholder {
        width: 300px;
        height: 300px;
    }

    .chi-siamo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contatti-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .prenota-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .servizi-grid {
        grid-template-columns: 1fr;
    }

    .design-grid, .prodotti-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-placeholder {
        width: 250px;
        height: 250px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .servizio-card {
        padding: 1.5rem;
    }

    .contatto-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING ANIMATION ===== */
.loading {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===== ACTIVE NAVIGATION STYLES ===== */
.nav-link.active {
    color: #366D54 !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100% !important;
}

/* ===== ENHANCED HOVER EFFECTS ===== */

.design-item:hover, .prodotto-item:hover {
    border-left-color: #5A6B82;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

/* ===== SCROLL TO TOP BUTTON STYLES ===== */
.scroll-to-top:hover {
    background: #5A6B82 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(54, 109, 84, 0.3) !important;
}

/* ===== ENHANCED BUTTON EFFECTS ===== */
.btn-primary:active {
    transform: translateY(0) !important;
    box-shadow: 0 5px 10px rgba(54, 109, 84, 0.2) !important;
}

.btn-secondary:active {
    transform: translateY(0) !important;
}

/* ===== FOCUS STYLES FOR ACCESSIBILITY ===== */
.btn:focus, .nav-link:focus, .social-link:focus {
    outline: 2px solid #366D54;
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar, .scroll-to-top, .hero-buttons {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1 { font-size: 18pt; }
    h2 { font-size: 16pt; }
    h3 { font-size: 14pt; }
}

/* ===== HIGH CONTRAST MODE SUPPORT ===== */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #000;
    }
    
    .nav-link:hover {
        color: #000;
    }
    
    .servizio-prezzo {
        color: #000;
    }
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

/* ===== DARK MODE SUPPORT (FUTURE) ===== */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here in the future */
}

/* ===== ENHANCED TYPOGRAPHY ===== */
.hero-title {
    text-shadow: 0 2px 4px rgba(54, 109, 84, 0.1);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #366D54 0%, #5A6B82 100%);
    border-radius: 2px;
}

/* ===== ENHANCED CARD SHADOWS ===== */
.servizio-card, .design-item, .prodotto-item, .contatto-item {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05);
}

.servizio-card:hover, .design-item:hover, .prodotto-item:hover, .contatto-item:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== ENHANCED GRADIENT EFFECTS ===== */
.hero-placeholder, .image-placeholder {
    background: linear-gradient(135deg, #366D54 0%, #5A6B82 50%, #4A5B72 100%);
    position: relative;
    overflow: hidden;
}

.hero-placeholder::before, .image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.hero-placeholder:hover::before, .image-placeholder:hover::before {
    left: 100%;
}

/* ===== ENHANCED TEXT ANIMATIONS ===== */
.section-title {
    position: relative;
    display: inline-block;
    animation: slideInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #366D54 0%, #5A6B82 100%);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.5s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 60px; }
}

/* ===== PULSING ANIMATION FOR CTA BUTTONS ===== */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

/* ===== FLOATING ANIMATION FOR ICONS ===== */
.hero-placeholder i, .image-placeholder i {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== ENHANCED HOVER EFFECTS FOR CARDS ===== */
.servizio-card, .design-item, .prodotto-item {
    position: relative;
    overflow: hidden;
}

.servizio-card::before, .design-item::before, .prodotto-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(54, 109, 84, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.servizio-card:hover::before, .design-item:hover::before, .prodotto-item:hover::before {
    opacity: 1;
} 