/* ============================================================
   Tash-Clean — Landing Page Styles
   ============================================================ */

:root {
    --navy: #062B63;
    --blue: #087DF0;
    --blue-dark: #0668cc;
    --light-blue: #EAF7FF;
    --cyan: #18BCEB;
    --green: #63C832;
    --white: #FFFFFF;
    --bg: #F8FCFF;
    --text: #15255f;
    --radius: 18px;
    --shadow: 0 8px 24px rgba(6, 43, 99, 0.08);
    --shadow-hover: 0 16px 36px rgba(6, 43, 99, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--navy);
    font-weight: 800;
}

img {
    max-width: 100%;
    height: auto;
}

.icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.icon-img-lg {
    width: 42px;
    height: 42px;
}

.section-pad {
    padding: 70px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.title-line {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
}

.section-sub {
    color: var(--text);
    margin-bottom: 24px;
}

.section-link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.section-link:hover {
    color: var(--blue-dark);
}

/* ============ Buttons ============ */
.btn-primary {
    --bs-btn-bg: var(--blue);
    --bs-btn-border-color: var(--blue);
    --bs-btn-hover-bg: var(--blue-dark);
    --bs-btn-hover-border-color: var(--blue-dark);
    --bs-btn-active-bg: var(--blue-dark);
    --bs-btn-active-border-color: var(--blue-dark);
    border-radius: 12px;
    font-weight: 700;
    padding: 12px 26px;
    box-shadow: 0 8px 20px rgba(8, 125, 240, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* ============ Header ============ */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: box-shadow .3s ease;
}

.site-header.scrolled {
    box-shadow: 0 6px 24px rgba(6, 43, 99, 0.10);
}

.site-header .navbar {
    padding: 10px 0;
}

.brand-logo {
    object-fit: contain;
    height: 60px;
    width: auto;
}

.footer-brand .brand-logo {
    height: 42px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-left: 8px;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.brand-text strong {
    color: var(--blue);
    font-size: 22px;
    font-weight: 800;
}

.brand-text small {
    color: var(--navy);
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
}

.site-header .nav-link {
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 12px !important;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--blue);
}

.header-contacts {
    gap: 12px;
}

.header-phone-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    white-space: nowrap;
}

.header-phone a {
    color: var(--navy);
    font-weight: 800;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
}

.header-phone small {
    color: var(--text);
    font-size: 12px;
    white-space: nowrap;
}

.btn-callback {
    font-size: 14px;
    padding: 10px 18px;
    white-space: nowrap;
}

/* ============ Hero ============ */
.hero {
    background-image: url(../images/hero-image.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #e3f5fe;
    background-position: right;
    padding: 56px 0 26px;
    min-height: 620px;
    overflow: hidden;
}

.hero-label {
    display: inline-block;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-title {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 20px;
}

.text-accent {
    color: var(--blue);
}

.hero-desc {
    font-size: 16px;
    max-width: 480px;
    margin-bottom: 24px;
}

.hero-benefits {
    list-style: none;
    display: flex;
    gap: 26px;
    padding: 0;
    margin: 0 0 30px;
    flex-wrap: wrap;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
}

.hero-benefits i {
    font-size: 26px;
    color: var(--blue);
}

.hero-benefits li:nth-child(2) i {
    color: var(--green);
}

.hero-benefits .icon-img {
    width: 50px;
    height: 50px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.btn-order {
    padding: 14px 32px;
    font-size: 16px;
}

.hero-video-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25;
    text-decoration: none;
}

.hero-video-link:hover {
    color: var(--blue);
}

.play-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: .25s;
}

.hero-video-link:hover .play-circle {
    background: var(--blue);
    color: #fff;
}



.hero-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: 68% center;
    display: block;
}

.eco-badge {

    top: 0;
    right: 18px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 1.3;
    padding: 12px;
    box-shadow: 0px 0px 1px 7px #fff;
    position: relative;
    overflow: hidden;
    animation: ecoFloat 4s ease-in-out infinite;
}

/* Pulsing glow ring */
.eco-badge::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid rgba(99, 200, 50, 0.55);
    animation: ecoPulse 2.4s ease-out infinite;
    pointer-events: none;
}

