@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');

/* Screen reader only - visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Общие стили */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #111827;
}

/* Навигация */
header {
    background: #FFFFFF;
    color: #111827;
    padding: 15px 0;
    position: static;
    width: 100%;
    top: 0;
    z-index: 1000;
}

@media (max-width: 600px) {
    header {
        padding: 20px 0;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-logo-link {
    text-decoration: none;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #111827;
    transition: color 0.3s;
    white-space: nowrap;
}

.brand-logo:hover .logo {
    color: #1F4A3E;
}

.nav-logo {
    width: 50px;
    height: auto;
    display: block;
}

/* Стили для гамбургер-меню */
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 18px;
}

.nav-links li a {
    color: #285848;
    text-decoration: none;
    font-weight: 500;
    font-size: 19px;
}

.nav-links li a:hover {
    color: #1F4A3E;
}

.nav-links li a.active {
    color: #285848 !important;
    font-weight: 600;
    background: rgba(40, 88, 72, 0.08);
    border-radius: 20px;
    padding: 8px 16px;
    box-shadow: none;
    text-shadow: none;
    transition: all 0.3s ease;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1100;
    position: relative;
    padding: 10px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #111827;
    margin: 2px 0;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.book-now {
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: #FFFFFF;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 32px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    z-index: 1050;
    position: relative;
    align-items: center;
    gap: 0;
    min-width: 200px;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
    white-space: nowrap;
}

.book-now:hover {
    background: linear-gradient(to right, #1F4A3E, #285848);
    transform: scale(1.05);
}

@media (min-width: 1024px) {
    .book-now {
        padding: 12px 36px;
        font-size: 17px;
        border-radius: 28px;
        min-width: 170px;
    }
}

/* Global box sizing + prevent horizontal overflow */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* Header offset for fixed header */
:root {
    --header-offset: 84px;
}

/* Главный контент */
.main-content {
    margin-top: 0;
    padding: calc(15px + var(--header-offset)) 15px 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Секция заголовка (Hero) */
.hero {
    padding: clamp(56px, 6vw, 80px) 20px 30px;
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: white;
    text-align: center;
    overflow: hidden;
}

body.services-page .hero {
    background: transparent;
    color: #111827;
    text-align: center;
    padding: clamp(72px, 8vw, 110px) 20px 0;
}

body.services-page .hero h1,
body.services-page .hero p {
    color: #111827;
}

.hero__inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    min-width: 0;
}

.hero--split .hero__inner {
    max-width: 1280px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 24px;
    text-align: center;
    min-width: 0;
}

.hero--split .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    min-width: 0;
    max-width: 100%;
}

.hero--split .hero__title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero--split .hero__media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero--split .hero__media img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
}

.hero--split .hero__cta,
.hero--split .hero__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero--split {
    width: 100%;
    margin-top: clamp(16px, 3vw, 48px);
    padding: 64px 0 clamp(32px, 5vw, 80px);
    margin-bottom: clamp(24px, 4vw, 64px);
    background: transparent;
    color: #111827;
    /* Allow .hero-ticker full-bleed (100vw) — default .hero uses overflow:hidden */
    overflow: visible;
}

.hero--split .hero__sub {
    color: #6B7280;
}

.hero--split .hero__inner {
    padding: 0 24px;
}

.hero--split .btn-outline {
    border-color: rgba(15, 23, 42, 0.2);
    color: #111827;
}

/* "Call now" / tel — мягкая заливка из центра (главная: .hero__cta; сервисные: .hero__actions) */
.hero--split .hero__cta .btn-outline,
.hero--split .hero__actions .btn-outline {
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: color 0.45s ease, border-color 0.45s ease;
}

.hero--split .hero__cta .btn-outline::before,
.hero--split .hero__actions .btn-outline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(
        160deg,
        rgba(40, 88, 72, 0.2) 0%,
        rgba(40, 88, 72, 0.12) 45%,
        rgba(31, 74, 62, 0.18) 100%
    );
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.35s ease;
}

.hero--split .hero__cta .btn-outline:hover::before,
.hero--split .hero__cta .btn-outline:focus-visible::before,
.hero--split .hero__actions .btn-outline:hover::before,
.hero--split .hero__actions .btn-outline:focus-visible::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.hero--split .hero__cta .btn-outline:hover,
.hero--split .hero__cta .btn-outline:focus-visible,
.hero--split .hero__actions .btn-outline:hover,
.hero--split .hero__actions .btn-outline:focus-visible {
    border-color: rgba(40, 88, 72, 0.45);
    color: #163d33;
    transform: none;
    background: transparent;
}

@media (prefers-reduced-motion: reduce) {
    .hero--split .hero__cta .btn-outline::before,
    .hero--split .hero__actions .btn-outline::before {
        transition: opacity 0.2s ease;
    }
    .hero--split .hero__cta .btn-outline:hover::before,
    .hero--split .hero__cta .btn-outline:focus-visible::before,
    .hero--split .hero__actions .btn-outline:hover::before,
    .hero--split .hero__actions .btn-outline:focus-visible::before {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero--split .hero__inner {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 32px;
    }

    .hero--split .hero__content {
        align-items: flex-start;
    }

    .hero--split .hero__cta,
    .hero--split .hero__actions {
        justify-content: flex-start;
        flex-direction: column;
    }

    .hero--split .hero__media {
        display: none;
    }

    .hero--split .hero__media img {
        max-width: 360px;
    }

    .hero--split .hero__cta > *,
    .hero--split .hero__actions > * {
        width: min(100%, 420px);
    }
}

@media (max-width: 420px) {
    .hero--split {
        padding: 48px 20px;
    }

    .hero--split .hero__media img {
        max-width: 300px;
    }
}

.hero__title {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.hero__sub {
    font-size: 18px;
    margin: 0 0 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero__sub--center {
        text-align: center;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
    }
}

.price-from {
    font-size: 0.7em;
    letter-spacing: 0.02em;
    margin-right: 6px;
    display: inline-block;
    opacity: 0.8;
}

.hero h1,
.service-hero h1,
.locations-hero h1,
.page-hero h1 {
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 16px;
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-buttons,
.hero .cta-group,
.hero .cta-buttons,
.hero .hero-cta,
.service-hero .cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 20px auto;
}

.service-hero .cta-group {
    flex-wrap: nowrap;
}

.hero--split .cta-group {
    justify-content: flex-start;
    align-items: flex-start;
    margin: 20px 0 0;
}


.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: #ffffff;
    color: #285848;
    box-shadow: 0 15px 35px rgba(14, 31, 53, 0.25);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.hero-btn:hover,
.hero-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(14, 31, 53, 0.35);
}

.hero-btn.support-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.75);
    box-shadow: none;
}

.hero-btn.support-btn:hover,
.hero-btn.support-btn:focus-visible {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-btn.whatsapp-btn {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.35);
}

