/* Estimator Plugin Styles */

/* ===== CTA Button Shortcode ===== */
.quote-generator-cta-wrapper {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.quote-generator-cta-btn,
.quote-generator-cta-btn-outline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.5;
}

.quote-generator-cta-btn {
    background-color: rgb(18, 141, 185);
    color: white !important;
    border: 2px solid rgb(18, 141, 185);
}

.quote-generator-cta-btn:hover,
.quote-generator-cta-btn:focus,
.quote-generator-cta-btn:visited {
    background-color: rgb(15, 120, 157);
    border-color: rgb(15, 120, 157);
    color: white !important;
    text-decoration: none;
}

.quote-generator-cta-btn-outline {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
}

.quote-generator-cta-btn-outline:hover,
.quote-generator-cta-btn-outline:focus,
.quote-generator-cta-btn-outline:visited {
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
    border-color: white;
    text-decoration: none;
}

.quote-generator-cta-btn svg,
.quote-generator-cta-btn-outline svg {
    flex-shrink: 0;
}

/* Override theme h2 styling within estimator */
.quote-generator-wrapper h2:not([class*="fontsize-"]),
.quote-generator-wrapper .h2:not([class*="fontsize-"]) {
    font-size: 1.5rem !important;
    /* 24px */
}

.quote-generator-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
}





/* Textarea */
.quote-generator-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(119, 119, 119, 0.3);
    border-radius: 0.375rem;
    font-size: 1rem;
    color: rgb(20, 22, 24);
    background-color: white;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    resize: vertical;
}

.quote-generator-textarea:focus {
    outline: none;
    border-color: rgb(18, 141, 185);
    box-shadow: 0 0 0 3px rgba(18, 141, 185, 0.1);
}

.quote-generator-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

.quote-generator-step {
    display: none;
}

.quote-generator-step.active {
    display: block;
}

/* Header */
.quote-generator-title-section {
    text-align: center;
    margin-bottom: 2rem;
}

.quote-generator-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(20, 22, 24);
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .quote-generator-main-title {
        font-size: 2rem;
    }
}

.quote-generator-header {
    text-align: center;
    margin-bottom: 2rem;
}



/* Content */
.quote-generator-content {
    padding: 0 1rem;
}

.quote-generator-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(20, 22, 24);
    margin: 0 0 1rem 0;
}

.quote-generator-promo-banner {
    display: inline-block;
    background-color: rgba(18, 141, 185, 0.1);
    color: rgb(20, 22, 24);
    font-weight: 400;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid rgb(18, 141, 185);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-generator-promo-banner strong {
    color: rgb(20, 22, 24);
    font-weight: 600;
}

/* Combo Discount Notice */
.quote-generator-combo-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid rgb(255, 193, 7);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    color: rgb(20, 22, 24);
    font-size: 0.95rem;
}

.quote-generator-combo-notice svg {
    color: rgb(255, 193, 7);
}

.quote-generator-combo-notice strong {
    color: rgb(20, 22, 24);
}

.quote-generator-star-icon {
    flex-shrink: 0;
}

.quote-generator-step-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgb(20, 22, 24);
    text-align: center;
    margin-bottom: 2rem;
}

.quote-generator-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgb(20, 22, 24);
    margin: 2rem 0 1rem 0;
}

/* Options */
.quote-generator-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.quote-generator-option {
    display: block;
    cursor: pointer;
    position: relative;
}

.quote-generator-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.quote-generator-option-content {
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid rgba(119, 119, 119, 0.2);
    border-radius: 0.5rem;
    transition: all 0.2s;
    background: white;
    position: relative;
}

/* Custom radio button circle */
.quote-generator-option-content::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(119, 119, 119, 0.3);
    border-radius: 50%;
    background: white;
    transition: all 0.2s;
}

/* Inner dot when selected */
.quote-generator-radio:checked+.quote-generator-option-content::after {
    border-color: rgb(18, 141, 185);
    background: white;
    box-shadow: inset 0 0 0 3px rgb(18, 141, 185);
}

