.elementor-1732 .elementor-element.elementor-element-72aff77{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:60px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:15px;--padding-right:15px;}.elementor-1732 .elementor-element.elementor-element-9b98e60{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1732 .elementor-element.elementor-element-645d5cb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1732 .elementor-element.elementor-element-0fc04e7{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 10px 0px;border-style:solid;border-width:0px 0px 1px 0px;border-color:var( --e-global-color-ee81a57 );}.elementor-1732 .elementor-element.elementor-element-3765fa6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-1732 .elementor-element.elementor-element-9b98e60{--width:20%;}}/* Start custom CSS for html, class: .elementor-element-89a8bb6 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.calc-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    display: flex;
    min-height: 50vh;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}        
.container {
    background: white;
    border-radius: 12px;
    border: 1px solid #dedede;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    min-height: 600px;
    display: flex;
}

/* Left Side - Tabs */
.tabs-sidebar {
    background: #000;
    width: 250px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tab-button {
    padding: 18px 30px !important;
    background: transparent !important;
    border: none;
    color: #95a5a6;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ecf0f1 !important;
    border-color: #000;
}

.tab-button.active {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff;
    border-left-color: #b1002d;
    font-weight: 600;
}

.tab-button::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #95a5a6 !important;
    margin-left: -18px;
    transition: all 0.3s ease;
}

.tab-button.active::before {
    background: #b1002d !important;
    box-shadow: 0 0 10px #b1002d;
}

.tab-button.completed::before {
    background: #27ae60 !important;
    content: '✓';
    font-size: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Side - Content */
.content-area {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 400;
}

.tab-content p {
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Form Styling */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b1002d;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

/* Buttons */
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 50px;
    justify-content: flex-end;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #b1002d;
    color: white;
}

.btn-primary:hover {
    background: #8e0024;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ecf0f1 !important;
    color: #2c3e50 !important;
}

.btn-secondary:hover {
    background: #d5dbdb !important;
}

.btn-success {
    background: #b1002d;
    color: white;
}

.btn-success:hover {
    background: #8e0024;
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Radio/Checkbox Styling */
.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #b1002d;
}

.radio-option input[type="radio"]:focus,
.checkbox-option input[type="checkbox"]:focus {
    outline: none;
}

/* Extra large vertical radio buttons for subscription */
.radio-group-horizontal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.radio-group-horizontal .radio-option {
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.radio-group-horizontal input[type="radio"] {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.radio-group-horizontal label {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

/* Progress Indicator */
.progress-bar {
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #b1002d;
    transition: width 0.3s ease;
}

/* Review Section */
.review-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-label {
    color: #7f8c8d;
    font-weight: 500;
}

.review-value {
    color: #2c3e50;
}

.success-message {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .tabs-sidebar {
        width: 100%;
        padding: 20px 0;
        flex-direction: row;
        overflow-x: auto;
    }

    .tab-button {
        white-space: nowrap;
        border-left: none;
        border-bottom: 4px solid transparent;
    }

    .tab-button.active {
        border-left: none;
        border-bottom-color: #b1002d;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .progress-bar {
        display: none;
    }

    /* Stack image grids on mobile */
    .tab-content > form > div[style*="grid"] {
        display: block !important;
    }

    .tab-content > form > div[style*="grid"] > div {
        width: 100% !important;
    }
}/* End custom CSS */