/* Shine sweep */
.eco-badge::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -80%;
    width: 60%;
    height: 220%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: rotate(20deg);
    animation: ecoShine 3.6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ecoFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@keyframes ecoPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.9;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

@keyframes ecoShine {

    0%,
    55% {
        left: -80%;
    }

    85%,
    100% {
        left: 130%;
    }
}

@keyframes ecoLeaf {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-14deg) scale(1.12);
    }

    75% {
        transform: rotate(10deg) scale(1.05);
    }
}

.hero-visual {
    position: relative;
    gap: 65%;
    margin-top: -15%;
    display: grid;
}

.eco-badge i {
    font-size: 20px;
    margin-bottom: 4px;
    display: inline-block;
    transform-origin: bottom center;
    animation: ecoLeaf 3s ease-in-out infinite;
}

.eco-badge strong {
    font-size: 14px;
    font-weight: 800;
}

.eco-badge small {
    font-size: 14px;
    margin-top: 4px;
    opacity: .95;
}

.hero-script {
    top: 24px;
    left: -10px;
    font-family: 'Segoe Script', 'Brush Script MT', cursive;
    color: var(--green);
    font-size: 22px;
    line-height: 1.2;
    transform: rotate(-6deg);
    text-shadow: 0 1px 0 #fff;
}

.hero-bottom {
    display: flex;
    gap: 60px;
    margin-top: 26px;
    flex-wrap: wrap;
    background: #ffffffdb;
    padding: 1rem;
    border-radius: 20px;
}

.hero-bottom-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.35;
}

.hero-bottom-item i {
    font-size: 30px;
    color: var(--blue);
}

.hero-bottom-item .icon-img-lg {
    width: 70px;
    height: auto;
}

/* ============ Services ============ */
.services {
    background: var(--white);
}

.section-head {
    margin-bottom: 30px;
}

.section-head .section-title {
    margin-bottom: 0;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 14px 14px 20px;
    height: 100%;
    text-align: left;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-img {
    position: relative;
    border-radius: 12px;
    aspect-ratio: 1/1;
    background: var(--light-blue);
    margin-bottom: 20px;
}

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

.service-icon {
    position: absolute;
    left: 12px;
    bottom: -14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow: 0 4px 12px rgba(6, 43, 99, 0.15);
}

.service-card h3 {
    font-size: 15px;
    font-weight: 800;
    margin: 8px 0 6px;
}

.service-card p {
    font-size: 13px;
    color: var(--text);
    margin: 0 0 10px;
}

.service-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 12px;
}

.service-btn {
    width: 100%;
    border-radius: 10px;
    font-weight: 700;
    padding: 8px 12px;
}

/* ============ Stats bar ============ */
.stats-bar {
    background: var(--white);
    padding: 6px 0 30px;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: var(--light-blue);
    border-radius: 18px;
    padding: 24px 34px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-item i {
    font-size: 38px;
    color: var(--blue);
}

.stat-item:nth-child(4) i {
    color: var(--green);
}

.stat-item .icon-img-lg {
    width: 48px;
    height: 48px;
}

.stat-item strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.stat-item span {
    font-size: 13px;
    color: var(--text);
}

/* ============ Before / After ============ */
.result {
    background: var(--white);
}

.ba-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 600 / 380;
    user-select: none;
    touch-action: none;
}

.ba-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    pointer-events: none;
}

.ba-before-wrap {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    z-index: 2;
}

/* image keeps the full slider width; JS sets it explicitly */
.ba-before-wrap>img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    max-width: none;
    /* "dirty" look for the before side */
    filter: sepia(0.45) saturate(0.55) brightness(0.72) contrast(0.95);
}

.ba-tag {
    position: absolute;
    top: 14px;
    z-index: 4;
    background: rgba(6, 43, 99, 0.75);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
}

.ba-tag-before {
    left: 14px;
}

.ba-tag-after {
    right: 14px;
    background: var(--blue);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
}

.ba-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, .3);
}

.ba-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 14px rgba(6, 43, 99, 0.35);
    position: relative;
    z-index: 1;
}

/* Why us */
.why-us {
    position: relative;
    padding-left: 30px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    padding: 9px 0;
}

.why-list i {
    font-size: 22px;
    color: var(--blue);
    flex-shrink: 0;
}

.why-list .icon-img {
    width: 30px;
    height: 30px;
}

