.contact-section {
    position: relative;
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--contact-bg);
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.contact-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 51, 75, 0.72);
    z-index: -1;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.contact-left {
    flex: 1;
    min-width: 320px;
    max-width: 477px;
}

.contact-header {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-header-border {
    width: 4px;
    background-color: #DD2021;
    flex-shrink: 0;
}

.contact-header-text p {
    margin: 0;
}

.contact-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 6px !important;
}

.contact-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.contact-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 30px;
}

.contact-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-item strong {
    color: #fff;
    font-weight: 700;
}

.contact-info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon img {
    max-width: 100%;
    max-height: 100%;
    filter: brightness(0) invert(1);
}

.contact-right {
    flex: 1;
    min-width: 320px;
    max-width: 630px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: flex;
    gap: 20px;
}

.contact-form-row > * {
    flex: 1;
}

.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
    color: rgba(38, 38, 38, 0.4);
    outline: none;
    font-family: inherit;
}

.contact-select {
    height: 60px;
    color: rgba(42, 42, 42, 0.89);
    appearance: none;
    background-image: url('../smallarrowdown.svg');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-color: #fff;
    padding-right: 40px;
}

.contact-textarea {
    height: 160px;
    padding: 20px;
    resize: none;
}

.contact-form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.contact-btn {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
    transform-origin: left;
}

.contact-btn:hover {
    transform: scale(1.1);
}

.contact-btn-primary {
    background-color: #ff9500;
    color: #fff;
}

.contact-btn-primary:hover {
    background-color: #e68600;
}

.contact-btn-outline {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
}

.contact-btn-outline:hover {
    background-color: #007BC1;
}

.contact-or {
    font-size: 16px;
    color: #fff;
}
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (max-width: 991px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-left, .contact-right {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }

    .contact-info-item {
        font-size: 14px;
        align-items: flex-start;
    }

    .contact-info-item p {
        margin: 0;
        word-break: break-word;
    }

    .contact-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form {
        gap: 12px;
    }

    .contact-select {
        height: 48px;
    }

    .contact-textarea {
        height: 100px;
        padding: 12px 15px;
    }

    .contact-btn {
        height: 48px;
    }

    .contact-title {
        font-size: 22px;
    }

    .contact-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
}
