.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-weight: 700;
    color: #292984;
    margin-bottom: 15px;
}

.contact-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

.contact-form {
    padding: 40px;
    background: white;
}

.form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #e1e5ee;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #292984;
    box-shadow: 0 0 0 0.25rem rgba(41, 41, 132, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.btn-send {
    background: #292984;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background: #1e1f6b;
    transform: translateY(-2px);
}

.contact-info {
    padding: 40px;
    background: linear-gradient(135deg, #292984 0%, #1e1f6b 100%);
    color: white;
    height: 100%;
}

.contact-info h3 {
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-details {
    margin-bottom: 30px;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: white;
    padding-left: 5px;
}

.social-links p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: white;
    color: #292984;
    transform: translateY(-3px);
}

/* Recaptcha Styling */
.g-recaptcha {
    margin-bottom: 20px;
}

.recaptcha-container{
    max-width: 50%;
    margin: 0 auto;
}

@media (max-width: 768px) {

    .contact-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .recaptcha-container{
        max-width: 100%;
        margin: 0 auto;
    }

    .contact-info {
        padding: 20px;
    }
}
