/* Deck Calculator Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.deck-calculator-container {
    font-family: 'Poppins', sans-serif;
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.deck-calculator-steps {
    background: #ffffff;
    border-radius: 16px;
    overflow: visible !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.step {
    display: none;
    padding: 50px 40px;
    background: #fff;
    overflow: visible !important;
}

.step.active {
    display: block;
    overflow: visible !important;
}

.step h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.field {
    margin-bottom: 25px;
}

.field label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.field input[type="number"],
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: #fafafa;
}

.field input:focus {
    outline: none;
    border-color: #F58634;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(245, 134, 52, 0.1);
}

/* Area Display Value */
.area-display {
    font-weight: 700;
    color: #F58634;
    font-size: 20px;
}

/* Slider Helper Text */
.slider-helper {
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin: 5px 0 0 0;
    text-align: center;
}

/* Range Slider Styling */
.area-slider {
    width: 100% !important;
    height: 10px !important;
    border-radius: 5px !important;
    background: linear-gradient(to right, #F58634 0%, #F58634 0%, #e5e5e5 0%, #e5e5e5 100%);
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 15px 0 !important;
    cursor: pointer !important;
    transition: background 0.15s ease;
}

/* Webkit browsers (Chrome, Safari, Edge) */
.area-slider::-webkit-slider-runnable-track {
    height: 10px;
    border-radius: 5px;
    background: transparent;
}

.area-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F58634;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(245, 134, 52, 0.3);
    transition: all 0.2s ease;
    margin-top: -7px;
}

.area-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(245, 134, 52, 0.5);
}

/* Firefox */
.area-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F58634;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(245, 134, 52, 0.3);
    transition: all 0.2s ease;
}

.area-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(245, 134, 52, 0.5);
}

.area-slider::-moz-range-track {
    background: transparent;
    border-radius: 5px;
    height: 10px;
    border: none;
}

.area-slider::-moz-range-progress {
    background: #F58634;
    height: 10px;
    border-radius: 5px 0 0 5px;
}

/* Material Selection */
.material-options {
    display: flex !important;
    gap: 20px;
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin: 30px 0 !important;
    align-items: stretch !important;
}

.material-option {
    flex: 1 1 auto;
    width: 240px !important;
    min-width: 240px !important;
    max-width: 240px !important;
    border: 3px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px !important;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.material-option:hover {
    border-color: #F58634 !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 134, 52, 0.15) !important;
    background: #fff !important;
}

.material-option.selected {
    border-color: #F58634 !important;
    background: #fff !important;
    box-shadow: 0 8px 25px rgba(245, 134, 52, 0.2) !important;
}

.material-image {
    width: 200px !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 8px;
    margin-bottom: 15px !important;
    display: block !important;
    max-width: 200px !important;
    max-height: 200px !important;
}

.material-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
}

/* Buttons */
.deck-calculator-container .next-step-btn,
.deck-calculator-container .prev-step-btn,
.deck-calculator-container .submit-quote-btn,
.deck-calculator-container .start-over-btn {
    background: linear-gradient(135deg, #F58634 0%, #e67826 100%) !important;
    background-color: #F58634 !important;
    color: white !important;
    border: none !important;
    padding: 18px 40px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    font-family: 'Poppins', sans-serif !important;
    border-radius: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-right: 10px !important;
    box-shadow: 0 6px 20px rgba(245, 134, 52, 0.35) !important;
    position: relative !important;
    overflow: hidden !important;
    text-transform: none !important;
    line-height: 1.2em !important;
}

.deck-calculator-container .next-step-btn::before,
.deck-calculator-container .submit-quote-btn::before,
.deck-calculator-container .start-over-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s ease !important;
}

.deck-calculator-container .next-step-btn:hover::before,
.deck-calculator-container .submit-quote-btn:hover::before,
.deck-calculator-container .start-over-btn:hover::before {
    left: 100% !important;
}

.deck-calculator-container .next-step-btn:hover,
.deck-calculator-container .submit-quote-btn:hover,
.deck-calculator-container .start-over-btn:hover {
    background: linear-gradient(135deg, #ff9147 0%, #F58634 100%) !important;
    background-color: #ff9147 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(245, 134, 52, 0.5) !important;
}

.deck-calculator-container .prev-step-btn {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%) !important;
    background-color: #2d2d2d !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}

.deck-calculator-container .prev-step-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
    transition: left 0.5s ease !important;
}

.deck-calculator-container .prev-step-btn:hover::before {
    left: 100% !important;
}

