.contact-hero{
position:relative;
width:100%;
min-height:720px;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
}

.contact-video{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
}

.contact-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.60);
z-index:1;
}

.contact-hero-content{
position:relative;
z-index:2;
max-width:900px;
padding:120px 25px 60px;
}

.contact-tag{
display:inline-block;
background:#d9a441;
padding:10px 25px;
border-radius:50px;
font-size:13px;
font-weight:700;
letter-spacing:2px;
}

.contact-hero-content h1{
font-size:64px;
line-height:1.1;
font-weight:800;
margin:25px 0;
}

.contact-hero-content h1 span{
color:#d9a441;
}

.contact-hero-content p{
font-size:20px;
line-height:1.7;
color:#eee;
max-width:750px;
margin:auto;
}

.contact-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:35px;
}

.contact-btn{
padding:16px 35px;
border-radius:50px;
background:#fff;
color:#111;
font-weight:700;
text-decoration:none;
}

.contact-btn.gold{
background:#d9a441;
color:#fff;
}


/* INFO */

.contact-info{
padding:90px 20px;
background:#f7f7f7;
}

.contact-container{
width:100%;
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.contact-card{
background:#fff;
padding:40px 30px;
border-radius:25px;
text-align:center;
box-shadow:0 20px 50px rgba(0,0,0,.08);
transition:.3s;
}

.contact-card:hover{
transform:translateY(-8px);
}

.contact-card h3{
font-size:23px;
margin-bottom:18px;
font-weight:800;
}

.contact-card p{
color:#666;
font-size:16px;
line-height:1.8;
}

.contact-card a{
color:#111;
text-decoration:none;
font-weight:700;
}


/* FORM */

.contact-form-section{
padding:90px 20px;
background:#fff;
}

.contact-heading{
text-align:center;
margin-bottom:45px;
}

.contact-heading span{
display:inline-block;
background:#d9a441;
color:#fff;
padding:8px 18px;
border-radius:50px;
font-size:13px;
font-weight:700;
letter-spacing:2px;
}

.contact-heading h2{
font-size:44px;
font-weight:800;
margin:20px 0;
}

.contact-heading p{
font-size:18px;
color:#666;
}

.contact-form-box{
max-width:900px;
margin:auto;
background:#fff;
padding:45px;
border-radius:28px;
box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.order-form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.order-field{
display:flex;
flex-direction:column;
}

.order-field.full{
grid-column:1/-1;
}

.order-field input,
.order-field textarea{
padding:16px 20px;
border:1px solid #ddd;
border-radius:14px;
font-size:16px;
}

.order-field textarea{
min-height:160px;
}

.order-submit{
width:100%;
margin-top:25px;
padding:18px;
border:0;
border-radius:50px;
background:#d9a441;
color:#fff;
font-size:18px;
font-weight:700;
cursor:pointer;
}


/* MOBILE */

@media(max-width:900px){

.contact-container{
grid-template-columns:repeat(2,1fr);
}

.contact-hero-content h1{
font-size:44px;
}

}


@media(max-width:600px){

.contact-hero{
min-height:620px;
}

.contact-hero-content{
padding:100px 20px 40px;
}

.contact-hero-content h1{
font-size:36px;
}

.contact-hero-content p{
font-size:16px;
}

.contact-buttons{
flex-direction:column;
}

.contact-btn{
width:100%;
}

.contact-container{
grid-template-columns:1fr;
}

.contact-card{
padding:30px 20px;
}

.contact-form-section{
padding:60px 15px;
}

.contact-form-box{
padding:25px 18px;
}

.order-form-grid{
grid-template-columns:1fr;
}

.contact-heading h2{
font-size:30px;
}

}
