.elementor-1325 .elementor-element.elementor-element-8d25dc4{--display:flex;}.elementor-1325 .elementor-element.elementor-element-29ce218{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-1c7c647 *//* Consultation Form Styles */
.consultation-form-wrapper {
    padding: 0;
    font-family: var(--e-global-typography-eaae402-font-family), Sans-serif;
}

.form-section {
    display: flex;
    flex-direction: column;
    margin-bottom: calc(32 * var(--unit));
}

.section-title {
    color: var(--Light-5, #BFC7D4);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: calc(14 * var(--unit));
    font-weight: 500;
}

.section-question {
    color: var(--Dark-3, #4D4D4D);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: calc(14 * var(--unit));
    font-weight: 500;
}

.form-row {
    display: flex;
    gap: calc(20 * var(--unit));
    
}

.email-form-row{
    margin-top: calc(20 * var(--unit));
}

.form-group {
    flex: 1;
}

.form-group-small {
    flex: 0 0 calc(200 * var(--unit));
}

.form-group-large {
    flex: 1;
}

.form-group-full {
    flex: 1;
}

/* Input Fields */
.consultation-form input[type="text"],
.consultation-form input[type="email"],
.consultation-form input[type="tel"],
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: calc(18 * var(--unit)) calc(8 * var(--unit)) calc(18 * var(--unit)) calc(32 * var(--unit));
    border: calc(1 * var(--unit)) solid #FFF;
    border-radius: calc(8 * var(--unit));
    color: var(--Dark-1, #657085);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: calc(15 * var(--unit));
    font-style: normal;
    font-weight: 400;
    line-height: 126.667%;
    letter-spacing: calc(-0.3 * var(--unit));
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.consultation-form select {
    background-image: url("https://sandbox-e.buost.asia/wp-content/uploads/2026/02/Drop-down-chevron.svg");
    background-repeat: no-repeat;
    background-position: right calc(18 * var(--unit)) center;
    cursor: pointer;
}

.consultation-form select option:first-child {
    color: #a0aec0;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: #a0aec0;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #CDAE78;
    box-shadow:none;
}

.consultation-form textarea {
    resize: vertical;
    min-height: calc(151 * var(--unit)) !important;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: calc(48 * var(--unit));
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--Dark-3, #4D4D4D);
font-feature-settings: 'liga' off, 'clig' off;
    font-size: calc(16 * var(--unit));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    letter-spacing: calc(-0.5 * var(--unit));
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: calc(40 * var(--unit));
    height: calc(40 * var(--unit));
    border: calc(1 * var(--unit)) solid #BFC7D4;
    border-radius: calc(10 * var(--unit));
    margin-right: calc(16 * var(--unit));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    background-color: #CDAE78;
    border-color: #CDAE78;
}

.radio-label:hover .radio-custom {
    border-color: #CDAE78;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '✓';
    color: #ffffff;
    font-size: calc(14 * var(--unit));
    font-weight: bold;
}

/* Upload Section */
.upload-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.upload-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: calc(160 * var(--unit));
    height: calc(48 * var(--unit));
    border-radius: calc(8 * var(--unit));
    border: calc(1 * var(--unit)) solid var(--Light-5, #BFC7D4);
    background: #ffffff00;
    color: var(--Dark-3, #4D4D4D);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: calc(14 * var(--unit));
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: all 0.5s ease;
}

.upload-btn:hover {
    border-color: #B6B6B6;
    background: #FFF;
    color: var(--Dark-4, #1D1D1D);
}

.photo-preview {
    display: flex;
    gap: calc(16 * var(--unit));
    flex-wrap: wrap;
}

.photo-preview-item {
    position: relative;
    width: calc(48 * var(--unit));
    height: calc(48 * var(--unit));
    border-radius: calc(8 * var(--unit));
}

.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(8 * var(--unit));
    border: 0px solid #e2e8f0;
}

.photo-remove-btn {
    position: absolute;
    top: calc(-6 * var(--unit));
    right: calc(-6 * var(--unit));
    width: calc(24 * var(--unit));
    height: calc(24 * var(--unit));
    background: #ef4444;
    border: calc(2 * var(--unit)) solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: calc(14 * var(--unit));
    font-weight: bold;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    line-height: 1;
    padding: 0;
}

.photo-preview-item:hover .photo-remove-btn {
    display: flex;
}

.photo-remove-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Submit Button */
.submit-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(56 * var(--unit));
    padding: 0px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: calc(8 * var(--unit));
    color: var(--Light-1, #FFF);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: calc(14 * var(--unit));
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: all 0.5s ease;
}

.consultation-form-submit-button-gd-layer{
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    border-radius: calc(8 * var(--unit));
    background: var(--GD, linear-gradient(90deg, #000 0%, #B17253 100%));
    transition: all 0.5s ease;
}


.submit-btn:hover .consultation-form-submit-button-gd-layer{
    opacity: 1;
}

.submit-button-text{
    z-index: 2;
}

.submit-btn:hover {
    background: #000;
    transform: translateY(0px);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}

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

.submit-btn:disabled {
    background: #00000;
    cursor: not-allowed;
    transform: none;
    opacity: 0.8;
}

/* Form Response Message */
.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-size: 15px;
}

.form-response.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-response.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group-small {
        flex: 1;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .radio-group {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .consultation-form-wrapper {
        padding: 20px 15px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-subtitle {
        font-size: 14px;
    }
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.loading .submit-btn::after {
    content: '...';
    animation: loading 1s infinite;
}

@keyframes loading {
    0%, 100% { content: '.'; }
    33% { content: '..'; }
    66% { content: '...'; }
}/* End custom CSS */