/* Banner */
.contact-banner {
    height: 35vh;
    background: linear-gradient(rgba(0, 34, 102, 0.85), rgba(0, 34, 102, 0.85)), 
                url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1500');
    background-size: cover;
    background-position: center;
}

/* İletişim Kartları */
.info-card {
    background: #fff;
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 51, 153, 0.1) !important;
}

.icon-box-small {
    width: 45px;
    height: 45px;
    background: #eef2ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* Form Tasarımı */
.form-container {
    background-color: #fcfdfe;
}

.form-control {
    padding: 15px;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    box-shadow: 0 10px 20px rgba(0, 51, 153, 0.05) !important;
    background: #fff !important;
    border: 1px solid var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    transition: 0.4s;
}

.btn-primary:hover {
    background-color: #002266;
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-banner { height: 25vh; }
    .form-container { padding: 2rem !important; }
}