.basement-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.basement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}

.basement-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 28px 28px 18px;
    transition: transform 0.3s ease;
}

.basement-card:hover .basement-card-icon {
    transform: scale(1.06);
}

.services-area-two .col-lg-3:nth-child(1) .basement-card-icon {
    background: #ede9fe;
    color: #6d28d9;
}

.services-area-two .col-lg-3:nth-child(2) .basement-card-icon {
    background: #dcfce7;
    color: #16a34a;
}

.services-area-two .col-lg-3:nth-child(3) .basement-card-icon {
    background: #dbeafe;
    color: #2563eb;
}

.services-area-two .col-lg-3:nth-child(4) .basement-card-icon {
    background: #ffedd5;
    color: #ea580c;
}

.basement-card-title {
    padding: 0 28px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
    line-height: 1.3;
}

.basement-card-text {
    padding: 0 28px 28px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 0;
    flex: 1;
}

/* Modern section heading */
.services-area-two {
    font-family: 'Poppins', sans-serif;
    background: #f7f9fc;
}

.services-area-two .col-lg-3 {
    display: flex;
}

.services-area-two .sub-title {
    display: inline-block;
    background: #ede9fe;
    color: #6d28d9;
    padding: 8px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-area-two .section-title .title,
.services-area-two .section-title-two .title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #1f2937;
}

.services-area-two .section-title p,
.services-area-two .section-title-two p {
    max-width: 680px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .services-area-two .section-title .title,
    .services-area-two .section-title-two .title {
        font-size: 32px;
    }
    .basement-card {
        border-radius: 22px;
    }
}

@media (max-width: 575px) {
    .basement-card-icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
        margin: 22px 22px 14px;
        border-radius: 15px;
    }
    .basement-card-title {
        padding: 0 22px;
        font-size: 19px;
    }
    .basement-card-text {
        padding: 0 22px 22px;
        font-size: 14px;
    }
}

/* ============ CLIENT RIGHTS / ABOUT SECTION ============ */
.about-area,
.introduction-area {
    background: #fff;
}

.about-area .row.align-items-stretch,
.introduction-area .row.align-items-stretch {
    align-items: stretch !important;
}

.about-img-wrap-modern,
.introduction-area .introduction-img-wrap-modern {
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-content-modern,
.introduction-content-modern {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0 20px 40px;
}

.about-area .sub-title,
.introduction-area .sub-title {
    display: inline-block;
    background: #ede9fe;
    color: #6d28d9;
    padding: 8px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.about-area .section-title .title,
.introduction-area .section-title-two .title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #1f2937;
}

.about-area .section-title p,
.introduction-area .section-title-two p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

.rights-grid {
    margin-top: 8px;
}

.right-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    background: #eef1f5;
    transition: all 0.3s ease;
    height: 100%;
}

