﻿html,
body {
    overflow-x: hidden;
}
:root {
    --primary-green: #4caf50;
    --primary-green-hover: #439944;
    --accent-cyan: #29c7d8;
    --accent-cyan-hover: #21b4c4;
    --navy: #163a63;
    --navy-soft: #1f2937;
    --bg: #f8fafc;
    --surface: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
    --shadow-sm: 0 18px 40px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 24px 55px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.home-page,
body {
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

.home-page a,
.hero-btn-primary,
.hero-btn-secondary,
.banner-btn,
.service-card-btn,
.cta-btn {
    text-decoration: none;
}

/* =========================
   HERO / SLIDER
========================= */

.hero-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    margin-bottom: 2rem;
    margin-left: 50%;
    transform: translateX(-50%);
}

/* RTL FIX */
html[dir="rtl"] .hero-wrapper {
    margin-left: 0;
    margin-right: 50%;
    transform: translateX(50%);
}

.hero-slider {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}


    .hero-slider,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        height: 100%;
    }

.hero-slide {
    min-height: 520px; /* yükseklik bu, istersen 480 yap */
    display: flex;
    align-items: center;
    padding: 0;
    color: #fff;
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(22, 58, 99, 0.78) 0%,
        rgba(22, 58, 99, 0.48) 38%,
        rgba(22, 58, 99, 0.16) 100%
    );
    z-index: 1;
}

.hero-slide-1 {
    background-image: url('/images/hero-cleaning.jpg');
}

.hero-slide-2 {
    background-image: url('/images/slide-office-cleaning.jpg');
}

.hero-slide-3 {
    background-image: url('/images/slider/slider-03-S6f.jpg');
}

.hero-content {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
    max-width: 1140px;
    position: relative;
    z-index: 2;
}
.hero-sub {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1rem;
    border-radius: 999px;
    background: rgba(76, 175, 80, .96);
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 10px 24px rgba(76, 175, 80, .20);
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 3px 12px rgba(0,0,0,.24);
    letter-spacing: -.02em;
}

.hero-text {
    font-size: 1.08rem;
    color: rgba(255,255,255,.94);
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.18);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}
html[dir="rtl"] .hero-title,
html[dir="rtl"] .hero-text,
html[dir="rtl"] .hero-sub {
    text-align: right;
}

html[dir="rtl"] .hero-actions {
    justify-content: flex-end;
}
.hero-btn-primary,
.hero-btn-secondary {
    min-height: 52px;
    padding: .9rem 1.3rem;
    border-radius: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.hero-btn-primary {
    background: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    color: #fff;
    box-shadow: 0 14px 28px rgba(41,199,216,.24);
}

.hero-btn-primary:hover {
    background: var(--accent-cyan-hover);
    border-color: var(--accent-cyan-hover);
    color: #fff;
    transform: translateY(-2px);
}

.hero-btn-secondary {
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.94);
    color: var(--navy);
    box-shadow: 0 10px 22px rgba(255,255,255,.14);
}

.hero-btn-secondary:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-2px);
}

.hero-control {
    width: 6%;
    z-index: 4;
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
    background-size: 70% 70%;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255,255,255,.16);
    backdrop-filter: blur(4px);
}

.hero-indicators {
    bottom: 28px;
    z-index: 4;
}

.hero-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    margin: 0 6px;
    background-color: rgba(255,255,255,.55);
}

.hero-indicators .active {
    background-color: var(--accent-cyan);
}

.hero-bottom-bar {
    height: 30px;
    background: var(--accent-cyan);
}


/* FLOATING BANNER */
.hero-floating-banner {
    position: relative;
    margin-top: -6px;
    z-index: 5;
}

.banner-content {
    background: var(--primary-green);
    color: #fff;
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
    gap: 1rem;
}

.banner-content h2 {
    font-size: 1.4rem;
    margin: 0;
    max-width: 70%;
}

.banner-btn {
    background: #fff;
    color: #333;
    border-radius: 25px;
    padding: .6rem 1.4rem;
    font-weight: 700;
}

.banner-btn:hover {
    background: #f3f3f3;
    color: #333;
}

/* =========================
   SECTION HEADINGS
========================= */

.section-head {
    max-width: 820px;
    margin: 0 auto 1.5rem;
}

.section-head-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--navy-soft);
    margin-bottom: .35rem;
}

