*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
font-family:'Inter',sans-serif;
background:#FEFBF2;
color:#111827;
line-height:1.6;
}

/* HERO */

.hero{
text-align:center;
padding:120px 20px 70px;
max-width:900px;
margin:auto;
}

.hero h1{
font-size:3rem;
margin-bottom:20px;
}

.hero p{
font-size:1.2rem;
margin-bottom:30px;
color:#444;
}

.whatsapp-btn{
display:inline-block;
background:#25D366;
color:white;
padding:14px 26px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}



/* CONTACT SECTION */

.contact-main{
max-width:1400px;
margin:auto;
padding:60px 20px;
display:grid;
grid-template-columns:1fr;
column-gap:60px;
row-gap:70px;
align-items:stretch;
}



/* IMAGE */

.contact-image img{
width:100%;
height:100%;
object-fit:cover;
border-radius:14px;
flex:1;
}

.contact-image{
height:100%;
display:flex;
}

/* FORM */

.form-area{
width:100%;
max-width:460px;
margin:0;
}

.form-area h2{
margin-bottom:25px;
font-size:1.6rem;
}

.form-area label{
display:block;
margin-top:16px;
margin-bottom:6px;
font-weight:500;
}

.form-area input,
.form-area select,
.form-area textarea{
width:100%;
padding:13px;
border-radius:6px;
border:1px solid #d6d6d6;
font-size:1rem;
margin-bottom:8px;
background:white;
}

.form-area{
max-width:420px;
}

.form-area textarea{
resize:vertical;
}

.submitForm{
display:block;
margin:18px auto 10px;
padding:14px 22px;
background:black;
color:white;
border:none;
border-radius:8px;
font-weight:600;
cursor:pointer;
}

.submitForm:hover{
opacity:0.9;
}

.response-note{
margin-top:10px;
font-size:0.9rem;
color:#555;
}

.privacy-consent{
display:flex;
align-items:flex-start;
gap:8px;
margin-top:18px;
font-size:0.9rem;
line-height:1.4;
}

.privacy-consent input{
margin-top:4px;
}

/* SPOTLIGHTERS SECTION */

.spotlighters{
margin-top:80px;
padding:80px 40px;
display:grid;
grid-template-columns:1fr;
gap:40px;

background:linear-gradient(180deg,#111,#000);
color:white;
}

.spot-left{
max-width:650px;
}

.spot-left h2{
font-size:2.2rem;
margin-bottom:20px;
font-weight:700;
color:#ffd400;
letter-spacing:0.5px;
}

.spot-left h3{
margin:25px 0 15px;
}

.spot-left p{
font-size:1.05rem;
line-height:1.7;
color:#e6e6e6;
max-width:650px;
}

.spot-right{
max-width:500px;
}

.spot-right{
margin-top:70px;
}

.spot-right p{
margin-bottom:16px;
display:flex;
align-items:center;
gap:10px;
}

.spot-right a{
color:white;
text-decoration:none;
}

.spot-right a:hover{
color:#ffd400;
}



/* SOCIAL ICONS */

.social-icons{
display:flex;
gap:18px;
margin-top:18px;
align-items:center;
flex-wrap:wrap;
}

.social-icons img{
width: 30px;
height: 30px;
}



/* FOOTER */

footer{
background:#000;
color:#d6d6d6;
text-align:center;
padding:20px 10px 16px;
font-size:0.7rem;
}

footer a{
color:#9ca3af;
text-decoration:none;
margin: 12px;
font-weight:500;
}

footer a:hover{
color:white;
}

footer p{
margin-top:3px;
font-size:0.7rem;
color:#9ca3af;
letter-spacing:0.3px;
}

/* DESKTOP LAYOUT */

@media (min-width:1000px){

.contact-main{
grid-template-columns:1fr 1fr;
gap:80px;
align-items:stretch;
}

.spotlighters{
grid-template-columns:1.2fr 1fr;
gap:80px;
}

.hero h1{
font-size:3.5rem;
}

}

@media (max-width: 600px){

  .spot-right{
    margin-top: 40px; /* reduce excessive spacing */
  }

  .spot-right p{
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .social-icons{
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
  }

  .social-icons img{
    width: 26px;
    height: 26px;
  }

}