.contact-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), 
                url('/images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
    text-align: center;
}

.contact-card-wrapper {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border: 1px solid #e2e8f0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(242,107,58,0.05);
}

.contact-info-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-info-text p, .contact-info-text a {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-form-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.contact-form-box .form-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.contact-form-box .form-control {
    border: 2px solid #edf2f7;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.contact-form-box .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15,43,76,0.1);
    background: white;
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.02);
}