.section-title-lined {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    color: #48a23f;
    margin-bottom: .8rem;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.section-divider {
    position: relative;
    width: 120px;
    height: 22px;
    margin: 0 auto;
}

.section-divider::before,
.section-divider::after {
    content: "";
    position: absolute;
    top: 10px;
    width: 45px;
    height: 2px;
    background: #48a23f;
}

.section-divider::before {
    left: 0;
}

.section-divider::after {
    right: 0;
}

.section-divider-dot {
    position: absolute;
    left: 50%;
    top: 5px;
    width: 12px;
    height: 12px;
    border: 2px solid #48a23f;
    border-radius: 50%;
    background: #fff;
    transform: translateX(-50%);
}

.section-text {
    color: var(--muted);
    margin-bottom: 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* =========================
   SERVICE CARDS
========================= */

.service-card-premium {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card-premium:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 55px rgba(15, 23, 42, .10);
    border-color: #bdeee8;
}

.service-card-image {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: linear-gradient(135deg, #eefbf5, #f8fafc);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.service-card-premium:hover .service-card-image img {
    transform: scale(1.04);
}

.service-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    color: var(--primary-green);
    font-size: .8rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(15, 23, 42, .08);
}

.service-card-body {
    padding: 1.35rem 1.35rem 1rem;
}

.service-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy-soft);
    margin-bottom: .75rem;
    line-height: 1.4;
}

.service-card-text {
    color: var(--muted);
    line-height: 1.7;
    min-height: 78px;
    margin-bottom: 0;
}

.service-card-footer {
    padding: 0 1.35rem 1.35rem;
}

.service-card-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    font-weight: 700;
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: #fff;
    box-shadow: 0 12px 24px rgba(41,199,216,.18);
    transition: all .25s ease;
}

.service-card-btn:hover {
    background: var(--accent-cyan-hover);
    border-color: var(--accent-cyan-hover);
    color: #fff;
}

/* =========================
   WHY SECTION
========================= */

.why-section {
    margin-top: 3rem;
}

.why-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 16px 35px rgba(15, 23, 42, .05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 45px rgba(15, 23, 42, .08);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e9f9ee, #eefbf5);
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy-soft);
    margin-bottom: .6rem;
}

.why-card p {
    color: var(--muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* =========================
   CTA
========================= */

.cta-banner {
    margin-top: 3rem;
    margin-bottom: 3rem;
    border-radius: 0;
    background: var(--primary-green);
    color: #fff;
    padding: 2rem 1.7rem;
    box-shadow: 0 20px 40px rgba(76,175,80,.16);
}

.cta-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: .45rem;
    color: #fff;
}

.cta-text {
    color: rgba(255,255,255,.92);
    margin-bottom: 0;
    line-height: 1.7;
}

.cta-btn {
    min-height: 52px;
    border-radius: 999px;
    padding: .9rem 1.5rem;
    font-weight: 700;
    background: #fff;
    border-color: #fff;
    color: var(--navy);
}

.cta-btn:hover {
    background: #f8fafc;
    border-color: #f8fafc;
    color: var(--navy);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {
    .hero-slide {
        min-height: 540px;
        padding: 0 1.5rem;
    }

    .hero-control {
        width: 10%;
    }

    .service-card-image {
        height: 220px;
    }

    .cta-banner {
        text-align: center;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 460px;
        background-position: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .banner-content h2 {
        max-width: 100%;
    }

    .hero-floating-banner {
        position: relative;
        width: min(1140px, calc(100% - 32px));
        margin: -22px auto 0;
        z-index: 5;
    }

    .hero-control {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-slide {
        min-height: 420px;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .service-card-body {
        padding: 1.1rem 1.1rem .9rem;
    }

    .service-card-footer {
        padding: 0 1.1rem 1.1rem;
    }

    .service-card-text {
        min-height: auto;
    }
}
/* BEFORE AFTER SECTION */
.before-after-section {
    padding: 2.5rem 0 5rem;
}

.before-after-grid {
    align-items: stretch;
}

.before-after-card {
    height: 100%;
}

.before-after-compare {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    cursor: ew-resize;
    background: #e5e7eb;
    isolation: isolate;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
    transition: transform .3s ease, box-shadow .3s ease;
}

.before-after-card:hover .before-after-compare {
    transform: translateY(-6px);
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.18);
}

.before-after-compare img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

.after-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.before-layer {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    z-index: 2;
    border-right: 1px solid rgba(255,255,255,.15);
}

.before-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255,255,255,.96);
    z-index: 5;
    transform: translateX(-50%);
    box-shadow: 0 0 0 1px rgba(15,23,42,.06);
}

    .compare-line::before,
    .compare-line::after {
        content: "";
        position: absolute;
        left: 50%;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #fff;
        transform: translateX(-50%);
        box-shadow: 0 2px 8px rgba(15,23,42,.12);
    }

    .compare-line::before {
        top: 18px;
    }

    .compare-line::after {
        bottom: 18px;
    }

.compare-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255,255,255,.98);
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    animation: comparePulse 1.8s infinite;
}

    .compare-handle span {
        font-size: 22px;
        font-weight: 800;
        color: var(--accent-cyan);
        line-height: 1;
    }

