:root {
    --primary-pink: #E83F8E;
    --secondary-blue: #153CAF;
    --dark-blue: #05054f;
    --text-gray: #67696c;
    --bg-color: #FAFAF7;
    --light-gray: #F5F4EE;
    --soft-white: #F9F9F9;
    --black: #000000;
    --white: #FFFFFF;

}






html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;

}


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body {
    color: var(--text-gray);
    background: var(--bg-color);
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}





p {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--text-gray);
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 27px;
}

h5 {
    font-size: 21px;
}

h6 {
    font-size: 17px;
}



h1,
h2 {
    font-family: 'Boldonse', sans-serif;
    color: var(--secondary-blue);
    font-weight: 400;
    line-height: 1.5em;
    margin-bottom: 5px;
    margin: 0 0 15px 0;
}





h3,
h4,
h5,
h6 {
    font-family: 'Roboto Flex', sans-serif;
    color: var(--secondary-blue);
    font-weight: 400;
    line-height: 1.5em;
    margin: 0 0 15px 0;
}












/* BreadCrumb Section */
.breadcrumb-box {
    position: relative;
    background: url('../img/end-of-lease-cleaning-5.webp') center center / cover no-repeat;
    width: 100%;
    padding: clamp(4rem, 10vw, 8rem) 1rem;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.breadcrumb-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.breadcrumb-content {
    max-width: 900px;
}


.breadcrumb-content>* {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    text-transform: uppercase;
    font-size: clamp(35px, 6vw, 50px);
    color: var(--white);
}

.breadcrumb-content p {
    text-transform: capitalize;
    font-size: 16px;
    color: var(--white);
}


.breadcrumb-content a {
    position: relative;
    color: var(--white);
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size 0.3s ease;
}

.breadcrumb-content a:hover {
    background-size: 100% 2px;
}



.breadcrumb-content span {
    text-transform: capitalize;
    text-decoration: none;
    color: var(--white);
}







@media (max-width:945px) {
    .breadcrumb-content {
        max-width: 900px;
        margin-top: 40px;
    }
}

/* BreadCrumb Section */





























/* How It Works Section */
.how-it-works {
    padding: 80px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.step-card i {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.step-number {
    position: absolute;
    top: -12px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: var(--secondary-blue);
    color: white;
    border-radius: 50%;
    line-height: 32px;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}



















/* Service Selection */
.services-section {
    padding: 80px 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 12px 20px;
    margin-bottom: 10px;
    background: rgba(59, 130, 246, 0.03);
    border: 1px solid rgba(128, 128, 128, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.service-card.selected {
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.02), white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.service-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: Boldonse, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
}

.service-title span{
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: Boldonse, sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 2vw, 20px);
    color: var(--text-gray);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    aspect-ratio: 1/1;
    background: var(--secondary-blue);
    border-radius: 50px;
}


.service-icon img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.service-checkbox {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: green;
}

.service-details {
    display: none;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--text-gray);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-details.show {
    display: block;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    background-color: var(--bg-color);
}

.price-item:hover {
    border-color: var(--text-gray);
    background: white;
}

.price-label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-value {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
}


.addon-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--secondary-blue);
    cursor: pointer;
}

.addon-item label {
    cursor: pointer;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}










/* Form Sections */
.form-section {
    display: none;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width:992px) {
    .form-section {
        margin-bottom: 20px;
    }

}

.form-section.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-family: 'Boldonse', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section h3 i {
    color: var(--secondary-blue);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-control,
.form-select {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid var(--text-gray);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: white;
    color: var(--text-primary);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
    color: var(--white);
}











/* Price Summary */
.price-summary {
    background: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 2rem;
    border-radius: 20px;
    position: sticky;
    top: 120px;
}

.price-summary h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: 'Boldonse', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-summary h3 i {
    color: var(--secondary-blue);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--text-gray);
    font-size: 0.95rem;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-item span:first-child {
    color: var(--text-secondary);
}

.summary-item span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

.summary-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--text-gray);
}

.summary-total span:last-child {
    color: var(--secondary-blue);
}



























/* Confirmation Message */
.confirmation-message {
    display: none;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.confirmation-message.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

.confirmation-icon {
    font-size: 5rem;
    color: green;
    margin-bottom: 1rem;
}

.confirmation-message h2 {
    font-family: Boldonse, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.confirmation-message h5 {
    font-family: Boldonse, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary-blue);
}

.confirmation-message .lead {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.confirmation-message .bg-light {
    background-color: rgba(59, 130, 246, 0.02);
    border-radius: 20px;
    padding: 20px 10px;
}







.alert-note {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
    border-left: 3px solid var(--secondary-blue);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.alert-note p {
    font-size: 0.9rem;
    color: var(--text-primary);
}


.alert-note i {
    color: var(--secondary-blue);
    margin-right: 0.5rem;
}

.alert-note strong {
    color: var(--text-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: Boldonse, sans-serif;
    font-size: 2.5rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}














.text-muted {
    color: var(--white) !important;
    font-size: 0.875rem;
}

/* Override: price hints inside form labels must be visible */
.form-label .text-muted {
    color: #888 !important;
    font-size: 0.82rem;
    font-weight: 400;
}

small.text-muted {
    display: block;
    margin-top: 0.5rem;
}

/* Quantity Row (Upholstery) */
.qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--soft-white);
    border-radius: 15px;
    margin-bottom: 0.6rem;
    gap: 1rem;
}

.upholstery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.upholstery-grid .qty-row {
    margin-bottom: 0;
}

.qty-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.qty-price {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
}

.qty-select,
.qty-input {
    width: 80px !important;
    padding: 8px 10px !important;
    flex-shrink: 0;
    text-align: center;
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    .sticky-bottom {
        display: block;
    }

    .upholstery-grid {
        grid-template-columns: 1fr;
    }


    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 10px 20px;
    }

    .service-title {
        font-size: 1.125rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .services-section,
    .how-it-works,
    .faq-section {
        padding: 60px 0;
    }

    .price-summary {
        margin-top: 2rem;
        position: static;
    }
}

@media (max-width: 576px) {

    .btn-primary-custom {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }
}




/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 2px solid var(--secondary-blue);
    outline-offset: 2px;
}





