/* =====================
   Contact Page Styles
   ===================== */

.contact-hero {
    position: relative;
    height: 420px;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80') center center / cover no-repeat;
    display: flex;
    align-items: flex-end;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(5,15,30,0.88));
}

.contact-main {
    background: #f0f5fb;
}

/* Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.ci-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid #e8eef6;
    transition: 0.3s ease;
}

.ci-card:hover {
    border-color: #0c5db9;
    box-shadow: 0 6px 20px rgba(12,93,185,0.1);
}

.ci-icon {
    width: 48px;
    height: 48px;
    background: #0c5db9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-card h5 {
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ci-card a,
.ci-card span {
    font-size: 14px;
    color: #0d1b2a;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
}

.ci-card a:hover {
    color: #0c5db9;
}

/* Social */
.contact-social-btn {
    width: 44px;
    height: 44px;
    background: #0c5db9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-social-btn:hover {
    background: #094a92;
    color: white;
    transform: scale(1.1);
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
    border: 1px solid #e8eef6;
}

.contact-form-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0d1b2a;
}

.contact-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-input {
    width: 100%;
    background: #f7f9fc;
    border: 1px solid #e8eef6;
    border-radius: 10px;
    padding: 13px 16px;
    color: #0d1b2a;
    font-size: 14px;
    transition: 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    font-family: 'Inter Tight', sans-serif;
}

.contact-input:focus {
    border-color: #0c5db9;
    background: white;
    box-shadow: 0 0 0 3px rgba(12,93,185,0.1);
}

.contact-textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit-btn {
    background: #0c5db9;
    color: white;
    border: none;
    padding: 15px 36px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: 'Inter Tight', sans-serif;
}

.contact-submit-btn:hover {
    background: #094a92;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12,93,185,0.35);
}

/* Map */
.contact-map iframe {
    display: block;
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 24px 18px;
    }
}
