.contact-hero{
    padding:70px 0 50px;
    background:linear-gradient(135deg,#f8fafc 0%,#eef4ff 100%);
    border-bottom:1px solid #e2e8f0;
}

.contact-hero-content{
    max-width:760px;
    text-align:center;
    margin:auto;
}

.contact-eyebrow{
    display:inline-flex;
    padding:7px 15px;
    border-radius:999px;
    background:#dbeafe;
    color:#2563eb;
    font-size:12px;
    font-weight:800;
    margin-bottom:14px;
}

.contact-hero h1{
    font-size:46px;
    font-weight:900;
    color:#0f172a;
    margin-bottom:14px;
}

.contact-hero p{
    font-size:15px;
    color:#64748b;
    line-height:1.8;
}

.contact-section{
    padding:70px 0;
    background:#f8fafc;
}

.contact-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:28px;
}

.contact-form-card,
.contact-map-card,
.contact-info-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
}

.contact-form-card{
    padding:30px;
}

.contact-card-header{
    margin-bottom:28px;
}

.contact-card-header h2{
    font-size:30px;
    font-weight:900;
    color:#0f172a;
    margin-bottom:10px;
}

.contact-card-header p{
    color:#64748b;
    font-size:14px;
    line-height:1.7;
}

.contact-alert{
    padding:14px 18px;
    border-radius:14px;
    margin-bottom:22px;
    font-size:14px;
    font-weight:700;
}

.contact-alert.success{
    background:#dcfce7;
    color:#166534;
}

.contact-alert.error{
    background:#fee2e2;
    color:#b91c1c;
}

.contact-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.contact-field{
    margin-bottom:20px;
}

.contact-field label{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:800;
    color:#0f172a;
}

.contact-field input,
.contact-field textarea{
    width:100%;
    border:1px solid #dbe3ec;
    border-radius:16px;
    padding:14px 16px;
    background:#fff;
    font-size:14px;
    color:#111827;
    transition:.2s ease;
}

.contact-field textarea{
    resize:none;
}

.contact-field input:focus,
.contact-field textarea:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.08);
}

.contact-submit-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:16px;
    background:#2563eb;
    color:#fff;
    font-size:14px;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    cursor:pointer;
    transition:.25s ease;
}

.contact-submit-btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

.contact-info-side{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-info-card{
    padding:22px;
    display:flex;
    align-items:flex-start;
    gap:16px;
}

.contact-info-icon{
    width:54px;
    height:54px;
    border-radius:16px;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-info-card h3{
    font-size:18px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:6px;
}

.contact-info-card p{
    color:#64748b;
    font-size:14px;
    line-height:1.7;
    margin:0;
}

.contact-map-card{
    overflow:hidden;
    height:320px;
}

.contact-map-card iframe{
    width:100%;
    height:100%;
    border:none;
}

@media(max-width:992px){

    .contact-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .contact-section{
        padding:50px 0;
    }

    .contact-hero{
        padding:50px 0 40px;
    }

    .contact-hero h1{
        font-size:34px;
    }

    .contact-form-grid{
        grid-template-columns:1fr;
    }

    .contact-form-card{
        padding:22px;
    }
}