.right-item:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.right-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-area .rights-grid > div:nth-child(1) .right-item-icon,
.introduction-area .rights-grid > div:nth-child(1) .right-item-icon { background: #ede9fe; color: #6d28d9; }
.about-area .rights-grid > div:nth-child(2) .right-item-icon,
.introduction-area .rights-grid > div:nth-child(2) .right-item-icon { background: #dcfce7; color: #16a34a; }
.about-area .rights-grid > div:nth-child(3) .right-item-icon,
.introduction-area .rights-grid > div:nth-child(3) .right-item-icon { background: #dbeafe; color: #2563eb; }
.about-area .rights-grid > div:nth-child(4) .right-item-icon,
.introduction-area .rights-grid > div:nth-child(4) .right-item-icon { background: #ffedd5; color: #ea580c; }
.about-area .rights-grid > div:nth-child(5) .right-item-icon,
.introduction-area .rights-grid > div:nth-child(5) .right-item-icon { background: #fce7f3; color: #db2777; }
.about-area .rights-grid > div:nth-child(6) .right-item-icon,
.introduction-area .rights-grid > div:nth-child(6) .right-item-icon { background: #ccfbf1; color: #0d9488; }

.right-item-text {
    flex: 1;
    min-width: 0;
}

.right-item-text h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1f2937;
}

/* ============ GLOBAL RENOVATION THEME OVERRIDES ============ */
:root {
    --tg-primary-color: #c9a25d;
    --tg-secondary-color: #111111;
    --tg-body-font-color: #cdbfa9;
    --tg-heading-font-color: #f5efe3;
    --tg-paragraph-color: #cdbfa9;
    --tg-menu-color: #f5efe3;
    --tg-blue: #111111;
    --tg-blue-two: #191919;
    --tg-blue-three: #232323;
    --tg-border-color: rgba(201, 162, 93, 0.22);
    --tg-input-border-color: rgba(201, 162, 93, 0.2);
    --tg-gray: #f4eee3;
    --tg-gray-two: #ede4d7;
}

body {
    background: #111111;
    color: #cdbfa9;
}

h1, h2, h3, h4, h5, h6 {
    color: #f5efe3;
}

a {
    color: #c9a25d;
}

a:hover {
    color: #d8b06b;
}

#sticky-header,
.menu-area-four,
.menu-area-four.transparent-header,
.menu-area-four.transparent-header.sticky-menu,
.sticky-menu {
    background: rgba(17, 17, 17, 0.97) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28) !important;
}

.menu-area-four .menu-wrap {
    border-bottom: 1px solid rgba(201, 162, 93, 0.14);
    min-height: 116px;
}

.menu-area-four .menu-nav {
    min-height: 116px;
}

#header-fixed-height,
#header-fixed-height.active-height {
    height: 116px !important;
}

.menu-area-four .logo {
    flex: 0 0 220px;
    height: 108px;
    overflow: hidden;
}

.menu-area-four .logo a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.menu-area-four .logo img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
    object-position: center;
}

.mobile-menu .nav-logo img {
    display: block;
    width: auto !important;
    max-width: 100%;
    height: auto !important;
    max-height: 72px;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .menu-area.menu-area-four {
        padding: 0 !important;
    }

    .menu-area-four .menu-wrap,
    .menu-area-four .menu-nav {
        min-height: 96px;
    }

    #header-fixed-height,
    #header-fixed-height.active-height {
        height: 96px !important;
    }

    .menu-area-four .logo {
        flex-basis: 160px;
        height: 84px;
    }
}

@media (max-width: 575.98px) {
    .menu-area-four .menu-wrap,
    .menu-area-four .menu-nav {
        min-height: 84px;
    }

    #header-fixed-height,
    #header-fixed-height.active-height {
        height: 84px !important;
    }

    .menu-area-four .logo {
        flex-basis: 126px;
        height: 68px;
        margin-left: 12px;
    }
}

@media (max-width: 359.98px) {
    .menu-area-four .menu-wrap,
    .menu-area-four .menu-nav {
        min-height: 80px;
    }

    #header-fixed-height,
    #header-fixed-height.active-height {
        height: 80px !important;
    }

    .menu-area-four .logo {
        flex-basis: 94px;
        height: 52px;
        margin-left: 8px;
    }
}

.menu-area-four .navbar-wrap ul li a,
.menu-area-four .mobile-nav-toggler {
    color: #c9a25d !important;
}

@media (max-width: 991.98px) {
    .menu-area-four .mobile-header-actions {
        top: 0;
        bottom: 0;
        height: 100%;
        transform: none;
    }

    .menu-area.menu-area-four .mobile-nav-toggler {
        display: flex !important;
        align-items: center;
        justify-content: center;
        height: 100%;
        margin-top: 0;
        line-height: 1;
    }

    .menu-area.menu-area-four .mobile-nav-toggler i {
        display: block;
        line-height: 1;
    }
}

.menu-area-four .mobile-quote-btn,
.menu-area-four .mobile-menu-quote-btn,
.menu-area-four .header-action .btn.btn-two {
    color: #111111 !important;
}

