      /* Calculator Styles - Optimized for Mobile */
        .calculator-wrapper {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
        }
        
        .calculator-header-custom {
            background: linear-gradient(135deg, #4CAF50, #8BC34A);
            color: white;
            padding: 30px 20px;
            text-align: center;
        }
        
        .calculator-header-custom h1 {
            font-size: 24px;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .calculator-header-custom p {
            opacity: 0.95;
            font-size: 15px;
            line-height: 1.5;
        }
        
        /* Progress Bar */
        .progress-container {
            background: #f5f5f5;
            padding: 25px 15px;
            position: relative;
            overflow-x: auto;
        }
        
        .progress-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            min-width: 600px;
            margin: 0 auto;
        }
        
        .progress-line {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 4px;
            background: #ddd;
            z-index: 0;
        }
        
        .progress-line-fill {
            height: 100%;
            background: linear-gradient(90deg, #4CAF50, #8BC34A);
            transition: width 0.4s ease;
            width: 0%;
        }
        
        .progress-step {
            position: relative;
            z-index: 1;
            text-align: center;
            flex: 1;
        }
        
        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: 3px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            font-weight: bold;
            color: #999;
            transition: all 0.3s;
        }
        
        .progress-step.active .step-circle {
            border-color: #4CAF50;
            color: #4CAF50;
            transform: scale(1.1);
        }
        
        .progress-step.completed .step-circle {
            background: #4CAF50;
            border-color: #4CAF50;
            color: white;
        }
        
        .step-label {
            font-size: 11px;
            color: #666;
            font-weight: 500;
        }
        
        /* Calculator Content */
        .calculator-content {
            padding: 30px 20px;
        }
        
        .calculator-step {
            display: none;
            animation: fadeIn 0.5s;
        }
        
        .calculator-step.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .step-title {
            font-size: 22px;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .step-subtitle {
            color: #666;
            margin-bottom: 25px;
            font-size: 15px;
            line-height: 1.5;
        }
        
        /* Checkbox Items - MOBILE OPTIMIZED */
        .checkbox-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            margin: 20px 0;
        }
        
        .checkbox-item {
            position: relative;
            padding: 18px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #fafafa;
            -webkit-tap-highlight-color: transparent;
        }
        
        .checkbox-item:active {
            transform: scale(0.98);
        }
        
        .checkbox-item:hover {
            border-color: #4CAF50;
            background: white;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
        }
        
        .checkbox-item.selected {
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            border-color: #4CAF50;
            color: white;
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
        }
        
        .checkbox-item input[type="checkbox"],
        .checkbox-item input[type="radio"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }
        
        .checkbox-content {
            position: relative;
            padding-left: 35px;
        }
        
        .checkbox-content::before {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            width: 22px;
            height: 22px;
            border: 2px solid #4CAF50;
            border-radius: 6px;
            background: white;
            transition: all 0.3s;
        }
        
        .checkbox-item.selected .checkbox-content::before {
            background: white;
            border-color: white;
        }
        
        .checkbox-content::after {
            content: '✓';
            position: absolute;
            left: 4px;
            top: 1px;
            transform: scale(0);
            color: #4CAF50;
            font-weight: bold;
            font-size: 16px;
            transition: transform 0.3s;
        }
        
        .checkbox-item.selected .checkbox-content::after {
            transform: scale(1);
        }
        
        .checkbox-title {
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 4px;
            line-height: 1.3;
        }
        
        .checkbox-description {
            font-size: 13px;
            opacity: 0.8;
            line-height: 1.4;
        }
        
        .checkbox-item.selected .checkbox-description {
            opacity: 0.95;
        }
        
        /* Info Cards - MOBILE OPTIMIZED */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin: 20px 0;
        }
        
        .info-card {
            padding: 20px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            background: #fafafa;
            text-align: center;
            -webkit-tap-highlight-color: transparent;
        }
        
        .info-card:active {
            transform: scale(0.95);
        }
        
        .info-card:hover {
            border-color: #4CAF50;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
        }
        
        .info-card.selected {
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            color: white;
            border-color: #4CAF50;
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
        }
        
        .info-card h4 {
            font-size: 16px;
            margin-bottom: 6px;
        }
        
        .info-card p {
            font-size: 14px;
            margin: 4px 0;
        }
        
        .info-card small {
            font-size: 12px;
            opacity: 0.8;
        }
        
        /* Form Inputs - MOBILE OPTIMIZED */
        .input-group {
            margin: 20px 0;
        }
        
        .input-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
            font-size: 15px;
        }
        
        .form-input {
            width: 100%;
            padding: 14px 14px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
            font-family: inherit;
            -webkit-appearance: none;
        }
        
        .form-input:focus {
            border-color: #4CAF50;
            outline: none;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
        }
        
        .input-help {
            color: #666;
            font-size: 13px;
            margin-top: 6px;
            display: block;
            line-height: 1.4;
        }
        
        textarea.form-input {
            resize: vertical;
            min-height: 100px;
        }
        
        /* Dynamic Content */
        .dynamic-section {
            display: none;
            margin-top: 25px;
            padding: 20px;
            background: #f0f7ff;
            border-radius: 12px;
            border-left: 4px solid #2196F3;
            animation: slideDown 0.4s ease;
        }
        
        .dynamic-section.active {
            display: block;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                max-height: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                max-height: 1000px;
                transform: translateY(0);
            }
        }
        
        .dynamic-section h4 {
            color: #2196F3;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
        }
        
        /* Info Box */
        .info-box {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .info-box i {
            color: #ff9800;
            margin-right: 8px;
        }
        
        /* Budget Slider */
        .budget-range {
            margin: 25px 0;
        }
        
        .budget-slider {
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: #ddd;
            outline: none;
            -webkit-appearance: none;
            cursor: pointer;
        }
        
        .budget-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #4CAF50;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        
        .budget-slider::-moz-range-thumb {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #4CAF50;
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        
        .budget-display {
            font-size: 28px;
            font-weight: bold;
            color: #4CAF50;
            text-align: center;
            margin: 15px 0;
        }
        
        /* Buttons - MOBILE OPTIMIZED */
        .button-group {
            display: flex;
            gap: 12px;
            margin-top: 30px;
            justify-content: space-between;
        }
        
        .btn-nav {
            padding: 14px 24px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            -webkit-tap-highlight-color: transparent;
        }
        
        .btn-nav:active {
            transform: scale(0.96);
        }
        
        .btn-prev {
            background: #f5f5f5;
            color: #333;
            min-width: 100px;
        }
        
        .btn-prev:hover {
            background: #e0e0e0;
        }
        
        .btn-next {
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            color: white;
            flex: 1;
        }
        
        .btn-next:hover:not(:disabled) {
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
        }
        
        .btn-next:disabled {
            background: #ccc;
            cursor: not-allowed;
            opacity: 0.6;
        }
        
        /* Price Display */
        .price-range-display {
            background: linear-gradient(135deg, #4CAF50, #8BC34A);
            color: white;
            padding: 25px 20px;
            border-radius: 15px;
            text-align: center;
            margin: 25px 0;
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
        }
        
        .price-range-text {
            font-size: 16px;
            margin-bottom: 12px;
            opacity: 0.95;
            line-height: 1.4;
        }
        
        .price-range-value {
            font-size: 32px;
            font-weight: bold;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 15px 0;
        }
        
        .benefits-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .benefits-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4CAF50;
            font-weight: bold;
            font-size: 18px;
        }
        
        .urgency-banner {
            background: linear-gradient(135deg, #ff5722, #ff7043);
            color: white;
            padding: 18px;
            border-radius: 12px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 5px 20px rgba(255, 87, 34, 0.3);
        }
        
        .urgency-banner h3 {
            margin: 0 0 8px 0;
            font-size: 18px;
        }
        
        .urgency-banner p {
            margin: 0;
            font-size: 14px;
        }
        
        .contact-form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
            margin: 20px 0;
        }
        
        .full-width {
            grid-column: 1 / -1;
        }
        
        .btn-contact {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            -webkit-tap-highlight-color: transparent;
        }
        
        .btn-contact:active {
            transform: scale(0.98);
        }
        
        .btn-contact:hover {
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        }
        
        /* Responsive Optimizations */
        @media (min-width: 600px) {
            .info-cards {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .checkbox-list {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-form-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .step-title {
                font-size: 19px;
            }
            
            .calculator-header-custom h1 {
                font-size: 26px;
            }
            
            .price-range-value {
                font-size: 38px;
            }
        }
        
        @media (min-width: 768px) {
            .calculator-content {
                padding: 40px 35px;
            }
            
            .calculator-header-custom {
                padding: 40px 30px;
            }
            
            .progress-container {
                padding: 30px 20px;
            }
            
            .step-title {
                font-size: 26px;
            }
            
            .calculator-header-custom h1 {
                font-size: 28px;
            }
            
            .info-cards {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (max-width: 703px) {
			.progress-steps {display:none!important}
			
		}
        @media (max-width: 599px) {
            .progress-container {
                overflow-x: scroll;
                -webkit-overflow-scrolling: touch;
            }
            
            .info-card {
                padding: 16px 12px;
            }
            
            .info-card h4 {
                font-size: 14px;
            }
            
            .info-card p {
                font-size: 13px;
            }
            
            .info-card small {
                font-size: 11px;
            }
            
            .budget-display {
                font-size: 24px;
            }
        }
		/* Force: label on 1st line, input on 2nd, help on 3rd. Only for text-like inputs */
.calculator-content .input-group,
.contact-form-grid .input-group{
  display:flex !important;
  flex-direction:column !important;
  align-items:stretch !important;
  gap:4px !important;
}

/* Elements inside the group */
.calculator-content .input-group > label,
.calculator-content .input-group > .form-input,
.calculator-content .input-group > input:not([type="checkbox"]):not([type="radio"]),
.calculator-content .input-group > select,
.calculator-content .input-group > textarea,
.calculator-content .input-group > .input-help,
.calculator-content .input-group > small{
  display:block !important;
  float:none !important;
  width:100% !important;
  margin:0 !important;
  box-sizing:border-box;
}

/* Make inputs smaller */
.calculator-content .input-group input:not([type="checkbox"]):not([type="radio"]),
.calculator-content .input-group select,
.calculator-content .input-group textarea,
.calculator-content .input-group .form-input{
  padding:8px 10px !important;
  font-size:14px !important;
  border-radius:6px !important;
  min-height:36px !important;
}

.calculator-content .input-group textarea{ min-height:80px !important; }
.calculator-content .input-group label{ font-size:13px !important; font-weight:600; }
.calculator-content .input-group small,
.calculator-content .input-group .input-help{ font-size:12px !important; color:#666; }
.price-range-display {display:none!important}