/**
 * Cleaning Service Quote Form Styles - Theme Compatible
 */

/* Design Tokens */
:root {
    /* Font Tokens */
    --dt-base-font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --dt-title-font: 'Red Hat Display', sans-serif;
    
    /* Color Tokens */
    --dt-error-color: #dc3545;
}

/* Global Font Configuration */
#cleaning-quote-container {
    font-family: var(--dt-base-font);
}

#cleaning-quote-container h1,
#cleaning-quote-container h2,
#cleaning-quote-container h3,
#cleaning-quote-container h4,
#cleaning-quote-container h5,
#cleaning-quote-container h6 {
    font-family: var(--dt-title-font);
}

/* Container - Use theme defaults */
#cleaning-quote-container {
    /* max-width: 800px; */
    margin: 1em auto;
    background: var(--dt-whi-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Progress Bar */
.quote-progress {
    display: flex;
    background: var(--dt-gray2-color);
    padding: 1.25em;
    border-bottom: 1px solid var(--dt-gray3-color);
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: var(--dt-sec-color);
    transition: all 0.3s ease;
}

.progress-step.active {
    color: var(--dt-pri-color);
}

.progress-step .step-number {
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    background: var(--dt-gray3-color);
    color: var(--dt-sec-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5em;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--dt-pri-color);
    color: var(--dt-whi-color);
}

.progress-step .step-title {
    font-size: 0.75em;
    font-weight: 500;
    text-align: center;
}

/* Form Steps */
.quote-step {
    display: none;
    padding: 2em;
    min-height: 25em;
}

.quote-step.active {
    display: block;
}

.quote-step h3 {
    margin: 0 0 1.5em 0;
    color: var(--dt-sec-color);
    font-size: 1.5em;
    font-weight: 600;
}

/* Form Layout */
.form-row {
    display: flex;
    gap: 1.25em;
    margin-bottom: 1.25em;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 1.25em;
    margin-top: 1.25em;
}

.form-group label {
    display: flex;
    margin-bottom: 0.5em;
    font-weight: 500;
    color: var(--dt-sec-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75em 1em;
    border: 1px solid var(--dt-gray3-color);
    border-radius: 4px;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: var(--dt-whi-color);
    color: var(--dt-sec-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dt-pri-color);
    box-shadow: 0 0 0 2px rgba(76, 152, 129, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--dt-error-color);
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.form-group input[readonly] {
    background-color: var(--dt-gray2-color);
    color: var(--dt-sec-color);
    cursor: not-allowed;
}

.form-group select option:checked,
.form-group select option:focus {
    background: var(--dt-pri-color) !important;
    color: var(--dt-whi-color) !important;
}

.form-group small {
    display: block;
    margin-top: 0.3em;
    color: var(--dt-sec-color);
    font-size: 0.875em;
}

.address-help {
    color: var(--dt-pri-color);
    font-style: italic;
}

.error-message {
    display: block;
    color: var(--dt-error-color);
    font-size: 0.875em;
    margin-top: 0.3em;
    min-height: 1.125em;
}

/* Google Places Autocomplete Styling */
.pac-container {
    background-color: var(--dt-whi-color) !important;
    border-radius: 20px !important;
    border: 1px solid var(--dt-gray3-color) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    z-index: 9999 !important;
    font-family: inherit !important;
    margin-top: 1px !important;
}

.pac-logo::after {
    display: none !important;
}

.pac-item {
    border-bottom: 1px solid var(--dt-gray3-color) !important;
    padding: 10px 15px !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    line-height: 1.4 !important;
}

.pac-item:hover {
    background-color: var(--dt-gray2-color) !important;
}

.pac-item-selected {
    background-color: var(--dt-pri-color) !important;
    color: var(--dt-whi-color) !important;
}

.pac-item-query {
    font-weight: 600 !important;
    color: var(--dt-sec-color) !important;
}

.pac-matched {
    font-weight: 700 !important;
    color: var(--dt-pri-color) !important;
}

.pac-item-selected .pac-item-query,
.pac-item-selected .pac-matched {
    color: var(--dt-whi-color) !important;
}

.pac-icon {
    display: none !important;
}

/* Address field specific styling */
#address {
    position: relative;
}

#address:focus {
    border-color: var(--dt-pri-color) !important;
    box-shadow: 0 0 0 2px rgba(76, 152, 129, 0.1) !important;
}

/* Ensure autocomplete suggestions appear above other elements */
.quote-step[data-step="2"] {
    position: relative;
    z-index: 1;
}

/* Style for when Google Maps is loading */
#address.loading {
    background-image: url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wjRLnMlPobWfMRJyhqn1O+CHNGVkz0AFUagj5QAQhkEGAQYJJwgxDAAAh+QQJCgAAACwAAAAAEAAQAAADNQi63P6ASaYhqeHKLdEVJRaC2R4gd7A4R7FlRECiQQ/BssDnIR8jOCAmFYNhIiFKaBuMAAAh+QQJCgAAACwAAAAAEAAQAAADNQi63P6ASaYhqeHKLdEVJRaC2R4gd7A4R7FlRECiQQ/BssDnIR8jOCAmFYNhIiFKaBuMAAAh+QQJCgAAACwAAAAAEAAQAAADNgi63P6ASaYhqeHKLdEVJRaC2R4gd7A4R7FlRECiQQ/BssDnIR8jOCAmFYNhIiFKaBuMBwAh+QQJCgAAACwAAAAAEAAQAAADNgi63P6ASaYhqeHKLdEVJRaC2R4gd7A4R7FlRECiQQ/BssDnIR8jOCAmFYNhIiFKaBuMBwA7');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
}

