.removals-calculator-wrapper {
    position: relative;
    overflow: visible;
    height: 800px;
    transition: height 0.6s ease;
    box-sizing: border-box;
    display: grid;
    place-items: center;
    padding: 40px 20px;
}

/* Glass panel container that wraps each stage */
.removals-form,
.results-section,
.error-section {
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 40px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.08);
    width: 100%;
    max-width: 520px;
    padding: 28px;
    color: #f5f6f8;
}

.removals-form h2,
.results-section h3 {
    margin: 0 0 40px 0;
    font-size: 28px;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 0.2px;
    text-align: center;
}

.form-minimised .removals-form {
    transform: scale(0.85) translateY(-80px);
    opacity: 0.8;
}

/* Two-column layout for first section inputs */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 35px;
}

.form-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #e9ecf2;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 105, 180, 0.4);
    border-radius: 14px;
    font-size: 16px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, border-radius 0.15s ease;
    box-sizing: border-box;
    color: #f5f6f8;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
}

/* Placeholder text styling */
.form-group input::placeholder,
.form-group select::placeholder {
    color: #ffffff;
    opacity: 0.8;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 105, 180, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.3), 0 0 20px rgba(255, 105, 180, 0.4), 0 8px 24px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.09);
}

/* Dropdown specific styling - only when focused */
.form-group select:focus {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.form-group select option {
    background: rgba(255,255,255,0.06);
    color: #f5f6f8;
    padding: 10px;
}

/* Contact Row Layout */
.contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.contact-field {
    flex: 1;
}

.contact-field label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #e9ecf2;
}

.contact-field input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 105, 180, 0.4);
    border-radius: 14px;
    font-size: 16px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    box-sizing: border-box;
    color: #f5f6f8;
    background: rgba(255,255,255,0.06);
}

.contact-field input::placeholder {
    color: #ffffff;
    opacity: 0.8;
}

.contact-field input:focus {
    outline: none;
    border-color: rgba(255, 105, 180, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.3), 0 0 20px rgba(255, 105, 180, 0.4), 0 8px 24px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.09);
}

.contact-or {
    font-weight: 600;
    color: #666;
    font-size: 14px;
    padding: 0 10px;
    white-space: nowrap;
}

/* Radio Button Styles */
.radio-group-label {
    font-weight: 600;
    color: #e9ecf2;
    margin-bottom: 20px;
    display: block;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 14px;
    border: 1px solid rgba(255, 105, 180, 0.4);
    border-radius: 14px;
    transition: all 0.25s ease;
    background: rgba(255,255,255,0.06);
}

.radio-option:hover {
    border-color: rgba(255, 105, 180, 0.8);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.25s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #ff69b4;
    background: linear-gradient(180deg, #ff69b4 0%, #ff1493 100%);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.25), 0 0 15px rgba(255, 105, 180, 0.4);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-option input[type="radio"]:checked ~ span {
    color: #ffffff;
    font-weight: 600;
}

/* Privacy Notice */
.privacy-notice {
    background: rgba(0, 124, 186, 0.15);
    border: 1px solid rgba(0,124,186,0.35);
    border-radius: 14px;
    padding: 14px;
    margin: 30px 0;
    color: #d9eefc;
}

.privacy-notice p {
    margin: 0;
    font-size: 14px;
}

/* Guide Notice - matching privacy notice style */
.guide-notice {
    background: rgba(0, 124, 186, 0.15);
    border: 1px solid rgba(0,124,186,0.35);
    border-radius: 14px;
    padding: 14px;
    margin: 30px 0;
    color: #d9eefc;
}

.guide-notice p {
    margin: 0;
    font-size: 14px;
}

/* Success Message */
.success-message {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.35);
    border-radius: 16px;
    padding: 18px;
    margin: 30px 0;
    text-align: center;
    color: #d9f6e1;
}

.success-message h4 {
    margin: 0 0 10px 0;
    color: #eafff1;
}

.success-message p {
    margin: 0;
}

button {
    background: linear-gradient(135deg, #ff6dbb 0%, #ff69b4 50%, #ff1493 100%);
    color: white;
    border: 0;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.25s ease, filter 0.25s ease;
    width: 100%;
    box-shadow: 0 10px 24px rgba(255, 105, 180, 0.4);
}

button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.5);
}

button:disabled {
    background: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.65);
    cursor: not-allowed;
    box-shadow: none;
}

.secondary-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    margin-top: 15px;
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.18);
}

/* Loading States */
.btn-loading .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Results Section */
.results-section h3 {
    margin: 0 0 20px 0;
    color: #ffffff;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.result-item {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
    color: #f5f6f8;
}

.result-item .label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 5px;
}

.result-item .value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* Price Range Indicator */
.price-range-indicator {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

.price-range-indicator h4 {
    margin: 0 0 20px 0;
    color: #ffffff;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.price-axis {
    position: relative;
    height: 4px;
    background: linear-gradient(90deg, #6aa8ff 0%, #c679ff 100%);
    border-radius: 2px;
    margin: 20px 0 10px 0;
}

.price-scale {
    position: absolute;
    top: -31px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #495057;
    font-weight: 600;
}

.price-scale span {
    position: relative;
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.25);
}

.price-scale span::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 1px;
}

.price-range-bar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    background: linear-gradient(90deg, #28a745 0%, #ffc107 50%, #fd7e14 100%);
    border-radius: 8px;
    box-shadow: 0 3px 7px rgba(40, 167, 69, 0.4);
    border: 1px solid rgba(255,255,255,0.65);
}

.price-range-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.75);
    z-index: 10;
}

.price-range-marker.min {
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

.price-range-marker.max {
    background: linear-gradient(180deg, #ffc107 0%, #fd7e14 100%);
}

.price-range-labels {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
}

.price-range-labels .min-label {
    position: absolute;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(40, 167, 69, 0.2);
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 5;
}

.price-range-labels .max-label {
    position: absolute;
    color: #fd7e14;
    background: rgba(253, 126, 20, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(253, 126, 20, 0.2);
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 5;
}

/* Guide Price Display */
.guide-price-display {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
}

.guide-price-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 5px;
    font-weight: 600;
}

.guide-price-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

/* Price Breakdown */
.price-breakdown {
    background: rgba(255,255,255,0.06);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
    color: #f5f6f8;
}

.price-breakdown h4 {
    margin: 0 0 15px 0;
    color: #ffffff;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.breakdown-item.total {
    font-weight: 600;
    border-bottom: none;
    border-top: 2px solid rgba(255,255,255,0.35);
    margin-top: 10px;
    padding-top: 15px;
}

/* Error Section */
.error-section {
    background: rgba(220,53,69,0.15);
    border: 1px solid rgba(220,53,69,0.35);
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
    color: #ffe3e6;
}

.error-message {
    text-align: center;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 35px;
    }
    
    .contact-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-or {
        padding: 5px 0;
    }
    
    .results-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .result-item {
        padding: 10px 5px;
    }
    
    .result-item .label {
        font-size: 12px;
    }
    
    .result-item .value {
        font-size: 16px;
    }
}