.quote-generator-option:hover .quote-generator-option-content {
    border-color: rgb(18, 141, 185);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.quote-generator-radio:checked+.quote-generator-option-content {
    border-color: rgb(18, 141, 185);
    background-color: rgba(18, 141, 185, 0.05);
}

.quote-generator-option-title {
    font-weight: 500;
    color: rgb(20, 22, 24);
    font-size: 1rem;
}

/* Services */
.quote-generator-services {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0 auto 2rem auto;
    max-width: 800px;
}

.quote-generator-service-option {
    display: block;
    cursor: pointer;
    position: relative;
}

.quote-generator-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.quote-generator-service-content {
    padding: 1.5rem;
    padding-right: 4rem;
    border: 2px solid rgba(119, 119, 119, 0.2);
    border-radius: 0.5rem;
    transition: all 0.2s;
    background: white;
    position: relative;
}

/* Custom checkbox */
.quote-generator-service-content::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(119, 119, 119, 0.3);
    border-radius: 0.25rem;
    background: white;
    transition: all 0.2s;
}

/* Checkmark when selected */
.quote-generator-checkbox:checked+.quote-generator-service-content::after {
    border-color: rgb(18, 141, 185);
    background: rgb(18, 141, 185);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.quote-generator-service-option:hover .quote-generator-service-content {
    border-color: rgb(18, 141, 185);
}

.quote-generator-checkbox:checked+.quote-generator-service-content {
    border-color: rgb(18, 141, 185);
    background-color: rgba(18, 141, 185, 0.05);
}

.quote-generator-service-header {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    /* Remove bottom margin to vertically center text when closed */
}

.quote-generator-service-title-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-generator-service-title {
    font-weight: 500;
    color: rgb(20, 22, 24);
    font-size: 1rem;
}

.quote-generator-modal-link {
    color: rgb(18, 141, 185);
    text-decoration: none;
    font-size: 0.875rem;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.quote-generator-modal-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.quote-generator-info-btn {
    background: none;
    border: none;
    color: rgb(18, 141, 185);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.quote-generator-info-btn:hover {
    opacity: 0.7;
}

.quote-generator-info-btn-inline {
    background: none;
    border: none;
    color: rgb(18, 141, 185);
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
    flex-shrink: 0;
    margin-left: 0.5rem;
    margin-right: 0.25rem;
}

.quote-generator-info-btn-inline:hover {
    opacity: 0.7;
}

.quote-generator-service-fields {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(119, 119, 119, 0.2);
}

.quote-generator-checkbox:checked+.quote-generator-service-content .quote-generator-service-fields {
    display: block !important;
}

.quote-generator-checkbox:checked+.quote-generator-input-group span.quote-generator-error-message {
    color: #D22B2B !important;
}

/* Form Elements */
.quote-generator-input-group {
    margin-bottom: 1rem;
}

.quote-generator-label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: rgb(20, 22, 24);
    margin-bottom: 0.5rem;
}

.quote-generator-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(119, 119, 119, 0.3);
    border-radius: 0.375rem;
    font-size: 1rem;
    color: rgb(20, 22, 24);
    background-color: white;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

/* Hide number input spinner arrows */
.quote-generator-input[type="number"]::-webkit-inner-spin-button,
.quote-generator-input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quote-generator-input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.quote-generator-input:focus {
    outline: none;
    border-color: rgb(18, 141, 185);
    box-shadow: 0 0 0 3px rgba(18, 141, 185, 0.1);
}



/* Buttons */
.quote-generator-btn {
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    min-width: 160px;
}

.quote-generator-btn-primary {
    background-color: rgb(18, 141, 185);
    color: white;
}

.quote-generator-btn-primary:hover:not(:disabled) {
    background-color: rgb(15, 120, 157);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.quote-generator-btn-primary:disabled {
    background-color: rgba(119, 119, 119, 0.3);
    cursor: not-allowed;
}

.quote-generator-btn-secondary {
    background-color: transparent;
    color: rgb(18, 141, 185);
    border: 2px solid rgb(18, 141, 185);
    padding: calc(0.875rem - 2px) calc(1.75rem - 2px);
}

.quote-generator-btn-secondary:hover {
    background-color: rgba(18, 141, 185, 0.1);
}

.quote-generator-btn-link {
    background: none;
    color: rgb(18, 141, 185);
    text-decoration: none;
    padding: 0.5rem 0;
}

.quote-generator-btn-link:hover {
    opacity: 0.7;
}

.quote-generator-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

/* Center standalone Next button on Step 1 */
.quote-generator-btn-next:not(.quote-generator-actions .quote-generator-btn-next) {
    display: block;
    margin: 1rem auto 0 auto;
}

/* I'm interested button centered */
.quote-generator-btn-submit {
    display: block;
    margin: 1rem auto 0 auto;
}

/* Summary */
.quote-generator-summary {
    background-color: rgba(119, 119, 119, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}



.quote-generator-summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(119, 119, 119, 0.2);
    font-size: 1.125rem;
    font-weight: 600;
}

.quote-generator-summary-total-price {
    font-size: 1.5rem;
    color: rgb(18, 141, 185);
    font-weight: 700;
}

.quote-generator-summary-turnaround {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(119, 119, 119, 0.1);
}

.quote-generator-summary-turnaround strong {
    color: rgb(20, 22, 24);
}





/* Testimonial Box */
.quote-generator-testimonial-box {
    background-color: rgba(18, 141, 185, 0.05);
    border-left: 4px solid rgb(18, 141, 185);
    padding: 1.25rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}

.quote-generator-testimonial-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.quote-generator-testimonial-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(20, 22, 24);
}

.quote-generator-testimonial-content p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(20, 22, 24, 0.8);
    line-height: 1.5;
}



.quote-generator-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgb(20, 22, 24);
}