.menu-area-four .navbar-wrap ul li a:hover,
.menu-area-four .navbar-wrap ul li.active > a,
.menu-area-four .navbar-wrap ul li.menu-item-has-children:hover > a,
.menu-area-four .mobile-nav-toggler:hover {
    color: #d8b06b !important;
}

.header-action .btn.btn-two,
.mobile-quote-btn,
.mobile-menu-quote-btn,
.footer-newsletter button,
.btn.btn-two,
.btn-primary,
.cookie-bar-action .btn {
    background: #c9a25d !important;
    border-color: #c9a25d !important;
    color: #111111 !important;
}

.header-action .btn.btn-two:hover,
.mobile-quote-btn:hover,
.mobile-menu-quote-btn:hover,
.footer-newsletter button:hover,
.btn.btn-two:hover,
.btn-primary:hover,
.cookie-bar-action .btn:hover {
    background: transparent !important;
    color: #c9a25d !important;
    border-color: #c9a25d !important;
}

.navbar-wrap ul li .sub-menu,
.mobile-menu .menu-box {
    background: #1b1b1b !important;
    border-color: rgba(201, 162, 93, 0.16) !important;
}

.navbar-wrap ul li .sub-menu li,
.mobile-menu .navigation li {
    border-color: rgba(201, 162, 93, 0.14) !important;
}

.navbar-wrap ul li .sub-menu li a,
.mobile-menu .navigation li > a,
.mobile-menu .navigation li ul li > a,
.mobile-menu .close-btn {
    color: #f5efe3 !important;
}

.navbar-wrap ul li .sub-menu li a:hover,
.navbar-wrap ul li .sub-menu li.active a,
.mobile-menu .navigation li > a:hover,
.mobile-menu .close-btn:hover,
.mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
    color: #c9a25d !important;
}

.menu-backdrop {
    background: rgba(0, 0, 0, 0.72) !important;
}

.reno-site-footer .footer-bg,
.footer-bg.reno-footer-bg {
    position: relative;
    background-position: center;
    background-size: cover;
}

.reno-site-footer .footer-bg::before,
.footer-bg.reno-footer-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.98));
}

.reno-site-footer .footer-top,
.reno-site-footer .footer-bottom {
    position: relative;
    z-index: 1;
}

.reno-site-footer .footer-top {
    padding-top: 90px;
    padding-bottom: 52px;
    border-top: 1px solid rgba(201, 162, 93, 0.12);
}

