.hero-home {
    color: var(--text-color);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
    border-radius: var(--border-radius-large);
    margin-top: 2rem;
}

.hero-home::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"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.15)"/></svg>');
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-light);
    animation: slideInUp 1s ease-out 0.3s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    animation: slideInUp 1s ease-out 0.9s both;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-gold);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-section {
    padding: 6rem 0;
    background: rgba(25, 30, 45, 0.95);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-wrapper { /* Nuovo wrapper per info e logo */
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Spazio tra info e logo */
}

.contact-info {
    background: rgba(35, 45, 65, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #f8f9fa;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #b0bec5;
}

.info-item i {
    color: #64b5f6;
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

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

.info-item a:hover {
    color: #64b5f6;
}
.company-logo-section {
background: rgba(35, 45, 65, 0.9); /* Sfondo come gli altri box */
padding: 2.5rem; /* Padding come gli altri box */
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
display: flex; /* Centra l'immagine */
justify-content: center; /* Centra l'immagine */
align-items: center; /* Centra l'immagine */
height: fit-content; /* Adatta l'altezza al contenuto */
}

.company-logo-section img {
max-width: 80%; /* Riduci la dimensione dell'immagine per adattarla al box */
height: auto;
display: block; /* Rimuove lo spazio extra sotto l'immagine */
object-fit: contain; /* Assicura che l'immagine sia contenuta senza tagli */
}

.contact-form {
background: rgba(35, 45, 65, 0.9);
padding: 2.5rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
font-size: 1.8rem;
color: #f8f9fa;
margin-bottom: 2rem;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
margin-bottom: 0.7rem;
color: #e0e0e0;
font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
width: 100%;
padding: 1rem;
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 10px;
background: #1a2233;
color: #e0e0e0;
font-size: 1rem;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
border-color: #64b5f6;
box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.2);
outline: none;
}

.form-group textarea {
resize: vertical;
min-height: 120px;
}