.quote-generator-summary-row:last-child {
    margin-bottom: 0;
}


.quote-generator-summary-discount {
    color: rgb(18, 141, 185);
}





.quote-generator-form {
    margin-bottom: 1rem;
}

.quote-generator-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(119, 119, 119, 0.65);
    margin-top: 0.5rem;
}



/* Success Screen */
.quote-generator-success-content {
    text-align: center;
}

.quote-generator-success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.quote-generator-checkmark {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-generator-checkmark svg {
    width: 4rem;
    height: 4rem;
}

.quote-generator-success-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: rgb(20, 22, 24);
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.quote-generator-success-subtitle {
    text-align: center;
}

.quote-generator-success-message-box {
    background-color: rgba(18, 141, 185, 0.05);
    border-left: 4px solid rgb(18, 141, 185);
    padding: 1.75rem;
    border-radius: 0.5rem;
    margin: 2rem auto;
    max-width: 800px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.quote-generator-success-icon-inline {
    flex-shrink: 0;
    margin-top: 0;
}

.quote-generator-success-message {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(20, 22, 24, 0.8);
    margin: 0;
    text-align: left;
    flex: 1;
}

.quote-generator-success-message strong {
    color: rgb(18, 141, 185);
    font-weight: 600;
}

.quote-generator-success-text {
    color: rgba(119, 119, 119, 0.65);
    margin-bottom: 2rem;
}

.quote-generator-success-summary {
    background-color: rgba(119, 119, 119, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.quote-generator-success-summary-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgb(20, 22, 24);
    margin: 0 0 1rem 0;
}

.quote-generator-success-details {
    margin-bottom: 1rem;
}

.quote-generator-success-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    color: rgb(20, 22, 24);
}

.quote-generator-success-discount {
    color: rgb(18, 141, 185);
}

.quote-generator-success-divider {
    height: 1px;
    background-color: rgba(119, 119, 119, 0.2);
    margin: 1rem 0;
}

.quote-generator-success-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(119, 119, 119, 0.2);
    font-size: 1.25rem;
    font-weight: 500;
    color: rgb(20, 22, 24);
}

.quote-generator-success-total-amount {
    font-size: 1.875rem;
    font-weight: 600;
    color: rgb(18, 141, 185);
}

/* Next Steps Box - styled like combo notice */
.quote-generator-next-steps-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: rgba(18, 141, 185, 0.1);
    border-left: 4px solid rgb(18, 141, 185);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    color: rgb(20, 22, 24);
    font-size: 0.95rem;
}

.quote-generator-next-steps-box svg {
    color: rgb(18, 141, 185);
}

.quote-generator-next-steps-box strong {
    color: rgb(20, 22, 24);
}

/* Modals */
.quote-generator-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.quote-generator-modal.active {
    display: flex;
}

.quote-generator-modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 58rem;
    margin: 1rem;
    position: relative;
}

.quote-generator-modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: rgba(119, 119, 119, 0.65);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.quote-generator-modal-close:hover {
    color: rgb(20, 22, 24);
}

.quote-generator-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(20, 22, 24);
    margin: 0 0 1rem 0;
}

.quote-generator-modal-body {
    color: rgba(119, 119, 119, 0.85);
    line-height: 1.6;
}

.quote-generator-modal-body ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

@media (max-width: 768px) {
    .quote-generator-modal-body ul {
        grid-template-columns: 1fr;
    }
}

.quote-generator-modal-note {
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Radio buttons */
.quote-generator-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    /* No gap at all */
}