.hero-btn.whatsapp-btn:hover,
.hero-btn.whatsapp-btn:focus-visible {
    transform: translateY(-2px);
    background: #1EBE5D;
    box-shadow: 0 20px 40px rgba(18, 140, 126, 0.45);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.locations-hero {
    text-align: center;
    padding: 50px 20px 30px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(40, 88, 72, 0.6)), var(--hero-image, linear-gradient(135deg, #111827, #111827));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.locations-hero .hero-cta,
.locations-hero .hero-buttons,
.locations-hero .cta-buttons,
.locations-hero .cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.locations-hero p {
    max-width: 800px;
    margin: 16px auto 0;
}

@media (min-width: 1024px) {
    .hero {
        padding: 50px 20px 25px;
        min-height: auto;
    }

    .hero h1,
    .service-hero h1,
    .locations-hero h1,
    .page-hero h1 {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 20px;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: #285848;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.btn-primary:hover {
    background: #1F4A3E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.35);
}

/* Hero (split): primary quote CTA — soft shifting gradient (главная: .btn-primary; сервисные: .btn-yellow) */
.hero--split .hero__cta .btn-primary,
.hero--split .hero__actions .btn-yellow {
    background-image: linear-gradient(
        120deg,
        #285848 0%,
        #3d7a66 28%,
        #2d6b55 52%,
        #1F4A3E 78%,
        #285848 100%
    );
    background-size: 220% 220%;
    background-position: 0% 50%;
    box-shadow: none;
}

.hero--split .hero__actions .btn-yellow {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
}

.hero--split .hero__cta .btn-primary:hover,
.hero--split .hero__cta .btn-primary:focus-visible,
.hero--split .hero__actions .btn-yellow:hover,
.hero--split .hero__actions .btn-yellow:focus-visible {
    background-image: linear-gradient(
        120deg,
        #285848 0%,
        #3d7a66 28%,
        #2d6b55 52%,
        #1F4A3E 78%,
        #285848 100%
    );
    background-size: 220% 220%;
    background-position: 100% 50%;
}

.hero--split .hero__cta .btn-primary,
.hero--split .hero__cta .btn-primary:hover,
.hero--split .hero__cta .btn-primary:focus-visible,
.hero--split .hero__actions .btn-yellow,
.hero--split .hero__actions .btn-yellow:hover,
.hero--split .hero__actions .btn-yellow:focus-visible {
    transition: background-position 0.75s ease;
    transform: none;
    box-shadow: none;
}

.hero--split .hero__cta .btn-primary:hover,
.hero--split .hero__cta .btn-primary:focus-visible,
.hero--split .hero__actions .btn-yellow:hover,
.hero--split .hero__actions .btn-yellow:focus-visible {
    color: #FFFFFF;
    transform: none;
    box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero--split .hero__cta .btn-primary,
    .hero--split .hero__cta .btn-primary:hover,
    .hero--split .hero__cta .btn-primary:focus-visible,
    .hero--split .hero__actions .btn-yellow,
    .hero--split .hero__actions .btn-yellow:hover,
    .hero--split .hero__actions .btn-yellow:focus-visible {
        background-image: none;
        background-color: #285848;
        transition: background-color 0.2s ease;
    }
    .hero--split .hero__cta .btn-primary:hover,
    .hero--split .hero__cta .btn-primary:focus-visible,
    .hero--split .hero__actions .btn-yellow:hover,
    .hero--split .hero__actions .btn-yellow:focus-visible {
        background-color: #1F4A3E;
    }
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: #ffffff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline--green {
    border: 2px solid #285848;
    color: #285848;
    background: transparent;
}

.btn-outline--green:hover,
.btn-outline--green:focus-visible {
    background: rgba(40, 88, 72, 0.08);
    transform: translateY(-2px);
}

.whatsapp-mini {
    border: 2px solid #25D366;
    color: #25D366;
    background: transparent;
}

.whatsapp-mini:hover,
.whatsapp-mini:focus-visible {
    background: rgba(37, 211, 102, 0.12);
    border-color: #1EBE5D;
    color: #1EBE5D;
}

.gradient-text {
    display: inline-block;
    color: #285848;
    background: linear-gradient(to right, #285848, #1F4A3E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .gradient-text {
        background: none;
        color: #285848;
        -webkit-text-fill-color: initial;
    }
}

.cta-pulse {
    animation: none;
    box-shadow: none;
}

.btn-sm {
    min-width: 140px;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 999px;
}

/* Секция статистики */
.stats-section {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.stats-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    color: #285848;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

/* Секция преимуществ (Why Choose WEPRO Team?) */
.intro {
    background-color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.intro h2 {
    font-size: 32px;
    color: #285848;
    margin-bottom: 40px;
}

.features-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 32px;
}

.features-track {
    display: flex;
    transition: transform 0.45s ease;
}

.feature-slide {
    flex: 0 0 100%;
    padding: 10px 12px;
    box-sizing: border-box;
}

.feature-item {
    text-align: center;
    padding: 24px 20px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    min-height: 220px;
}

@media (min-width: 992px) {
    .features-carousel {
        overflow: visible;
    }

    .features-track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }

    .feature-slide {
        flex: initial;
        padding: 0;
        height: 100%;
    }

    .feature-item {
        height: 100%;
    }
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 8px;
    object-fit: contain;
}

.features-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}

.features-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.08);
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.features-arrow:hover,
.features-arrow:focus-visible {
    background: rgba(40, 88, 72, 0.15);
    transform: translateY(-2px);
}

.features-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.features-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.features-dot.active {
    background: #285848;
}

.feature-item p {
    font-size: 16px;
    color: #6B7280;
    margin: 10px 0;
    flex-grow: 1;
}

@media (min-width: 1024px) {
    .features-carousel {
        overflow: visible;
        padding-bottom: 0;
    }

    .features-carousel .carousel-dots {
        display: none;
    }

    .features-track {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        transform: none !important;
        transition: none !important;
    }

    .feature-slide {
        width: 100%;
        flex: initial;
    }

    .features-controls {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .features-carousel {
        overflow: visible;
        padding-bottom: 0;
    }

    .features-carousel .carousel-dots {
        display: none;
    }

    .features-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        transform: none !important;
        transition: none !important;
    }

    .feature-slide {
        width: 100%;
        flex: initial;
    }

    .features-controls {
        display: none;
    }
}

/* Секция услуг (для Services) */
.services-preview,
.services-section {
    background-color: transparent;
    padding: 60px 20px;
    text-align: center;
    --pricing-bg: #FFFFFF;
    --pricing-muted: #6B7280;
}

.services-preview h2,
.services-section h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 40px;
}

.services-list {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s;
    box-sizing: border-box;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.service-item h3 {
    font-size: 24px;
    color: #285848;
    margin: 15px 0;
}

.service-item p {
    font-size: 16px;
    color: #6B7280;
    margin: 10px 0;
}

.price {
    font-size: 18px;
    color: #1F4A3E;
    font-weight: bold;
}

.book-service {
    background: linear-gradient(to right, #285848, #1F4A3E);
    border: none;
    padding: 14px 32px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    border-radius: 28px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    margin: 10px auto;
}

.book-service:hover,
.book-service:focus-visible {
    background: linear-gradient(to right, #1F4A3E, #285848);
    transform: translateY(-2px);
}

.service-item .book-service,
.service-item .card-cta {
    width: 100%;
    max-width: 100%;
    padding: 14px 20px;
    box-sizing: border-box;
    text-align: center;
    display: block;
    margin: 10px 0;
}

.service-item .learn-more {
    width: 100%;
    max-width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    display: block;
    text-align: center;
    margin: 0 0 5px;
    border-radius: 28px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: #ffffff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-item .learn-more:hover,
.service-item .learn-more:focus-visible {
    background: linear-gradient(to right, #1F4A3E, #285848);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .book-service {
        width: 100%;
        padding: 16px 20px;
    }

    .hero .cta-group,
    .hero__cta,
    .hero-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 12px;
        flex-wrap: wrap;
        align-content: center;
    }

    .hero__cta .btn,
    .cta-group .btn {
        flex: 1 1 auto;
        min-width: 150px;
        text-align: center;
    }
}

/* Секция Call to Action Banner */
.cta-banner {
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    margin: 40px 0;
}

.cta-banner h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Секция Testimonials */
.testimonials-section {
    background-color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 32px;
    color: #285848;
    margin-bottom: 40px;
}

.reviews-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.review-item p {
    font-size: 16px;
    color: #6B7280;
    font-style: italic;
    margin: 10px 0;
}

.review-item h4 {
    font-size: 18px;
    color: #285848;
    margin: 10px 0;
}

.review-rating {
    font-size: 16px;
    color: #285848;
    margin: 5px 0;
}

/* Секция отзывов */
.reviews {
    background: linear-gradient(to right, #285848, #1F4A3E);
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
    margin-top: 1.2cm;
}

.reviews h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 700;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.review-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reviewer-initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
}

.review-slide:nth-child(8n + 1) .reviewer-initial,
.review-slide:nth-child(8n + 1) .reviewer-avatar,
.reviews-slide:nth-child(8n + 1) .reviewer-initial,
.reviews-slide:nth-child(8n + 1) .reviewer-avatar {
    background: #285848 !important;
}

.review-slide:nth-child(8n + 2) .reviewer-initial,
.review-slide:nth-child(8n + 2) .reviewer-avatar,
.reviews-slide:nth-child(8n + 2) .reviewer-initial,
.reviews-slide:nth-child(8n + 2) .reviewer-avatar {
    background: #1F4A3E !important;
}

.review-slide:nth-child(8n + 3) .reviewer-initial,
.review-slide:nth-child(8n + 3) .reviewer-avatar,
.reviews-slide:nth-child(8n + 3) .reviewer-initial,
.reviews-slide:nth-child(8n + 3) .reviewer-avatar {
    background: #0F766E !important;
}

.review-slide:nth-child(8n + 4) .reviewer-initial,
.review-slide:nth-child(8n + 4) .reviewer-avatar,
.reviews-slide:nth-child(8n + 4) .reviewer-initial,
.reviews-slide:nth-child(8n + 4) .reviewer-avatar {
    background: #2563EB !important;
}

.review-slide:nth-child(8n + 5) .reviewer-initial,
.review-slide:nth-child(8n + 5) .reviewer-avatar,
.reviews-slide:nth-child(8n + 5) .reviewer-initial,
.reviews-slide:nth-child(8n + 5) .reviewer-avatar {
    background: #F59E0B !important;
}

.review-slide:nth-child(8n + 6) .reviewer-initial,
.review-slide:nth-child(8n + 6) .reviewer-avatar,
.reviews-slide:nth-child(8n + 6) .reviewer-initial,
.reviews-slide:nth-child(8n + 6) .reviewer-avatar {
    background: #F97316 !important;
}

.review-slide:nth-child(8n + 7) .reviewer-initial,
.review-slide:nth-child(8n + 7) .reviewer-avatar,
.reviews-slide:nth-child(8n + 7) .reviewer-initial,
.reviews-slide:nth-child(8n + 7) .reviewer-avatar {
    background: #8B5CF6 !important;
}

.review-slide:nth-child(8n + 8) .reviewer-initial,
.review-slide:nth-child(8n + 8) .reviewer-avatar,
.reviews-slide:nth-child(8n + 8) .reviewer-initial,
.reviews-slide:nth-child(8n + 8) .reviewer-avatar {
    background: #EF4444 !important;
}

.reviewer-name {
    font-size: 18px;
    color: #111827;
    font-weight: 500;
}

.rating {
    font-size: 16px;
    color: #285848;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    color: #E5E7EB;
    line-height: 1.5;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 25px auto 0;
    flex-wrap: nowrap;
}

.carousel-dots {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.carousel-arrow {
    background: none;
    border: 2px solid #285848;
    color: #285848;
    font-size: 28px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
    background: #285848;
    color: #ffffff;
    outline: none;
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E7EB;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    flex-shrink: 0;
}

.carousel-dot.active {
    background: #285848;
    transform: scale(1.3);
}

/* Секция How It Works */
.how-it-works {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 32px;
    color: #285848;
    margin-bottom: 40px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-item h3 {
    font-size: 24px;
    color: #285848;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

/* Секция ценообразования (для Pricing) */
.pricing-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 20px;
}

.pricing-section h2 {
    font-size: 32px;
    color: #285848;
    margin-bottom: 30px;
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-content h3 {
    font-size: 24px;
    color: #1F4A3E;
    margin: 20px 0 10px;
}

.pricing-content p {
    font-size: 16px;
    color: #6B7280;
    margin: 10px 0;
}

.pricing-content ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 600px;
}

.pricing-content li {
    font-size: 16px;
    color: #111827;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.pricing-content li:before {
    content: "✓";
    color: #1F4A3E;
    position: static;
    left: 0;
}

/* Секция "About" */
.about-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 32px;
    color: #285848;
    margin-bottom: 30px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-content p {
    font-size: 16px;
    color: #6B7280;
    margin: 15px 0;
    line-height: 1.6;
}

.team-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    text-align: center;
}

.team-card {
    background-color: #F3F4F6;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-card h4 {
    font-size: 18px;
    color: #285848;
    margin: 10px 0;
}

.team-card p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

/* Секция "Contact" */
.contact-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    color: #285848;
    margin-bottom: 30px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(to right, #285848, #1F4A3E);
    border-radius: 10px;
    color: white;
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 24px;
    color: #285848;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.contact-card p {
    font-size: 16px;
    margin: 0;
    color: white;
}

.contact-card a {
    color: #285848;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.map-section {
    margin: 40px 0;
}

.map-section h2 {
    font-size: 32px;
    color: #285848;
    margin-bottom: 20px;
}

.map-section iframe {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #F3F4F6 0%, #FFFFFF 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(to right, #285848, #1F4A3E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    font-size: 15px;
    color: #111827;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 6px 15px rgba(40, 88, 72, 0.4);
    transform: translateY(-3px);
    border: 1px solid #285848;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Иконки для полей */
.contact-form input {
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.contact-form input[name="name"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3C/svg%3E");
}

.contact-form input[name="email"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555zM0 4.697v7.104l5.803-3.558L0 4.697zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757zm3.436-.586L16 11.801V4.697l-5.803 3.546z'/%3E%3C/svg%3E");
}

.contact-form input[name="phone"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z'/%3E%3C/svg%3E");
}

/* Стили для селекта */
.contact-form select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-color: #ffffff;
    background-size: 16px;
    padding-right: 40px;
}

/* Стили для кнопки */
.contact-form .form-submit {
    background: linear-gradient(to right, #285848, #1F4A3E);
    border: none;
    padding: 15px 30px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.contact-form .form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #1F4A3E, #285848);
}

/* Новые стили для thank_you.html */
.thank-you-hero {
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px;
}

.thank-you-hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.thank-you-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.thank-you-content h2 {
    font-size: 1.8em;
    color: #111827;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.thank-you-content a {
    color: #285848;
    text-decoration: none;
    font-weight: bold;
}

.thank-you-content a:hover {
    text-decoration: underline;
}

/* Секция Contact Form */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #F3F4F6 0%, #FFFFFF 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(to right, #285848, #1F4A3E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    width:95%;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    font-size: 15px;
    color: #111827;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 6px 15px rgba(40, 88, 72, 0.4);
    transform: translateY(-3px);
    border: 1px solid #285848;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Иконки для полей */
.contact-form input {
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.contact-form input[name="name"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3C/svg%3E");
}

.contact-form input[name="email"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555zM0 4.697v7.104l5.803-3.558L0 4.697zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757zm3.436-.586L16 11.801V4.697l-5.803 3.546z'/%3E%3C/svg%3E");
}

.contact-form input[name="phone"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z'/%3E%3C/svg%3E");
}

/* Стили для селекта */
.contact-form select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-color: #ffffff;
    background-size: 16px;
    padding-right: 40px;
}

/* Стили для кнопки */
.contact-form .form-submit {
    background: linear-gradient(to right, #285848, #1F4A3E);
    border: none;
    padding: 15px 30px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.contact-form .form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #1F4A3E, #285848);
}

/* Новые стили для thank_you.html */
.thank-you-hero {
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px;
}

.thank-you-hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.thank-you-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.thank-you-content h2 {
    font-size: 1.8em;
    color: #111827;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.thank-you-content a {
    color: #285848;
    text-decoration: none;
    font-weight: bold;
}

.thank-you-content a:hover {
    text-decoration: underline;
}

/* Секция Contact Form */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #F3F4F6 0%, #FFFFFF 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(to right, #285848, #1F4A3E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    width:95%;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    font-size: 15px;
    color: #111827;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 6px 15px rgba(40, 88, 72, 0.4);
    transform: translateY(-3px);
    border: 1px solid #285848;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Иконки для полей */
.contact-form input {
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.contact-form input[name="name"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3C/svg%3E");
}

.contact-form input[name="email"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555zM0 4.697v7.104l5.803-3.558L0 4.697zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757zm3.436-.586L16 11.801V4.697l-5.803 3.546z'/%3E%3C/svg%3E");
}

.contact-form input[name="phone"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z'/%3E%3C/svg%3E");
}

/* Стили для селекта */
.contact-form select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-color: #ffffff;
    background-size: 16px;
    padding-right: 40px;
}

/* Стили для кнопки */
.contact-form .form-submit {
    background: linear-gradient(to right, #285848, #1F4A3E);
    border: none;
    padding: 15px 30px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.contact-form .form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #1F4A3E, #285848);
}

/* Новые стили для thank_you.html */
.thank-you-hero {
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px;
}

.thank-you-hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.thank-you-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.thank-you-content h2 {
    font-size: 1.8em;
    color: #111827;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.thank-you-content a {
    color: #285848;
    text-decoration: none;
    font-weight: bold;
}

.thank-you-content a:hover {
    text-decoration: underline;
}

/* Секция Contact Form */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #F3F4F6 0%, #FFFFFF 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(to right, #285848, #1F4A3E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    width:95%;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    font-size: 15px;
    color: #111827;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 6px 15px rgba(40, 88, 72, 0.4);
    transform: translateY(-3px);
    border: 1px solid #285848;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Иконки для полей */
.contact-form input {
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.contact-form input[name="name"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3C/svg%3E");
}

.contact-form input[name="email"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555zM0 4.697v7.104l5.803-3.558L0 4.697zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757zm3.436-.586L16 11.801V4.697l-5.803 3.546z'/%3E%3C/svg%3E");
}

.contact-form input[name="phone"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z'/%3E%3C/svg%3E");
}

/* Стили для селекта */
.contact-form select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-color: #ffffff;
    background-size: 16px;
    padding-right: 40px;
}

/* Стили для кнопки */
.contact-form .form-submit {
    background: linear-gradient(to right, #285848, #1F4A3E);
    border: none;
    padding: 15px 30px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.contact-form .form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #1F4A3E, #285848);
}

/* Новые стили для thank_you.html */
.thank-you-hero {
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px;
}

.thank-you-hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.thank-you-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.thank-you-content h2 {
    font-size: 1.8em;
    color: #111827;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.thank-you-content a {
    color: #285848;
    text-decoration: none;
    font-weight: bold;
}

.thank-you-content a:hover {
    text-decoration: underline;
}

/* Секция Contact Form */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #F3F4F6 0%, #FFFFFF 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(to right, #285848, #1F4A3E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    width:95%;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    font-size: 15px;
    color: #111827;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 6px 15px rgba(40, 88, 72, 0.4);
    transform: translateY(-3px);
    border: 1px solid #285848;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Иконки для полей */
.contact-form input {
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.contact-form input[name="name"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3C/svg%3E");
}

.contact-form input[name="email"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555zM0 4.697v7.104l5.803-3.558L0 4.697zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757zm3.436-.586L16 11.801V4.697l-5.803 3.546z'/%3E%3C/svg%3E");
}

.contact-form input[name="phone"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z'/%3E%3C/svg%3E");
}

/* Стили для селекта */
.contact-form select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-color: #ffffff;
    background-size: 16px;
    padding-right: 40px;
}

/* Стили для кнопки */
.contact-form .form-submit {
    background: linear-gradient(to right, #285848, #1F4A3E);
    border: none;
    padding: 15px 30px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.contact-form .form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #1F4A3E, #285848);
}

/* Новые стили для thank_you.html */
.thank-you-hero {
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px;
}

.thank-you-hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.thank-you-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.thank-you-content h2 {
    font-size: 1.8em;
    color: #111827;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.thank-you-content a {
    color: #285848;
    text-decoration: none;
    font-weight: bold;
}

.thank-you-content a:hover {
    text-decoration: underline;
}

/* Секция Contact Form */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #F3F4F6 0%, #FFFFFF 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(to right, #285848, #1F4A3E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    width:95%;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    font-size: 15px;
    color: #111827;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 6px 15px rgba(40, 88, 72, 0.4);
    transform: translateY(-3px);
    border: 1px solid #285848;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Иконки для полей */
.contact-form input {
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.contact-form input[name="name"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3C/svg%3E");
}

.contact-form input[name="email"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555zM0 4.697v7.104l5.803-3.558L0 4.697zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757zm3.436-.586L16 11.801V4.697l-5.803 3.546z'/%3E%3C/svg%3E");
}

.contact-form input[name="phone"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z'/%3E%3C/svg%3E");
}

/* Стили для селекта */
.contact-form select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-color: #ffffff;
    background-size: 16px;
    padding-right: 40px;
}

/* Стили для кнопки */
.contact-form .form-submit {
    background: linear-gradient(to right, #285848, #1F4A3E);
    border: none;
    padding: 15px 30px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.contact-form .form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #1F4A3E, #285848);
}

/* Новые стили для thank_you.html */
.thank-you-hero {
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px;
}

.thank-you-hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.thank-you-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.thank-you-content h2 {
    font-size: 1.8em;
    color: #111827;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.thank-you-content a {
    color: #285848;
    text-decoration: none;
    font-weight: bold;
}

.thank-you-content a:hover {
    text-decoration: underline;
}

/* Секция Contact Form */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #F3F4F6 0%, #FFFFFF 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(to right, #285848, #1F4A3E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    width:95%;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    font-size: 15px;
    color: #111827;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 6px 15px rgba(40, 88, 72, 0.4);
    transform: translateY(-3px);
    border: 1px solid #285848;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Иконки для полей */
.contact-form input {
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.contact-form input[name="name"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3C/svg%3E");
}

.contact-form input[name="email"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555zM0 4.697v7.104l5.803-3.558L0 4.697zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757zm3.436-.586L16 11.801V4.697l-5.803 3.546z'/%3E%3C/svg%3E");
}

.contact-form input[name="phone"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z'/%3E%3C/svg%3E");
}

/* Стили для селекта */
.contact-form select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-color: #ffffff;
    background-size: 16px;
    padding-right: 40px;
}

/* Стили для кнопки */
.contact-form .form-submit {
    background: linear-gradient(to right, #285848, #1F4A3E);
    border: none;
    padding: 15px 30px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.contact-form .form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #1F4A3E, #285848);
}

/* Футер */
footer {
    background-color: #111827;
    color: white;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 18px;
    color: #285848;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    color: #E5E7EB;
    margin: 5px 0;
}

.footer-section a {
    color: #E5E7EB;
    text-decoration: none;
}


.footer-section a:hover {
    color:  rgba(31, 74, 62, 0.8);
    transform: translateY(1px) scale(1);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #6B7280;
    padding-top: 20px;
}
/* Заголовки секций футера (как у Service Areas / Our Digital Office) */
.footer-section h3{
  font-size:15px;

  color:#111827;
  margin:0 0 14px;
  display:inline-block;
  padding-bottom:6px;
  border-bottom:2px solid #E5E7EB; /* тонкая подчёркивающая линия */
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 14px;
    width: 100%;
    padding: 8px 0;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: rgba(31, 74, 62, 0.1);
    padding-left: 10px;
}

.footer-unified .footer-section .footer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 14px;
    width: 100%;
    padding: 8px 0;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-unified .footer-section .footer-links a:hover {
    background: rgba(31, 74, 62, 0.1);
    padding-left: 10px;
}

.footer-bottom p {
    font-size: 14px;
    color: #E5E7EB;
}

/* Unified Footer */
.footer-unified {
    background: linear-gradient(135deg, #111827, #111827);
    color: white;
    margin-top: 60px;
}

.footer-unified .footer-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;

}





@media (max-width: 1024px) {
    .footer-unified .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.footer-unified .footer-section {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-unified .footer-section h3 {
    color: #1F4A3E;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    border-bottom: 2px solid rgba(31, 74, 62, 0.2);
    padding-bottom: 10px;
}

.contact-item,
.office-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    font-size: 14px;
    width: 100%;
    padding: 8px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover,
.office-item:hover {
    background: rgba(31, 74, 62, 0.1);
    padding-left: 10px;
}

.contact-item a,
.office-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover,
.office-item a:hover {
    color: #1F4A3E;
}

.icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.chatbot-link {
    color: #1F4A3E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.chatbot-link:hover {
    color: #285848;
    text-decoration: underline;
}

.service-areas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    width: 100%;
}

.service-areas span {
    padding: 8px 0;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    color: white;
}

.service-areas span:hover {
    background: rgba(31, 74, 62, 0.1);
    padding-left: 10px;
}

.service-areas a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.service-areas a:hover {
    opacity: 0.8;
    text-decoration: underline;
    padding-left: 10px;
    background: rgba(31, 74, 62, 0.1);
}

.area-note {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Чистый низ футера: текст © по центру, иконки справа */
.footer-unified .footer-bottom .footer-bottom-content {
    position: relative;    /* чтобы можно было прижать иконки справа */
    display: block;        /* переопределяем возможный grid отсюда выше */
  }
  
  .footer-unified .footer-bottom .footer-bottom-content p {
    margin: 0;
    text-align: center;
  }
  
  .footer-unified .footer-bottom .footer-social {
    position: absolute;
    right:88px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 12px;  
    }

    
             
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-unified .footer-content {
        padding: 40px 20px 30px;
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .footer-unified .footer-section {
        text-align: center;
        align-items: center;
    }

    .footer-unified .footer-section h3 {
        text-align: center;
    }

    .contact-item,
    .office-item {
        justify-content: center;
        text-align: center;
    }

    .service-areas {
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        justify-content: center;
        text-align: center;
    }

    .footer-unified .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

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

.footer-unified .footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}



.social-link.facebook:hover {
    background: #1877f2;
    
}

.social-link:hover {

    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(31, 74, 62, 0.4);
}

.social-link.facebook:hover {
    background: #1877f2;
    
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* WhatsApp text - hidden on desktop for circular button */
.whatsapp-text {
    display: none;
}

/* Chatbot Loading Optimization - Prevent Layout Shift */
iframe[src*="chatbase.co"] {
    /* Smooth loading transition */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

iframe[src*="chatbase.co"][data-loaded="true"] {
    opacity: 1;
}

/* Mobile Chatbase Full Screen Override */
@media (max-width: 768px) {
    iframe[src*="chatbase.co"] {
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        top: 0 !important;
        left: 0 !important;
        position: fixed !important;
        z-index: 9999 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }


}

@media (max-width: 480px) {
    iframe[src*="chatbase.co"] {
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        top: 0 !important;
        left: 0 !important;
        position: fixed !important;
        z-index: 9999 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

}

/* Ensure all interactive elements are clickable */
a, button, input, select, textarea, [onclick], [data-action], .clickable {
    pointer-events: auto !important;
}

/* Ensure navigation is clickable */
.nav-links a, .book-now, .menu-toggle {
    pointer-events: auto !important;
}

/* Ensure form elements are interactive */
form, form * {
    pointer-events: auto !important;
}


/* Модальное окно */
/* Стили для модального окна */
.modal {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон */
    z-index: 1000;
    overflow: hidden; /* Запрещаем прокрутку фона */
}

.modal-content {
    background-color: #111827; /* Цвет фона */
    margin: 5% auto; /* Центрирование с отступом сверху */
    padding: 30px;
    border-radius: 10px;
    width: 90%; /* Адаптивная ширина */
    max-width: 600px; /* Максимальная ширина */
    max-height: 80vh; /* Ограничение высоты */
    overflow-y: auto; /* Внутренняя прокрутка по вертикали */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    -webkit-overflow-scrolling: touch; /* Плавная прокрутка на iOS */
    color: white;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: #ffffff;
    color: #111827;
    margin-bottom: 14px;
    box-sizing: border-box;
}

.modal-content label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.modal-content small.form-note {
    color: rgba(226, 232, 240, 0.8);
}

.modal-content form {
    touch-action: pan-y; /* Разрешаем вертикальную прокрутку на сенсорных устройствах */
}

.modal-content .multi-step-form {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    max-width: none;
    margin: 0;
}

.modal-content .form-progress {
    gap: 8px;
    margin-bottom: 24px;
}

.modal-content .form-progress span {
    background: rgba(255, 255, 255, 0.25);
}

.modal-content .form-progress span.active::after {
    background: linear-gradient(135deg, #285848, #1F4A3E);
}

.modal-content .form-step-heading {
    font-size: 20px;
    margin: 0 0 8px;
    text-align: center;
    color: #FFFFFF;
}

.modal-content .form-step-subheading {
    font-size: 14px;
    text-align: center;
    color: rgba(226, 232, 240, 0.75);
    margin: 0 0 18px;
}

.modal-content .field-group label {
    color: #FFFFFF;
}

.modal-content .form-note,
.modal-content .form-helper {
    color: rgba(226, 232, 240, 0.75);
}

.modal-content .services-checkboxes label {
    color: #FFFFFF;
}

.modal-content .form-actions {
    justify-content: space-between;
}

.modal-content .form-actions button {
    flex: 1;
    min-width: 45%;
    justify-content: center;
}

.modal-content .form-actions button:only-child {
    min-width: 100%;
}

.modal-content .form-actions .btn-next {
    background: linear-gradient(135deg, #285848, #1F4A3E);
    color: #ffffff;
}

.modal-content .form-actions .btn-back {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
}

.modal-content .form-actions .btn-submit {
    background: linear-gradient(135deg, #285848, #1F4A3E);
    color: #ffffff;
}

.modal-content .cost-estimate {
    text-align: center;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(248, 250, 252, 0.15);
    border-radius: 14px;
    padding: 18px;
}

.modal-content .cost-estimate__value {
    font-size: 24px;
    font-weight: 700;
    color: #285848;
}

.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #E5E7EB;
    text-decoration: none;
    cursor: pointer;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 75vh;
    }
}

@media (max-width: 576px) {
    .modal-content {
        margin: 15% auto;
        width: 98%;
        padding: 15px;
        max-height: 70vh;
    }
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 16px;
}

input, select, textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

button[type="submit"] {
    background-color: #285848;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #285848;
}

/* Стили для отображения стоимости */
#costEstimate {
    background-color: #111827;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin: 10px 0;
}

#costEstimate h3 {
    margin: 0;
    font-size: 18px;
}

#costValue {
    color: #285848;
    font-weight: bold;
}

/* Стили для чекбоксов услуг */
.services-checkboxes {
    max-height: 200px;
    overflow-y: auto;
    background-color: #111827;
    padding: 10px;
    border-radius: 5px;
}

.services-checkboxes label {
    display: block;
    margin: 5px 0;
    padding: 5px;
    cursor: pointer;
}

.services-checkboxes label:hover {
    background-color: #6B7280;
}

.services-checkboxes input[type="checkbox"] {
    margin-right: 10px;
}

/* Service type selector */
.service-type-selector {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 12px 0 16px;
}

.service-type-selector label {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.35);
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    flex: 1 1 220px;
}

.service-type-selector input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(148, 163, 184, 0.5);
    display: inline-block;
    position: relative;
    background: #fff;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.service-type-selector input[type="radio"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transform: translate(-50%, -50%);
}

.service-type-selector input[type="radio"]:checked {
    border-color: rgba(40, 88, 72, 0.7);
    background: rgba(40, 88, 72, 0.1);
}

.service-type-selector input[type="radio"]:checked::after {
    background: #285848;
}

.service-type-selector span {
    font-size: 15px;
}

.service-type-selector input[type="radio"]:checked + span {
    color: #111827;
}


.service-type-selector label:has(input[type="radio"]:checked) {
    background: rgba(40, 88, 72, 0.12);
    border-color: rgba(40, 88, 72, 0.6);
}

#property-services {
    display: none;
}

#property-extras {
    display: none;
}

/* iPad specific fixes for header layout */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    nav {
        padding: 0 20px;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links li a {
        font-size: 19px;
        padding: 8px 12px;
    }

    .book-now {
        padding: 8px 16px;
        font-size: 16px;
        min-width: 100px;
        white-space: nowrap;
    }

    .brand-logo {
        gap: 8px;
    }

    .logo {
        font-size: 19px;
    }

    .nav-logo {
        width: 40px;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
    }

    .brand-logo {
        gap: 5px;
    }

    .nav-logo {
        width: 30px;
    }

    .logo {
        font-size: 19px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(to right, #285848, #1F4A3E);
        padding: 15px 0;
        text-align: center;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 19px;
        display: block;
        text-align: center;
        padding: 10px 20px;
    }

    .nav-links li a.active {
        background: rgba(40, 88, 72, 0.15);
        border-radius: 20px;
        margin: 0 20px;
        text-align: center;
        display: block;
    }

    .menu-toggle {
        display: flex;
        justify-content: center;
        width: 20%;
        align-items: center;
    }

    .book-now {
        padding: 8px 16px;
        font-size: 16px;
        min-width: 100px;
    }

    .main-content {
        margin-top: 80px;
        padding: 10px;
    }

    .hero {
        padding: 60px 15px;
    }

    .hero h1,
    .service-hero h1,
    .locations-hero h1,
    .page-hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 95%;
        max-width: 95%;
        margin-bottom: 10px;
    }

    .hero .whatsapp-float {
        width: 100%;
    }

    .hero .whatsapp-float .hero-btn {
        width: 95%;
        max-width: 95%;
    }

    .stats-section {
        padding: 30px 10px;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 14px;
    }

    .intro {
        padding: 40px 10px;
    }

    .intro h2 {
        font-size: 26px;
    }

    .features-carousel {
        padding-bottom: 24px;
    }

    .feature-slide {
        flex: 0 0 100%;
    }

    .feature-item {
        padding: 20px;
        min-height: 200px;
    }

    .feature-icon {
        width: 90px;
        height: 90px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .services-preview,
    .services-section {
        padding: 40px 10px;
    }

    .services-preview h2,
    .services-section h2 {
        font-size: 26px;
    }

    .services-list {
        gap: 20px;
    }

    .service-item img {
        height: 150px;
    }

    .service-item h3 {
        font-size: 20px;
    }

    .service-item p {
        font-size: 14px;
    }

    .price {
        font-size: 16px;
    }

    .book-service {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
    }

    .cta-banner {
        padding: 40px 10px;
    }

    .cta-banner h2 {
        font-size: 26px;
    }

    .cta-banner p {
        font-size: 14px;
    }

    .testimonials-section {
        padding: 40px 10px;
    }

    .testimonials-section h2 {
        font-size: 26px;
    }

    .reviews-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-item {
        padding: 15px;
    }

    .review-item p {
        font-size: 14px;
    }

    .review-item h4 {
        font-size: 16px;
    }

    .reviews-container {
        flex-direction: column;
        align-items: center;
    }

    .review-card {
        width: 100%;
        max-width: 100%;
    }

    .how-it-works {
        padding: 40px 10px;
    }

    .how-it-works h2 {
        font-size: 26px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-item h3 {
        font-size: 20px;
    }

    .step-item p {
        font-size: 14px;
    }

    .pricing-section {
        padding: 40px 10px;
    }

    .pricing-section h2 {
        font-size: 26px;
    }

    .pricing-content h3 {
        font-size: 20px;
    }

    .pricing-content p {
        font-size: 14px;
    }

    .pricing-content li {
        font-size: 14px;
    }

    .about-section {
        padding: 40px 10px;
    }

    .about-section h2 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 14px;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }

    .team-card h4 {
        font-size: 16px;
    }

    .team-card p {
        font-size: 13px;
    }

    .contact-section {
        padding: 40px 10px;
    }

    .contact-section h2 {
        font-size: 26px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 15px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 14px;
    }

    .map-section {
        margin: 30px 0;
    }

    .map-section h2 {
        font-size: 26px;
    }

    .map-section iframe {
        height: 300px;
    }

    .contact-content {
        padding: 30px;
    }

    .contact-content h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 10px 15px 10px 35px;
        font-size: 14px;
    }

    .contact-form .form-submit {
        padding: 12px 25px;
        font-size: 14px;
    }

    .modal-content {
        margin: 20% auto;
        width: 90%;
        max-width: 400px;
        padding: 15px;
    }

    .close {
        font-size: 24px;
    }

    .thank-you-hero {
        padding: 80px 20px;
    }

    .thank-you-hero h1 {
        font-size: 2em;
    }

    .thank-you-hero p {
        font-size: 1em;
    }

    .thank-you-content h2 {
        font-size: 1.5em;
    }

    .thank-you-content p {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 19px;
    }

    .nav-logo {
        width: 30px;
    }

    .nav-links a {
        font-size: 19px;
    }

    .book-now {
        padding: 6px 12px;
        font-size: 16px;
        min-width: 90px;
    }

    .main-content {
        margin-top: 80px;
        padding: 8px;
    }

    .hero {
        padding: 40px 10px;
    }

    .hero__cta {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 12px;
        flex-wrap: wrap;
        align-content: center;
    }

    .hero__cta .btn {
        flex: 1 1 auto;
        min-width: 150px;
        text-align: center;
    }

    .carousel-navigation {
        gap: 18px;
        margin-top: 20px;
    }

    .hero h1,
    .service-hero h1,
    .locations-hero h1,
    .page-hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        gap: 10px;
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-items: center;
        width: 100%;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 13px;
        justify-content: center;
        width: 95%;
        max-width: 95%;
    }

    .hero .whatsapp-float {
        width: 100%;
    }

    .hero .whatsapp-float .hero-btn {
        width: 95%;
        max-width: 95%;
    }

    .stats-section {
        padding: 20px 8px;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .stat-item p {
        font-size: 12px;
    }

    .intro {
        padding: 30px 8px;
    }

    .intro h2 {
        font-size: 22px;
    }

    .features-carousel {
        padding-bottom: 20px;
    }

    .feature-slide {
        flex: 0 0 100%;
    }

    .feature-item {
        padding: 16px;
        min-height: 180px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .services-preview,
    .services-section {
        padding: 30px 8px;
    }

    .services-preview h2,
    .services-section h2 {
        font-size: 22px;
    }

    .services-list {
        gap: 15px;
    }

    .service-item img {
        height: 120px;
    }

    .service-item h3 {
        font-size: 18px;
    }

    .service-item p {
        font-size: 13px;
    }

    .price {
        font-size: 14px;
    }

    .book-service {
        width: 100%;
        padding: 16px 18px;
        font-size: 14px;
    }

    .cta-banner {
        padding: 30px 8px;
    }

    .cta-banner h2 {
        font-size: 22px;
    }

    .cta-banner p {
        font-size: 13px;
    }

    .testimonials-section {
        padding: 30px 8px;
    }

    .testimonials-section h2 {
        font-size: 22px;
    }

    .reviews-content {
        gap: 15px;
    }

    .review-item {
        padding: 10px;
    }

    .review-item p {
        font-size: 13px;
    }

    .review-item h4 {
        font-size: 15px;
    }

    .how-it-works {
        padding: 30px 8px;
    }

    .how-it-works h2 {
        font-size: 22px;
    }

    .steps {
        gap: 15px;
    }

    .step-item h3 {
        font-size: 18px;
    }

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

    .pricing-section {
        padding: 30px 8px;
    }

    .pricing-section h2 {
        font-size: 22px;
    }

    .pricing-content h3 {
        font-size: 18px;
    }

    .pricing-content p {
        font-size: 13px;
    }

    .pricing-content li {
        font-size: 13px;
    }

    .about-section {
        padding: 30px 8px;
    }

    .about-section h2 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 13px;
    }

    .team-photo {
        width: 100px;
        height: 100px;
    }

    .team-card h4 {
        font-size: 15px;
    }

    .team-card p {
        font-size: 12px;
    }

    .contact-section {
        padding: 30px 8px;
    }

    .contact-section h2 {
        font-size: 22px;
    }

    .contact-details {
        gap: 15px;
    }

    .contact-card {
        padding: 10px;
    }

    .contact-card h3 {
        font-size: 16px;
    }

    .contact-card p {
        font-size: 13px;
    }

    .map-section {
        margin: 20px 0;
    }

    .map-section h2 {
        font-size: 22px;
    }

    .map-section iframe {
        height: 250px;
    }

    .contact-content {
        padding: 20px;
    }

    .contact-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-form .form-row {
        gap: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70%;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 8px 15px 8px 30px;
        font-size: 13px;
        background-size: 18px;
        display: flex;
        justify-items: center;
        align-items: center;
    }

    .contact-form .form-submit {
        padding: 10px 20px;
        font-size: 13px;
    }

    footer {
        padding: 20px 8px;
    }

    .footer-content {
        gap: 15px;
    }
    /* ===== FOOTER: mobile ===== */
.footer-content{
    grid-template-columns: 1fr; /* секции одна под другой */
    gap: 16px;
    text-align: center;
  }
  
  /* Quick Links — match office-item styling on mobile */
  .footer-section .footer-links{
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer-section .footer-links a{
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    margin: 0;
    font-size: 14px;
    width: 100%;
    padding: 8px 0;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .footer-section .footer-links a:hover{
    background: rgba(31, 74, 62, 0.1);
    padding-left: 10px;
  }
  
  /* Низ футера: © по центру, иконки под ним (без абсолютов) */
  .footer-bottom .footer-bottom-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
  }
  .footer-bottom p{
    font-size: 12px;   
    margin: 0;
    text-align: center;
  }
  .footer-bottom .footer-social{
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
  }


    .footer-section h3 {
        font-size: 14px;
    }

    .footer-section p {
        font-size: 11px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .modal-content {
        margin: 30% auto;
        width: 95%;
        max-width: 350px;
        padding: 10px;
        overflow-y: auto;
        overflow-x: hidden;
        display: block;
    }

    .close {
        font-size: 20px;
    }

    .thank-you-hero {
        padding: 60px 10px;
    }

    .thank-you-hero h1 {
        font-size: 1.5em;
    }

    .thank-you-hero p {
        font-size: 0.9em;
    }

    .thank-you-content h2 {
        font-size: 1.2em;
    }

    .thank-you-content p {
        font-size: 0.9em;
    }
}

/* Tralee Service Page Styling */
body.service-page {
    background-color: #F3F4F6;
    color: #111827;
}

.service-main {
    margin-top: 120px;
    padding-bottom: 120px;
}

.service-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumbs {
    font-size: 14px;
    margin-bottom: 24px;
    color: #6B7280;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: #285848;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs span {
    color: #6B7280;
}

.service-hero {
    position: relative;
    padding: 80px 20px 50px;
    border-radius: 28px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(40, 88, 72, 0.9), rgba(17, 24, 39, 0.95)),
        var(--hero-image, linear-gradient(135deg, #111827, #111827));
    background-size: cover;
    background-position: center;
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}

.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(40, 88, 72, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-hero h1 {
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.1;
    margin: 20px 0 16px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(18px, 2.2vw, 22px);
    margin-bottom: 28px;
    color: rgba(241, 245, 249, 0.95);
}

.hero-pricing {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.55);
    padding: 12px 22px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    margin-bottom: 32px;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 15px 35px rgba(14, 31, 53, 0.25);
}

.cta-button.primary {
    background: linear-gradient(135deg, #285848, #1F4A3E);
    color: #ffffff;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.whatsapp {
    background: #25D366;
    color: #ffffff;
}

.cta-button.whatsapp:hover,
.cta-button.whatsapp:focus-visible {
    background: #1EBE5D;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.35);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
    font-size: 15px;
    color: rgba(226, 232, 240, 0.9);
    justify-content: center;
    text-align: center;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.usp-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: -70px;
    position: relative;
    z-index: 3;
}

.usp-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #111827;
}

.usp-card i {
    color: #285848;
    font-size: 20px;
}

.service-section {
    padding: 100px 0 0;
}

.service-section.compact {
    padding-top: 60px;
}

.section-title {
    font-size: clamp(28px, 3vw, 42px);
    text-align: center;
    margin-bottom: 24px;
    color: #111827;
}

.section-lead {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
    color: #6B7280;
    font-size: 18px;
    line-height: 1.7;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.content-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.content-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #111827;
}

.content-card ul {
    padding-left: 20px;
    margin: 0;
    color: #111827;
    line-height: 1.7;
}

.content-card .add-ons {
    margin-top: 20px;
    font-style: italic;
    color: #6B7280;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.process-step {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #FFFFFF);
    border-radius: 18px;
    padding: 30px 24px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: -18px;
    left: 24px;
    background: linear-gradient(135deg, #285848, #1F4A3E);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(14, 92, 183, 0.4);
}

.process-step h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #111827;
}

.process-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #285848;
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pricing-card.highlight {
    border: 2px solid #285848;
    transform: translateY(-6px);
}

.pricing-tier {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1F4A3E;
}

.pricing-price {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
}

.pricing-meta {
    font-size: 14px;
    color: #6B7280;
    font-style: italic;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #111827;
}

.pricing-card li::before {
    content: "✔";
    color: #285848;
    margin-right: 10px;
    font-weight: 700;
}

.pricing-footer {
    margin-top: auto;
    font-size: 14px;
    color: #6B7280;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.gallery-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(226, 232, 240, 0.7);
}

.gallery-card figure {
    margin: 0;
    position: relative;
}

.gallery-card img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-caption {
    padding: 18px 20px 28px;
    color: #111827;
}

.gallery-caption strong {
    display: block;
    font-size: 16px;
    color: #111827;
    margin-bottom: 6px;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.area-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.area-card h3 {
    margin: 0 0 12px;
    color: #111827;
}

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

.faq-item {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 22px 26px;
    font-weight: 600;
    font-size: 17px;
    list-style: none;
    color: #111827;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    background: rgba(40, 88, 72, 0.08);
}

.faq-item .faq-content {
    padding: 0 26px 24px;
    color: #111827;
    line-height: 1.7;
}

.cta-panel {
    background: linear-gradient(135deg, #111827, #111827);
    color: #ffffff;
    border-radius: 28px;
    padding: 48px 44px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: center;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.3);
    margin-top: 80px;
}

.cta-panel h2 {
    font-size: clamp(28px, 3vw, 38px);
    margin: 0 0 16px;
}

.cta-panel ul {
    padding-left: 20px;
    margin: 0;
    line-height: 1.7;
}

.cta-panel small {
    display: block;
    margin-top: 16px;
    color: rgba(226, 232, 240, 0.8);
    font-size: 13px;
}

.link-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.link-matrix a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 16px 18px;
    border-radius: 14px;
    text-decoration: none;
    color: #111827;
    font-weight: 600;
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-matrix a:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.multi-step-form {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(226, 232, 240, 0.9);
    max-width: 720px;
    margin: 0 auto;
}

.form-progress {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.form-progress span {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.35);
    position: relative;
    overflow: hidden;
}

.form-progress span.active::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #285848, #1F4A3E);
}

.form-step {
    display: none;
    animation: fadeIn 0.45s ease;
}

.form-step.active {
    display: block;
}

.form-step .field-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-step label {
    font-weight: 600;
    color: #111827;
}

.form-step input,
.form-step select,
.form-step textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    background: rgba(248, 250, 252, 0.9);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-step input:focus,
.form-step select:focus,
.form-step textarea:focus {
    outline: none;
    border-color: #285848;
    box-shadow: 0 0 0 4px rgba(40, 88, 72, 0.15);
}

.form-step textarea {
    min-height: 130px;
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 24px;
}

.form-actions button {
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.form-actions .btn-back {
    background: rgba(15, 23, 42, 0.08);
    color: #111827;
}

.form-actions .btn-next {
    background: linear-gradient(135deg, #285848, #1F4A3E);
    color: #ffffff;
}

.form-actions .btn-submit {
    background: linear-gradient(135deg, #285848, #1F4A3E);
    color: #ffffff;
}

.form-helper {
    font-size: 13px;
    color: #6B7280;
    margin-top: -4px;
}

.form-error {
    display: none;
    margin-top: 6px;
    color: #dc2626;
    font-size: 13px;
}

.form-step .field-group.invalid .form-error {
    display: block;
}

.sticky-mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111827;
    display: none;
    padding: 14px 16px;
    z-index: 1000;
    box-shadow: 0 -12px 35px rgba(15, 23, 42, 0.35);
}

.sticky-mobile-bar .cta-button {
    flex: 1;
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    text-align: center;
    min-width: 0;
}

.popular-services,
.related-services {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.75);
    margin-top: 70px;
}

.popular-services h2,
.related-services h2 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 24px;
    color: #111827;
    text-align: left;
}

.popular-list,
.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-list a,
.related-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #285848;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(40, 88, 72, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.popular-list a:hover,
.related-list a:hover {
    background: rgba(40, 88, 72, 0.15);
    transform: translateY(-2px);
}

.areas-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: #285848;
    font-weight: 600;
    text-decoration: none;
}

.deposit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #285848;
    font-weight: 600;
    text-decoration: none;
}

.schema-script {
    display: none;
}

@media (max-width: 1024px) {
    .service-hero {
        padding: 120px 20px 100px;
    }

    .usp-row {
        margin-top: -40px;
    }
}

@media (max-width: 768px) {
    .service-main {
        margin-top: 100px;
    }

    .service-hero {
        border-radius: 22px;
        padding: 110px 20px 90px;
    }

    .hero-content {
        text-align: left;
    }

    .cta-group {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .usp-row {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        margin-top: -32px;
    }

    .service-section {
        padding-top: 70px;
    }

    .cta-panel {
        grid-template-columns: 1fr;
        padding: 36px 28px;
    }

    .service-areas-grid,
    .pricing-grid,
    .process-grid,
    .gallery-grid,
    .link-matrix,
    .popular-list,
    .related-list {
        grid-template-columns: 1fr;
    }

    .multi-step-form {
        padding: 30px 24px;
    }

    .sticky-mobile-bar {
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .hero-pricing {
        font-size: 17px;
    }

    .usp-card {
        font-size: 14px;
    }

    .sticky-mobile-bar .cta-button {
        font-size: 13px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Homepage Painting Highlight */
.painting-highlight {
    padding: 120px 0 80px;
    background: #FFFFFF;
}

.painting-highlight .service-wrapper {
    padding: 0 20px;
}

.painting-highlight h2 {
    text-align: center;
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 16px;
    color: #111827;
}

.painting-highlight p.section-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
    color: #6B7280;
    font-size: 18px;
    line-height: 1.7;
}

.painting-card-grid,
.cleaning-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    justify-items: center;
    justify-content: center;
}

.painting-card,
.cleaning-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.7);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    max-width: 340px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.painting-card img,
.cleaning-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.painting-card-content,
.cleaning-card-content {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.painting-card h3,
.cleaning-card h3 {
    margin: 0;
    font-size: 20px;
    color: #111827;
}

.painting-card p,
.cleaning-card p {
    margin: 0;
    color: #6B7280;
    line-height: 1.5;
    font-size: 15px;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 20px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #285848, #1F4A3E);
    border-radius: 50%;
    color: white;
    font-size: 32px;
}

.painting-card .card-cta,
.cleaning-card .card-cta {
    margin-top: auto;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 999px;
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    border: none;
    cursor: pointer;
}

.painting-card .card-cta:hover,
.cleaning-card .card-cta:hover {
    background: linear-gradient(to right, #1F4A3E, #285848);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.22);
}

.painting-card .card-cta i,
.cleaning-card .card-cta i {
    font-size: 16px;
}

.cleaning-card .learn-more,
.cleaning-card-content .learn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, #285848, #1F4A3E) border-box;
    border: 2px solid transparent;
    color: #1F4A3E;
    font-weight: 600;
    text-decoration: none;
    align-self: center;
    margin-top: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.cleaning-card .learn-more i,
.cleaning-card-content .learn-more i {
    font-size: 14px;
    color: #285848;
    transition: color 0.2s ease;
}

.cleaning-card .learn-more:hover,
.cleaning-card .learn-more:focus-visible,
.cleaning-card-content .learn-more:hover,
.cleaning-card-content .learn-more:focus-visible {
    background: linear-gradient(135deg, #285848, #1F4A3E);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(40, 88, 72, 0.25);
}

.cleaning-card .learn-more:hover i,
.cleaning-card .learn-more:focus-visible i,
.cleaning-card-content .learn-more:hover i,
.cleaning-card-content .learn-more:focus-visible i {
    color: #ffffff;
}

@media (min-width: 769px) {
    .cleaning-card-content .learn-more {
        margin-top: auto;
    }

    .cleaning-card-content .learn-more + .card-cta {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .painting-card-grid,
    .cleaning-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .painting-card,
    .cleaning-card {
        max-width: 100%;
    }

    .painting-card img,
    .cleaning-card img {
        height: 120px;
    }

    .painting-card h3,
    .cleaning-card h3 {
        font-size: 14px;
    }

    .painting-card p,
    .cleaning-card p {
        font-size: 12px;
        line-height: 1.4;
    }

    .painting-card .card-cta,
    .cleaning-card .card-cta {
        font-size: 12px;
        padding: 10px 12px;
    }

    .cleaning-card .learn-more,
    .cleaning-card-content .learn-more {
        font-size: 12px;
        padding: 8px 12px;
    }

    .painting-card-content,
    .cleaning-card-content {
        padding: 12px 10px 14px;
        gap: 8px;
    }

    /* Ensure card CTAs don't keep desktop min-width on small screens */
    .painting-card .card-cta,
    .cleaning-card .card-cta,
    .service-item .book-service,
    .service-item .card-cta,
    .card-cta {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* Ensure `.book-now` buttons inside cards don't overflow on small screens */
@media (max-width: 600px) {
    article .book-now,
    .service-item .book-now,
    .painting-card .book-now,
    .cleaning-card .book-now,
    .office-pricing__card .book-now {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
        padding-left: 14px;
        padding-right: 14px;
    }

    /* Keep header booking CTA compact on small screens */
    .site-header .book-now,
    .nav-shell .book-now {
        min-width: 0 !important;
        width: auto !important;
        max-width: 170px !important;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
    }
}
.services-tab {
    display: none;
}

/* City landing pages */
.city-hero {
    background: #F3F4F6;
    padding: 120px 0 70px;
}

.city-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 16px;
}

.city-breadcrumbs a {
    color: #285848;
    text-decoration: none;
}

.city-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    color: #111827;
    margin-bottom: 16px;
}

.city-hero p {
    color: #6B7280;
    max-width: 720px;
}

.city-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.city-hero .btn-outline {
    border-color: #285848;
    color: #285848;
}

.city-hero .btn-outline:hover,
.city-hero .btn-outline:focus-visible {
    background: #285848;
    color: #ffffff;
}

.city-section {
    padding: 60px 0;
}

.city-section--muted {
    background: #F3F4F6;
}

.city-content {
    display: grid;
    gap: 18px;
    color: #111827;
}

.city-highlight {
    display: grid;
    gap: 12px;
    margin-top: 12px;
    padding-left: 18px;
    color: #6B7280;
}

.city-services__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.city-services__card {
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    padding: 20px;
    background: #ffffff;
}

.city-services__card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.city-services__card p {
    color: #6B7280;
    margin-bottom: 14px;
}

.city-cta {
    background: #285848;
    color: #ffffff;
    border-radius: 22px;
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.city-cta p {
    color: rgba(255, 255, 255, 0.8);
}

.city-cta .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
}

.city-cta .btn-outline:hover,
.city-cta .btn-outline:focus-visible {
    background: #ffffff;
    color: #285848;
}

/* Checklist hub page */
.checklist-hero {
    background: #F3F4F6;
    padding: 110px 0 70px;
}

.checklist-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    color: #111827;
    margin-bottom: 14px;
}

.checklist-hero p {
    color: #6B7280;
    max-width: 720px;
}

.checklist-grid {
    display: grid;
    gap: 24px;
    margin-top: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.checklist-card {
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    padding: 24px;
    background: #ffffff;
}

.checklist-card h3 {
    margin-bottom: 10px;
}

.checklist-card ul {
    margin: 0;
    padding-left: 18px;
    color: #6B7280;
}

.checklist-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.checklist-callout {
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    background: #ffffff;
    color: #6B7280;
}

/* Homepage service areas */
.service-areas--homepage {
    display: block;
    padding: 56px 0 30px;
    background: transparent;
    font-size: 16px;
}

.service-areas--homepage .service-areas__panel {
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
    display: grid;
    gap: 24px;
    box-shadow: none;
}

.service-areas--homepage .service-areas__eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 10px;
}

.service-areas--homepage .service-areas__head {
    text-align: left;
}

.service-areas--homepage .service-areas__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.service-areas--homepage .service-areas__chip,
.service-areas--homepage .service-areas__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #E5E7EB;
    background: #ffffff;
    color: #285848;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.service-areas--homepage .service-areas__chip:hover,
.service-areas--homepage .service-areas__chip:focus-visible {
    background: #285848;
    color: #ffffff;
    border-color: #285848;
    transform: translateY(-1px);
}

.service-areas--homepage .service-areas__cta--primary {
    background: #285848;
    border-color: #285848;
    color: #ffffff;
}

.service-areas--homepage .service-areas__cta--primary:hover,
.service-areas--homepage .service-areas__cta--primary:focus-visible {
    background: #1F4A3E;
    border-color: #1F4A3E;
}

.service-areas--homepage .service-areas__cta--ghost {
    border-color: #285848;
    color: #285848;
}

.service-areas--homepage .service-areas__cta--ghost:hover,
.service-areas--homepage .service-areas__cta--ghost:focus-visible {
    background: #285848;
    color: #ffffff;
}

@media (min-width: 900px) {
    .service-areas--homepage .service-areas__panel {
        grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
        align-items: center;
    }
}

@media (max-width: 899px) {
    .service-areas--homepage .service-areas__head {
        text-align: center;
    }

    .service-areas--homepage .service-areas__links {
        justify-content: center;
    }
}


.services-panels {
    margin-bottom: 60px;
}

/* services.html: less space between hero search and service cards */
body.services-page .pricing-filter.services-search {
    padding: 8px 0 0;
}

body.services-page .services-panels > .services-panel > .services-section {
    padding-top: 18px;
}

@media (max-width: 768px) {
    body.services-page .services-panels > .services-panel > .services-section {
        padding-top: 14px;
    }
}

@media (max-width: 576px) {
    body.services-page .services-panels > .services-panel > .services-section {
        padding-top: 12px;
    }
}

.services-panel {
    display: none;
}

.services-panel.active {
    display: block;
    animation: servicePanelFade 0.3s ease;
}

.services-panels.services-panels--search .services-panel {
    display: block;
}

.services-no-results {
    margin-top: 18px;
    color: #6B7280;
    font-weight: 500;
}

.is-hidden {
    display: none !important;
}

@keyframes servicePanelFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-services {
    padding: 90px 20px 60px;
    background: #F3F4F6;
}

.painting-tab-section {
    background: transparent;
}

.property-services__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.property-services__header h2 {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 12px;
    color: #111827;
}

.property-services__header p {
    margin: 0;
    color: #6B7280;
    font-size: 18px;
    line-height: 1.7;
}


.service-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.18);
}

.service-card__link {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    height: 100%;
    text-decoration: none;
    color: #111827;
}

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

.service-card__title {
    margin: 12px 0 4px;
    font-size: 20px;
    font-weight: 700;
}

.service-card__from {
    margin: 0 0 16px;
    color: #285848;
    font-weight: 600;
}

.service-card__link .btn {
    align-self: flex-start;
    min-width: 140px;
}

@media (max-width: 768px) {
    .painting-highlight {
        padding: 90px 0 60px;
    }
    .property-services {
        padding: 70px 15px 50px;
    }
    .service-card__link img {
        height: 140px;
    }
}
.photo-preview-container {
    margin-top: 12px;
}

.photo-count {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 8px;
}

.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

.photo-thumb {
    position: relative;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    background: #FFFFFF;
}

.photo-thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.photo-name {
    display: block;
    padding: 6px;
    font-size: 11px;
    color: #6B7280;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
}

.success-message {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.success-message h2 {
    color: #111827;
    margin-bottom: 16px;
}

.success-message p {
    color: #6B7280;
    font-size: 18px;
    margin-bottom: 12px;
}

.next-steps {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    margin: 24px auto;
    text-align: left;
    max-width: 600px;
}

.next-steps h3 {
    color: #111827;
    margin-bottom: 16px;
}

.next-steps ol {
    padding-left: 24px;
    color: #6B7280;
}

.next-steps li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.contact-prompt {
    font-weight: 600;
    margin-top: 20px;
    color: #111827;
}

.booking-detail {
    font-weight: 500;
    color: #285848;
}

.reassurance {
    font-size: 14px;
    color: #6B7280;
    margin-top: 20px;
}
.services-subheading {
    max-width: 640px;
    margin: -20px auto 40px;
    color: #6B7280;
    font-size: 18px;
    line-height: 1.5;
}

/* Global: ensure no icons inside yellow CTA buttons */
.btn-yellow i,
button.btn-yellow i,
a.btn-yellow i {
    display: none !important;
}

.btn-yellow,
.btn-yellow:hover,
.btn-yellow:focus-visible {
    color: #FFFFFF;
}

/* Mould treatment page */
.section-block {
    margin: 70px auto;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 36px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #6B7280;
    max-width: 760px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-trust {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.hero-trust li {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 6px 14px;
}

.mould-hero {
    position: relative;
    background: linear-gradient(135deg, #111827 0%, #285848 55%, #1F4A3E 100%);
}

.mould-hero::after {
    z-index: 0;
    pointer-events: none;
    opacity: 0.25;
}

.mould-hero .hero__inner {
    position: relative;
    z-index: 1;
}

.mould-problems__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.mould-problem-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 4px solid rgba(40, 88, 72, 0.6);
}

.mould-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.18);
}

.mould-problem-card:nth-child(odd) {
    background: rgba(40, 88, 72, 0.06);
}

.mould-problem-card:nth-child(even) {
    background: rgba(31, 74, 62, 0.06);
}

.mould-problem-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mould-problem-card__header i {
    color: #285848;
    font-size: 20px;
    background: rgba(40, 88, 72, 0.1);
    border-radius: 12px;
    padding: 10px;
}

.mould-problem-card__header h3 {
    margin: 0;
    font-size: 18px;
    color: #111827;
}

.mould-problem-card__row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mould-problem-card__label {
    display: inline-flex;
    align-self: flex-start;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(59, 130, 246, 0.12);
    color: #285848;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
}

.mould-problem-card__label.pill-why {
    background: rgba(59, 130, 246, 0.12);
    color: #285848;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.mould-problem-card__label.pill-what {
    background: rgba(42, 109, 74, 0.12);
    color: #285848;
    border: 1px solid rgba(42, 109, 74, 0.25);
    font-weight: 800;
}

.mould-problems__cta {
    text-align: center;
    margin-top: 30px;
}

.mould-problems__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.mould-problems__actions .book-service {
    margin: 0;
}

.section-cta {
    text-align: center;
    margin-top: 24px;
}

.mould-process {
    background: #F3F4F6;
    border-radius: 22px;
    padding: 60px 20px;
    overflow-x: hidden;
}

/* Mould process: ensure headings are readable */
.mould-process h2,
.mould-process h3,
.mould-process h4,
.mould-process .step-title {
    color: #111 !important;
}

.mould-process .mould-steps {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.mould-process .mould-step {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
}

.mould-process .mould-step::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(42, 109, 74, 0.25);
    z-index: 0;
}

.mould-process .mould-step:first-child::before {
    top: 28px;
}

.mould-process .mould-step:last-child::before {
    bottom: 28px;
}

.mould-process .mould-step-num {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 700;
    line-height: 1;
    background: #285848;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(42, 109, 74, 0.25);
    position: relative;
    z-index: 1;
}

.mould-process .mould-step-body {
    position: relative;
    z-index: 1;
}

.mould-process .mould-step-body h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.mould-process .mould-step-body p {
    margin: 0 0 6px;
    color: #111827;
    line-height: 1.5;
}

.mould-process .mould-step-body small {
    color: #6B7280;
    font-size: 13px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-card.featured {
    border-color: rgba(40, 88, 72, 0.6);
    box-shadow: 0 22px 50px rgba(40, 88, 72, 0.2);
}

.pricing-card__price {
    font-size: 30px;
    font-weight: 700;
    color: #285848;
}

.pricing-card ul {
    padding-left: 18px;
    margin: 0;
    color: #6B7280;
    line-height: 1.6;
}

.pricing-note {
    text-align: center;
    margin-top: 18px;
    color: #6B7280;
}

/* ===== MOULD PRICING ===== */
.mould-pricing {
    background: #F3F4F6;
    text-align: center;
}

.mould-pricing h2 {
    color: #111827;
}

.mould-pricing .section-subtitle {
    color: #6B7280;
}

.mould-pricing .pricing-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 30px;
}

.mould-pricing .pricing-card.featured {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.mould-pricing .pricing-card.featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, #285848, #1F4A3E);
}

.mould-pricing .pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    background: rgba(31, 74, 62, 0.15);
    border: 1px solid rgba(31, 74, 62, 0.3);
    margin: 0 auto 6px;
}

.mould-pricing .pricing-card__price {
    color: #111827;
    font-weight: 800;
    font-size: 30px;
    display: inline-block;
    padding-bottom: 6px;
    background-image: linear-gradient(90deg, #285848, #1F4A3E);
    background-repeat: no-repeat;
    background-size: 100% 3px;
    background-position: 0 100%;
}

.mould-pricing .pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #6B7280;
}

.mould-pricing .pricing-card li {
    position: relative;
    padding-left: 22px;
    line-height: 1.6;
}

.mould-pricing .pricing-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1F4A3E;
    font-weight: 700;
}

.mould-pricing .book-service.btn-yellow {
    height: 46px;
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .mould-pricing .pricing-card.featured {
        transform: none;
    }
}

.reviews-carousel {
    margin: 70px auto;
}

.reviews-carousel__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.reviews-carousel__header {
    text-align: center;
    margin-bottom: 20px;
}

.reviews-carousel__controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.reviews-carousel__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reviews-carousel__btn:hover,
.reviews-carousel__btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.18);
}

.reviews-carousel__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.reviews-carousel__track::-webkit-scrollbar {
    display: none;
}

.reviews-carousel__card {
    flex: 0 0 100%;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    padding: 20px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reviews-carousel__card p {
    margin: 0;
    color: #6B7280;
    line-height: 1.6;
}

.reviews-carousel__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #111827;
    font-weight: 600;
}

.reviews-carousel__meta span {
    font-weight: 500;
    color: #6B7280;
}

.reviews-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.reviews-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(148, 163, 184, 0.5);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.reviews-carousel__dot.active {
    background: #285848;
    transform: scale(1.1);
}

.mould-guides .guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    max-width: 1050px;
    margin: 0 auto;
}

.guide-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.18);
}

.guide-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(59, 130, 246, 0.12);
    color: #285848;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
    align-self: flex-start;
}

.mould-guides .guide-link {
    margin-top: auto;
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #285848;
    border: none;
    box-shadow: none;
    font-size: 14px;
    line-height: 1.1;
    width: fit-content;
    max-width: 220px;
    align-self: flex-start;
}

.mould-guides .guide-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.mould-guides .guide-link i {
    transition: transform 0.2s ease;
}

.mould-guides .guide-link:hover i {
    transform: translateX(4px);
}

/* ===== WEPRO HOW IT WORKS ===== */
.wepro-how {
    background: #ffffff;
    padding: 80px 20px 56px;
    width: 100%;
}

.wepro-how__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.wepro-how__inner h2 {
    margin: 0 0 40px;
    color: #111827;
}

.wepro-how__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.wepro-how__step {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.wepro-how__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 74, 62, 0.12);
    color: #285848;
    font-size: 26px;
}

.wepro-how__head {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
}

.wepro-how__num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.12);
    line-height: 1;
}

.wepro-how__step h3 {
    margin: 0;
    font-size: 20px;
    color: #111827;
}

.wepro-how__step p {
    margin: 0;
    color: #6B7280;
    line-height: 1.6;
}

.wepro-how__cta {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

.wepro-how__cta-btn {
    min-width: 220px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 17px;
    background: #285848;
    color: #FFFFFF;
    border: none;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wepro-how__cta-btn:hover,
.wepro-how__cta-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.22);
}

@media (max-width: 1023px) {
    .wepro-how__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .wepro-how {
        padding: 64px 18px;
    }

    .wepro-how__grid {
        grid-template-columns: 1fr;
    }

    .wepro-how__num {
        font-size: 40px;
    }
}

/* ===== WEPRO TRUST TICKER ===== */
.wepro-trust {
    background: #F3F4F6;
    padding: clamp(16px, 3vw, 32px) 0 60px;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: clamp(32px, 6vw, 80px);
    box-shadow: none;
    filter: none;
}

.wepro-trust::after {
    content: none !important;
}

.wepro-trust__inner {
    max-width: 1100px;
    margin: 0 auto 24px;
    text-align: center;
    padding: 0 20px;
}

.wepro-trust__inner h2 {
    margin: 0 0 10px;
    color: #111827;
}

.wepro-trust__sub {
    margin: 0;
    color: #6B7280;
}

.wepro-trust__ticker {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    scrollbar-width: none;
    box-shadow: none;
    filter: none;
    background: transparent;
}

.wepro-trust__track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: weproTrustScroll 32s linear infinite;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.wepro-trust__ticker::-webkit-scrollbar {
    display: none;
}

.wepro-trust__ticker:hover .wepro-trust__track {
    animation-play-state: paused;
}

.wepro-trust__item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    flex: 0 0 auto;
    scroll-snap-align: start;
}

/* ===== OLASBOARD QUALITY CONTROL SECTION ===== */
.wepro-olasboard {
    background: #FFFFFF;
    padding: clamp(48px, 8vw, 96px) 20px;
    width: 100%;
}

.wepro-olasboard__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.wepro-olasboard__badge {
    display: inline-block;
    background: #285848;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.wepro-olasboard__content h2 {
    margin: 0 0 16px;
    color: #111827;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.wepro-olasboard__lead {
    color: #6B7280;
    line-height: 1.7;
    margin: 0 0 24px;
}

.wepro-olasboard__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.wepro-olasboard__features li {
    padding: 8px 0;
    color: #111827;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wepro-olasboard__features li i {
    color: #285848;
    font-size: 1.1rem;
}

.wepro-olasboard__visual {
    display: flex;
    justify-content: center;
}

.wepro-olasboard__card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.wepro-olasboard__card-header {
    background: #285848;
    color: #FFFFFF;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.wepro-olasboard__card-body {
    padding: 20px;
}

.wepro-olasboard__metric {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
}

.wepro-olasboard__metric:last-child {
    border-bottom: none;
}

.wepro-olasboard__metric-label {
    color: #6B7280;
    font-size: 0.9rem;
}

.wepro-olasboard__metric-value {
    font-weight: 700;
    color: #111827;
}

.wepro-olasboard__metric-value--green {
    color: #285848;
}

@media (max-width: 768px) {
    .wepro-olasboard__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .wepro-olasboard__visual {
        order: -1;
    }
}

/* ===== B2B CLIENTS / CASE STUDIES SECTION ===== */
.wepro-clients {
    background: #F3F4F6;
    padding: clamp(48px, 8vw, 96px) 20px;
    width: 100%;
}

.wepro-clients__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.wepro-clients__inner h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.wepro-clients__sub {
    color: #6B7280;
    margin: 0 0 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wepro-clients__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wepro-clients__case {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}

.wepro-clients__case:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.wepro-clients__case-icon {
    width: 48px;
    height: 48px;
    background: #285848;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.wepro-clients__case-icon i {
    color: #FFFFFF;
    font-size: 1.2rem;
}

.wepro-clients__case h3 {
    margin: 0 0 8px;
    color: #111827;
}

.wepro-clients__case-stat {
    color: #285848;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0 0 8px;
}

.wepro-clients__case p:last-child {
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .wepro-clients__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HERO TRUSTED-BY STRIP ===== */
/* ===== HERO LOGO TICKER ===== */
.hero-ticker {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    /* Full viewport width inside .main-content (max-width + padding) */
    box-sizing: border-box;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: auto;
    right: auto;
    transform: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.hero-ticker__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6B7280;
    margin-bottom: 16px;
}

.hero-ticker__track {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
}

.hero-ticker__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 64px;
    flex-shrink: 0;
    padding-right: 64px;
    animation: ticker-scroll 35s linear infinite;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-ticker__logo {
    height: 52px;
    width: auto;
    max-width: 200px;
    flex-shrink: 0;
    object-fit: contain;
}

@keyframes ticker-scroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-100%, 0, 0); }
}

@media (max-width: 768px) {
    .hero-ticker__list {
        gap: 48px;
        padding-right: 48px;
        animation-duration: 25s;
    }
    .hero-ticker__logo {
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-ticker__list {
        animation-play-state: paused;
    }
}

/* ===== CASE STUDIES SECTION ===== */
.wepro-cases {
    background: #FFFFFF;
    padding: clamp(48px, 8vw, 96px) 20px;
    width: 100%;
}

.wepro-cases__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.wepro-cases__inner h2 {
    text-align: center;
    margin: 0 0 12px;
    color: #111827;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.wepro-cases__sub {
    text-align: center;
    color: #6B7280;
    margin: 0 0 48px;
}

.wepro-cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.wepro-cases__card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.wepro-cases__tag {
    display: inline-block;
    background: #285848;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.wepro-cases__card h3 {
    margin: 0 0 20px;
    color: #111827;
    font-size: 1.15rem;
}

.wepro-cases__phase {
    margin-bottom: 16px;
}

.wepro-cases__phase h4 {
    color: #285848;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 6px;
}

.wepro-cases__phase p {
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.wepro-cases__phase--outcome {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 16px;
}

.wepro-cases__phase--outcome ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.wepro-cases__phase--outcome li {
    padding: 4px 0;
    color: #111827;
    font-size: 0.95rem;
}

.wepro-cases__phase--outcome strong {
    color: #285848;
}

@media (max-width: 768px) {
    .wepro-cases__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CITY PAGE: OLASBOARD BADGE ===== */
.city-olasboard {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
}

.city-olasboard__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #285848;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
}

.city-olasboard h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 1.1rem;
}

.city-olasboard p {
    margin: 0;
    color: #6B7280;
    line-height: 1.6;
}

/* ===== CITY PAGE: B2B TRUST STRIP ===== */
.city-b2b-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #6B7280;
    font-weight: 500;
    text-align: center;
}

.city-b2b-trust__sep {
    color: #D1D5DB;
}

@media (max-width: 600px) {
    .city-olasboard {
        flex-direction: column;
    }
    .city-b2b-trust {
        flex-direction: column;
        gap: 4px;
    }
    .city-b2b-trust__sep {
        display: none;
    }
}

/* ===== PRICING PAGE ===== */
.pricing-page {
    --pricing-bg: #FFFFFF;
    --pricing-card: #ffffff;
    --pricing-text: #111827;
    --pricing-muted: #6B7280;
    --pricing-accent: #285848;
    --pricing-brand: #285848;
}

/* ===== ABOUT PAGE ===== */
.page-about .main-content {
    background: #FFFFFF;
    padding-bottom: 80px;
}

.page-about .about-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-about .about-hero {
    background: #FFFFFF;
    padding: 90px 0 60px;
    text-align: center;
}

.page-about .about-hero__inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-about .about-hero h1 {
    font-size: clamp(34px, 4vw, 52px);
    color: #111827;
    margin: 0;
}

.page-about .about-hero p {
    margin: 14px auto 0;
    color: #6B7280;
    font-size: 18px;
    line-height: 1.65;
    max-width: 720px;
}

.page-about .about-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.page-about .about-hero__actions .btn-yellow {
    background: #285848;
    color: #FFFFFF;
    border: none;
    border-radius: 999px;
    padding: 16px 28px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.2px;
    min-height: 52px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.page-about .about-hero__actions .btn-yellow:hover {
    background: #1F4A3E;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.page-about .about-hero__actions .btn-yellow:active {
    transform: translateY(1px);
}

.page-about .about-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
}

.page-about .about-hero__btn--ghost {
    background: transparent;
    border: 2px solid rgba(15, 23, 42, 0.18);
    color: #111827;
}

.page-about .about-trust {
    padding: 10px 0 40px;
}

.page-about .about-trust__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.page-about .about-trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    color: #111827;
    font-weight: 600;
}

.page-about .about-trust__item i {
    color: #285848;
}

.page-about .about-section {
    padding: 60px 0;
    background: transparent;
    text-align: left;
}

.page-about .about-section h2 {
    font-size: clamp(24px, 2.6vw, 34px);
    color: #111827;
    margin: 0 0 22px;
    text-align: left;
}

.page-about .about-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.page-about .about-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.page-about .about-card h2 {
    font-size: 22px;
    margin: 0 0 14px;
}

.page-about .about-card p {
    color: #6B7280;
    line-height: 1.65;
    margin: 10px 0 0;
}

.page-about .about-services h2,
.page-about .about-team h2,
.page-about .about-process h2,
.page-about .about-locations h2 {
    text-align: left;
}

.page-about .about-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.page-about .about-service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-about .about-service-card h3 {
    margin: 0;
    font-size: 18px;
    color: #111827;
}

.page-about .about-service-card p {
    margin: 0;
    color: #6B7280;
    line-height: 1.55;
}

.page-about .about-service-link {
    font-weight: 600;
    color: #285848;
    text-decoration: none;
}

.page-about .about-team .team-content {
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.page-about .about-team .team-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 26px 22px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 180px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-about .about-team .team-card h4 {
    color: #111827;
    margin: 0;
}

.page-about .about-team .team-card h4:hover {
    color: #111827;
}

.page-about .about-team .team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.page-about .team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 88, 72, 0.18);
    color: #111827;
    font-weight: 700;
    letter-spacing: 0.4px;
    font-size: 18px;
}

/* Team Bio */
.page-about .team-bio {
    font-size: 12px !important;
    color: #6B7280 !important;
    line-height: 1.5;
    margin-top: 8px;
    text-align: left;
}

/* Expertise Section */
.page-about .about-expertise .about-container {
    max-width: 1100px;
}

.about-expertise__intro {
    text-align: center;
    color: #6B7280;
    font-size: 16px;
    margin: 0 auto 32px;
    max-width: 700px;
    line-height: 1.6;
}

.about-expertise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-expertise__item {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-expertise__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.about-expertise__item i {
    font-size: 28px;
    color: #285848;
    margin-bottom: 14px;
    display: block;
}

.about-expertise__item h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
}

.about-expertise__item p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .about-expertise__grid {
        grid-template-columns: 1fr;
    }
}

