*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(
        180deg,
        #0d0d0d,
        #161616,
        #101010
    );
    color:#fff;
    line-height:1.6;
    padding-top:140px;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(10,10,10,0.95);
    border-bottom:1px solid rgba(255,255,255,0.08);

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:1000;
    box-sizing:border-box;
}

.logo img{
    height:105px;
    width:auto;
    display:block;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    font-family:'Montserrat', sans-serif;
    color:#d4af37;
    text-decoration:none;
    font-weight:300;
    letter-spacing:0.8px;
    transition:0.3s;
}

nav a:hover{
    color:#ffffff;
}

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    padding:80px 8%;
    min-height:85vh;
}

.hero-content{
    flex:1;
}

.hero-content h1{
    font-family:'Montserrat', sans-serif;
   font-size:clamp(1.2rem, 2.8vw, 1.6rem);
    font-weight:300;
    line-height:1.3;
    color:#ffffff;
    margin-bottom:20px;
    letter-spacing:0.8px;
}

.gold{
    color:#d4af37;
}

.hero-content p{
    font-family:'Montserrat', sans-serif;
    font-size:1.05rem;
    font-weight:300;
    color:#bdbdbd;
    margin-bottom:35px;
    max-width:600px;
    line-height:1.8;
}

.cta-button{
    display:inline-block;
    background:#d4af37;
    color:#111;
    text-decoration:none;
    padding:15px 32px;
    border-radius:40px;
    font-family:'Montserrat', sans-serif;
    font-weight:400;
    letter-spacing:0.5px;
    box-shadow:0 4px 15px rgba(212,175,55,0.18);
    transition:all 0.3s ease;
}

.cta-button:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 25px rgba(212,175,55,0.28);
}


.hero-image{
    flex:1;
    text-align:center;
    position:relative;
}

.hero-image img{
    width:100%;
    max-width:500px;

    border-radius:0;
    box-shadow:none;
    object-fit:cover;

    filter: contrast(1.05) brightness(1.03);

    -webkit-mask-image: radial-gradient(
        ellipse at center,
        rgba(0,0,0,1) 55%,
        rgba(0,0,0,0.9) 70%,
        rgba(0,0,0,0.5) 85%,
        rgba(0,0,0,0) 100%
    );

    mask-image: radial-gradient(
        ellipse at center,
        rgba(0,0,0,1) 55%,
        rgba(0,0,0,0.9) 70%,
        rgba(0,0,0,0.5) 85%,
        rgba(0,0,0,0) 100%
    );
}

.hero-image::after{
    content:"";
    position:absolute;
    inset:0;

    background:radial-gradient(
        circle,
        rgba(212,175,55,0.10),
        transparent 70%
    );

    pointer-events:none;
}


section{
    padding:80px 8%;
}

section h2{
    font-family:'Montserrat', sans-serif;
    text-align:center;
    margin-bottom:40px;
    font-size:1.6rem;
    color:#d4af37;
    font-weight:300;
    letter-spacing:1px;
    line-height:1.4;
}

.section-subtitle{
    text-align:center;
    color:#b8b8b8;
    margin-top:-20px;
    margin-bottom:40px;
    font-size:0.95rem;
    font-family:'Montserrat', sans-serif;
    font-weight:300;
    letter-spacing:0.5px;
}
.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-box{
    background:#141414;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    border:1px solid rgba(212,175,55,0.25);
    transition:0.3s;
    overflow:hidden;
}

.service-box:hover{
    transform:translateY(-5px);
    border-color:#d4af37;
    box-shadow:0 10px 25px rgba(212,175,55,0.12);
}

.service-icon{
    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(212,175,55,0.25);
    border-radius:50%;

    background:rgba(212,175,55,0.04);

    color:#d4af37;
    font-size:2rem;

    transition:all 0.3s ease;
}

.service-box:hover .service-icon{
    transform:scale(1.08);
    border-color:#d4af37;
    box-shadow:0 0 20px rgba(212,175,55,0.20);
}

.service-box h3{
    font-family:'Montserrat', sans-serif;
    color:#d4af37;
    font-size:1.05rem;
    font-weight:400;
    letter-spacing:0.5px;
    margin-bottom:10px;
}
.service-box p{
    font-family:'Montserrat', sans-serif;
    font-size:0.95rem;
    font-weight:300;
    color:#c8c8c8;
    line-height:1.7;
}

.testimonial-img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
    border:2px solid #d4af37;
    box-shadow:0 0 15px rgba(212,175,55,0.25);
}

.service-box strong{
    font-family:'Montserrat', sans-serif;
    font-weight:400;
    color:#e0e0e0;
    letter-spacing:0.4px;
}

.stars{
    color:#d4af37;
    font-size:0.95rem;
    margin-bottom:12px;
    letter-spacing:4px;
}
#contatti{
    text-align:center;
}

#contatti p{
    margin:10px 0;
}

@media(max-width:900px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

    nav{
        gap:15px;
    }

    .hero-content h1{
    font-size:clamp(1.6rem, 4vw, 2rem);
    margin-bottom:20px;
    color:#ffffff;
    line-height:1.3;
}

    .logo img{
        height:70px;
    }
}
footer{
    text-align:center;
    padding:40px 20px;
    background:#0a0a0a;
    border-top:1px solid #333;
}

footer p{
    margin:10px 0;
}
html{
    scroll-behavior:smooth;
}

#contatti a{
    color:#d4af37;
    text-decoration:none;
}

#contatti a:hover{
    color:#ffffff;
}

.why-airm-image {
    max-width: 900px;
    margin: 40px auto;
}

.why-airm-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.consultation-image{
    text-align:center;
    margin:40px auto;
}

.consultation-image img{
    width:320px;
    max-width:90%;
    border-radius:18px;
    border:1px solid rgba(212,175,55,.3);
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.why-airm-gallery{
display:flex;
justify-content:center;
align-items:center;
gap:25px;
flex-wrap:wrap;
margin:40px auto;
}

.why-airm-gallery img{
width:180px;
height:130px;
object-fit:cover;
border-radius:8px;
border:1px solid rgba(212,175,55,0.20);
box-shadow:0 3px 6px rgba(0,0,0,0.15);
transition:0.3s;
cursor:default;
}
.why-airm-gallery img:hover{
transform:translateY(-4px);
}
.video-box{
max-width:320px;
margin:30px auto;
text-align:center;
}

.video-box video{
width:100%;
border-radius:15px;
border:1px solid rgba(212,175,55,0.25);
box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.final-message{
text-align:center;
max-width:900px;
margin:0 auto;
padding:60px 20px;
}

.final-message p{
color:#c8c8c8;
font-family:'Montserrat', sans-serif;
font-weight:300;
line-height:1.9;
margin-bottom:20px;
}

.final-message h2{
color:#d4af37;
margin-bottom:25px;
}

.final-message .cta-button{
margin-top:20px;
}