.contact-section {
    padding: 64px 0 110px;
}

.contact-section .contact-header {
    margin-bottom: 48px;
}

.contact-section .contact-header .eyebrow {
    color: var(--text-muted-light);
}

.contact-section .contact-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.contact-section .contact-subtitle {
    font-size: 16px;
    color: #9fbbcf;
    max-width: 580px;
    line-height: 1.5;
}

.contact-section .contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Form Container Card */
.contact-section .contact-card {
    background: var(--card-bg-color);
    border-radius: 12px;
    padding: 40px;
}

.contact-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-section .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* Custom Dropdown Styling */
.contact-section .select-wrapper {
    position: relative;
}

.contact-section .select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-muted-light);
    pointer-events: none;
}

.contact-section .select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 36px;
    cursor: pointer;
}

.contact-section .form-disclaimer {
    font-size: 12px;
    color: var(--text-muted-light);
    line-height: 1.4;
}

.contact-section .btn-submit {
    align-self: flex-start;
}

/* Sidebar Info Styles */
.contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-section .info-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-section .info-block p {
    color: var(--text-muted-light);
    line-height: 1.6;
}

.contact-section .info-block a {
    color: var(--text-muted-light);
    transition: color 0.2s ease;
}

.contact-section .info-block a:hover {
    color: var(--primary-accent);
}

/* Contact Section Responsive Breakpoints */
@media (max-width: 1024px) {
    .contact-section .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 40px 0 64px;
    }

    .contact-section .contact-title {
        font-size: 32px;
    }

    .contact-section .contact-card {
        padding: 24px 20px;
    }

    .contact-section .form-row {
        grid-template-columns: 1fr;
    }

    .contact-section .btn-submit {
        width: 100%;
    }
}

.wpcf7-not-valid-tip {
    font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
    /* margin: 15px 0px 0px 0px; */
    margin: auto;
    color: white;
    font-size: 14px;
}

.wpcf7-spinner {
    margin: 0px;
}
/* .contact-section .contact-form{position:relative;}
.wpcf7-spinner {margin:0px; position:absolute; bottom:8px; left:165px;} */