.why-list li:nth-child(2) i {
    color: var(--green);
}

.why-list li:last-child i {
    color: var(--blue);
}

.why-watermark {
    position: absolute;
    right: 0;
    bottom: -30px;
    z-index: -1;
    line-height: 1;
    opacity: 0.10;
}

.why-watermark img {
    width: 260px;
    height: auto;
}

.why-script {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-family: 'Segoe Script', 'Brush Script MT', cursive;
    color: var(--green);
    font-size: 20px;
    transform: rotate(-6deg);
}

/* ============ Steps ============ */
.steps {
    background: var(--bg);
}

.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-top: 30px;
}

.step-item {
    flex: 1;
    text-align: left;
    position: relative;
    max-width: 230px;
}

.step-num {
    position: absolute;
    top: -14px;
    left: -6px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(8, 125, 240, .4);
}

.step-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--light-blue);
    color: var(--blue);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: var(--shadow);
}

.step-icon .icon-img-lg {
    width: 44px;
    height: 44px;
}

.step-item h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.step-item p {
    font-size: 13px;
    margin: 0;
}

.step-arrow {
    color: var(--blue);
    font-size: 22px;
    padding-top: 26px;
    flex-shrink: 0;
}

/* ============ Reviews ============ */
.reviews {
    background: var(--white);
}

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.review-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--light-blue);
    flex-shrink: 0;
}

.avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.review-head strong {
    color: var(--navy);
    font-size: 15px;
}

.stars {
    color: #FFB800;
    font-size: 14px;
}

.review-card p {
    font-size: 14px;
    margin: 0;
}

/* ============ CTA banner ============ */
.cta-section {
    padding: 20px 0 70px;
    background: var(--white);
}

.cta-banner {
    position: relative;
    background: linear-gradient(100deg, rgba(6, 43, 99, 0.30) 0%, rgba(8, 125, 240, 0.10) 55%, rgba(8, 125, 240, 0) 100%),
        url('../../images/footer.jpg') center / cover no-repeat,
        linear-gradient(100deg, var(--navy) 0%, #0a4db0 55%, var(--blue) 100%);
    border-radius: 24px;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.cta-text h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
}

.cta-text p {
    margin: 0;
    opacity: .95;
    font-size: 15px;
}

.cta-btn {
    color: var(--blue) !important;
    font-weight: 800;
    border-radius: 12px;
    padding: 14px 30px;
    white-space: nowrap;
}

.cta-script {
    position: absolute;
    right: 30px;
    top: 20px;
    font-family: 'Segoe Script', 'Brush Script MT', cursive;
    color: #a8e063;
    font-size: 18px;
    transform: rotate(-5deg);
    text-align: center;
    line-height: 1.2;
}

/* ============ Reviews carousel ============ */
.reviews-carousel .review-card {
    margin: 12px 4px 24px;
    height: 100%;
}

.reviews-carousel .owl-stage {
    display: flex;
}

.reviews-carousel .owl-item {
    display: flex;
}

.reviews-carousel .owl-dots {
    margin-top: 8px;
}

.reviews-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: #bcd9f5;
    transition: all .25s;
}

.reviews-carousel .owl-dot.active span {
    background: var(--blue);
    width: 26px;
    border-radius: 6px;
}

/* ============ FAQ ============ */
.faq {
    background: var(--white);
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    background: var(--white);
    padding: 18px 24px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--blue);
    background: var(--light-blue);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23087DF0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    font-size: 14px;
    color: var(--text);
    padding: 18px 24px;
    border-top: 1px solid #e6f0fa;
}

.faq-accordion .accordion-body a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

/* ============ Contacts ============ */
.contacts {
    background: var(--bg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px 22px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .icon-img {
    width: 32px;
    height: 32px;
}

.contact-item strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span:not(.contact-icon) {
    color: var(--text);
    font-size: 14px;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--blue);
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding: 6px 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    height: 100%;
}

.contact-form-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.contact-form-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-form-card .form-control {
    border-radius: 10px;
    padding: 12px 14px;
    border-color: #d7e6f5;
}

.contact-form-card .form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 .2rem rgba(8, 125, 240, .15);
}

/* ============ Footer ============ */
.site-footer {
    background: var(--white);
    border-top: 1px solid #e6f0fa;
    padding: 30px 0 18px;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    text-decoration: none;
}

