.oxyz-contact-section {
    font-family: 'Poppins', sans-serif !important;
    padding: 80px 5vw;
    background-color: #ffffff;
}

.oxyz-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.oxyz-contact-left h2 {
    color: #137A54 !important;
    font-size: clamp(28px, 4vw, 42px) !important;
    font-weight: 700 !important;
    margin: 0 0 20px 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.oxyz-contact-left p {
    color: #CDB04A !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    margin: 0 0 40px 0 !important;
    font-weight: 400 !important;
}

.oxyz-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    background: #fbfbfb;
    padding: 16px 20px;
    border-radius: 12px;
}

.oxyz-info-icon {
    width: 54px;
    height: 54px;
    background-color: #FAF7EF !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.oxyz-info-icon svg {
    width: 24px !important;
    height: 24px !important;
    fill: none !important;
    background: transparent !important;
}

.oxyz-info-icon svg path,
.oxyz-info-icon svg rect,
.oxyz-info-icon svg circle {
    fill: none !important;
    stroke: #CDB04A !important;
    stroke-width: 2 !important;
}

.oxyz-info-text h4 {
    color: #137A54 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 0 4px 0 !important;
    text-transform: none !important;
}

.oxyz-info-text p, .oxyz-info-text a {
    color: #CDB04A !important;
    font-size: 16px !important;
    margin: 0 !important;
    text-decoration: none !important;
    font-weight: 400 !important;
}

.oxyz-info-text a:hover {
    text-decoration: underline !important;
}

/* Right card */
.oxyz-contact-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.oxyz-contact-card h3 {
    color: #137A54 !important;
    font-size: clamp(24px, 3vw, 32px) !important;
    font-weight: 700 !important;
    margin: 0 0 12px 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.oxyz-contact-card > p {
    color: #CDB04A !important;
    font-size: 16px !important;
    margin: 0 0 32px 0 !important;
    font-weight: 400 !important;
}

.oxyz-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.oxyz-form-group {
    margin-bottom: 20px;
}

.oxyz-form-group label {
    display: block !important;
    color: #137A54 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.oxyz-form-group label span {
    color: #137A54 !important;
}

.oxyz-form-group input,
.oxyz-form-group select,
.oxyz-form-group textarea {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    color: #333 !important;
    outline: none !important;
    transition: all 0.3s !important;
    background-color: #ffffff !important;
    box-shadow: none !important;
}

.oxyz-form-group input::placeholder,
.oxyz-form-group textarea::placeholder {
    color: #b0b0b0 !important;
}

.oxyz-form-group input:focus,
.oxyz-form-group select:focus,
.oxyz-form-group textarea:focus {
    border-color: #CDB04A !important;
    box-shadow: 0 0 0 3px rgba(205, 176, 74, 0.1) !important;
}

.oxyz-phone-input {
    display: flex;
    gap: 12px;
}

.oxyz-phone-input select {
    width: 38% !important;
}

.oxyz-phone-input input {
    width: 62% !important;
}

.oxyz-btn-submit {
    width: 100% !important;
    background-color: #CDB04A !important;
    color: #ffffff !important;
    border: none !important;
    padding: 16px !important;
    border-radius: 8px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: background-color 0.3s !important;
    margin-top: 10px !important;
    text-transform: none !important;
}

.oxyz-btn-submit svg {
    width: 20px !important;
    height: 20px !important;
    fill: none !important;
    stroke: currentColor !important;
}

.oxyz-btn-submit:hover {
    background-color: #b59b3f !important;
}

@media (max-width: 900px) {
    .oxyz-contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .oxyz-form-row {
        grid-template-columns: 1fr;
    }
    
    .oxyz-contact-card {
        padding: 24px;
    }
}
