.contact-card-container {
    position: relative;
}

.contact-card {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contact-left {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.contact-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact-left-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 224, 255, 0.95) 0%, rgba(245, 243, 255, 0.7) 100%);
    z-index: 1;
}

.contact-left-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 3rem;
}

.contact-left-content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(180, 29, 245, 0.1);
    margin-bottom: 1.5rem;
}

.fast-response-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.fast-response-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(180deg, #4A2FEB 0%, #B62FD6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-form-section {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 700;
    font-size: 0.875rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    display: block;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8307DE;
    /* Updated purple */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #F6F3F4;
    border-radius: 7px;
}

.form-control-custom {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3.5rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 0.9375rem;
    color: #4A5568;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: #B41DF5;
    box-shadow: 0 0 0 3px rgba(180, 29, 245, 0.1);
}

.textarea-icon {
    top: 0.75rem;
    left: 0.6rem;
    transform: none;
}

textarea.form-control-custom {
    resize: none;
}

.form-submit-btn {
    width: 100%;
    background: #B41DF5;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #9016c6;
}

.safe-text {
    font-size: 0.75rem;
    color: #718096;
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

/* Helper classes replacing inline styles */
.contact-hero-title {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

.contact-heading {
    font-size: var(--font-size-36);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.max-w-600 {
    max-width: 600px;
}

.max-w-250 {
    max-width: 250px;
}

@media (max-width: 991.98px) {
    .contact-hero-title {
        font-size: 3rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .contact-left-content {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-form-section {
        padding: 1.5rem 1rem;
    }
}