/* Contact Page Styles */

.contact-hero {
    background: linear-gradient(135deg, #0A2463 0%, #1e3c72 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 15px; }
.contact-hero p { font-size: 1.1rem; opacity: 0.8; }

.contact-page-main { padding: 80px 0; background: #fff; }

.unified-contact-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(10,36,99,0.08);
    overflow: hidden;
    border: 1px solid #f0f4f8;
}

.contact-info-panel {
    background: linear-gradient(135deg, #0A2463 0%, #1e3c72 100%);
    color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
}

.contact-info-panel h3 { font-size: 1.8rem; margin-bottom: 20px; }
.contact-info-panel p { opacity: 0.7; margin-bottom: 40px; line-height: 1.6; }

.info-details { margin-bottom: 50px; }
.info-item-v2 { display: flex; gap: 20px; margin-bottom: 30px; }
.icon-box {
    width: 46px; height: 46px; background: rgba(255,255,255,0.1);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-item-v2 label { display: block; font-size: 0.8rem; opacity: 0.6; margin-bottom: 3px; }
.info-item-v2 strong { font-size: 1rem; font-weight: 600; }

.social-v2 { display: flex; gap: 15px; margin-top: auto; }
.social-v2 a {
    width: 44px; height: 44px; background: rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: 0.3s; color: white;
}
.social-v2 a:hover { background: var(--primary-light); transform: translateY(-3px); }

.contact-form-panel { padding: 60px; }
.form-header { margin-bottom: 45px; }
.form-header h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 10px; }
.form-header p { color: #888; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 25px; }
.field { margin-bottom: 25px; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; color: #444; margin-bottom: 10px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 16px 20px; border: 2px solid #f1f5f9; border-radius: 16px;
    font-family: inherit; transition: 0.3s; outline: none; background: #fbfcfe;
}
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--primary-light); background: #fff; box-shadow: 0 10px 20px rgba(62, 146, 204, 0.05);
}

.btn-submit {
    width: 100%; padding: 20px; background: var(--primary); color: white;
    border: none; border-radius: 18px; font-weight: 700; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    cursor: pointer; transition: 0.4s; box-shadow: 0 20px 40px rgba(10,36,99,0.15);
}
.btn-submit:hover { transform: translateY(-4px); box-shadow: 0 25px 50px rgba(10,36,99,0.25); background: #1e3c72; }

.map-section { padding: 100px 0; background: #f8fafc; }
.map-wrapper { margin-top: 50px; border-radius: 30px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.1); border: 8px solid #fff; }

@media (max-width: 992px) {
    .contact-hero h1 { font-size: 2rem; }
    .form-header h2 { font-size: 1.6rem; }
    .unified-contact-card { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .contact-info-panel, .contact-form-panel { padding: 40px 25px; }
}