.deck-calculator-container .prev-step-btn:hover {
    background: linear-gradient(135deg, #3d3d3d 0%, #2d2d2d 100%) !important;
    background-color: #3d3d3d !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

/* Price Display */
.price-display {
    position: relative;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 12px;
}

.blur-overlay p {
    background: linear-gradient(135deg, #F58634 0%, #e67826 100%);
    color: white;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin: 20px;
    box-shadow: 0 8px 25px rgba(245, 134, 52, 0.3);
}

.price-display.blurred .pricing-breakdown {
    filter: blur(8px);
    pointer-events: none;
}

.pricing-breakdown {
    transition: filter 0.4s ease;
}

.pricing-breakdown h4 {
    color: #1a1a1a;
    margin: 30px 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.pricing-breakdown table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.pricing-breakdown th,
.pricing-breakdown td {
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid #e5e5e5;
    font-family: 'Poppins', sans-serif;
}

.pricing-breakdown th {
    background: #f5f5f5;
    font-weight: 600;
    width: 60%;
    color: #2d2d2d;
}

.pricing-breakdown td {
    font-weight: 500;
    color: #1a1a1a;
}

.pricing-breakdown .highlight {
    font-size: 24px;
    font-weight: 700;
    color: #F58634;
}

/* Contact Thanks */
.contact-thanks {
    display: none;
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #fff5ef 0%, #ffffff 100%);
    border-radius: 12px;
    margin-top: 30px;
    border: 2px solid #F58634;
}

.contact-thanks h4 {
    color: #F58634;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.contact-thanks p {
    color: #555;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

/* Button Container */
.step {
    text-align: center;
}

.next-step-btn,
.prev-step-btn,
.submit-quote-btn {
    margin: 10px 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .deck-calculator-container {
        margin: 30px auto;
        padding: 0 !important;
    }

    .step {
        padding: 30px 20px;
    }

    .step h3 {
        font-size: 26px;
    }

    .material-options {
        flex-direction: column;
        align-items: center;
    }

    .material-option {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .material-image {
        width: 100% !important;
        max-width: 300px !important;
        height: 200px !important;
    }

    .deck-calculator-container .next-step-btn,
    .deck-calculator-container .prev-step-btn,
    .deck-calculator-container .submit-quote-btn,
    .deck-calculator-container .start-over-btn {
        width: 100% !important;
        margin: 8px 0 !important;
        padding: 16px 32px !important;
        font-size: 16px !important;
        border-radius: 14px !important;
    }

    .pricing-breakdown th,
    .pricing-breakdown td {
        padding: 12px 14px;
        font-size: 14px;
    }

    .blur-overlay p {
        padding: 25px 30px;
        font-size: 16px;
    }
}

/* Additional Styles */
.step p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.pricing-breakdown table tr:last-child th,
.pricing-breakdown table tr:last-child td {
    border-bottom: none;
}

/* Smooth animations */
.step.active {
    animation: fadeIn 0.5s ease;
}

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

/* Material option selected badge */
.material-option.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: #F58634;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    animation: checkmarkPop 0.3s ease;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.material-option {
    position: relative;
}

/* Input placeholder styling */
.field input::placeholder {
    color: #aaa;
    font-family: 'Poppins', sans-serif;
}

/* Button active state */
.deck-calculator-container .next-step-btn:active,
.deck-calculator-container .prev-step-btn:active,
.deck-calculator-container .submit-quote-btn:active,
.deck-calculator-container .start-over-btn:active {
    transform: translateY(-1px) scale(0.98) !important;
    box-shadow: 0 4px 12px rgba(245, 134, 52, 0.3) !important;
}

.deck-calculator-container .prev-step-btn:active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

/* Quote results fade in */
.quote-results {
    animation: fadeIn 0.6s ease;
}

/* Smooth scroll behavior */
.deck-calculator-container * {
    box-sizing: border-box;
}

/* Price Preview Box in Step 2 */
.price-preview-box {
    position: relative;
    background: linear-gradient(135deg, #fff5ef 0%, #ffffff 100%);
    border: 2px solid #F58634;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.price-preview-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border-radius: 10px;
}

.unlock-message {
    text-align: center;
    padding: 20px;
}

.lock-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.unlock-message p {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #F58634;
    margin: 0;
    line-height: 1.5;
}

.price-preview-content {
    filter: blur(5px);
    pointer-events: none;
}

.price-preview-content h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 15px 0;
}

.preview-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #e5e5e5;
}

.preview-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2d2d2d;
    font-size: 16px;
}

.preview-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #F58634;
    font-size: 28px;
}

.preview-note {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

.preview-note span {
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .price-preview-box {
        padding: 25px 20px;
        margin: 20px 0;
    }

    .lock-icon {
        font-size: 40px;
    }

    .unlock-message p {
        font-size: 14px;
    }

    .preview-price {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .preview-amount {
        font-size: 24px;
    }
}

/* Price Rolling Animation Styles */
.price-reveal-container {
    position: relative;
    min-height: 400px;
}

.calculating-animation {
    text-align: center;
    padding: 40px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.calculating-animation.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f0f0f0;
    border-top: 5px solid #F58634;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.price-rolling-display {
    opacity: 0;
    visibility: hidden;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #fff5ef 0%, #ffffff 100%);
    border: 2px solid #F58634;
    border-radius: 12px;
    transition: opacity 0.5s ease, visibility 0s 0.5s, filter 0.5s ease;
}

.price-rolling-display.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0s, filter 0.5s ease;
}

.price-rolling-display.blurred {
    filter: blur(8px);
}

.price-range-container {
    text-align: center;
    padding: 30px 20px;
}

.price-range-label {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.price-range-display {
    background: linear-gradient(135deg, #F58634 0%, #e67826 100%);
    border-radius: 16px;
    padding: 35px 25px;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(245, 134, 52, 0.25);
}

.price-range-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 36px;
    display: block;
    line-height: 1.3;
}

.rolling-number {
    display: inline-block;
}

.rolling-note {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 15px 0 20px 0;
}

.rolling-note span {
    font-weight: 600;
    color: #1a1a1a;
}

.deck-calculator-container .get-started-btn,
.price-range-container .get-started-btn,
button.get-started-btn {
    background: linear-gradient(135deg, #F58634 0%, #e67826 100%) !important;
    background-color: #F58634 !important;
    color: white !important;
    border: none !important;
    padding: 16px 40px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    font-family: 'Poppins', sans-serif !important;
    border-radius: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 6px 20px rgba(245, 134, 52, 0.35) !important;
    text-transform: none !important;
    line-height: 1.2em !important;
    margin-top: 10px !important;
}

.deck-calculator-container .get-started-btn:hover,
.price-range-container .get-started-btn:hover,
button.get-started-btn:hover {
    background: linear-gradient(135deg, #ff9147 0%, #F58634 100%) !important;
    background-color: #ff9147 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(245, 134, 52, 0.5) !important;
}

.deck-calculator-container .get-started-btn:active,
.price-range-container .get-started-btn:active,
button.get-started-btn:active {
    transform: translateY(-1px) scale(0.98) !important;
    box-shadow: 0 4px 12px rgba(245, 134, 52, 0.3) !important;
}

.deck-calculator-container .get-started-btn:disabled,
.price-range-container .get-started-btn:disabled,
button.get-started-btn:disabled {
    opacity: 1 !important;
    cursor: default !important;
}

/* Contact Form Overlay - Full Screen Modal */
.contact-form-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0s 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

.contact-form-overlay.slide-down {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.3s ease, visibility 0s !important;
}

/* Remove old backdrop - no longer needed */

.contact-form-content {
    background: white !important;
    border-radius: 20px !important;
    padding: 45px !important;
    max-width: 600px !important;
    width: 100% !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    transform: scale(0.9) !important;
    opacity: 0 !important;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease !important;
}

.contact-form-overlay.slide-down .contact-form-content {
    transform: scale(1) !important;
    opacity: 1 !important;
    transition-delay: 0.1s !important;
}

.contact-form-content h3 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #F58634 !important;
    margin-bottom: 10px !important;
    text-align: center !important;
}

/* Modern Form Styling */
.deck-calculator-container .modern-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-bottom: 25px !important;
}

/* Input Group Container */
.deck-calculator-container .input-group {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    margin-top: 12px !important;
    margin-bottom: 4px !important;
}

/* Input Icon */
.deck-calculator-container .input-icon {
    position: absolute !important;
    left: 20px !important;
    font-size: 22px !important;
    transition: all 0.3s ease !important;
    pointer-events: none !important;
    z-index: 5 !important;
    filter: grayscale(100%) opacity(0.5) !important;
}

/* Modern Input Field - Override Elementor styles */
.deck-calculator-container .modern-form input[type="text"],
.deck-calculator-container .modern-form input[type="email"],
.deck-calculator-container .modern-form input[type="tel"],
.modern-form .input-group input {
    width: 100% !important;
    padding: 20px 24px 20px 60px !important;
    font-size: 16px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    border: 3px solid #e5e5e5 !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    position: relative !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    color: #1a1a1a !important;
    overflow: visible !important;
    z-index: 1 !important;
}

/* Input Hover State */
.deck-calculator-container .modern-form input[type="text"]:hover,
.deck-calculator-container .modern-form input[type="email"]:hover,
.deck-calculator-container .modern-form input[type="tel"]:hover,
.modern-form .input-group input:hover {
    border-color: #d5d5d5 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

/* Floating Label */
.deck-calculator-container .input-group label {
    position: absolute !important;
    left: 60px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #999 !important;
    pointer-events: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: transparent !important;
    padding: 0 5px !important;
    z-index: 5 !important;
}

/* Input Focus State */
.deck-calculator-container .modern-form input[type="text"]:focus,
.deck-calculator-container .modern-form input[type="email"]:focus,
.deck-calculator-container .modern-form input[type="tel"]:focus,
.modern-form .input-group input:focus {
    outline: none !important;
    border-color: #F58634 !important;
    background: #fff !important;
    background-color: #fff !important;
    box-shadow: 0 8px 24px rgba(245, 134, 52, 0.2), 0 0 0 5px rgba(245, 134, 52, 0.08) !important;
    transform: translateY(-2px) !important;
}

/* Icon Active State */
.deck-calculator-container .modern-form input:focus ~ .input-icon,
.deck-calculator-container .modern-form input:not(:placeholder-shown) ~ .input-icon {
    filter: grayscale(0%) opacity(1) !important;
    transform: scale(1.15) !important;
}

/* Floating Label Active State */
.deck-calculator-container .modern-form input:focus ~ label,
.deck-calculator-container .modern-form input:not(:placeholder-shown) ~ label {
    top: -12px !important;
    left: 52px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #F58634 !important;
    background: white !important;
    padding: 3px 12px !important;
    border-radius: 8px !important;
    z-index: 10 !important;
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

/* Invalid Input State */
.deck-calculator-container .modern-form input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #ff4444 !important;
    background: #fff9f9 !important;
    background-color: #fff9f9 !important;
}

/* Valid Input State */
.deck-calculator-container .modern-form input:valid:not(:placeholder-shown) {
    border-color: #4CAF50 !important;
}

.deck-calculator-container .modern-form input::placeholder {
    color: transparent !important;
    font-weight: 400 !important;
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    margin-top: 25px;
    align-items: center;
}

.form-buttons button {
    width: 100%;
    max-width: 400px;
}

.deck-calculator-container .form-buttons .prev-step-btn {
    font-size: 14px !important;
    padding: 12px 24px !important;
    font-weight: 500 !important;
    max-width: 200px !important;
    background: transparent !important;
    color: #666 !important;
    box-shadow: none !important;
    border: 2px solid #e5e5e5 !important;
}

.deck-calculator-container .form-buttons .prev-step-btn:hover {
    background: #f5f5f5 !important;
    color: #333 !important;
    border-color: #d5d5d5 !important;
    box-shadow: none !important;
    transform: none !important;
}

.deck-calculator-container .form-buttons .prev-step-btn::before {
    display: none !important;
}

/* Responsive for rolling animation */
@media (max-width: 768px) {
    .price-reveal-container {
        min-height: 500px;
    }
    
    .price-rolling-display {
        padding: 10px !important;
    }

    .price-range-container {
        padding: 20px 10px;
    }
    
    .price-range-label {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .price-range-display {
        padding: 25px 15px;
        border-radius: 14px;
    }

    .price-range-value {
        font-size: 26px;
    }
    
    .get-started-btn {
        width: 100% !important;
        max-width: 300px !important;
        font-size: 16px !important;
        padding: 14px 32px !important;
    }

    .contact-form-overlay {
        padding: 15px !important;
    }
    
    .contact-form-content {
        padding: 30px 20px !important;
        border-radius: 16px !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }

    .contact-form-content h3 {
        font-size: 24px !important;
        margin-bottom: 8px !important;
    }
    
    .contact-form-content p {
        margin-bottom: 15px !important;
        font-size: 14px !important;
    }

    .deck-calculator-container .modern-form input[type="text"],
    .deck-calculator-container .modern-form input[type="email"],
    .deck-calculator-container .modern-form input[type="tel"],
    .modern-form .input-group input {
        padding: 18px 20px 18px 56px !important;
        font-size: 16px !important;
        border-radius: 14px !important;
        border-width: 3px !important;
    }
    
    .deck-calculator-container .input-icon {
        left: 18px !important;
        font-size: 20px !important;
    }
    
    .deck-calculator-container .input-group label {
        left: 56px !important;
        font-size: 15px !important;
    }
    
    .deck-calculator-container .modern-form input:focus ~ label,
    .deck-calculator-container .modern-form input:not(:placeholder-shown) ~ label {
        left: 50px !important;
        font-size: 12px !important;
        top: -11px !important;
        transform: translateY(0) !important;
    }

    .deck-calculator-container .modern-form {
        gap: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .form-buttons {
        gap: 10px !important;
        margin-top: 15px !important;
    }

    .form-buttons button {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .deck-calculator-container .form-buttons .prev-step-btn {
        font-size: 13px !important;
        padding: 10px 20px !important;
        max-width: 150px !important;
    }
}