.reno-site-footer .footer-bottom {
    border-top: 1px solid rgba(201, 162, 93, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.reno-site-footer .footer-content > .logo {
    width: 300px;
    max-width: 100%;
    height: 180px;
    margin-top: -71px;
    margin-bottom: 8px !important;
    padding: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(201, 162, 93, 0.55);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.reno-site-footer .footer-content > .logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.reno-site-footer .footer-brand-logo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    margin: auto;
}

@media (max-width: 575.98px) {
    .reno-site-footer .footer-content > .logo {
        width: 250px;
        height: 150px;
        margin-right: auto;
        margin-left: auto;
    }
}

.reno-site-footer .footer-content p,
.reno-site-footer .footer-link .list-wrap li,
.reno-site-footer .footer-link .list-wrap li a,
.reno-site-footer .copyright-text p,
.reno-site-footer .cookie-bar-text {
    color: #cdbfa9 !important;
}

.reno-site-footer .fw-title,
.reno-site-footer .footer-newsletter .title {
    color: #f5efe3 !important;
}

.reno-site-footer .footer-link .list-wrap li a:hover,
.reno-site-footer .footer-link .list-wrap li a:hover i,
.reno-site-footer .footer-link .list-wrap li a i {
    color: #c9a25d !important;
}

.reno-site-footer .footer-newsletter input {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(201, 162, 93, 0.18) !important;
    color: #f5efe3 !important;
}

.reno-site-footer .footer-newsletter input::placeholder {
    color: rgba(245, 239, 227, 0.65) !important;
}

.cookie-bar-wrap,
.cookie-bar {
    background: #1b1b1b !important;
    border-color: rgba(201, 162, 93, 0.16) !important;
    color: #f5efe3 !important;
}

.breadcrumb-bg::before,
.services-bg::before,
.newsletter-bg::before,
.appointment-bg::before,
.faq-bg::before {
    background: rgba(17, 17, 17, 0.78) !important;
}

.section-title .sub-title,
.section-title-two .sub-title,
.breadcrumb-content .title span,
.blog-post-meta li i,
.sidebar .widget-title::before,
.contact-info-item .icon,
.project-content .link-btn,
.services-item .services-icon,
.services-item-two .services-icon,
.features-item .features-icon {
    color: #c9a25d !important;
}

.section-title .title,
.section-title-two .title,
.breadcrumb-content .title,
.blog-content .title,
.services-content .title,
.contact-info-item .content .title,
.project-content .title {
    color: #f5efe3;
}

.footer-link .list-wrap li a,
.contact-info-item .content p,
.blog-content p,
.services-content p,
.breadcrumb-content p {
    color: #cdbfa9;
}

.sidebar-widget,
.blog-sidebar .widget,
.contact-form-wrap,
.faq-wrap,
.project-details-wrap,
.services-details-content {
    border-color: rgba(201, 162, 93, 0.12) !important;
}

.services-widget {
    background: #1b1b1b !important;
    border: 1px solid rgba(201, 162, 93, 0.16) !important;
}

.services-widget .widget-title,
.services-widget.widget-bg .widget-title {
    color: #f5efe3 !important;
}

.services-widget .widget-title::before,
.services-widget .widget-title::after {
    background: #c9a25d !important;
}

.our-services-list .list-wrap li {
    border-color: rgba(201, 162, 93, 0.12) !important;
}

.our-services-list .list-wrap li a {
    background: #c9a25d !important;
    color: #111111 !important;
    border-radius: 6px;
    padding: 14px 18px !important;
    font-weight: 700;
}

.our-services-list .list-wrap li a i {
    color: #111111 !important;
}

.our-services-list .list-wrap li a:hover {
    background: #d8b06b !important;
    color: #111111 !important;
}

.our-services-list .list-wrap li a:hover i {
    color: #111111 !important;
}

.service-benefits-split {
    margin-top: 42px;
}

.service-gallery-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #171717;
}

.service-gallery-carousel .carousel-item {
    height: 500px;
}

.service-gallery-carousel .carousel-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.service-gallery-counter {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    min-width: 54px;
    padding: 7px 10px;
    border: 1px solid rgba(201, 162, 93, 0.65);
    border-radius: 6px;
    background: rgba(17, 17, 17, 0.82);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.service-gallery-carousel .service-gallery-control {
    top: auto;
    bottom: 18px;
    z-index: 3;
    display: inline-flex;
    width: auto;
    height: 44px;
    padding: 0 15px;
    border: 1px solid rgba(201, 162, 93, 0.75);
    border-radius: 6px;
    background: rgba(17, 17, 17, 0.88);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    gap: 9px;
    opacity: 1;
}

.service-gallery-carousel .carousel-control-prev {
    left: 18px;
}

.service-gallery-carousel .carousel-control-next {
    right: 18px;
}

.service-gallery-carousel .service-gallery-control:hover,
.service-gallery-carousel .service-gallery-control:focus {
    background: #c9a25d;
    color: #111111;
    opacity: 1;
}

.service-gallery-carousel .service-gallery-control span {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.service-benefits-media {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.service-benefits-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.service-benefits-copy {
    height: 100%;
    padding: 28px 30px;
    background: #1b1b1b;
    border: 1px solid rgba(201, 162, 93, 0.14);
    border-radius: 8px;
}

.service-benefits-copy .title {
    color: #f5efe3 !important;
}

.service-benefits-copy p,
.service-benefits-copy .list-wrap li {
    color: #cdbfa9 !important;
}

.service-benefits-copy .list-wrap li i {
    color: #c9a25d !important;
}

@media (max-width: 991px) {
    .service-benefits-media img {
        height: 220px;
    }

    .service-benefits-copy {
        padding: 24px;
    }
}

@media (max-width: 767.98px) {
    .service-gallery-carousel .carousel-item {
        height: 340px;
    }

    .service-gallery-carousel .service-gallery-control {
        bottom: 12px;
        height: 40px;
        padding: 0 12px;
    }

    .service-gallery-carousel .carousel-control-prev {
        left: 12px;
    }

    .service-gallery-carousel .carousel-control-next {
        right: 12px;
    }
}

.right-item-text p {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-content-modern,
    .introduction-content-modern {
        padding: 30px 0 0 0;
    }
    .about-img-wrap-modern,
    .introduction-img-wrap-modern {
        min-height: 300px;
    }
}

@media (max-width: 575px) {
    .about-img-wrap-modern,
    .introduction-img-wrap-modern {
        min-height: 220px;
        border-radius: 20px;
    }
    .right-item {
        padding: 12px;
    }
    .right-item-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
        border-radius: 12px;
    }
    .right-item-text h6 {
        font-size: 14px;
    }
    .right-item-text p {
        font-size: 12px;
    }
}

/* ============ WHAT'S INCLUDED SECTION ============ */
.included-section .col-lg-4 {
    display: flex;
}

.included-section .row:last-child {
    position: relative;
}

/* Vertical connector lines between columns */
.included-section .row:last-child::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% / 3);
    width: 2px;
    background: linear-gradient(to bottom, #cbd5e1 0%, #cbd5e1 calc(100% - 16px), transparent calc(100% - 16px));
    pointer-events: none;
    z-index: 0;
}

.included-section .row:last-child::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% / 3 * 2);
    width: 2px;
    background: linear-gradient(to bottom, #cbd5e1 0%, #cbd5e1 calc(100% - 16px), transparent calc(100% - 16px));
    pointer-events: none;
    z-index: 0;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    flex: 1;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .included-item:nth-child(-n+9)::before {
        content: '';
        position: absolute;
        left: 26px;
        bottom: -11px;
        width: 3px;
        height: 8px;
        border-radius: 2px;
        background: #cbd5e1;
        z-index: 2;
        pointer-events: none;
    }

    .included-item:not(:nth-child(3n))::after {
        content: '';
        position: absolute;
        right: -30px;
        top: 50%;
        width: 30px;
        height: 3px;
        border-radius: 2px;
        background: #cbd5e1;
        transform: translateY(-50%);
        z-index: 2;
        pointer-events: none;
    }
}

.included-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.included-item-start {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.included-item-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.included-item-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.included-item:hover .included-item-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.included-item-label {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
}

/* 6 repeating colors for 12 items */
.included-item:nth-child(1) .included-item-icon { background: #ede9fe; color: #6d28d9; }
.included-item:nth-child(2) .included-item-icon { background: #dcfce7; color: #16a34a; }
.included-item:nth-child(3) .included-item-icon { background: #dbeafe; color: #2563eb; }
.included-item:nth-child(4) .included-item-icon { background: #ffedd5; color: #ea580c; }
.included-item:nth-child(5) .included-item-icon { background: #fce7f3; color: #db2777; }
.included-item:nth-child(6) .included-item-icon { background: #ccfbf1; color: #0d9488; }
.included-item:nth-child(7) .included-item-icon { background: #ede9fe; color: #6d28d9; }
.included-item:nth-child(8) .included-item-icon { background: #dcfce7; color: #16a34a; }
.included-item:nth-child(9) .included-item-icon { background: #dbeafe; color: #2563eb; }
.included-item:nth-child(10) .included-item-icon { background: #ffedd5; color: #ea580c; }
.included-item:nth-child(11) .included-item-icon { background: #fce7f3; color: #db2777; }
.included-item:nth-child(12) .included-item-icon { background: #ccfbf1; color: #0d9488; }

.included-item:nth-child(1) .included-item-bullet { background: #6d28d9; }
.included-item:nth-child(2) .included-item-bullet { background: #16a34a; }
.included-item:nth-child(3) .included-item-bullet { background: #2563eb; }
.included-item:nth-child(4) .included-item-bullet { background: #ea580c; }
.included-item:nth-child(5) .included-item-bullet { background: #db2777; }
.included-item:nth-child(6) .included-item-bullet { background: #0d9488; }
.included-item:nth-child(7) .included-item-bullet { background: #6d28d9; }
.included-item:nth-child(8) .included-item-bullet { background: #16a34a; }
.included-item:nth-child(9) .included-item-bullet { background: #2563eb; }
.included-item:nth-child(10) .included-item-bullet { background: #ea580c; }
.included-item:nth-child(11) .included-item-bullet { background: #db2777; }
.included-item:nth-child(12) .included-item-bullet { background: #0d9488; }

/* Modern heading */
.included-section .sub-title {
    display: inline-block;
    background: #ede9fe;
    color: #6d28d9;
    padding: 8px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.included-section .section-title .title,
.included-section .section-title-two .title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #1f2937;
}

.included-section .section-title p,
.included-section .section-title-two p {
    max-width: 680px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 575px) {
    .included-item {
        padding: 14px 16px;
        gap: 14px;
    }
    .included-item-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
        border-radius: 12px;
    }
    .included-item-label {
        font-size: 14px;
    }
}

/* Process Steps - Dark Flow Style */
.process-steps-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.process-step-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.35s ease;
    flex: 1;
    position: relative;
    z-index: 1;
}

.process-step-item:hover {
    transform: translateX(4px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.process-step-start {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.process-step-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.process-step-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.process-step-item:hover .process-step-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.process-step-info {
    display: flex;
    flex-direction: column;
}

.process-step-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.process-step-text {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
    line-height: 1.4;
}

@media (min-width: 992px) {
    .process-step-item:nth-child(-n+9)::before {
        content: '';
        position: absolute;
        left: 26px;
        bottom: -11px;
        width: 3px;
        height: 8px;
        border-radius: 2px;
        background: rgba(255,255,255,0.15);
        z-index: 2;
        pointer-events: none;
    }

    .process-step-item:not(:nth-child(3n))::after {
        content: '';
        position: absolute;
        right: -30px;
        top: 50%;
        width: 30px;
        height: 3px;
        border-radius: 2px;
        background: rgba(255,255,255,0.15);
        transform: translateY(-50%);
        z-index: 2;
        pointer-events: none;
    }
}

.process-step-item:nth-child(1) .process-step-icon { background: linear-gradient(135deg, #f97316, #fb923c); color: #fff; }
.process-step-item:nth-child(2) .process-step-icon { background: linear-gradient(135deg, #8b5cf6, #a78bfa); color: #fff; }
.process-step-item:nth-child(3) .process-step-icon { background: linear-gradient(135deg, #06b6d4, #22d3ee); color: #fff; }
.process-step-item:nth-child(4) .process-step-icon { background: linear-gradient(135deg, #10b981, #34d399); color: #fff; }
.process-step-item:nth-child(5) .process-step-icon { background: linear-gradient(135deg, #f97316, #fb923c); color: #fff; }
.process-step-item:nth-child(6) .process-step-icon { background: linear-gradient(135deg, #8b5cf6, #a78bfa); color: #fff; }
.process-step-item:nth-child(7) .process-step-icon { background: linear-gradient(135deg, #06b6d4, #22d3ee); color: #fff; }
.process-step-item:nth-child(8) .process-step-icon { background: linear-gradient(135deg, #10b981, #34d399); color: #fff; }
.process-step-item:nth-child(9) .process-step-icon { background: linear-gradient(135deg, #f97316, #fb923c); color: #fff; }
.process-step-item:nth-child(10) .process-step-icon { background: linear-gradient(135deg, #8b5cf6, #a78bfa); color: #fff; }
.process-step-item:nth-child(11) .process-step-icon { background: linear-gradient(135deg, #06b6d4, #22d3ee); color: #fff; }
.process-step-item:nth-child(12) .process-step-icon { background: linear-gradient(135deg, #10b981, #34d399); color: #fff; }

.process-step-item:nth-child(1) .process-step-bullet { background: #f97316; }
.process-step-item:nth-child(2) .process-step-bullet { background: #8b5cf6; }
.process-step-item:nth-child(3) .process-step-bullet { background: #06b6d4; }
.process-step-item:nth-child(4) .process-step-bullet { background: #10b981; }
.process-step-item:nth-child(5) .process-step-bullet { background: #f97316; }
.process-step-item:nth-child(6) .process-step-bullet { background: #8b5cf6; }
.process-step-item:nth-child(7) .process-step-bullet { background: #06b6d4; }
.process-step-item:nth-child(8) .process-step-bullet { background: #10b981; }
.process-step-item:nth-child(9) .process-step-bullet { background: #f97316; }
.process-step-item:nth-child(10) .process-step-bullet { background: #8b5cf6; }
.process-step-item:nth-child(11) .process-step-bullet { background: #06b6d4; }
.process-step-item:nth-child(12) .process-step-bullet { background: #10b981; }

.process-steps-section .sub-title {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: #fbbf24;
    padding: 8px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.process-steps-section .section-title .title,
.process-steps-section .section-title-two .title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #ffffff;
}

.process-steps-section .section-title p,
.process-steps-section .section-title-two p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 575px) {
    .process-step-item {
        padding: 14px 16px;
        gap: 14px;
    }
    .process-step-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
        border-radius: 12px;
    }
    .process-step-label {
        font-size: 14px;
    }
    .process-step-text {
        font-size: 12px;
    }
}

.rejected{
    background-color: #fc544b19;
}
.pending{
    background-color: #ffc10723;
}
.review{
    background-color: #1d60b029;
}

/* 
.chatbox__list__wrapper {
    padding-right: 20px;
    border-right: 1px solid #e1e1e1;
} */

.chat__list {
    margin: 0;
    display: block;
    max-height: calc(100vh - 250px);
    min-height: 400px;
    overflow-y: scroll;
}

.chat__list > li {
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    padding: 10px 0;
}

.chat__list > li:last-child {
    border: none;
}

.chat__item {
    width: 100%;
}

.chat__item .item__inner {
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    margin-right: 14px;
}

.chat__item .item__inner .chat__meta {
    margin: 3px;
    margin-top: -25px;
    padding-left: 65px;
    font-size: 13px;
}

.chat__item .item__inner a {
    color: #456;
}

.chat__item.active .item__inner, .chat__item:hover .item__inner {
    background: rgba(31, 31, 35, 0.05);
}
.chat__msg-header .post__creator {
    display: inline-flex;
    position: relative;
}

.chat__msg-header .post__creator .profile-link {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.msg__wrapper {
    padding: 0;
}
.chat__msg-body {
    max-height: calc(100vh - 250px);
    min-height: 400px;
    overflow-y: scroll;
    background: #d3d3d329;
}
.chat__msg-body .msg__wrapper li p {
  
    padding: 10px 15px;
    background: rgba(31, 31, 35, 0.05);
    border-radius: 15px 15px 15px 0;
    font-size: 15px;
    display: inline-block;
}
.out__msg {
 
    background: #206bc4!important;
    color: #fff;
}


.chat__msg-footer .send__msg {
    box-shadow: 0 0 15px rgba(31, 31, 35, 0.05);
}

.chat__msg-footer .send__msg .input-group {
    position: relative;
}

.chat__msg-footer .send__msg .form--control {
    border: 1px solid #e1e1e1 !important;
    height: 50px;
    padding: 10px 15px;
    padding-left: 60px;
}

.chat__msg-footer .send__msg .send-btn {
    background: rgba(31, 31, 35, 0.05);
    width: 50px !important;
    height: 50px !important;
    padding: 0;
    font-size: 24px;
    color: #fff;
    background: #206bc4 !important;
}

.chat__msg-footer .send__msg .upload-file {
    cursor: pointer;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0;
    z-index: 11;
    width: 50px;
    height: 50px;
    background: rgba(31, 31, 35, 0.05);
    font-size: 18px;
    border-radius: 5px 0 0 5px !important;
}

.msg__item .comment-img {
    max-width: 300px;
    width: 100%;
}

.msg__item .comment-img img {
    width: 100%;
}
ul li {
    list-style: none;
}
.msg__item .post__creator-content {
    padding-top: 0;
}
.chat__msg-footer .send__msg .upload-file i,
.chat__msg-footer .send__msg .upload-file {
    text-align: center;
    line-height: 50px;
}
.send-btn {
    border-radius: 0 5px 5px 0;
    line-height: 50px;
}
.msg__item .post__creator-content .comment-date {
    display: block;
    font-size: 11px;
    margin-bottom: 7px;
}
.chat__msg-footer {
    margin-top: 20px;
}

.outgoing__msg .post__creator {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}


.post__creator-content {
    max-width: 90%;}
    @media screen and (min-width: 768px) {
        
.post__creator-content {
    max-width: 575px;}
    }
.outgoing__msg .post__creator-content {
    text-align: right;
    padding-left: 18px;
    padding-right: 18px;
}
.incoming__msg .post__creator-content {
    padding-left: 18px;
    padding-right: 18px;
}

.outgoing__msg .post__creator-content p {
    border-radius: 15px 15px 0 15px !important;
}

body * ::-webkit-scrollbar {
    width: 5px !important;
    height: 5px;
}

body * ::-webkit-scrollbar-thumb {
    background: rgba(31, 31, 35, 0.4) !important;
    border-radius: 5px !important;
}
.msg__wrapper li {
    list-style: none;
    padding: 0;
}
.msg__wrapper li  p {
    margin-bottom: 0;
}
.theme-light select.form-control{
    color: #111;
}
.theme-light input.form-control{
    color: #111;
}







.cookie-section{
    display: none;
}

@media screen and (max-width:767px) {
    .main-content {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

@media screen and (max-width:991px) {
    .table-responsive {
        overflow-y: auto !important;
        overflow-x: hidden !important;
        max-height: 700px;
    }
    .table-responsive .table {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
        margin-bottom: 0;
    }
    .table-responsive .table tr {
        display: block;
        border-left: 1px solid #e5e5e5;
        border-right: 1px solid #e5e5e5;
    }
    
    .table-responsive .table th {
        display: none;
    }
    .table-responsive .table tr  td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: unset !important;
        padding: 10px 15px !important;
        text-align: right;
        white-space: pre-line;
        word-break: break-word;
    }
    .table-responsive .table tr:not(:last-child) {
        border-bottom: 1px solid #e5e5e5;
    }
    .table-responsive .table tr  td::before {
        content: attr(data-label);
        font-family: 'Manrope', sans-serif;
        color: #111;
        text-transform: capitalize;
        font-weight: 500;
        margin-right: auto;
        white-space: nowrap;
        word-wrap: initial;
    }

    .table-responsive .table tr  .res::before {
        color: rgb(243, 239, 239)!important;
    }
}
@media screen and (max-width: 350px) {
    
    .table-responsive .table tr  td::before {
        font-size: 14px;
    }
    .card .card-body {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Fit all service category tabs in one row */
.services-nav-wrap .nav-tabs {
    flex-wrap: nowrap;
    gap: 10px;
}
.services-nav-wrap .nav-tabs .nav-link {
    padding: 14px 18px;
    font-size: 15px;
    white-space: nowrap;
    flex: 1 1 auto;
    text-align: center;
}
@media (max-width: 767px) {
    .services-nav-wrap .nav-tabs {
        flex-wrap: wrap;
    }
    .services-nav-wrap .nav-tabs .nav-link {
        padding: 10px 14px;
        font-size: 13px;
    }
}

.quote-submit-btn {
    background: #f90;
    color: #fff;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: none;
    transition: all 0.3s ease;
}
.quote-submit-btn:hover {
    background: #e67e00;
    color: #fff;
}
