/* --- Contact Page Styles --- */
.contact-wrapper {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-card {
    border: none;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    padding: 40px;
}

.contact-info-box {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    border-radius: 24px;
    padding: 40px;
    color: white;
    height: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
}

/* Modern Form Inputs */
.form-control-tech {
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    padding: 15px 20px;
    font-weight: 600;
    color: #1e293b;
    transition: 0.3s;
}

.form-control-tech:focus {
    background: #fff;
    border-color: #4F46E5;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.1);
    outline: none;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 50px;
    height: 400px;
}

@media (max-width: 991px) {
    .contact-card { padding: 25px; }
}