.compare-top {
    position: absolute;
    top: 18px;
    z-index: 7;
    padding: .65rem 1rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(8px);
}

.before-label {
    left: 18px;
    background: rgba(15, 23, 42, 0.55);
}

.after-label {
    right: 18px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
}

.compare-overlay-info {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 7;
    padding: 1rem 1rem 1.05rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.10));
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.compare-badge {
    display: inline-flex;
    align-items: center;
    padding: .38rem .75rem;
    margin-bottom: .65rem;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: var(--primary-green);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.compare-overlay-info h3 {
    font-size: 1.02rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.35;
    text-shadow: 0 2px 10px rgba(0,0,0,.18);
}

.before-after-compare::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.36), rgba(15,23,42,.05) 38%, rgba(15,23,42,.02) 60%), linear-gradient(to right, rgba(255,255,255,.04), transparent 22%, transparent 78%, rgba(255,255,255,.03));
    z-index: 3;
    pointer-events: none;
}

@keyframes comparePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.06);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 991.98px) {
    .before-after-compare {
        height: 380px;
        border-radius: 20px;
    }

    .compare-overlay-info {
        padding: .95rem;
    }
}

@media (max-width: 575.98px) {
    .before-after-section {
        padding: 2rem 0 4rem;
    }

    .before-after-compare {
        height: 300px;
        border-radius: 18px;
    }

    .compare-handle {
        width: 50px;
        height: 50px;
    }

        .compare-handle span {
            font-size: 18px;
        }

    .compare-top {
        top: 14px;
        padding: .5rem .8rem;
        font-size: .75rem;
    }

    .before-label {
        left: 14px;
    }

    .after-label {
        right: 14px;
    }

    .compare-overlay-info {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: .8rem .85rem;
        border-radius: 16px;
    }

        .compare-overlay-info h3 {
            font-size: .95rem;
        }
}
/* =========================
   TRUST BAR
========================= */

.trust-bar {
    padding: 24px 0 0;
    position: relative;
    z-index: 3;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trust-item {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 24px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(15,23,42,.06);
    backdrop-filter: blur(10px);
    transition: .25s ease;
}

    .trust-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 48px rgba(15,23,42,.09);
    }

    .trust-item strong {
        display: block;
        font-size: 1.7rem;
        line-height: 1;
        font-weight: 850;
        letter-spacing: -.04em;
        color: #111827;
    }

    .trust-item span {
        display: block;
        margin-top: 10px;
        color: #6b7280;
        font-weight: 600;
    }


.blog-home-section {
    padding: 80px 0;
}

.home-blog-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .06);
    transition: .25s ease;
}

    .home-blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 55px rgba(17, 24, 39, .10);
    }

.home-blog-image {
    position: relative;
    display: block;
    height: 230px;
    overflow: hidden;
    background: #f3f4f6;
    text-decoration: none;
}

    .home-blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s ease;
    }

.home-blog-card:hover .home-blog-image img {
    transform: scale(1.05);
}

.home-blog-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 42px;
}

.home-blog-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #41b649;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.home-blog-body {
    padding: 24px;
}