/* Checkboxes */
.checkbox-group {
    margin-top: 20px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    margin: 0;
}

.checkbox-item .checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--dt-whi-color);
    border: 2px solid var(--dt-gray3-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--dt-pri-color);
    border-color: var(--dt-pri-color);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--dt-whi-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Service Options */
.service-options {
    background: var(--dt-gray2-color);
    padding: 1.5em;
    border-radius: 4px;
    margin-top: 1.25em;
    border: 1px solid var(--dt-gray3-color);
}

.service-options h4 {
    margin: 0 0 1.25em 0;
    color: var(--dt-sec-color);
    font-size: 1.125em;
}

.pricing-info {
    background: var(--dt-gray2-color);
    padding: 1em;
    border-radius: 4px;
    margin-top: 1em;
    border-left: 4px solid var(--dt-pri-color);
}

.pricing-info h5 {
    margin: 0 0 0.625em 0;
    color: var(--dt-pri-color);
    font-size: 0.875em;
    font-weight: 600;
}

.pricing-info ul {
    margin: 0;
    padding-left: 1.25em;
    color: var(--dt-pri-color);
}

.pricing-info li {
    margin-bottom: 0.3em;
    font-size: 0.875em;
}

.pricing-info p {
    margin: 0.625em 0 0 0;
    color: var(--dt-pri-color);
    font-size: 0.75em;
}

/* Price Preview */
.price-preview {
    background: var(--dt-pri-color);
    color: var(--dt-whi-color);
    padding: 1.5em;
    border-radius: 4px;
    margin-top: 1.875em;
}