.footer-nav {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--blue);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.footer-phone {
    color: var(--navy);
    font-weight: 800;
    text-decoration: none;
}

.footer-phone i {
    color: var(--blue);
}

.footer-contacts small {
    font-size: 12px;
    color: var(--text);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: .25s;
}

.footer-social a:hover {
    background: var(--blue);
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e6f0fa;
    font-size: 13px;
    color: var(--text);
}

.footer-slogan {
    color: var(--green);
    font-weight: 600;
}

/* ============ Modal ============ */
.order-modal {
    border-radius: 20px;
    border: none;
}

.order-modal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.order-modal .modal-title {
    font-weight: 800;
    color: var(--navy);
}

.order-modal .form-control,
.order-modal .form-select {
    border-radius: 10px;
    padding: 12px 14px;
    border-color: #d7e6f5;
}

.order-modal .form-control:focus,
.order-modal .form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 .2rem rgba(8, 125, 240, .15);
}

.order-success {
    text-align: center;
    padding: 30px 0;
}

.order-success i {
    font-size: 60px;
    color: var(--green);
}

.order-success h5 {
    margin: 14px 0 6px;
}

/* ============ Scroll reveal ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 48px;
    }

    .header-phone small {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .hero {
        min-height: 0;
        padding-top: 36px;
        background-position: bottom;
        background-size: 580px;
    }

    .cta-script {
        display: none;
    }

    .why-script {
        bottom: -60px;
        right: 100px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-visual {
        margin-top: 36px;
        gap: 7%;
    }

    .hero-img-wrap {
        margin-right: 0;
    }

    .hero-img {
        height: 340px;
        border-radius: 20px;
    }

    .hero-bottom {
        justify-content: flex-start;
    }

    .header-contacts {
        margin-top: 14px;
        flex-wrap: wrap;
    }

    .why-us {
        padding-left: 12px;
        margin-top: 44px;
    }

    .steps-row {
        flex-wrap: wrap;
    }

    .step-arrow {
        display: none;
    }

    .step-item {
        flex: 0 0 45%;
        max-width: none;
        margin-bottom: 26px;
    }

    .cta-banner {
        flex-wrap: wrap;
        padding: 34px 28px;
    }

    .cta-img img {
        width: 100%;
    }

    .cta-img {
        flex: 0 0 100%;
    }
}

@media (max-width: 767.98px) {
    .section-pad {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-benefits {
        gap: 20px;
    }

    .hero-bottom {
        gap: 20px;
    }

    .stats-row {
        gap: 16px;
    }

    .stat-item {
        flex: 0 0 45%;
    }

    .stat-item i {
        font-size: 30px;
    }

    .step-item {
        flex: 0 0 100%;
    }

    .service-icon {
        top: auto;
        bottom: 86px;
    }

    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-actions {
        gap: 16px;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .service-card h3 {
        font-size: 14px;
    }

    .eco-badge {
        width: 100px;
        height: 100px;
        font-size: 8px;
    }

    .eco-badge strong {
        font-size: 8px;
    }

    .eco-badge small {
        font-size: 7px;
    }

    .hero-script {
        font-size: 17px;
    }
}

/* ============ Quick buttons ============ */
.quick-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    min-width: 56px;
    padding: 0 16px;
    border: none;
    border-radius: 28px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(6, 43, 99, 0.25);
    transition: transform .25s ease, box-shadow .25s ease;
}

.quick-btn i {
    font-size: 22px;
    line-height: 1;
}

.quick-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 26px rgba(6, 43, 99, 0.35);
    color: #fff;
}

.quick-btn-telegram {
    background: #229ED9;
}

.quick-btn-phone {
    background: var(--green);
    position: relative;
}

.quick-btn-phone::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 32px;
    border: 2px solid rgba(99, 200, 50, 0.6);
    animation: ecoPulse 2.2s ease-out infinite;
    pointer-events: none;
}

.quick-btn-order {
    background: var(--blue);
}

@media (max-width: 575.98px) {
    .quick-buttons {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }

    .quick-btn {
        height: 50px;
        min-width: 50px;
        padding: 0 14px;
        font-size: 13px;
    }

    .quick-btn-label {
        display: none;
    }
}