/********** Contact Section CSS **********/
.contact-section {
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(185, 46, 65, 0.05);
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(185, 46, 65, 0.05);
    z-index: 0;
}

.contact-form-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 1;
}

.contact-form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(185, 46, 65, 0.15);
}

.contact-form-header {
    background: linear-gradient(135deg, var(--primary) 0%, #d63384 100%);
    padding: 30px;
    text-align: center;
    color: white;
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper i {
    font-size: 36px;
    color: var(--primary);
}

.contact-form-header h4 {
    margin-bottom: 0;
    font-weight: 700 !important;
    color: white;
}

.contact-form {
    padding: 40px;
}

.form-floating>.form-control {
    padding: 1.5rem 1rem;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-floating>textarea.form-control {
    height: auto;
    min-height: 150px;
    resize: none;
}

.form-floating>.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.form-floating>label {
    padding: 1rem 1rem;
    color: #6c757d;
}

.btn-send-message {
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    border: none;
    color: white;
    background: linear-gradient(135deg, var(--primary) 0%, #d63384 100%);
}

.btn-send-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #d63384 0%, var(--primary) 100%);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-send-message:hover::before {
    width: 100%;
}

.btn-send-message:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(185, 46, 65, 0.3);
    color: white;
}

/* Contact Form Responsive */
@media (max-width: 767.98px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form-header {
        padding: 25px 15px;
    }
    
    .contact-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .contact-icon-wrapper i {
        font-size: 30px;
    }
}