body {
    font-family: 'Segoe UI', sans-serif;
    background: #f3f6fa;
}

/* Hero Section */
.contact-hero {
    height: 40vh;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

/* Card */
.contact-card { 
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: fadeIn 0.6s ease-in-out;
}

/* Left Side */
.contact-info {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
}

/* Inputs */
.custom-input {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ddd;
}

.custom-input:focus {
    border-color: #2a5298;
    box-shadow: 0 0 5px rgba(42,82,152,0.3);
}

/* Button */
.btn-custom {
    background: #2a5298;
    color: #fff;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-custom:hover {
    background: #1e3c72;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 2rem;
    }
    .contact-card {
        padding: 2rem;
    }
}