.quote-generator-radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Reduced horizontal gap */
    cursor: pointer;
    padding: 0.375rem 0.5rem;
    /* Much smaller padding */
    border-radius: 4px;
    transition: background-color 0.2s;
}

.quote-generator-radio-option:hover {
    background-color: rgba(18, 141, 185, 0.05);
}

.quote-generator-radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: rgb(18, 141, 185);
    flex-shrink: 0;
}

.quote-generator-radio-option span {
    font-size: 0.9375rem;
    color: rgb(51, 51, 51);
}

/* Progress Indicator */
.quote-generator-progress-container {
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quote-generator-progress-bar-wrapper {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.quote-generator-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #128DB9 0%, #0ea5d9 100%);
    width: 33%;
    transition: width 0.4s ease;
    border-radius: 4px;
}

.quote-generator-progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.quote-generator-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
}

.quote-generator-progress-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.quote-generator-progress-step.active .quote-generator-progress-number {
    background-color: #128DB9;
    color: white;
    transform: scale(1.1);
}

.quote-generator-progress-step.completed .quote-generator-progress-number {
    background-color: #10b981;
    color: white;
}

.quote-generator-progress-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.quote-generator-progress-step.active .quote-generator-progress-label {
    color: #128DB9;
    font-weight: 600;
}

.quote-generator-progress-text {
    text-align: center;
    font-size: 0.875rem;
    color: #128DB9;
    font-weight: 600;
}

/* Validation Hints */
.quote-generator-hint {
    font-size: 0.8125rem;
    color: #666;
    margin-top: 0.375rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
}

.quote-generator-hint.success {
    color: #10b981;
}

.quote-generator-hint.warning {
    color: #f59e0b;
}

.quote-generator-hint.error {
    color: #dc3232;
}