.page-about .about-process .about-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.page-about .about-step {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    display: flex;
    gap: 14px;
}

.page-about .about-step__num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 88, 72, 0.2);
    color: #111827;
    font-weight: 700;
    flex: 0 0 42px;
}

.page-about .about-step h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #111827;
}

.page-about .about-step p {
    margin: 0;
    color: #6B7280;
    line-height: 1.55;
}

.page-about .locations-preview {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    margin: 24px 0;
}

.page-about .locations-lead {
    font-size: 16px;
    color: #111827;
    margin: 0 0 14px;
    font-weight: 600;
}

.page-about .location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-about .location-tags li {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(40, 88, 72, 0.08);
    color: #285848;
    font-weight: 600;
    font-size: 14px;
}

.page-about .location-tags .location-tag--muted {
    background: rgba(15, 23, 42, 0.06);
    color: #6B7280;
    font-weight: 500;
}

.page-about .view-locations-cta {
    text-align: center;
    margin-top: 28px;
}

.page-about .locations-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    color: #111827;
}

.page-about .locations-btn:hover,
.page-about .locations-btn:focus-visible {
    color: #111827;
}

.page-about .locations-subtext {
    margin-top: 12px;
    color: #6B7280;
    font-size: 14px;
}

.page-about .about-reviews h2 {
    color: #111827;
}