.price-preview h4 {
    margin: 0 0 1.25em 0;
    font-size: 1.125em;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5em 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.total {
    margin-top: 0.625em;
    padding-top: 1em;
    border-top: 2px solid rgba(255,255,255,0.3);
    font-size: 1.125em;
    font-weight: 600;
}

/* Detailed Add-ons Styling */
.price-item.addon-header {
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.price-item.addon-item {
    padding: 0.25em 0;
    font-size: 0.9em;
    color: rgba(255,255,255,0.9);
    border-bottom: none;
}

.price-item.addon-item:last-child {
    margin-bottom: 0.5em;
}

/* Enhanced Promotion Notice */
.promotion-notice {
    background: var(--dt-priGrd-color);
    color: var(--dt-whi-color);
    padding: 20px 25px;
    border-radius: 12px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(76, 152, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    font-family: var(--dt-base-font);
}

.promotion-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.promotion-notice h3 {
    margin: 0 0 8px 0;
    color: var(--dt-whi-color);
    font-size: 1.3em;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-family: var(--dt-title-font);
}

.promotion-notice p {
    margin: 0;
    font-size: 1em;
    opacity: 0.95;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-family: var(--dt-base-font);
}

/* Discount Info Container - Enhanced Styling */
.discount-info {
    background: var(--dt-priGrd-color);
    color: var(--dt-whi-color);
    padding: 18px 22px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(76, 152, 129, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    font-family: var(--dt-base-font);
    animation: fadeInSlide 0.5s ease-out;
}

.discount-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 3s infinite;
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.discount-info h4 {
    margin: 0 0 6px 0;
    color: var(--dt-whi-color);
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--dt-title-font);
}

.discount-info p {
    margin: 0;
    font-size: 1em;
    opacity: 0.95;
    line-height: 1.3;
    font-family: var(--dt-base-font);
}

/* Success styling for positive discounts */
.discount-info.success {
    background: linear-gradient(135deg, var(--dt-pri-color) 0%, var(--dt-priTwo-color) 100%);
    box-shadow: 0 4px 15px rgba(76, 152, 129, 0.25);
}

/* Enhanced Discount Notice */
.discount-notice {
    background: linear-gradient(135deg, var(--dt-error-color) 0%, #c82333 100%);
    color: white;
    padding: 18px 22px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 3px 12px rgba(220, 53, 69, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.discount-notice h4 {
    margin: 0 0 6px 0;
    color: white;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-notice p {
    margin: 0;
    font-size: 0.95em;
    opacity: 0.95;
    line-height: 1.3;
}

.discount-notice .discount-amount {
    font-size: 0.7em;
    font-weight: 500;
    margin-top: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Success styling for positive discounts */
.discount-notice.success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.25);
}

/* Simple and Clean Discount Info Container */
.discount-info {
    background: var(--dt-whi-color) !important;
    border: 2px solid var(--dt-pri-color) !important;
    color: var(--dt-sec-color) !important;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.discount-info h4 {
    margin: 0 0 10px 0;
    color: var(--dt-pri-color) !important;
    font-size: 1.3em;
    font-weight: 700;
    font-family: var(--dt-title-font);
}

.discount-info p {
    margin: 0 0 15px 0;
    font-size: 1em;
    color: var(--dt-sec-color) !important;
    line-height: 1.4;
    font-family: var(--dt-base-font);
}

.discount-info .discount-amount {
    font-size: 0.7em;
    font-weight: 500;
    color: var(--dt-base-color) !important;
    background: transparent !important;
    padding: 10px;
    font-family: var(--dt-title-font);
}

.discount-info.success {
    background: var(--dt-whi-color) !important;
    border-color: var(--dt-pri-color) !important;
}

/* Summary Section */
.summary-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.customer-info,
.service-info,
.final-pricing {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.customer-info h4,
.service-info h4,
.final-pricing h4 {
    margin: 0 0 15px 0;
    color: #495057;
    font-size: 16px;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.info-grid > div {
    padding: 8px 0;
}

.final-breakdown {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-top: 15px;
}

.final-breakdown .price-item {
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.final-breakdown .price-item.total {
    border-top: 2px solid var(--dt-pri-color);
    color: var(--dt-pri-color);
}

.final-breakdown .price-item.discount {
    color: #28a745;
}

/* Navigation - Use WordPress button classes */
.quote-navigation {
    display: flex;
    justify-content: space-between;
    padding: 1.25em 2em;
    background: var(--dt-gray2-color);
    border-top: 1px solid var(--dt-gray3-color);
}

.quote-navigation button {
    padding: 0.75em 1.875em;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

#prev-btn {
    /* background: var(--dt-sec-color);
    color: var(--dt-whi-color); */
}

#prev-btn:hover {
    opacity: 0.9;
}

#next-btn,
#submit-btn {
    background: var(--dt-priGrd-color);
    color: var(--dt-whi-color);
    border: none;
}

.quote-navigation button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loading Indicator */
#loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: white;
    font-size: 18px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Page */
.quote-success {
    text-align: center;
    padding: 60px 40px;
    background: var(--dt-priGrd-color);
    color: var(--dt-whi-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.quote-success::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: shimmer 20s linear infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.quote-success h2 {
    margin: 0 0 20px 0;
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    letter-spacing: -0.5px;
}

.quote-success p {
    font-size: 18px;
    margin: 15px 0;
    opacity: 0.95;
    line-height: 1.5;
}

.quote-success .quote-id {
    font-size: 20px;
    font-weight: 600;
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 25px;
    margin: 20px auto;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.quote-success .final-total {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
    margin: 25px 0;
    letter-spacing: -1px;
}

.success-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-actions button {
    background: rgba(255,255,255,0.9);
    color: var(--dt-pri-color);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 160px;
}

.success-actions button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.success-actions .btn-print {
    background: rgba(255,255,255,0.9);
}

.success-actions .btn-new-quote {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
}

.success-actions .btn-new-quote:hover {
    background: white;
    color: var(--dt-pri-color);
    border-color: white;
}

/* Print styles for quote */
@media print {
    body * {
        visibility: hidden;
    }
    
    .quote-printable, .quote-printable * {
        visibility: visible;
    }
    
    .quote-printable {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white !important;
        color: black !important;
        padding: 20px;
    }
    
    .quote-success::before {
        display: none;
    }
    
    .success-actions {
        display: none;
    }
    
    .quote-success h2 {
        color: #333 !important;
        text-shadow: none !important;
    }
    
    .quote-success p {
        color: #666 !important;
    }
    
    .quote-success .final-total {
        color: #333 !important;
        text-shadow: none !important;
    }
}

/* Quote details for printing */
.quote-details {
    margin-top: 30px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.quote-details h3 {
    color: white;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    font-size: 16px;
}

.detail-row:last-child {
    border-bottom: none;
}

.total-row {
    border-top: 2px solid rgba(255,255,255,0.5);
    margin-top: 15px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: bold;
}

.btn-print,
.btn-new-quote {
    padding: 12px 25px;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-print:hover,
.btn-new-quote:hover {
    background: white;
    color: var(--dt-pri-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    #cleaning-quote-container {
        margin: 0.625em;
        border-radius: 4px;
    }
    
    .quote-progress {
        padding: 1em 0.625em;
    }
    
    .progress-step .step-title {
        font-size: 0.625em;
    }
    
    .quote-step {
        padding: 1.875em 1.25em;
        min-height: 18.75em;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 0.625em;
    }
    
    .quote-navigation {
        padding: 1em 1.25em;
        flex-direction: column;
        gap: 0.625em;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
}

.white-text {
    color: #FFFFFF !important;
}

/* Booking Section Styles */
.booking-question {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 1em;
    display: block;
    color: #333;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75em;
    margin-bottom: 1.5em;
}

.radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75em 1em;
    border: 2px solid var(--dt-gray3-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--dt-whi-color);
    position: relative;
    width: 100%;
}

.radio-item:hover {
    border-color: var(--dt-pri-color);
    background: rgba(76, 152, 129, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(76, 152, 129, 0.15);
}

.radio-item input[type="radio"] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 1;
}

.radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--dt-gray3-color);
    border-radius: 50%;
    margin-right: 0.75em;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: var(--dt-whi-color);
}

.radio-item input[type="radio"]:checked + .radio-mark {
    border-color: var(--dt-pri-color);
    background: var(--dt-pri-color);
    box-shadow: 0 0 0 3px rgba(76, 152, 129, 0.2);
}

.radio-item input[type="radio"]:checked + .radio-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dt-whi-color);
}

.radio-item input[type="radio"]:checked ~ span:not(.radio-mark) {
    font-weight: 600;
    color: var(--dt-pri-color);
}

.radio-item input[type="radio"]:checked {
    background: rgba(76, 152, 129, 0.1);
}

.radio-item.checked {
    border-color: var(--dt-pri-color);
    background: rgba(76, 152, 129, 0.05);
}

.radio-item span:not(.radio-mark) {
    font-size: 1em;
    color: var(--dt-sec-color);
    line-height: 1.4;
}

#booking-details {
    margin-top: 1.5em;
    padding: 1.5em;
    background: var(--dt-gray2-color);
    border-radius: 10px;
    border-left: 4px solid var(--dt-pri-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.error-message {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 5px;
    display: block;
}

.radio-group .error-message {
    margin-top: 10px;
    padding: 10px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    color: #721c24;
}
