/*==================================================
ENQUIRY MODAL
==================================================*/

.enquiry-modal{

position:fixed;

inset:0;

display:flex;

align-items:center;

justify-content:center;

padding:20px;

background:rgba(15,23,42,.72);

backdrop-filter:blur(10px);

z-index:999999;

animation:fadeIn .35s ease;

}

.enquiry-modal.hide{

opacity:0;

visibility:hidden;

transition:.3s;

}

.enquiry-card{

width:100%;

max-width:460px;

background:#fff;

border-radius:24px;

overflow:hidden;

box-shadow:0 30px 80px rgba(0,0,0,.25);

animation:popup .35s ease;

}

.enquiry-header{

padding:30px;

text-align:center;

background:linear-gradient(135deg,#2563eb,#4f46e5);

color:#fff;

}

.enquiry-logo{

width:70px;

height:70px;

border-radius:18px;

background:#fff;

padding:8px;

margin-bottom:16px;

object-fit:contain;

}

.enquiry-header h2{

margin:10px 0 6px;

font-size:24px;

font-weight:700;

}

.enquiry-header p{

opacity:.9;

font-size:14px;

}

#enquiryForm{

padding:25px;

}

.form-group{

margin-bottom:18px;

}

.form-group label{

display:block;

margin-bottom:8px;

font-weight:600;

font-size:14px;

}

.form-group label span{

color:#ef4444;

}

.form-control{

width:100%;

height:50px;

padding:0 16px;

border:1px solid #dbe2ea;

border-radius:12px;

font-size:15px;

transition:.25s;

}

.form-control:focus{

outline:none;

border-color:#2563eb;

box-shadow:0 0 0 4px rgba(37,99,235,.12);

}

select.form-control{

cursor:pointer;

}

.enquiry-btn{

width:100%;

height:52px;

margin-top:10px;

border:none;

border-radius:14px;

background:linear-gradient(135deg,#2563eb,#4f46e5);

color:#fff;

font-size:16px;

font-weight:600;

cursor:pointer;

transition:.25s;

}

.enquiry-btn:hover{

transform:translateY(-2px);

box-shadow:0 14px 35px rgba(37,99,235,.35);

}

.enquiry-footer{

padding:18px;

text-align:center;

background:#f8fafc;

font-size:13px;

color:#64748b;

}

.enquiry-footer i{

color:#22c55e;

margin-right:6px;

}

@keyframes popup{

from{

opacity:0;

transform:translateY(25px) scale(.96);

}

to{

opacity:1;

transform:translateY(0) scale(1);

}

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

@media(max-width:600px){

.enquiry-card{

max-width:100%;

border-radius:20px;

}

.enquiry-header{

padding:24px;

}

#enquiryForm{

padding:20px;

}

}