.page-about .about-reviews {
    background: #F3F4F6;
    padding: 70px 0;
}

.page-about .about-reviews .reviews-carousel {
    margin: 32px 0 0;
}

.page-about .about-reviews .carousel-container {
    max-width: 1100px;
}

.page-about .reviews-counter {
    color: #6B7280;
}

.page-about .carousel-wrapper {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.page-about .about-reviews .review-slide {
    padding: 48px 36px;
}

.page-about .about-reviews .reviewer-name {
    font-size: 20px;
}

.page-about .about-reviews .review-text {
    font-size: 17px;
}

.page-about .about-reviews .carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.page-about .about-reviews .carousel-btn:hover {
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.page-about .about-cta {
    padding: 60px 0 20px;
    background: #FFFFFF;
}

.page-about .about-cta__inner {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 44px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    text-align: center;
}

.page-about .about-cta__inner h2 {
    margin-bottom: 12px;
    text-align: center;
}

.page-about .about-cta__inner p {
    margin: 0 auto 22px;
    color: #6B7280;
    max-width: 640px;
}

.page-about .about-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.page-about .about-cta__actions .btn-yellow {
    background: #285848;
    color: #FFFFFF;
    border: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.page-about .about-cta__actions .btn-yellow:hover {
    background: #1F4A3E;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.page-about .about-cta__actions .btn-yellow:active {
    transform: translateY(1px);
}

.page-about .about-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.page-about .about-cta__btn--ghost {
    border: 2px solid rgba(15, 23, 42, 0.18);
    color: #111827;
    background: transparent;
}

@media (max-width: 1024px) {
    .page-about .about-card-grid,
    .page-about .about-services__grid,
    .page-about .about-process .about-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .page-about .about-hero {
        padding: 70px 0 50px;
    }

    .page-about .about-hero__actions {
        flex-direction: column;
    }

    .page-about .about-hero__actions > * {
        width: min(100%, 420px);
    }

    .page-about .about-card-grid,
    .page-about .about-services__grid,
    .page-about .about-process .about-steps {
        grid-template-columns: 1fr;
    }

    .page-about .about-cta__actions {
        flex-direction: column;
    }

    .page-about .about-cta__actions > * {
        width: min(100%, 420px);
    }

    .page-about .about-reviews {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-about .about-section {
        padding: 48px 0;
    }

    .page-about .about-hero p {
        font-size: 16px;
    }

    .page-about .about-hero__actions .btn-yellow {
        font-size: 16px;
        padding: 14px 22px;
        min-height: 48px;
    }
}

.pricing-page .main-content.pricing-main {
    max-width: none;
    padding: calc(var(--header-offset) + 24px) 0 80px;
}

.pricing-hero {
    background: var(--pricing-bg);
    padding: 36px 16px 24px;
}

.pricing-hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.pricing-hero h1 {
    margin: 0 0 10px;
    color: var(--pricing-text);
}

.pricing-hero p {
    margin: 0;
    color: var(--pricing-muted);
}

.pricing-hero__cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.pricing-btn {
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    border: 2px solid transparent;
    color: var(--pricing-text);
    background: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    font-size: 17px;
}

.pricing-btn--primary {
    background: var(--pricing-accent);
    border-color: var(--pricing-accent);
    color: #FFFFFF;
}

.pricing-btn--ghost {
    border-color: rgba(15, 23, 42, 0.18);
    color: var(--pricing-text);
}

.pricing-btn--ghost:hover {
    border-color: rgba(15, 23, 42, 0.3);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.pricing-nav {
    position: sticky;
    top: calc(var(--header-offset) + 8px);
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pricing-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.pricing-nav__pill {
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--pricing-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.pricing-filter {
    background: var(--pricing-bg);
    padding: 18px 0 6px;
}

.services-search {
    --pricing-bg: #FFFFFF;
    --pricing-muted: #6B7280;
}

.pricing-filter__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--pricing-muted);
}

.pricing-filter__inner input {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
}

.services-search .pricing-filter__inner {
    text-align: left;
}

.pricing-category {
    background: var(--pricing-bg);
    padding: 40px 0;
}

.pricing-category__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.pricing-category__header h2 {
    margin: 0 0 8px;
    color: var(--pricing-text);
}

.pricing-category__header p {
    margin: 0 0 24px;
    color: var(--pricing-muted);
}

.pricing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pricing-page .pricing-card {
    position: relative;
    background: var(--pricing-card);
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

.pricing-page .pricing-card.is-featured {
    border-color: rgba(40, 88, 72, 0.35);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.pricing-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #F8F0D8;
    color: #806828;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card__price {
    font-size: 24px;
    font-weight: 800;
    color: var(--pricing-text);
}

.pricing-page .pricing-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--pricing-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-page .pricing-card li::before {
    content: "•";
    color: var(--pricing-brand);
    margin-right: 8px;
}

.pricing-card__meta {
    color: var(--pricing-muted);
    font-size: 14px;
}

.pricing-card__actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pricing-note {
    background: var(--pricing-bg);
    padding: 10px 0 40px;
}

.pricing-note__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
    color: var(--pricing-muted);
    text-align: center;
}

.pricing-faq {
    background: #ffffff;
    padding: 60px 0;
}

.pricing-faq__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.pricing-faq__grid {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.pricing-faq details {
    background: var(--pricing-card);
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 16px 18px;
}

.pricing-faq summary {
    font-weight: 700;
    color: var(--pricing-text);
    cursor: pointer;
}

.pricing-faq details p {
    color: var(--pricing-muted);
    margin: 10px 0 0;
}

@media (max-width: 1024px) {
    .pricing-page .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-page .main-content.pricing-main {
        padding-top: calc(var(--header-offset) + 8px);
    }

    .pricing-nav__inner {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .pricing-nav__inner::-webkit-scrollbar {
        display: none;
    }

    .pricing-hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .pricing-hero__cta .pricing-btn {
        width: min(100%, 360px);
    }
}

@media (max-width: 640px) {
    .pricing-page .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes weproTrustScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .wepro-trust {
        padding: 48px 0;
    }

    .wepro-trust__item {
        padding: 8px 14px;
        font-size: 14px;
    }
}

.mould-faq {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mould-faq__item {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.mould-faq__question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #111827;
    cursor: pointer;
}

.mould-faq__question:focus-visible {
    outline: 2px solid rgba(40, 88, 72, 0.6);
    outline-offset: 3px;
}

.mould-faq__toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #285848;
    font-weight: 700;
    position: relative;
}

.mould-faq__toggle::before {
    content: '+';
    font-size: 18px;
    line-height: 1;
}

.mould-faq__item.is-open .mould-faq__toggle::before {
    content: '-';
}

.mould-faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.mould-faq__answer p {
    margin: 0 0 20px;
    color: #6B7280;
    line-height: 1.7;
}

.mould-cta {
    margin: 80px auto;
    padding: 0 16px 20px;
}

.mould-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #285848, #1F4A3E);
    border-radius: 28px;
    padding: 48px 32px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 28px 60px rgba(14, 31, 53, 0.3);
}

.mould-cta__content h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-weight: 700;
}

.mould-cta__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.mould-cta__actions {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.mould-cta__btn {
    border: none;
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mould-cta__btn:hover,
.mould-cta__btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.2);
}

.mould-cta__btn--primary {
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: #111827;
}

.mould-cta__btn--whatsapp {
    background: #25D366;
    color: #ffffff;
}

.mould-cta__btn--whatsapp:hover,
.mould-cta__btn--whatsapp:focus-visible {
    background: #1EBE5D;
}
.mould-cta__btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.cost-estimate {
    display: block;
}

.cost-estimate__note {
    font-size: 12px;
    color: #F3F4F6;
}

.related-service-note {
    margin-top: 24px;
    font-weight: 600;
    color: #111827;
}

.related-service-note a {
    color: #285848;
}

/* Google trust reviews (shared) */
.google-trust-section {
    background-color: #ffffff;
    padding: 40px 20px;
    margin: 0;
}

.google-trust-section .trust-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #F3F4F6 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(40, 88, 72, 0.1);
    position: relative;
    overflow: hidden;
}

.google-trust-section .trust-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;

}

.google-trust-section .trust-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.google-trust-section .rating-display {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.google-trust-section .rating-title {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.google-trust-section .rating-subtitle {
    margin: 0 0 16px;
    color: #6B7280;
    font-size: 14px;
}

.google-trust-section .rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 8px;
}

.google-trust-section .rating-number {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.google-trust-section .rating-stars {
    display: flex;
    gap: 2px;
}

.google-trust-section .star {
    color: #F4B400;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.google-trust-section .star:hover {
    transform: scale(1.2);
}

.google-trust-section .rating-info {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 10px;
}

/* Rotating review source (Google / Facebook / X / …) — reduce layout jump */
.js-review-platform-word {
    display: inline-block;
    min-width: 7ch;
    text-align: center;
    font-weight: 600;
    color: #285848;
}

p .js-review-platform-word {
    color: #1f4a3e;
}

.google-trust-section .trust-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.google-trust-section .trust-badge {
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.google-trust-section .reviews-preview {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.google-trust-section .reviews-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.google-trust-section .reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.google-trust-section .reviews-slide {
    min-width: 33.333%;
    max-width: 33.333%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 10px 12px;
    box-sizing: border-box;
}

.google-trust-section .review-card {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    transition: all 0.3s ease;
    position: relative;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.google-trust-section .review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.google-trust-section .review-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.google-trust-section .reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-trust-section .reviews-slide:nth-child(8n + 1) .reviewer-avatar { background: #285848 !important; }
.google-trust-section .reviews-slide:nth-child(8n + 2) .reviewer-avatar { background: #1F4A3E !important; }
.google-trust-section .reviews-slide:nth-child(8n + 3) .reviewer-avatar { background: #0F766E !important; }
.google-trust-section .reviews-slide:nth-child(8n + 4) .reviewer-avatar { background: #2563EB !important; }
.google-trust-section .reviews-slide:nth-child(8n + 5) .reviewer-avatar { background: #F59E0B !important; }
.google-trust-section .reviews-slide:nth-child(8n + 6) .reviewer-avatar { background: #F97316 !important; }
.google-trust-section .reviews-slide:nth-child(8n + 7) .reviewer-avatar { background: #8B5CF6 !important; }
.google-trust-section .reviews-slide:nth-child(8n + 8) .reviewer-avatar { background: #EF4444 !important; }

.google-trust-section .reviewer-info h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #111827;
}

.google-trust-section .reviewer-info .review-stars-small {
    color: #F4B400;
    font-size: 17px;
    letter-spacing: 2px;
    margin-top: 4px;
}

.google-trust-section .review-text {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.google-trust-section .carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.google-trust-section .carousel-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6B7280;
    font-size: 14px;
}

.google-trust-section .carousel-arrow:hover {
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1);
}

.google-trust-section .carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .google-trust-section {
        padding: 30px 15px;
    }

    .google-trust-section .trust-container {
        padding: 20px;
    }

    .google-trust-section .trust-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .google-trust-section .reviews-slide {
        min-width: 50%;
        max-width: 50%;
        padding: 10px 10px;
    }

    .google-trust-section .review-card {
        padding: 20px;
        max-width: 100%;
    }

    .google-trust-section .reviewer-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .google-trust-section .reviewer-info h4 {
        font-size: 16px;
    }

    .google-trust-section .review-text {
        font-size: 15px;
    }

    .google-trust-section .rating-row {
        justify-content: center;
    }

    .google-trust-section .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

}

@media (max-width: 480px) {
    .google-trust-section .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .google-trust-section .trust-badge {
        display: inline-block;
    }

    .google-trust-section .rating-number {
        font-size: 28px;
    }

    .google-trust-section .star {
        font-size: 18px;
    }

    .google-trust-section .reviews-slide {
        min-width: 100%;
        max-width: 100%;
        padding: 10px;
    }

    .google-trust-section .review-card {
        padding: 18px;
        margin: 0;
    }

    .google-trust-section .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .google-trust-section .reviewer-info h4 {
        font-size: 15px;
    }

    .google-trust-section .review-text {
        font-size: 14px;
    }

    .google-trust-section .carousel-navigation {
        gap: 8px;
    }

    .google-trust-section .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(15, 23, 42, 0.35);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background-color: #1EBE5D;
    transform: scale(1.08);
    box-shadow: 2px 2px 12px rgba(15, 23, 42, 0.4);
    color: #ffffff;
}

@media (min-width: 768px) {
    .reviews-carousel__card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (min-width: 1100px) {
    .reviews-carousel__card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 900px) {
    .section-block {
        margin: 60px auto;
    }
    .mould-cta__inner {
        padding: 40px 24px;
    }
    .reviews-carousel__card {
        flex: 0 0 100%;
    }
    .mould-process {
        padding: 50px 16px;
    }
}

@media (max-width: 768px) {
    .mould-process .mould-steps {
        padding: 0 16px;
    }

    .mould-process .mould-step {
        grid-template-columns: 52px 1fr;
        gap: 14px;
    }

    .mould-process .mould-step::before {
        left: 21px;
    }
}

@media (max-width: 640px) {
    .hero-trust {
        justify-content: center;
    }
    .mould-cta__btn {
        width: 100%;
    }

    .mould-process .mould-step {
        grid-template-columns: 44px 1fr;
        gap: 12px;
    }

    .mould-process .mould-step::before {
        left: 19px;
    }

    .mould-process .mould-step-num {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

@media (max-width: 340px) {
    .mould-process .mould-step {
        grid-template-columns: 1fr;
    }

    .mould-process .mould-step::before {
        display: none;
    }

    .mould-process .mould-step-num {
        margin-bottom: 10px;
    }
}

/* MOULD CTA */
.mould-cta {
    margin: 0;
    padding: 40px 0;
}

.mould-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 40px;
    border-radius: 24px;
    background: #F3F4F6;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 32px;
    color: #111827;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.mould-cta__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(40, 88, 72, 0.5), rgba(31, 74, 62, 0.5));
}

.mould-cta__content h2 {
    margin: 0 0 10px;
    color: #111827;
}

.mould-cta__content p {
    margin: 0;
    color: #6B7280;
    max-width: 560px;
}

.mould-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    align-items: flex-start;
    max-width: 280px;
}

.mould-cta__btn {
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 700;
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    box-sizing: border-box;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.mould-cta__btn--primary {
    background: #285848;
    color: #FFFFFF;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.mould-cta__btn--primary:hover,
.mould-cta__btn--primary:focus-visible {
    transform: translateY(-1px);
}

.mould-cta__btn--ghost {
    background: transparent;
    border-color: rgba(17, 24, 39, 0.18);
    color: #111827;
}

.mould-cta__btn--ghost:hover,
.mould-cta__btn--ghost:focus-visible {
    border-color: rgba(17, 24, 39, 0.28);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.mould-cta__media {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    aspect-ratio: 16 / 10;
    background: #E5E7EB;
}

.mould-cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .mould-cta {
        padding: 40px 16px;
    }

    .mould-cta__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 22px;
    }

    .mould-cta__actions {
        width: 100%;
        justify-content: center;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        align-items: stretch;
    }

    .mould-cta__btn {
        width: 100%;
        min-width: 0;
    }
}

/* BEFORE/AFTER – MOULD RESULTS */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.ba-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ba-media {
    height: 260px;
    background: #F3F4F6;
    position: relative;
    overflow: hidden;
}

.ba-pair {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ba-slot {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.ba-slot + .ba-slot {
    border-left: 1px solid rgba(255, 255, 255, 0.85);
}

.ba-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-slot--before img {
    object-position: left center;
}

.ba-slot--after img {
    object-position: right center;
}

.ba-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    background: rgba(17, 24, 39, 0.72);
    color: #ffffff;
    backdrop-filter: blur(6px);
    z-index: 2;
    max-width: calc(100% - 20px);
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.ba-badge.after {
    left: auto;
    right: 10px;
    background: rgba(46, 204, 113, 0.78);
}

.ba-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ba-body h3 {
    margin: 0;
    font-size: 18px;
}

.ba-body p {
    margin: 0;
    color: #6B7280;
    min-height: 44px;
}

@media (max-width: 1024px) {
    .ba-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ba-media {
        height: 240px;
    }
}

@media (max-width: 640px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }

    .ba-media {
        height: 220px;
    }

    .ba-badge {
        top: 10px;
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* --- Before/After gallery: responsive, no distortion --- */
.mould-ba-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
  align-items:start;
}

.mould-ba-card{
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:transform .2s ease, box-shadow .2s ease;
}

.mould-ba-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 36px rgba(0,0,0,.12);
}

.mould-ba-card a.ba-trigger{
  display:block;
  text-decoration:none;
  color:inherit;
  background:#F3F4F6;
}

.mould-ba-card img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}

.mould-ba-card .gallery-caption{
  padding:14px 16px 16px;
}

/* --- Lightbox --- */
.ba-lightbox{
  position:fixed;
  inset:0;
  background:rgba(15, 18, 25, .78);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:9999;
}

.ba-lightbox.is-open{ display:flex; }

.ba-lightbox__figure{
  margin:0;
  max-width:min(1100px, 96vw);
  max-height:92vh;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 60px rgba(0,0,0,.35);
}

.ba-lightbox__img{
  display:block;
  width:100%;
  height:auto;
  max-height:78vh;
  object-fit:contain;
  background:#111827;
}

.ba-lightbox__caption{
  padding:12px 14px;
  font-size:14px;
  color:#111827;
}

.ba-lightbox__close{
  position:absolute;
  top:16px;
  right:16px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:none;
  background:rgba(255,255,255,.92);
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.ba-lightbox__close:hover{ background:#fff; }

/* ===== GLOBAL HEADER (SITE HEADER) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  padding: 12px 14px;
  width: 100%;
  box-sizing: border-box;
  transform: translateY(0);
  transition: transform 260ms ease;
  will-change: transform;
}

.site-header.nav-hidden {
  transform: translateY(-110%);
}

.site-nav {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  border-radius: 18px;
  padding: 14px clamp(16px, 2.2vw, 24px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(31, 74, 62, 0.18);
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}

/* PC: полоса почти на весь экран, чуть уже краёв окна + центрирование */
@media (min-width: 1025px) {
  .site-header {
    padding: 12px clamp(12px, 1.5vw, 20px);
    box-sizing: border-box;
  }

  .site-nav {
    max-width: min(100%, 1520px);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 18px;
  }
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
  min-width: 0;
  width: 100%;
}

/* Та же высота/паддинги .site-nav — больше бренд за счёт зазоров и компактнее CTA/бургер */
.site-header .nav-shell {
  gap: clamp(6px, 1.2vw, 16px);
  align-items: center;
}

.site-header .brand-logo {
  gap: 6px;
  align-items: center;
}

.site-header .nav-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-logo-link {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.site-header .logo {
  color: #111827;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  letter-spacing: 0.2px;
  white-space: nowrap;
  font-size: clamp(20px, 1.65vw, 30px);
  opacity: 1;
  visibility: visible;
  line-height: 1.05;
}

/* Header wordmark: full name on wide viewports; short on mobile — full stays in DOM for screen readers */
.site-header .site-header__brand-name--full {
  font-weight: 700;
}

.site-header .site-header__brand-name--short {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.site-header .nav-links li {
  margin: 0;
}

.site-header .nav-links li a {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  color: #111827;
  opacity: 0.9;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 10px;
  transition: 0.2s ease;
  font-size: clamp(13px, 1.05vw, 17px);
  line-height: 1.1;
}

.site-header .nav-links li a:hover {
  background: rgba(40, 88, 72, 0.1);
  opacity: 1;
}

.site-header .nav-links li a.active,
.site-header .nav-links li a.active:hover {
  color: #1f4a3e;
  background: rgba(40, 88, 72, 0.12);
  font-weight: 700;
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  background: #111827;
}

.site-header .book-now {
  border-radius: 18px;
  padding: 0 clamp(14px, 1.55vw, 24px);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 0;
  font-size: clamp(14px, 1.38vw, 16px);
  box-sizing: border-box;
  line-height: 1;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header .book-now i {
  display: none !important;
}



@media (max-width: 1024px) {
  .brand-logo-link {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-logo {
    min-width: 0;
  }

  .site-header .logo {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header .site-header__brand-name--full {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .site-header .site-header__brand-name--short {
    display: inline;
  }

  .site-header .nav-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
  }

  .site-header .brand-logo {
    gap: 6px;
  }

  .menu-toggle,
  .site-header .menu-toggle {
    display: flex;
    flex-shrink: 0;
    width: auto;
    min-width: 72px;
    min-height: 38px;
    padding: 8px 14px;
    margin-right: 12px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
  }

  /* Longer bars (easier to see), low vertical bulk */
  .site-header .menu-toggle span {
    width: 44px;
    height: 3px;
    margin: 2px 0;
    border-radius: 1px;
  }

  .site-header .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .site-header .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .site-header .book-now {
    margin-right: 0;
    flex-shrink: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(40, 88, 72, 0.14);
    z-index: 1200;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    max-width: 100%;
    color: #111827;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 12px;
    box-sizing: border-box;
    margin: 0;
  }

  .site-header .nav-links li a {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    margin: 0;
  }

  .site-header .nav-links li a.active,
  .site-header .nav-links li a.active:hover {
    color: #1f4a3e;
    background: rgba(40, 88, 72, 0.1);
    font-weight: 700;
    opacity: 1;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(40, 88, 72, 0.18);
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(15, 23, 42, 0.04);
  }

  .site-header .nav-links li a.active:hover {
    background: rgba(40, 88, 72, 0.14);
  }

  .site-header .logo {
    font-size: clamp(18px, 4.4vw, 23px);
    letter-spacing: 0.2px;
    line-height: 1.05;
  }
}

@media (max-width: 600px) {
  .site-header .logo {
    font-size: clamp(17px, 4.2vw, 22px);
    letter-spacing: 0.2px;
    line-height: 1.05;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 12px 14px;
  }

  .site-header .nav-logo {
    width: auto;
    height: 38px;
  }

  .brand-logo {
    gap: 6px;
  }

  .site-header .logo {
    font-size: clamp(16px, 4.3vw, 20px);
    letter-spacing: 0.2px;
    line-height: 1.05;
  }

  .site-header .book-now {
    font-size: 12px;
    padding-inline: clamp(10px, 3.2vw, 16px);
    height: 34px;
  }

  .menu-toggle,
  .site-header .menu-toggle {
    min-width: 68px;
    min-height: 34px;
    padding: 7px 12px;
    margin-right: 10px;
  }

  .site-header .menu-toggle span {
    width: 40px;
  }
}
/* ===== END GLOBAL HEADER ===== */
/* ===== MOULD HERO: FULL-WIDTH IMAGE UNDER HEADER ===== */
.page-mould .site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: transparent;
  z-index: 9999;
}

.page-mould .hero.service-hero.mould-hero{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  border-radius: 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(72px, 10vh, 120px) 20px;
  background-image: url("background_image.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  --mould-hero-overlay: 0.55;
  overflow-x: hidden;
  box-sizing: border-box;
}

.page-mould .hero.service-hero.mould-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,var(--mould-hero-overlay));
  z-index:1;
}

.page-mould .hero.service-hero.mould-hero .hero__inner{
  position: relative;
  z-index:2;
  margin: 0 auto;
  max-width: 900px;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-18px);
}

.page-mould .hero.service-hero.mould-hero .hero__title,
.page-mould .hero.service-hero.mould-hero .hero__sub {
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

@media (max-width: 768px){
  .page-mould .hero.service-hero.mould-hero{
    min-height: 90vh;
  }
  .page-mould .hero.service-hero.mould-hero{
    background-position: center;
  }
  .page-mould .hero.service-hero.mould-hero{
    --mould-hero-overlay: 0.6;
  }
  .page-mould .hero.service-hero.mould-hero .hero__title {
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1.15;
  }
  .page-mould .hero.service-hero.mould-hero .hero__sub {
    font-size: 16px;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px){
  .page-mould .hero.service-hero.mould-hero {
    padding: 64px 16px 48px;
  }

  .page-mould .hero.service-hero.mould-hero .cta-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .page-mould .hero.service-hero.mould-hero .hero-btn,
  .page-mould .hero.service-hero.mould-hero .support-btn {
    width: 100%;
    max-width: 420px;
    white-space: nowrap;
  }

  .page-mould .hero.service-hero.mould-hero .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-items: center;
  }

  .page-mould .hero.service-hero.mould-hero .hero-trust li {
    max-width: 100%;
    text-align: center;
    padding: 6px 10px;
  }

  .page-mould .hero.service-hero.mould-hero .hero-trust li:last-child {
    grid-column: 1 / -1;
  }
}

.page-mould .main-content {
  padding: 0 15px 15px;
  overflow-x: visible;
}
/* ===== END MOULD HERO: FULL-WIDTH IMAGE UNDER HEADER ===== */
/* ===== MOULD FOOTER MEGA ===== */
.footer-mega {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    color: #111827;
}

.footer-mega__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 24px;
}

.footer-mega__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.footer-col h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.footer-col__subtitle {
    margin: 16px 0 8px;
    font-size: 14px;
    color: #111827;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #6B7280;
    text-decoration: none;
}

.footer-links a:hover {
    color: #111827;
}

.footer-subscribe p {
    margin: 0 0 12px;
    color: #6B7280;
}

.footer-subscribe__form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.footer-subscribe__form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}

.footer-subscribe__btn {
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(to right, #285848, #1F4A3E);
    color: #FFFFFF;
    width: 100%;
}

.footer-contact,
.footer-ai {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    color: #6B7280;
    font-size: 14px;
}

.footer-contact a,
.footer-ai a {
    color: #111827;
    text-decoration: none;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F3F4F6;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding: 16px 0 24px;
}

.footer-bottom__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: #6B7280;
    font-size: 14px;
}

.footer-bottom__inner--center {
    justify-content: center;
    text-align: center;
    color: #111827;
}

.footer-bottom__inner p {
    margin: 0;
    color: #111827;
}

.footer-accordion {
    display: none;
    border-top: 1px solid #e5e7eb;
    margin-top: 24px;
}

.footer-mega .footer-bottom,
.footer-mega .footer-bottom p,
.footer-mega .footer-bottom__inner,
.footer-mega .footer-bottom__inner p,
.footer-mega .footer-bottom-links a {
    color: #111827;
}

.footer-mega .footer-bottom-links a {
    text-decoration: none;
}

.footer-mega .footer-bottom-links a:hover,
.footer-mega .footer-bottom-links a:focus-visible {
    text-decoration: underline;
}

.footer-acc-item {
    border-bottom: 1px solid #e5e7eb;
}

.footer-acc-btn {
    width: 100%;
    background: none;
    border: 0;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
}

.footer-acc-icon::before {
    content: '+';
    font-size: 18px;
}

.footer-acc-item.is-open .footer-acc-icon::before {
    content: '–';
}

.footer-acc-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.footer-acc-item.is-open .footer-acc-panel {
    max-height: 600px;
    opacity: 1;
    padding-bottom: 16px;
}

.footer-acc-panel p {
    margin: 0 0 12px;
    color: #6B7280;
}

@media (max-width: 991px) {
    .footer-mega__grid {
        display: none;
    }

    .footer-accordion {
        display: block;
    }

    .footer-mega__inner {
        padding: 40px 20px 20px;
    }

    .footer-subscribe__form {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-subscribe__btn {
        width: 100%;
    }
}
/* ===== END MOULD FOOTER MEGA ===== */

/* Airbnb who-it's-for section */
.airbnb-who__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.airbnb-who__card {
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    padding: 20px;
    background: #ffffff;
}

.airbnb-who__card h3 {
    margin-bottom: 8px;
}

.airbnb-who__card p {
    color: #6B7280;
}

/* Office who-it's-for section */
.office-who__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.office-who__card {
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    padding: 20px;
    background: #ffffff;
}

.office-who__card h3 {
    margin-bottom: 8px;
}

.office-who__card p {
    color: #6B7280;
}

/* Property preparation landing */
.property-prep-page .main-content {
    max-width: none;
    padding: 0;
}

.property-prep-page .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.property-hero {
    position: relative;
    min-height: 62vh;
    padding: 140px 20px 90px;
    color: #ffffff;
    overflow: hidden;
}

.property-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("photos/professional-house-cleaning-service-kerry-ireland.webp");
    background-size: cover;
    background-position: center;
}

.property-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.55);
}

.property-hero__content {
    position: relative;
    z-index: 1;
}

.property-hero__sub {
    max-width: 680px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.property-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.property-hero__trust {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.property-section {
    padding: 72px 20px;
}

.property-section h2 {
    margin: 0 0 16px;
}

.property-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}

.property-card {
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    padding: 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.property-card p {
    color: #6B7280;
    margin-top: 6px;
}

.property-related {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #6B7280;
    font-size: 14px;
}

.property-related a {
    color: #285848;
    text-decoration: none;
    font-weight: 600;
}

.property-related a:hover,
.property-related a:focus-visible {
    text-decoration: underline;
}

.property-warning {
    background: #F3F4F6;
}

.property-packages {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}

.property-package {
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    padding: 22px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.property-package__list {
    margin: 0;
    padding-left: 18px;
    color: #6B7280;
}

.property-package__list li + li {
    margin-top: 6px;
}

.property-package__price {
    margin-top: auto;
    font-weight: 700;
    color: #285848;
}

.property-package .btn {
    margin-top: 10px;
    align-self: flex-start;
}

.property-note {
    margin-top: 16px;
    color: #6B7280;
}

.property-timeline {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.property-step {
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 16px;
    background: #ffffff;
}

.property-step span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #285848;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 12px;
}

.property-step p {
    color: #6B7280;
}

.property-list {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.property-list div {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.property-list i {
    color: #285848;
}

.property-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.property-area-list span {
    border: 1px solid #E5E7EB;
    padding: 8px 14px;
    border-radius: 999px;
    color: #285848;
    font-weight: 600;
    background: #ffffff;
}

.property-trust__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    align-items: center;
}

.property-trust__meta {
    display: grid;
    gap: 8px;
    margin: 16px 0 18px;
    color: #6B7280;
}

.property-trust__meta i {
    color: #285848;
    margin-right: 6px;
}

.property-trust__gallery {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.property-trust__gallery figure {
    margin: 0;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.property-trust__gallery img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
}

.property-trust__gallery figcaption {
    padding: 12px 14px;
    color: #6B7280;
    font-size: 14px;
}

.property-faq details {
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 10px;
    background: #ffffff;
}

.property-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: #111827;
}

.property-faq p {
    margin-top: 8px;
    color: #6B7280;
}

.property-form {
    margin-top: 20px;
}

.property-quote {
    background: #FFFFFF;
}

.property-quote__card {
    display: grid;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.08);
}

.property-quote__summary {
    padding: 32px;
    background: #285848;
    color: #ffffff;
}

.property-quote__summary h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.property-quote__sub {
    color: rgba(255, 255, 255, 0.82);
}

.property-quote__meta {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.property-quote__form {
    padding: 32px;
}

.property-quote__form .property-form {
    margin-top: 0;
}

.property-form__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.property-form input,
.property-form select,
.property-form textarea {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    font-family: inherit;
    background: #F9FAFB;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.property-form input:focus,
.property-form select:focus,
.property-form textarea:focus {
    outline: none;
    border-color: #285848;
    box-shadow: 0 0 0 3px rgba(40, 88, 72, 0.12);
}

.property-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
}

.property-form__actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 768px) {
    .property-hero {
        padding: 110px 20px 70px;
        text-align: center;
    }

    .property-hero__actions {
        justify-content: center;
    }

    .property-hero__trust {
        text-align: center;
    }

    .property-section {
        padding: 48px 20px;
    }

    .property-quote__summary,
    .property-quote__form {
        padding: 22px;
    }
}

@media (min-width: 768px) {
    .property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .property-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .property-quote__card {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .property-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .property-packages {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .property-trust__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .property-trust__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .property-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .property-timeline {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ===== Quick Quote Form ===== */
.quick-quote-section {
    background: linear-gradient(135deg, #285848 0%, #1F4A3E 100%);
    padding: clamp(56px, 6vw, 80px) 20px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 0 16px;
}

.quick-quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.quick-quote-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.quick-quote-content h2 {
    color: #ffffff;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.15;
}

.quick-quote-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    margin: 0 0 24px;
    line-height: 1.6;
}

.quick-quote-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.quick-quote-badge {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

.quick-quote-badge i {
    color: #4ade80;
    font-size: 15px;
}

.quick-quote-form {
    background: #ffffff;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quick-quote-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.quick-quote-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quick-quote-field label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.quick-quote-field .optional {
    font-weight: 400;
    color: #9CA3AF;
}

.quick-quote-field input,
.quick-quote-field select,
.quick-quote-field textarea {
    padding: 13px 16px;
    border: 1.5px solid #D1D5DB;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #F9FAFB;
    color: #111827;
}

.quick-quote-field input:focus,
.quick-quote-field select:focus,
.quick-quote-field textarea:focus {
    outline: none;
    border-color: #285848;
    box-shadow: 0 0 0 3px rgba(40, 88, 72, 0.12);
    background: #ffffff;
}

.quick-quote-field textarea {
    resize: vertical;
    min-height: 80px;
}

.quick-quote-submit {
    padding: 16px;
    background: linear-gradient(135deg, #285848, #1F4A3E);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    letter-spacing: 0.01em;
}

.quick-quote-submit:hover {
    background: linear-gradient(135deg, #1F4A3E, #163D33);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 88, 72, 0.35);
}

@media (max-width: 768px) {
    .quick-quote-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .quick-quote-content {
        text-align: center;
    }
    .quick-quote-badges {
        justify-content: center;
    }
    .quick-quote-row {
        grid-template-columns: 1fr;
    }
    .quick-quote-form {
        padding: 24px;
    }
}

/* ===== Exit-Intent Popup ===== */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}

.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 20px;
    padding: 48px 40px 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.85) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exit-popup-overlay.active .exit-popup {
    transform: scale(1) translateY(0);
}

.exit-popup__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #F3F4F6;
    border-radius: 50%;
    font-size: 22px;
    color: #6B7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}

.exit-popup__close:hover {
    background: #E5E7EB;
    color: #111827;
}

.exit-popup__badge {
    display: inline-block;
    background: linear-gradient(135deg, #285848, #1F4A3E);
    color: #ffffff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.exit-popup__discount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.exit-popup__percent {
    font-size: 72px;
    font-weight: 800;
    color: #285848;
    line-height: 1;
    letter-spacing: -2px;
}

.exit-popup__off {
    font-size: 28px;
    font-weight: 700;
    color: #1F4A3E;
    text-transform: uppercase;
}

.exit-popup__title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.exit-popup__desc {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 24px;
    line-height: 1.5;
}

.exit-popup__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exit-popup__input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    background: #ffffff;
}

.exit-popup__input:focus {
    outline: none;
    border-color: #285848;
    box-shadow: 0 0 0 3px rgba(40, 88, 72, 0.12);
}

.exit-popup__btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #285848, #1F4A3E);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    margin-top: 4px;
}

.exit-popup__btn:hover {
    background: linear-gradient(135deg, #1F4A3E, #163D33);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(40, 88, 72, 0.3);
}

.exit-popup__terms {
    font-size: 12px;
    color: #9CA3AF;
    margin: 12px 0 0;
}

@media (max-width: 480px) {
    .exit-popup {
        padding: 36px 24px 28px;
    }
    .exit-popup__percent {
        font-size: 56px;
    }
    .exit-popup__off {
        font-size: 22px;
    }
    .exit-popup__title {
        font-size: 18px;
    }
}

/* ===== Customer Reviews Section ===== */
.customer-reviews-section {
    background: #F9FAFB;
    padding: clamp(48px, 5vw, 72px) 20px;
}

.customer-reviews-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.customer-reviews-inner h2 {
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.customer-reviews-sub {
    text-align: center;
    color: #6B7280;
    font-size: 15px;
    margin: 0 0 32px;
}

.customer-reviews-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 180px;
}

.customer-reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.customer-reviews-track .reviews-slide {
    min-width: 33.333%;
    max-width: 33.333%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 10px 12px;
    box-sizing: border-box;
}

.customer-reviews-track .review-card {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    transition: all 0.3s ease;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.customer-reviews-track .review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.customer-reviews-track .review-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.customer-reviews-track .reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.customer-reviews-track .reviewer-info h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.customer-reviews-track .review-stars-small {
    color: #F4B400;
    font-size: 15px;
    letter-spacing: 2px;
    margin-top: 3px;
}

.customer-reviews-track .review-text {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.customer-carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}



@media (max-width: 768px) {
    .customer-reviews-track .reviews-slide {
        min-width: 50%;
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    .customer-reviews-track .reviews-slide {
        min-width: 100%;
        max-width: 100%;
    }
    .customer-reviews-track .review-card {
        padding: 18px;
    }
}

.property-prep-page .services-preview,
.property-prep-page .photo-preview-container,
.property-prep-page .sticky-mobile-bar,
.property-prep-page .floating-preview,
.property-prep-page .device-preview {
    display: none !important;
}

/* ============================================================
   SEO/GEO/CRO ENHANCEMENTS
   ============================================================ */

/* Skip Navigation */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 10000;
    padding: 1rem 1.5rem;
    background: #1a5632;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    border-bottom-right-radius: 4px;
}
.skip-nav:focus {
    top: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 13px;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
    color: #6B7280;
}
.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #9CA3AF;
    font-size: 14px;
}
.breadcrumbs li a {
    color: #285848;
    text-decoration: none;
    font-weight: 500;
}
.breadcrumbs li a:hover {
    text-decoration: underline;
}
.breadcrumbs li:last-child {
    color: #374151;
    font-weight: 600;
}

/* Quick Facts Block (GEO) */
.service-quick-facts {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 24px auto 32px;
    max-width: 800px;
}
.service-quick-facts h2 {
    font-size: 1.1rem;
    margin: 0 0 16px;
    color: #1a5632;
}
.service-quick-facts dl {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 8px 16px;
    margin: 0;
}
.service-quick-facts dt {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}
.service-quick-facts dd {
    margin: 0;
    color: #4B5563;
    font-size: 14px;
}

/* Availability Badge / Urgency Indicator */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #166534;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 12px;
}
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Speakable summary styling */
.speakable-summary {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
}

/* On green gradient hero (e.g. reviews), default gray is illegible */
.hero .speakable-summary {
    color: rgba(255, 255, 255, 0.92);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-wrap: pretty;
}

/* Reviews page grid (reviews.html): full-width cards, no letter avatars */
#reviewsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

#reviewsGrid .review-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

#reviewsGrid .review-header {
    margin-bottom: 12px;
    text-align: left;
}

#reviewsGrid .reviewer-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 0;
}

#reviewsGrid .reviewer-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    line-height: 1.25;
}

#reviewsGrid .review-stars-small {
    color: #F59E0B;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
}

#reviewsGrid .review-text {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 10px;
    font-style: normal;
}

#reviewsGrid .review-card {
  width: 100%;
  max-width: none;
  flex: 1 1 auto;
  min-height: 0;
  text-align: left;
  box-sizing: border-box;
}

/* Reviews page: wider rating block + GMB CTA */
.reviews-rating-display {
  display: block;
  width: 100%;
  max-width: min(100%, 560px);
  margin: 0 auto;
  box-sizing: border-box;
}

.reviews-leave-review-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 12px;
  font-size: 1.06rem;
  line-height: 1.45;
  max-width: 100%;
  color: #285848;
  font-weight: 600;
  text-decoration: underline;
}

.reviews-leave-review-link:hover {
  color: #1f4a3e;
}

/* Google Business Profile link in footer */
.footer-gbp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #285848;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
}
.footer-gbp-link:hover {
    text-decoration: underline;
}

/* ============================================================
   MOBILE RESPONSIVENESS FIXES
   ============================================================ */

/* Fix H1 overflow on small screens */
@media (max-width: 480px) {
    .hero h1,
    .hero__title {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
        word-break: break-word;
    }
    .service-quick-facts dl {
        grid-template-columns: 1fr;
    }
    .service-quick-facts dt {
        margin-top: 4px;
        font-weight: 700;
    }
}

/* Fix service cards on tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .painting-card-grid,
    .cleaning-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .painting-card-grid,
    .cleaning-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 400px) {
    .painting-card-grid,
    .cleaning-card-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Fix WhatsApp button overlap on mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px !important;
        right: 16px !important;
        width: 48px !important;
        height: 48px !important;
        z-index: 999;
    }
    body {
        padding-bottom: 80px;
    }
    .breadcrumbs {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Reviews load-more pattern */
.reviews-hidden {
    display: none !important;
}
.reviews-load-more {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.reviews-load-more button {
    background: #285848;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}
.reviews-load-more button:hover {
    background: #1F4A3E;
}

/* ===================================================================
   Airbnb Management: calculator, tier cards, guarantee, city grid,
   testimonials, custom toggles
   =================================================================== */

/* --- Revenue Calculator Widget --- */
.mgmt-calculator {
    background: #fff;
    border-radius: 20px;
    padding: 44px 40px 36px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 6px 28px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}
/* Full-width calculator when embedded in management hero (avoids narrow centered card / overflow on mobile) */
.mgmt-hero__grid > .mgmt-hero__content,
.mgmt-hero__grid > .mgmt-hero__calculator {
    min-width: 0;
}
.mgmt-hero__calculator {
    width: 100%;
}
.mgmt-hero__calculator .mgmt-calculator {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}
.mgmt-calculator__title {
    text-align: center;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: #111827;
    margin: 0 0 32px;
}
.mgmt-calculator__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
    margin-bottom: 28px;
}
.mgmt-calculator__field {
    display: flex;
    flex-direction: column;
}
.mgmt-calculator__field--full {
    grid-column: 1 / -1;
}
.mgmt-calculator__label {
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}
.mgmt-calculator__select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #111827;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='2' fill='none' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    transition: border-color 0.2s;
}
.mgmt-calculator__select:focus {
    outline: none;
    border-color: #1F4A3E;
    box-shadow: 0 0 0 3px rgba(31,74,62,0.1);
}

/* Property type toggle */
.mgmt-calculator__toggles {
    display: flex;
    gap: 0;
    border: 2px solid #1F4A3E;
    border-radius: 10px;
    overflow: hidden;
}
.mgmt-calculator__toggle {
    flex: 1;
    padding: 12px 16px;
    background: #fff;
    color: #1F4A3E;
    border: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: center;
}
.mgmt-calculator__toggle + .mgmt-calculator__toggle {
    border-left: 2px solid #1F4A3E;
}
.mgmt-calculator__toggle.active,
.mgmt-calculator__toggle[aria-pressed="true"] {
    background: #1F4A3E;
    color: #fff;
}
.mgmt-calculator__toggle:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: -2px;
}

/* Bedrooms slider row */
.mgmt-calculator__bed-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mgmt-calculator__bed-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #1F4A3E;
    background: #fff;
    color: #1F4A3E;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
.mgmt-calculator__bed-btn:hover {
    background: #1F4A3E;
    color: #fff;
}
.mgmt-calculator__bed-btn:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}
.mgmt-calculator__slider {
    flex: 1;
    min-width: 0;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
.mgmt-calculator__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #1F4A3E;
    border-radius: 50%;
    cursor: pointer;
}
.mgmt-calculator__slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #1F4A3E;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}
.mgmt-calculator__slider:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 4px;
}
.mgmt-calculator__bed-label {
    font-size: 14px;
    font-weight: 600;
    color: #1F4A3E;
    min-width: 90px;
    text-align: center;
}

/* Output panel */
.mgmt-calculator__output {
    background: linear-gradient(135deg, #1F4A3E 0%, #285848 100%);
    border-radius: 16px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    color: #fff;
}
.mgmt-calculator__stat {
    text-align: center;
}
.mgmt-calculator__stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.75;
    margin-bottom: 6px;
}
.mgmt-calculator__stat-value {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
}
.mgmt-calculator__stat--highlight .mgmt-calculator__stat-value {
    color: #f59e0b;
}
.mgmt-calculator__stat--uplift .mgmt-calculator__stat-value {
    font-size: clamp(16px, 2vw, 20px);
    color: #a7f3d0;
}
.mgmt-calculator__disclaimer {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
    margin-top: 4px;
}

@media (max-width: 600px) {
    .mgmt-calculator {
        padding: 28px 18px 24px;
    }
    .mgmt-calculator__fields {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .mgmt-calculator__output {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px 18px;
    }
    .mgmt-calculator__bed-label {
        min-width: 0;
    }
    .mgmt-calcform__contact {
        grid-template-columns: 1fr;
    }
}

/* --- Management Package Cards --- */
.mgmt-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.mgmt-package {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.mgmt-package:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.mgmt-package--featured {
    border-color: #1F4A3E;
    box-shadow: 0 4px 20px rgba(31,74,62,0.15);
}
.mgmt-package__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: #111827;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.mgmt-package__name {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}
.mgmt-package__rate {
    font-size: 36px;
    font-weight: 700;
    color: #1F4A3E;
    margin: 8px 0 16px;
}
.mgmt-package__rate span {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
}
.mgmt-package__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}
.mgmt-package__list li {
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.mgmt-package__list li i {
    color: #1F4A3E;
    margin-top: 3px;
    flex-shrink: 0;
}
.mgmt-package__highlight {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 16px;
    text-align: center;
}
.mgmt-package__cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: auto;
}
.mgmt-package__cta--primary {
    background: #f59e0b;
    color: #111827;
}
.mgmt-package__cta--primary:hover {
    background: #d97706;
}
.mgmt-package__cta--outline {
    background: transparent;
    border: 2px solid #1F4A3E;
    color: #1F4A3E;
}
.mgmt-package__cta--outline:hover {
    background: #1F4A3E;
    color: #fff;
}
.mgmt-packages__note {
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 900px) {
    .mgmt-packages {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
    }
}

/* --- Revenue Guarantee Banner --- */
.mgmt-guarantee {
    background: linear-gradient(135deg, #065f46 0%, #1F4A3E 100%);
    border-radius: 18px;
    padding: 40px 48px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.mgmt-guarantee::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
}
.mgmt-guarantee__icon {
    font-size: 40px;
    margin-bottom: 16px;
    color: #f59e0b;
}
.mgmt-guarantee__title {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 700;
    margin: 0 0 12px;
}
.mgmt-guarantee__text {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .mgmt-guarantee {
        padding: 28px 20px;
    }
}

/* --- City Location Cards --- */
.mgmt-cities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.mgmt-city-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.mgmt-city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #1F4A3E;
}
.mgmt-city-card__icon {
    width: 48px;
    height: 48px;
    background: #e8f5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1F4A3E;
}
.mgmt-city-card__name {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.mgmt-city-card__snippet {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}
.mgmt-city-card__arrow {
    font-size: 13px;
    font-weight: 700;
    color: #1F4A3E;
    margin-top: auto;
}

/* --- Testimonials --- */
.mgmt-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.mgmt-testimonial {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}
.mgmt-testimonial__stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 12px;
}
.mgmt-testimonial__text {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    flex: 1;
    margin: 0 0 16px;
}
.mgmt-testimonial__author {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}
.mgmt-testimonial__role {
    font-size: 13px;
    color: #6b7280;
}

/* --- City Page: Market Snapshot --- */
.mgmt-snapshot {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.mgmt-snapshot__card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
}
.mgmt-snapshot__value {
    font-size: 28px;
    font-weight: 700;
    color: #1F4A3E;
    margin-bottom: 4px;
}
.mgmt-snapshot__label {
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- City Page: Case Study --- */
.mgmt-case-study {
    background: #f8faf9;
    border-left: 4px solid #1F4A3E;
    border-radius: 0 14px 14px 0;
    padding: 28px 32px;
    margin: 32px 0;
}
.mgmt-case-study__title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
}
.mgmt-case-study__text {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

/* --- City Cross-links Nav --- */
.mgmt-city-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.mgmt-city-nav a {
    padding: 10px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1F4A3E;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.mgmt-city-nav a:hover,
.mgmt-city-nav a.current {
    background: #1F4A3E;
    color: #fff;
    border-color: #1F4A3E;
}

/* --- Regulation note box (city pages) --- */
.mgmt-reg-note {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 14px;
    color: #92400e;
    line-height: 1.6;
}
.mgmt-reg-note strong {
    color: #78350f;
}


/* ============================================================================
   BRIEF #5 — DESIGN CONSISTENCY LAYER (added 10 Jun 2026)
   Root cause: service/city pages were generated with classes that had no CSS.
   This layer styles every previously-orphaned class so all 89 pages share the
   homepage's visual language. Visual layer only — no copy/SEO changes.

   CANONICAL PAGE TEMPLATE (reference: index.html + /pricing):
   • Header  — .site-header: white rounded bar, logo left, nav centre,
               dark-green "Book Now" right; current page highlighted (nav-active.js)
   • Hero    — .hero.hero--split > .hero__col.hero__col--text:
               H1 (Montserrat bold, .hero h1) → subtitle → .hero__actions with
               .btn-yellow (dark-green pill, white text) + .btn-outline
               (transparent pill, dark border) → .hero-ticker trust chips
   • Trust   — .hero-ticker__strip > .hero-ticker__item: pill chips,
               light-green tint, not plain text
   • Facts   — .service-quick-facts: light-green card, rounded, bold labels
   • Rhythm  — sections max-width 1200px; white cards radius 14–16px,
               shadow 0 8px 25px rgba(17,24,39,.08)
   • CTA     — .cta-section: full-width dark-green band before footer
   • Footer  — .footer-mega everywhere (white, 4-col grid); the painting pages'
               .site-footer/.footer-grid are styled below as visual aliases
   TOKENS: greens #285848/#1F4A3E · amber #F59E0B · ink #111827 · muted #6B7280
           chip tint rgba(40,88,72,.08) · WhatsApp #25D366 · Montserrat
   ============================================================================ */

/* ---- 1. Split hero columns (21 city×service pages: office/carpet/EOT/airbnb) */
.hero--split .hero__col {
    min-width: 0;
}

.hero--split .hero__col--text {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.hero--split .hero__col--text h1 {
    margin: 0;
}

.hero--split .hero__col--text p {
    max-width: 720px;
    margin: 0;
    color: #374151;
}

.hero--split .hero__col--media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero--split .hero__col--media img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
}

/* Secondary CTA in hero: same pill metrics as .btn-yellow (was a bare link) */
.hero--split .hero__actions .btn-outline {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero--split .hero__col--text {
        gap: 14px;
    }
    .hero--split .hero__col--text .hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 420px);
    }
}

/* ---- 2. Hero trust ticker as chips (was plain text strip) */
.hero-ticker__strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 88, 72, 0.08);
    color: #1F4A3E;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .hero-ticker__item {
        font-size: 13px;
        padding: 7px 12px;
    }
}

/* ---- 3. WhatsApp FAB (.wa-float — was a bare inline image at page bottom) */
.wa-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    z-index: 1000;
    display: block;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(17, 24, 39, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float img {
    width: 100%;
    height: 100%;
    display: block;
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.3);
}

@media (max-width: 768px) {
    .wa-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }
}

/* ---- 4. Airbnb-management secondary lead form (.mgmt-form on cork/galway/
        limerick had only media-query rules — card, rows, fields, submit) */
.mgmt-form {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(17, 24, 39, 0.08);
}

.mgmt-form h2 {
    margin-top: 0;
}

.mgmt-form__sub {
    color: #6B7280;
    font-size: 15px;
    margin: 6px 0 22px;
}

.mgmt-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mgmt-form__group {
    margin-bottom: 14px;
    min-width: 0;
}

.mgmt-form__group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 5px;
}

.mgmt-form__group input,
.mgmt-form__group select {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    background: #fff;
    transition: border-color 0.2s;
}

.mgmt-form__group input:focus,
.mgmt-form__group select:focus {
    outline: none;
    border-color: #1F4A3E;
    box-shadow: 0 0 0 3px rgba(31, 74, 62, 0.1);
}

/* Submit was a default browser button — match the calculator's amber CTA */
.mgmt-form .btn-yellow {
    width: 100%;
    padding: 14px;
    margin-top: 6px;
    background: #F59E0B;
    color: #111827;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
}

.mgmt-form .btn-yellow:hover {
    background: #d97706;
}

@media (max-width: 600px) {
    .mgmt-form {
        padding: 28px 20px;
    }
    .mgmt-form__row {
        grid-template-columns: 1fr;
    }
}

/* ---- 5. Blog (cleaning-tips/*): article meta + sidebar cards */
.article-meta .date,
.article-meta .read-time,
.article-meta .author {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    opacity: 0.9;
}

.sidebar-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    margin: 0 0 12px;
    font-size: 17px;
    color: #111827;
}

.sidebar-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-card a {
    color: #285848;
    text-decoration: none;
}

.sidebar-card a:hover {
    text-decoration: underline;
}

.sidebar-card.cta-card {
    background: linear-gradient(135deg, #285848, #1F4A3E);
    border: none;
    color: #ffffff;
}

.sidebar-card.cta-card h3 {
    color: #ffffff;
}

.sidebar-card.cta-card p {
    color: rgba(255, 255, 255, 0.88);
}

.sidebar-card.cta-card .btn {
    display: inline-block;
    margin-top: 10px;
    background: #ffffff;
    color: #1F4A3E;
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 20px;
    text-decoration: none;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ---- 6. FAQ list wrappers (kerry/killarney service pages) */
.airbnb-faq__list,
.commercial-faq__list,
.holiday-faq__list,
.property-faq__list,
.school-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

/* ---- 7. CTA band before footer (canonical; was unstyled on car-cleaning-kerry) */
.cta-section {
    background: linear-gradient(135deg, #285848, #1F4A3E);
    color: #ffffff;
    text-align: center;
    padding: clamp(48px, 6vw, 72px) 20px;
}

.cta-section h2 {
    color: #ffffff;
    margin: 0 0 10px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto 24px;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- 8. Painting pages footer (.site-footer/.footer-grid) → visual alias of
        the canonical .footer-mega (white, border-top, 4-col grid) */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    color: #111827;
    padding: 60px 20px 24px;
}

.site-footer .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

@media (max-width: 900px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- 9. Legal pages readability */
.privacy-section,
.terms-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 8px 20px;
}

.last-modified {
    color: #6B7280;
    font-size: 14px;
    font-style: italic;
    margin-top: 24px;
}

/* ---- 10. Small shared utilities */
.centered {
    text-align: center;
}

.review-location {
    font-size: 13px;
    color: #6B7280;
}

.quick-quote-field-hint {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 8px;
}

.footer-col__group {
    margin-bottom: 18px;
}

.footer-col__group:last-child {
    margin-bottom: 0;
}

.footer-gbp {
    margin-top: 8px;
}

/* ---- 11. Structural / JS-hook markers.
        These classes carry no visual rules of their own: they are semantic
        section markers, JS hooks, or wrappers whose children are fully styled
        (inline or in page <style> blocks). Declared so the orphan-class audit
        is clean; verified harmless visually. */
.site-header__brand-name,
.city-page,
.about-story,
.blog-section,
.areas-widget,
.popular-widget,
.office-area, .office-pricing, .office-who, .office-reviews, .office-before-after,
.airbnb-area, .airbnb-how, .airbnb-pricing, .airbnb-who,
.mould-problems, .mould-results, .mould-faq-section, .mould-hero--photo,
.no-mobile-img, .before,
.arc-faq-item,
.property-trust, .property-payment, .property-bereavement,
.contact-hero__panel, .contact-map__header,
.pricing-nav__sort,
.review-filter-btn, .reviews-rating-hero, .reviews-page-grid-section,
.success,
.wepro-faq, .wepro-faq__inner, .wepro-faq__list, .wepro-faq__item {
    /* intentionally no rules */
}

/* ---- 12. Legacy homepage booking modal (index.html #bookingModal v2).
        Dead markup: hidden via inline display:none and replaced at runtime by
        booking-form-script.js (bf-* modal, styled in booking-form-styles.css).
        Declared only to keep the orphan-class audit clean — remove together
        with the markup in the Brief #4 CSS purge. */
.arrow, .booking-form-container, .btn-nav, .checkbox-content,
.custom-select, .custom-select-trigger, .custom-select-wrapper,
.customer-next-btn, .customer-prev-btn,
.price-display, .price-summary, .progress-steps,
.service-category-grid, .service-group, .service-group-vehicle,
.step-field, .step-field--estimate, .step-field--full, .step-field--notes,
.step3-grid {
    /* intentionally no rules — dead legacy markup */
}

/* ============================================================================
   BRIEF #6 ADDITIONS (11 Jun 2026)
   ============================================================================ */

/* ---- P0-2: global base for .btn-yellow.
   Previously styled only inside .hero--split .hero__actions, so mid-page CTAs
   (e.g. "Book Airbnb Cleaning in Cork") rendered as default browser buttons.
   :where() keeps specificity at zero, so every existing styled combo
   (.book-now, .pricing-btn--primary, .card-cta, .footer-subscribe__btn,
   .mgmt-form .btn-yellow, page-inline .mgmt-hero__ctas rules…) still wins. */
:where(.btn-yellow) {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 26px;
    border: none;
    border-radius: 999px;
    background-image: linear-gradient(
        120deg,
        #285848 0%,
        #3d7a66 28%,
        #2d6b55 52%,
        #1F4A3E 78%,
        #285848 100%
    );
    background-size: 220% 220%;
    background-position: 0% 50%;
    color: #FFFFFF;
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-position 0.75s ease;
}

:where(.btn-yellow:hover, .btn-yellow:focus-visible) {
    background-position: 100% 50%;
    color: #FFFFFF;
}

@media (prefers-reduced-motion: reduce) {
    :where(.btn-yellow) {
        background-image: none;
        background-color: #285848;
        transition: background-color 0.2s ease;
    }
    :where(.btn-yellow:hover, .btn-yellow:focus-visible) {
        background-color: #1F4A3E;
    }
}

/* ---- P1-1 + P1-3: service-page content rhythm.
   Rule: section headings may stay centered; body copy and lists read
   left-aligned. .about-section is text-align:center globally; the 21
   city×service pages put their copy in .about-section > .about-container
   (the homepage does not use .about-container), so scope the fix there. */
.about-section .about-container > p {
    text-align: left;
}

/* "Why Choose WEPRO…" list — canonical checklist instead of default
   centered text with stray bullet dots. */
.about-section .about-container > ul {
    text-align: left;
    max-width: 640px;
    margin: 18px auto 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-section .about-container > ul > li {
    position: relative;
    padding-left: 30px;
    line-height: 1.65;
}

.about-section .about-container > ul > li::before {
    content: '\2713';
    position: absolute;
    left: 2px;
    top: 0;
    color: #285848;
    font-weight: 700;
}

.about-section .about-container > ol {
    text-align: left;
    max-width: 640px;
    margin: 18px auto 0;
    padding-left: 24px;
}

.about-section .about-container > ol > li {
    line-height: 1.65;
    margin-bottom: 8px;
}

/* ============================================================================
   BRIEF #7 — LIVE GOOGLE REVIEWS COMPONENT (gr-*)
   Rendered by google-reviews.js from /api/reviews. Three modes:
   .gr--carousel (homepage, 3 cards) · .gr--grid (/reviews, 5 cards + actions)
   · .gr--strip (service pages, 1–2 quotes). Badge-only when no reviews.
   ============================================================================ */
.gr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px 24px;
    text-align: center;
}

.gr-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(40, 88, 72, 0.08);
    color: #1F4A3E;
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    margin-bottom: 22px;
}

.gr-badge:hover {
    background: rgba(40, 88, 72, 0.14);
}

.gr-stars {
    color: #F59E0B;
    letter-spacing: 2px;
    font-size: 15px;
}

.gr-list {
    display: grid;
    gap: 20px;
    text-align: left;
}

.gr--carousel .gr-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gr--grid .gr-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gr--strip .gr-list { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 880px; margin: 0 auto; }

@media (max-width: 900px) {
    .gr--carousel .gr-list, .gr--grid .gr-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .gr--carousel .gr-list, .gr--grid .gr-list, .gr--strip .gr-list { grid-template-columns: 1fr; }
}

.gr-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(17, 24, 39, 0.06);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gr-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gr-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.gr-card__author {
    font-weight: 700;
    color: #111827;
    font-size: 15px;
}

.gr-card__date {
    color: #6B7280;
    font-size: 13px;
}

.gr-card__text {
    margin: 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gr-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.gr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.gr-btn--solid {
    background: #285848;
    color: #ffffff;
}

.gr-btn--solid:hover {
    background: #1F4A3E;
}

.gr-btn--outline {
    border: 2px solid rgba(40, 88, 72, 0.4);
    color: #1F4A3E;
    background: transparent;
}

.gr-btn--outline:hover {
    background: rgba(40, 88, 72, 0.08);
}
