/* Contact Us Form Styles */
.cu-form-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 32px 18px;
    background: #ffffff;
    border-radius: 8px;
}

.cu-form {
    width: 100%;
}

.cu-form-section {
    margin-bottom: 28px;
}

.cu-form-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.cu-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .cu-form-row {
        grid-template-columns: 1fr;
    }
}

.cu-form-field {
    width: 100%;
}

.cu-form-field input[type="text"],
.cu-form-field input[type="email"],
.cu-form-field input[type="tel"],
.cu-form-field select,
.cu-form-field textarea {
    width: 100%;
    font-size: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #ffffff;
    transition: border-color 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    line-height: 1.5;
    min-height: 46px;
    padding: 12px 14px;
}

.cu-form-field input[type="text"]:focus,
.cu-form-field input[type="email"]:focus,
.cu-form-field input[type="tel"]:focus,
.cu-form-field select:focus,
.cu-form-field textarea:focus {
    outline: none;
    border-color: #fd7546;
}

.cu-form-field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.cu-form-field select option {
    padding: 8px;
    color: #333333;
}

.cu-form-field textarea {
    resize: vertical;
    min-height: 130px;
}

.cu-form-submit {
    margin-top: 24px;
    text-align: right;
}

.cu-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: #fd7546;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cu-submit-btn:hover {
    background: #e8683c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(253, 117, 70, 0.25);
}

.cu-submit-btn:active {
    transform: translateY(0);
}

.cu-submit-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.cu-submit-btn svg {
    transition: transform 0.25s ease;
}

.cu-submit-btn:hover svg {
    transform: translateX(3px);
}

.cu-form-message {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.cu-form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.cu-form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

@media (max-width: 600px) {
    .cu-form-container {
        padding: 22px 14px;
    }
    .cu-form-submit {
        text-align: center;
    }
    .cu-submit-btn {
        width: 100%;
        justify-content: center;
    }
}
