.contact-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.contact-info-card {
    padding: 40px;
    background-color: var(--light-gray);
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-form {
    padding: 40px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-blue);
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 4px;
    background-color: var(--primary-color);
}

.info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.info-icon {
    color: var(--primary-color);
    font-size: 22px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(10, 236, 51, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-content h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-blue);
}

.info-content p {
    margin-bottom: 0;
    color: var(--text-black);
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--soft-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.form-control {
    height: 55px;
    padding: 0 20px;
    border: 1px solid var(--soft-gray);
    border-radius: 10px;
    margin-bottom: 20px;
    font-family: var(--font-family);
}

textarea.form-control {
    height: 150px;
    padding: 15px 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 12px 30px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    color: white;
}

.map-container {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.location-pin {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-cta {
    background-color: var(--dark-blue);
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
    color: white;
    text-align: center;
}

.contact-cta h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-cta .btn {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-cta .btn:hover {
    background-color: white;
    color: var(--dark-blue);
    transform: translateY(-3px);
}

/* Success and Error Message Styles */
.form-message {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.form-message i {
    margin-right: 12px;
    font-size: 18px;
}

.form-message span {
    flex: 1;
}

.form-message-success {
    background-color: rgba(10, 236, 51, 0.1);
    border: 2px solid #0aec33;
    color: #012641;
}

.form-message-success i {
    color: #0aec33;
}

.form-message-error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    color: #721c24;
}

.form-message-error i {
    color: #dc3545;
}

.message-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.message-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.message-close i {
    font-size: 14px !important;
    margin: 0 !important;
}

/* Loading state for submit button */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Form validation styles */
.form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.success {
    border-color: #0aec33;
    box-shadow: 0 0 0 0.2rem rgba(10, 236, 51, 0.25);
}


@media (max-width: 768px) {

    .contact-info-card,
    .contact-form {
        margin-bottom: 30px;
    }
}


/* Section Titles */
.faq-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.faq-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.faq-section {
    padding: 60px 0;
    background-color: #eaeaea;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-header button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.accordion-header button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--light-gray);
}