.home-blog-date {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-blog-title {
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 12px;
}

    .home-blog-title a {
        color: #111827;
        text-decoration: none;
    }

        .home-blog-title a:hover {
            color: #41b649;
        }

.home-blog-text {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 18px;
}

.home-blog-link {
    display: inline-flex;
    align-items: center;
    color: #41b649;
    font-weight: 800;
    text-decoration: none;
}

    .home-blog-link:hover {
        color: #2f8f36;
        text-decoration: none;
    }

/* =========================
   PREMIUM HOME POLISH
========================= */

body {
    background: radial-gradient(circle at 10% 8%, rgba(67,176,92,.08), transparent 28%), radial-gradient(circle at 90% 12%, rgba(41,199,216,.10), transparent 30%), #ffffff;
}

.hero-slide {
    min-height: 680px;
}

    .hero-slide::before {
        background: linear-gradient(90deg, rgba(3, 7, 18, .86) 0%, rgba(15, 23, 42, .62) 42%, rgba(15, 23, 42, .18) 100%), radial-gradient(circle at 24% 42%, rgba(67,176,92,.28), transparent 34%);
    }

.hero-content {
    padding-top: 40px;
}

.hero-sub {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(14px);
    color: #fff;
    box-shadow: none;
}

.hero-title {
    max-width: 900px;
    font-size: clamp(3.2rem, 6vw, 6.4rem);
    font-weight: 900;
    letter-spacing: -.07em;
}

.hero-text {
    max-width: 680px;
    font-size: 1.18rem;
}

.hero-btn-primary,
.hero-btn-secondary {
    border-radius: 999px;
    min-height: 58px;
    padding: 1rem 1.6rem;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #43b05c, #29c7d8);
    border: 0;
    box-shadow: 0 18px 38px rgba(41,199,216,.26);
}

.hero-btn-secondary {
    background: rgba(255,255,255,.13);
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    backdrop-filter: blur(12px);
}

    .hero-btn-secondary:hover {
        background: #fff;
        color: #0f172a;
    }

.hero-bottom-bar {
    display: none;
}

.hero-floating-banner {
    margin-top: -48px;
}

.banner-content {
    border-radius: 28px;
    padding: 2rem 2.2rem;
    background: linear-gradient( 135deg, #55b84f, #48a944 );
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 45px rgba(72,169,68,.22);
    position: relative;
    overflow: hidden;
}
    .banner-content h2 {
        color: #fff;
        font-weight: 900;
        letter-spacing: -.035em;
    }

.banner-btn {
    background: #0f172a;
    color: #fff;
}

    .banner-btn:hover {
        background: #43b05c;
        color: #fff;
    }

.section-title-lined {
    color: #0f172a;
    font-weight: 900;
    letter-spacing: -.05em;
}

.section-divider::before,
.section-divider::after {
    background: linear-gradient(90deg, #43b05c, #29c7d8);
}

.section-divider-dot {
    border-color: #43b05c;
}

.service-card-premium,
.why-card,
.home-blog-card,
.google-review-premium {
    border-radius: 30px;
    border: 1px solid rgba(226,232,240,.95);
    box-shadow: 0 24px 70px rgba(15,23,42,.08);
}

    .service-card-premium:hover,
    .why-card:hover,
    .home-blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 34px 90px rgba(15,23,42,.14);
    }

.service-card-image {
    height: 270px;
}

.service-card-title,
.why-card h3,
.home-blog-title {
    letter-spacing: -.03em;
}

.service-card-btn {
    border-radius: 999px;
    background: #0f172a;
    border-color: #0f172a;
}

    .service-card-btn:hover {
        background: #43b05c;
        border-color: #43b05c;
    }

.before-after-compare {
    border-radius: 32px;
    height: 460px;
}

.why-section,
.before-after-section,
.reviews-section,
.blog-home-section {
    position: relative;
}

    .why-section::before,
    .reviews-section::before {
        content: "";
        position: absolute;
        inset: -40px 50% auto auto;
        width: 520px;
        height: 520px;
        background: radial-gradient(circle, rgba(41,199,216,.10), transparent 65%);
        pointer-events: none;
        z-index: -1;
    }

.why-icon {
    background: linear-gradient(135deg, #43b05c, #29c7d8);
    color: #fff;
}

.cta-banner {
    border-radius: 34px;
    padding: 3rem;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 30%), linear-gradient(135deg, #0f172a, #14532d 55%, #29c7d8);
    box-shadow: 0 34px 90px rgba(15,23,42,.18);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -.055em;
}

.cta-btn {
    border-radius: 999px;
    min-height: 58px;
    padding: 1rem 1.8rem;
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 560px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-floating-banner {
        margin-top: -30px;
    }

    .banner-content {
        border-radius: 24px;
    }

    .before-after-compare {
        height: 330px;
    }

    .cta-banner {
        padding: 2rem;
    }
}
/* =========================
   PREMIUM SERVICE CARD
========================= */

.service-card-top {
    margin-bottom: 14px;
}

.service-mini-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(67,176,92,.10);
    color: #15803d;
    font-size: .78rem;
    font-weight: 800;
    border: 1px solid rgba(67,176,92,.14);
}

.service-card-title {
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 14px;
}

.service-card-text {
    font-size: .97rem;
}

.service-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.service-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #334155;
    font-size: .82rem;
    font-weight: 700;
}

    .service-meta-item i {
        color: #43b05c;
    }
.home-services-premium {
    position: relative;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(85,184,79,.12);
    color: #48a944;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-card-premium {
    display: flex;
    flex-direction: column;
}

.service-card-image {
    display: block;
    text-decoration: none;
}

.service-card-title {
    min-height: 58px;
}

    .service-card-title a {
        color: inherit;
        text-decoration: none;
    }

        .service-card-title a:hover {
            color: #48a944;
        }

.service-card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 78px;
    max-height: 78px;
}