/* Static hint - always grey, no dynamic changes */
.quote-generator-hint-static {
    font-size: 0.8125rem;
    color: #999;
    margin-top: 0.375rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 640px) {
    .quote-generator-wrapper {
        width: 95%;
        max-width: 95%;
        padding: 0 0.5rem;
    }

    .quote-generator-card {
        padding: 1.25rem;
    }

    .quote-generator-header {
        padding: 1.25rem;
    }

    .quote-generator-content {
        padding: 1.25rem;
    }

    .quote-generator-options {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .quote-generator-option {
        min-height: 60px;
    }

    .quote-generator-service-option {
        min-height: 60px;
    }

    /* Touch-friendly buttons */
    .quote-generator-btn {
        min-height: 48px;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    /* Larger input fields for mobile */
    .quote-generator-input {
        min-height: 48px;
        font-size: 16px;
        /* Prevents iOS zoom on focus */
        padding: 0.75rem;
    }

    textarea.quote-generator-input {
        min-height: 120px;
        font-size: 16px;
    }

    /* Radio and checkbox touch targets */
    .quote-generator-radio-option {
        min-height: 44px;
        padding: 0.625rem 0.75rem;
    }

    .quote-generator-checkbox-label {
        min-height: 44px;
        padding: 0.625rem 0.75rem;
    }

    .quote-generator-promo-banner {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }

    /* Progress indicator mobile */
    .quote-generator-progress-container {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }

    .quote-generator-progress-label {
        font-size: 0.65rem;
    }

    .quote-generator-progress-number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .quote-generator-progress-text {
        font-size: 0.75rem;
    }

    /* Actions stack vertically */
    .quote-generator-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .quote-generator-actions button {
        width: 100%;
    }

    .quote-generator-option-content {
        padding-right: 3.5rem;
    }

    .quote-generator-service-content {
        padding-right: 3.5rem;
    }

    /* Hints are smaller on mobile */
    .quote-generator-hint {
        font-size: 0.75rem;
    }

    /* Summary cards */
    .quote-generator-summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    /* Success screen */
    .quote-generator-success {
        padding: 1.25rem;
    }
}

/* Checkbox label */
.quote-generator-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    padding: 0.625rem;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.quote-generator-checkbox-label:hover {
    background-color: rgba(18, 141, 185, 0.05);
}

.quote-generator-checkbox-inline {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: rgb(18, 141, 185);
}

.quote-generator-checkbox-label span {
    font-size: 0.9375rem;
    color: rgb(51, 51, 51);
    font-weight: 500;
}

/* Availability Status - styled same as booking banner */
.quote-generator-availability-status {
    margin-top: 10px;
}

/* Flatpickr Custom Styling with Inter Font */
.flatpickr-calendar {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.flatpickr-months {
    font-family: 'Inter', sans-serif;
}

.flatpickr-current-month {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.flatpickr-weekday {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #666;
}

.flatpickr-day {
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #128DB9;
    border-color: #128DB9;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: #0f7599;
    border-color: #0f7599;
}

.flatpickr-day:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

.flatpickr-day.today {
    border-color: #128DB9;
}

.flatpickr-day.today:hover {
    border-color: #128DB9;
    background: #f0f0f0;
}

/* Make the input use Inter font too */
#documentReadyDate {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Lucide Icon Styling */
.quote-generator-promo-banner i[data-lucide] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.quote-generator-promo-banner [data-lucide="circle-check"] {
    color: #008000;
    /* Green */
}

.quote-generator-promo-banner [data-lucide="alert-triangle"] {
    color: #f59e0b;
    /* Orange */
}

.quote-generator-promo-banner [data-lucide="circle-x"] {
    color: #D22B2B;
    /* Red */
}

.quote-generator-promo-banner [data-lucide="calendar"] {
    color: #128DB9;
    /* Brand blue */
}

.quote-generator-promo-banner [data-lucide="info"] {
    color: #6b7280;
    /* Gray */
}

/* Decrease line spacing for reference software radio buttons */
.quote-generator-radio-group .quote-generator-radio-option {
    margin-bottom: 0.25rem;
}

.quote-generator-radio-group .quote-generator-radio-option:last-child {
    margin-bottom: 0;
}

/* Testimonial speech bubble icon */
.quote-generator-testimonial-icon i[data-lucide] {
    width: 24px;
    height: 24px;
}

/* What's Included List Icons */
.quote-generator-included-list li i[data-lucide="circle-check"] {
    width: 18px;
    height: 18px;
    color: #008000;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Global consistent sizing for all circle-check icons */
i[data-lucide="circle-check"],
[data-lucide="circle-check"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

/* Ensure SVG inside also matches */
i[data-lucide="circle-check"] svg,
[data-lucide="circle-check"] svg {
    width: 18px !important;
    height: 18px !important;
    stroke-width: 2 !important;
    display: block !important;
}

/* Specific targeting for list items */
.quote-generator-included-list li {
    display: flex !important;
    align-items: flex-start !important;
    line-height: 1.6 !important;
}

.quote-generator-included-list li i[data-lucide="circle-check"],
.quote-generator-included-list li [data-lucide="circle-check"] {
    margin-top: 2px !important;
    flex-shrink: 0 !important;
}


/* Disclaimer Box */
.quote-generator-disclaimer-box {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid rgb(255, 193, 7);
    padding: 1.25rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.quote-generator-disclaimer-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: rgb(255, 193, 7);
}

.quote-generator-disclaimer-icon i[data-lucide] {
    width: 24px;
    height: 24px;
}

.quote-generator-disclaimer-content {
    flex: 1;
}

.quote-generator-disclaimer-title {
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
    color: rgb(20, 22, 24);
    line-height: 1.5;
}

.quote-generator-disclaimer-title strong {
    font-weight: 600;
}

.quote-generator-disclaimer-steps {
    margin: 0;
    padding-left: 1.25rem;
    list-style: decimal;
    color: rgb(20, 22, 24);
}

.quote-generator-disclaimer-steps li {
    font-size: 0.95rem;
    color: rgb(20, 22, 24);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.quote-generator-disclaimer-steps li:last-child {
    margin-bottom: 0;
}

/* Force list numbers to be black */
.quote-generator-disclaimer-steps li::marker {
    color: rgb(20, 22, 24);
}

/* ===== GDPR Consent Checkbox ===== */
.quote-generator-gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.quote-generator-gdpr-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.quote-generator-gdpr-checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #bbb;
    border-radius: 4px;
    background-color: #fff;
    margin-top: 1px;
    position: relative;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.quote-generator-gdpr-checkbox:checked~.quote-generator-gdpr-checkmark {
    background-color: rgb(18, 141, 185);
    border-color: rgb(18, 141, 185);
}

.quote-generator-gdpr-checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.quote-generator-gdpr-checkbox:checked~.quote-generator-gdpr-checkmark::after {
    display: block;
}

.quote-generator-gdpr-label:hover .quote-generator-gdpr-checkmark {
    border-color: rgb(18, 141, 185);
}

.quote-generator-gdpr-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.quote-generator-gdpr-text a {
    color: rgb(18, 141, 185);
    text-decoration: underline;
}