.service-card-body {
    flex: 1;
}

.service-card-footer {
    margin-top: auto;
}
/* GOOGLE REVIEWS CUSTOM */
.reviews-section .google-review-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 260px;
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.reviews-section .review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.reviews-section .review-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviews-section .review-avatar,
.reviews-section .review-avatar-img {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.reviews-section .review-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #a855f7;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
}

.reviews-section .review-user strong {
    display: block;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
}

.reviews-section .review-date {
    margin-top: 4px;
    color: #64748b;
    font-size: .86rem;
}

.reviews-section .review-google {
    color: #4285f4;
    font-size: 1.25rem;
}

.reviews-section .review-stars {
    color: #f59e0b;
    font-size: 1.05rem;
    letter-spacing: 2px;
    line-height: 1;
}

.reviews-section .review-text {
    color: #475569;
    font-size: .98rem;
    line-height: 1.8;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 115px;
}

@media (max-width: 767.98px) {
    .reviews-section .google-review-card {
        min-height: auto;
        padding: 22px;
    }
}
.google-reviews-carousel {
    position: relative;
    margin-top: 34px;
}

.google-reviews-carousel .carousel-inner {
    padding: 8px 48px 14px;
}

.review-carousel-control {
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 999px;
    background: #48a944;
    opacity: 1;
}

.review-carousel-control:hover {
    background: #55b84f;
}

.review-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 34px;
    flex-wrap: wrap;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

.review-btn-primary {
    background: linear-gradient(135deg, #55b84f, #48a944);
    color: #fff;
    box-shadow: 0 16px 32px rgba(72,169,68,.22);
}

.review-btn-primary:hover {
    transform: translateY(-2px);
    color: #fff;
}

.review-btn-outline {
    background: #fff;
    color: #0f172a;
    border: 1px solid #d1d5db;
}

.review-btn-outline:hover {
    background: #f8fafc;
    color: #0f172a;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {

    .google-reviews-carousel .carousel-inner {
        padding: 8px 42px 14px;
    }

    .review-carousel-control {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
    }

    .review-btn {
        width: 100%;
    }
}
@media (max-width: 767.98px) {

    .google-reviews-carousel .carousel-item .col-md-6,
    .google-reviews-carousel .carousel-item .col-xl-4 {
        display: none;
    }

        .google-reviews-carousel .carousel-item .col-md-6:first-child,
        .google-reviews-carousel .carousel-item .col-xl-4:first-child,
        .google-reviews-carousel .carousel-item .col-12:first-child {
            display: block;
            width: 100%;
            max-width: 100%;
            flex: 0 0 100%;
        }

    .google-reviews-carousel .carousel-inner {
        padding: 8px 42px 14px;
    }

    .review-carousel-control {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
    }
}
.review-slide-wrapper {
    max-width: 420px;
    margin: 0 auto;
    padding: 0 42px;
}

.review-carousel-control {
    width: 50px;
    opacity: 1 !important;
}

.carousel-item {
    transition: transform .6s ease-in-out;
}

@media (max-width: 767.98px) {

    .review-slide-wrapper {
        max-width: 100%;
        padding: 0 42px;
    }

    .review-carousel-control {
        width: 36px;
    }
}