/**
 * PoopNinjas - Static Site Styles
 */

/* === Skip to Content === */
.skip-to-content {
    position: fixed;
    top: -100px;
    left: 10px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--color-green);
    color: var(--color-white);
    font-size: var(--text-lg);
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 10px;
}

/* === Global Focus Styles === */
:focus-visible {
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
}

/* === Reset & Variables === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-dark: #2d2d3a;
    --color-dark-lighter: #334155;
    --color-green: #22c55e;
    --color-green-accessible: #15803d;  /* 5:1 on white — for text and button backgrounds */
    --color-green-hover: #16a34a;
    --color-green-light: #f0fdf4;
    --color-text: #334155;
    --color-text-light: #64748b;
    --color-border: #e2e8f0;
    --color-bg: #f8fafc;
    --color-white: #fff;
    --color-error: #dc3545;
    --color-success: #22c55e;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
    --max-width: 1100px;
    --header-height: 110px;
    --font-heading: 'Fredoka', 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Typography scale */
    --text-xs: 12px;
    --text-sm: 13px;
    --text-base: 14px;
    --text-md: 15px;
    --text-lg: 16px;
    --text-xl: 18px;
    --text-2xl: 20px;
    --text-3xl: 22px;
    --text-4xl: 24px;
    --text-5xl: 28px;
    --text-6xl: 32px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.7;
    background: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* Underline links in body content for accessibility (WCAG 1.4.1) */
.legal-content a,
.faq-answer a,
.info-item a,
.experience-content a,
.contact-detail a,
.trust-card a,
.testimonial-slide a {
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-underline-offset: 2px;
}

ul {
    list-style: none;
}

/* === Header === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-dark);
    height: var(--header-height);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 42px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-text {
    white-space: nowrap;
}

.logo-text span {
    color: var(--color-green);
}

.logo-img {
    height: 120px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    align-self: center;
}

.logo-ninja-left {
    margin-right: -40px;
    margin-top: -10px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: var(--text-3xl);
    font-weight: 600;
    margin-right: 30px;
    white-space: nowrap;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.header-phone svg {
    color: var(--color-green);
}

.header-phone a {
    color: var(--color-white);
    transition: color 0.2s;
}

.header-phone a:hover {
    color: var(--color-green);
}

.header-price {
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-right: 25px;
    padding: 6px 18px;
    border: 1px solid var(--color-green);
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.2s;
}

.header-price:hover {
    background: var(--color-green);
    color: var(--color-white);
}

.header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-links a {
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--text-4xl);
    transition: color 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-green);
}

.nav-links a.nav-cta {
    background: var(--color-green-accessible);
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: var(--text-4xl);
}

.nav-links a.nav-cta:hover {
    background: #116b33;
    color: var(--color-white);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 34px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-dark);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    color: var(--color-white);
    padding: 14px 0;
    font-size: var(--text-3xl);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:hover {
    color: var(--color-green);
}

.mobile-menu a.nav-cta {
    background: var(--color-green-accessible);
    text-align: center;
    border-radius: var(--radius);
    margin-top: 10px;
    border: none;
}

.mobile-menu .mobile-price {
    color: var(--color-green);
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--text-3xl);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.mobile-menu .mobile-phone {
    color: var(--color-green);
    font-weight: 600;
    border-bottom: none;
    margin-top: 10px;
    font-size: var(--text-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* === Scroll Fade-In Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.fade-in-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(6) { transition-delay: 0.75s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(n+7) { transition-delay: 0.9s; opacity: 1; transform: translateY(0); }

/* === Wave Dividers === */
.wave-divider {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 50px;
}

.wave-divider-top {
    margin-bottom: -1px;
}

.wave-divider-bottom {
    margin-top: -1px;
}

/* === Service Area === */
.service-area {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #2d2d3a 0%, #3d3d4a 100%);
    color: var(--color-white);
}

.service-area-light {
    background: var(--color-bg);
    color: var(--color-text);
}

.service-area-light h2 {
    color: var(--color-text);
}

.service-area-light .service-area-inner p {
    color: #555;
}

.service-area-light .service-area-badge {
    background: var(--color-green-light);
    border-color: var(--color-green);
    color: var(--color-green);
}

.service-area-light .service-area-badge svg {
    stroke: var(--color-green);
}

.service-area-light .service-area-city {
    background: var(--color-white);
    border: 2px solid var(--color-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-area-light .service-area-city-name {
    color: var(--color-text);
}

.service-area-inner {
    max-width: 700px;
    margin: 0 auto;
}

.service-area-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(208, 199, 108, 0.15);
    border: 1px solid var(--color-green);
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 20px;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-green);
    letter-spacing: 0.5px;
}

.service-area h2 {
    font-size: var(--text-5xl);
    margin-bottom: 12px;
}

.service-area p {
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-area:not(.service-area-light) p {
    color: rgba(255, 255, 255, 0.8);
}

.service-area-cities {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

.service-area-city {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-area-city-icon {
    font-size: var(--text-3xl);
}

.service-area-city-name {
    font-weight: 600;
    font-size: var(--text-lg);
}

.service-area-city-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .service-area-cities {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .service-area h2 {
        font-size: var(--text-3xl);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .fade-in, .fade-in-left, .fade-in-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .fade-in-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-lighter) 100%);
    color: var(--color-white);
    padding: 120px 20px 80px;
    text-align: center;
    margin-top: var(--header-height);
    position: relative;
}

.hero-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 20px 100px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.6) 100%);
    z-index: 0;
}

.hero-image > * {
    position: relative;
    z-index: 1;
}

.hero-image h1 {
    font-size: 56px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.7);
}

.hero-image p {
    font-size: var(--text-4xl);
    opacity: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    font-weight: 500;
}

.hero-image .btn {
    font-size: var(--text-3xl);
    padding: 18px 48px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-compact {
    padding: 100px 20px 50px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--color-green);
}

.hero p {
    font-size: var(--text-2xl);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero .btn {
    font-size: var(--text-xl);
    padding: 16px 40px;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: var(--text-lg);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.btn-primary {
    background: var(--color-green-accessible);
    color: var(--color-white);
}

.btn-primary:hover {
    background: #116b33;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-green);
}

.btn-outline:hover {
    background: var(--color-green);
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-green-accessible);
    border: 2px solid var(--color-green-accessible);
}

.btn-secondary:hover {
    background: var(--color-green-accessible);
    color: var(--color-white);
    transform: translateY(-1px);
}

/* === Sections === */
.section {
    padding: 70px 20px;
}

.section-dark {
    background: linear-gradient(135deg, #2d2d3a 0%, #3d3d4a 100%);
    color: var(--color-white);
}

.section-light {
    background: linear-gradient(180deg, #f8fafc 0%, #f0fdf4 100%);
}

.section-accent {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 50%, #15803d 100%);
    color: var(--color-white);
}

.section-warm {
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
    color: var(--color-text-light);
    font-size: var(--text-2xl);
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: var(--text-6xl);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--color-text-light);
    font-size: var(--text-xl);
}

/* === Card Grid === */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--color-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-6xl);
}

.card h3 {
    font-size: var(--text-2xl);
    margin-bottom: 12px;
}

.card p {
    color: var(--color-text-light);
    font-size: var(--text-md);
    line-height: 1.6;
}

/* === Steps (1-2-3) === */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.step {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-green);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    font-weight: 700;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: var(--text-2xl);
    margin-bottom: 8px;
}

.step p {
    color: var(--color-text-light);
    font-size: var(--text-md);
}

/* === Meet the Owner === */
.meet-owner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 850px;
    margin: 0 auto;
}

.meet-owner-photo {
    text-align: center;
}

.meet-owner-img {
    width: 200px;
    height: auto;
    border-radius: var(--radius-lg);
}

.meet-owner-content h2 {
    font-size: var(--text-5xl);
    margin-bottom: 8px;
}

.meet-owner-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.meet-owner-title {
    font-weight: 400;
    color: var(--color-text-light);
    font-size: var(--text-md);
    margin-left: 8px;
}

.meet-owner-content p {
    color: var(--color-text);
    font-size: var(--text-md);
    line-height: 1.7;
    margin-bottom: 12px;
}

.meet-owner-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .meet-owner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .meet-owner-content {
        text-align: left;
    }
}

/* === What to Expect Timeline === */
.expect-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.expect-step {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    position: relative;
}

.expect-step:last-child {
    padding-bottom: 0;
}

/* Vertical connecting line */
.expect-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 46px;
    bottom: 0;
    width: 2px;
    background: var(--color-green);
    opacity: 0.3;
}

.expect-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--color-green);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.expect-content h3 {
    font-size: var(--text-xl);
    margin-bottom: 4px;
    color: var(--color-dark);
}

.expect-content p {
    color: var(--color-text-light);
    font-size: var(--text-md);
    line-height: 1.6;
}

.expect-faq {
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.expect-faq-heading {
    text-align: center;
    font-size: var(--text-3xl);
    margin-bottom: 25px;
    color: var(--color-dark);
}

.expect-faq-grid {
    display: grid;
    gap: 20px;
}

.expect-faq-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px 24px;
    border: 1px solid #e2e8f0;
}

.expect-faq-item h4 {
    font-size: var(--text-lg);
    margin-bottom: 6px;
    color: var(--color-dark);
}

.expect-faq-item p {
    color: var(--color-text-light);
    font-size: var(--text-md);
    line-height: 1.6;
}

/* === Pricing Cards === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid var(--color-border);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
}

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

.pricing-card.featured {
    border-color: var(--color-green);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-green);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: var(--text-xl);
    margin-bottom: 15px;
    color: var(--color-text);
    font-family: var(--font-heading);
}

.pricing-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-green-accessible);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.pricing-period {
    font-size: var(--text-base);
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 20px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: var(--text-base);
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-bg);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: "\2713";
    color: var(--color-green);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-note {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    font-style: italic;
}

.pricing-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-extra-dog {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--text-base);
}

.pricing-disclaimer-wrapper {
    text-align: center;
    margin-top: 25px;
}

.pricing-disclaimer {
    font-size: var(--text-sm);
    max-width: 600px;
    margin: 10px auto 0;
    line-height: 1.6;
}

.section-dark .pricing-disclaimer {
    color: rgba(255, 255, 255, 0.75);
}

.section-light .pricing-disclaimer {
    color: var(--color-text-light);
}

.scroll-anchor {
    scroll-margin-top: var(--header-height);
}

.contact-cta {
    text-align: center;
    margin-top: 30px;
}

.contact-cta p {
    color: var(--color-text-light);
}

.contact-cta .btn {
    margin-top: 10px;
}

/* === 404 Error Page === */
.error-page {
    margin-top: var(--header-height);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-mascot {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.error-code {
    font-size: 96px;
    font-family: var(--font-heading);
    color: var(--color-green);
    line-height: 1;
    margin-bottom: 10px;
}

.error-headline {
    font-size: var(--text-4xl);
    color: var(--color-dark);
    margin-bottom: 12px;
}

.error-message {
    color: var(--color-text-light);
    font-size: var(--text-lg);
    line-height: 1.6;
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Testimonial === */
/* === Testimonial Carousel === */
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    min-height: 180px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide blockquote {
    font-size: var(--text-2xl);
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 20px;
    position: relative;
    padding: 0 40px;
}

.testimonial-slide blockquote::before {
    content: "\201C";
    font-size: 70px;
    color: var(--color-green);
    position: absolute;
    top: -15px;
    left: 0;
    line-height: 1;
}

.testimonial-slide blockquote::after {
    content: "\201D";
    font-size: 70px;
    color: var(--color-green);
    position: absolute;
    bottom: -30px;
    right: 0;
    line-height: 1;
}

.testimonial-slide cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-green);
    font-size: var(--text-lg);
}

.testimonial-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-green);
    border-color: var(--color-green);
}

.carousel-dot:hover {
    border-color: var(--color-green);
}

.carousel-dot:focus-visible {
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
}

.testimonial-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Google Rating Badge */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    padding: 8px 18px;
    margin-top: 15px;
    font-size: var(--text-base);
    color: var(--color-text);
    transition: box-shadow 0.2s, border-color 0.2s;
    text-decoration: none;
}

.google-rating-badge:hover {
    box-shadow: var(--shadow);
    border-color: #4285F4;
}

.google-g {
    flex-shrink: 0;
}

.google-rating-score {
    font-weight: 700;
    font-size: var(--text-lg);
}

.google-rating-stars {
    color: #FBBC05;
    font-size: var(--text-lg);
    letter-spacing: 1px;
}

.google-rating-count {
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

/* Review Stars */
.review-stars {
    color: #FBBC05;
    font-size: var(--text-2xl);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* Google Reviews Link */
.google-reviews-link {
    display: inline-block;
    color: #1a73e8;
    font-weight: 600;
    font-size: var(--text-md);
    margin-bottom: 20px;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.google-reviews-link:hover {
    color: #1a73e8;
    text-decoration: underline;
}

.testimonial-cta p {
    font-size: var(--text-xl);
    color: var(--color-text);
    margin-bottom: 15px;
    font-weight: 500;
}

/* === Info List (Book Online page) === */
.info-list {
    max-width: 700px;
    margin: 0 auto 40px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 12px 0;
}

.info-item-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--color-green);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    font-weight: 700;
    margin-top: 2px;
}

.info-item p {
    font-size: var(--text-lg);
    color: var(--color-text);
}

/* === FAQ Accordion === */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-heading {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 40px 20px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    position: relative;
    font-family: inherit;
    line-height: 1.4;
}

.faq-question:focus-visible {
    outline: 2px solid var(--color-green);
    outline-offset: -2px;
    border-radius: var(--radius);
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--text-4xl);
    color: var(--color-green);
    font-weight: 400;
    transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
    content: "\2212";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--color-text-light);
    font-size: var(--text-md);
    line-height: 1.7;
}

/* === Contact Page === */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: var(--text-2xl);
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: var(--text-lg);
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--color-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.contact-detail a {
    color: var(--color-green);
    font-weight: 500;
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #1877F2;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    transition: all 0.2s;
}

.social-link:hover {
    background: #166FE5;
    transform: translateY(-1px);
}

/* === Contact Form === */
.contact-form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-text);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: var(--text-md);
    color: var(--color-text);
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.contact-form input:focus:not(:focus-visible),
.contact-form textarea:focus:not(:focus-visible) {
    outline: none;
}

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

.contact-form .btn {
    width: 100%;
    margin-top: 5px;
}

.contact-form-error {
    margin-top: 15px;
}

.contact-form-error p {
    color: var(--color-error);
    padding: 12px 15px;
    background: #fde8e8;
    border-radius: var(--radius);
}

.contact-form-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
}

.contact-form-success svg {
    color: var(--color-success);
    margin-bottom: 15px;
}

.contact-form-success h3 {
    color: var(--color-green-accessible);
}

.contact-cta {
    text-align: center;
    padding: 40px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
}

.contact-cta h3 {
    font-size: var(--text-3xl);
    margin-bottom: 8px;
}

.contact-cta p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* === Experience Banner === */
.experience-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 850px;
    margin: 0 auto;
}

.experience-badge {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--color-dark);
    border: 3px solid var(--color-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.experience-years {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.experience-years-label {
    font-size: var(--text-sm);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.experience-content h2 {
    font-size: var(--text-4xl);
    color: var(--color-white);
    margin-bottom: 12px;
}

.experience-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.7;
}

.experience-stats {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.experience-stat {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    flex: 1;
}

.experience-stat strong {
    display: block;
    font-size: var(--text-6xl);
    font-weight: 800;
    color: var(--color-white);
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 4px;
}

.experience-stat span {
    display: block;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .experience-banner {
        flex-direction: column;
        text-align: center;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
    }

    .experience-years {
        font-size: 34px;
    }

    .experience-content h2 {
        font-size: var(--text-2xl);
    }

    .experience-stats {
        flex-direction: row;
        gap: 8px;
    }

    .experience-stat strong {
        font-size: var(--text-4xl);
    }
}

/* === Stats Counter === */
.stats-section {
    background: linear-gradient(135deg, #2d2d3a 0%, #3d3d4a 50%, #2d2d3a 100%);
    padding: 50px 20px;
}

.stats-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-green);
    line-height: 1.1;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* === Trust Badges === */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    border-top: 4px solid var(--color-green);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    background: linear-gradient(135deg, var(--color-green-light), var(--color-white));
    border-radius: 50%;
    border: 2px solid var(--color-green);
}

.trust-card h3 {
    font-size: var(--text-xl);
    margin-bottom: 8px;
}

.trust-card p {
    color: var(--color-text-light);
    font-size: var(--text-base);
    line-height: 1.6;
}

/* === CTA Banner === */
.cta-banner {
    background: linear-gradient(135deg, #2d2d3a 0%, #3d3d4a 50%, #2d2d3a 100%);
    color: var(--color-white);
    text-align: center;
    padding: 60px 20px;
}

.cta-banner h2 {
    font-size: var(--text-5xl);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.cta-banner p {
    font-size: var(--text-xl);
    opacity: 0.9;
    margin-bottom: 25px;
}

/* === Back to Top Button === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--color-green);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background 0.2s;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-green-hover);
}

/* === Footer === */
.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 20px 20px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 15px;
    display: inline-block;
}

.footer-brand p {
    font-size: var(--text-base);
    line-height: 1.7;
    opacity: 0.8;
}

.footer-heading {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    padding: 5px 0;
    font-size: var(--text-base);
    opacity: 0.8;
    transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-green);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: var(--text-base);
}

.footer-contact-item svg {
    flex-shrink: 0;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    opacity: 0.8;
}

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

.footer-social a {
    width: 32px;
    height: 32px;
    background: #1877F2;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    color: var(--color-white);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: #166FE5;
    transform: translateY(-1px);
}

/* === Booking Form (from plugin, adapted) === */
.booking-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Progress Bar */
.booking-progress {
    margin-bottom: 30px;
}

.progress-bar {
    height: 4px;
    background: var(--color-border);
    border-radius: 2px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-green);
    transition: width 0.3s ease;
    width: 25%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.progress-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-border);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-base);
    transition: all 0.3s;
}

.progress-step.active .progress-step-num,
.progress-step.completed .progress-step-num {
    background: var(--color-green);
    color: var(--color-white);
}

.progress-step-label {
    font-size: 11px;
    color: var(--color-text-light);
    margin-top: 5px;
}

.progress-step.active .progress-step-label {
    color: var(--color-green);
    font-weight: 600;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

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

.form-step h2 {
    font-size: var(--text-4xl);
    margin: 0 0 8px;
}

.step-description {
    color: var(--color-text-light);
    margin: 0 0 25px;
}

.form-section-title {
    font-size: var(--text-base);
    font-weight: 600;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

.form-section-title:first-of-type {
    margin-top: 0;
}

/* Form Fields */
.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: var(--text-base);
}

.field .required {
    color: var(--color-error);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: var(--text-lg);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--color-white);
    color: var(--color-text);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px var(--color-green-light);
}

.field input:focus:not(:focus-visible),
.field select:focus:not(:focus-visible),
.field textarea:focus:not(:focus-visible) {
    outline: none;
}

.field input[readonly] {
    background: var(--color-bg);
    color: var(--color-text-light);
}

.field input.error,
.field select.error {
    border-color: var(--color-error);
}

.field-note {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-top: 6px;
}

.field-error {
    color: var(--color-error);
    font-size: var(--text-sm);
    margin: 6px 0 0;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.field-row-3 {
    grid-template-columns: 2fr 1fr 1.5fr;
}

.field-small input {
    text-align: center;
}

/* Service Options */
.service-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.service-fieldset legend {
    font-weight: 600;
    font-size: var(--text-sm);
    margin-bottom: 6px;
}

.service-options {
    display: grid;
    gap: 12px;
}

.service-option {
    display: block;
    cursor: pointer;
}

.service-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    transition: all 0.2s;
    position: relative;
}

.service-option input:checked + .service-card {
    border-color: var(--color-green);
    background: var(--color-green-light);
}

.service-option:hover .service-card {
    border-color: var(--color-green);
}

.service-option input:focus-visible + .service-card {
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
}

.service-name {
    font-weight: 500;
}

.service-price {
    font-weight: 600;
    color: var(--color-green-accessible);
}

.service-price small {
    font-weight: 400;
    color: var(--color-text-light);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
}

/* Extras */
.extras-section {
    margin: 25px 0;
    padding-top: 5px;
}

.one-time-note {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 10px;
    display: none;
}

.extra-option {
    display: block;
    cursor: pointer;
}

.extra-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.extra-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.extra-option input:checked + .extra-card {
    border-color: var(--color-green);
    background: var(--color-green-light);
}

.extra-option:hover .extra-card {
    border-color: var(--color-green);
}

.extra-option input:focus-visible + .extra-card {
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
}

.extra-option.disabled .extra-card {
    opacity: 0.5;
    cursor: not-allowed;
}

.extra-icon {
    font-size: var(--text-4xl);
}

.extra-content {
    flex: 1;
}

.extra-name {
    display: block;
    font-weight: 500;
}

.extra-description {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.extra-price {
    font-weight: 600;
    color: var(--color-green-accessible);
    white-space: nowrap;
}

.extra-price small {
    font-weight: 400;
    color: var(--color-text-light);
}

/* Stripe Card Element */
.card-input {
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.card-input.StripeElement--focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px var(--color-green-light);
}

.card-input.StripeElement--invalid {
    border-color: var(--color-error);
}

#card-errors {
    color: var(--color-error);
    font-size: var(--text-sm);
    margin-top: 8px;
    min-height: 20px;
}

.secure-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
    background: var(--color-bg);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-top: 15px;
}

.secure-notice svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-green);
}

/* Review Section */
.review-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.review-section {
    padding: 15px 20px;
    background: var(--color-bg);
    border-radius: var(--radius);
}

.review-section h3 {
    font-size: var(--text-lg);
    margin: 0 0 10px;
}

.review-content {
    font-size: var(--text-md);
}

/* Price Summary */
.price-summary {
    background: var(--color-bg);
    border-radius: var(--radius);
    padding: 20px;
    margin: 25px 0;
}

.price-summary h3 {
    font-size: var(--text-lg);
    margin: 0 0 15px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: var(--text-base);
}

.price-line small {
    color: var(--color-text-light);
}

.price-subtotal {
    border-top: 1px solid var(--color-border);
    margin-top: 8px;
    padding-top: 12px;
}

.price-total {
    font-weight: 600;
    font-size: var(--text-lg);
    border-top: 1px solid var(--color-border);
    margin-top: 8px;
    padding-top: 12px;
}

.price-total span:last-child {
    color: var(--color-green);
}

.price-initial {
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

/* Form Nav */
.form-nav {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.btn-back {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: var(--text-lg);
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.btn-back:hover {
    background: var(--color-bg);
}

.btn-next,
.btn-submit {
    background: var(--color-green);
    color: var(--color-white);
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: var(--text-lg);
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    max-width: 200px;
    margin-left: auto;
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--color-green-hover);
}

/* Loading */
.booking-loading {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-green);
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success */
.booking-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--color-success);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.booking-success h2 {
    color: var(--color-green-accessible);
    margin-bottom: 10px;
}

/* Error */
.booking-error {
    margin-top: 15px;
    display: none;
}

.booking-error p {
    color: var(--color-error);
    padding: 12px 15px;
    background: #fde8e8;
    border-radius: var(--radius);
}

/* === Legal Content Pages === */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: var(--text-3xl);
    margin: 35px 0 12px;
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
    text-transform: none;
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 17px;
    margin: 20px 0 8px;
    text-transform: none;
}

.legal-content p {
    font-size: var(--text-md);
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 12px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
}

.legal-content ul li {
    font-size: var(--text-md);
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--color-green);
    font-weight: 500;
}

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

.legal-updated {
    font-size: var(--text-base);
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 25px;
}

/* === Responsive: Header === */
@media (max-width: 1600px) {
    .header-phone {
        display: none !important;
    }

    .header-price {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        display: none !important;
    }

    .mobile-toggle {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: var(--text-6xl);
    }

    .logo-img {
        height: 90px;
    }

    .logo-ninja-left {
        margin-right: -30px;
    }

    .header-inner {
        padding: 0 20px;
    }
}

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

    .logo-img {
        height: 70px;
    }

    .logo-ninja-left {
        margin-right: -22px;
    }
}

/* === Responsive: Content === */

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

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

    .stat-number {
        font-size: var(--text-6xl);
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-image h1 {
        font-size: 34px;
    }

    .hero-image {
        min-height: 400px;
        padding: 120px 20px 80px;
    }

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

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

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

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

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Booking form responsive */
    .progress-step-label {
        display: none;
    }

    .progress-step-num {
        width: 28px;
        height: 28px;
        font-size: var(--text-sm);
    }

    .field-row,
    .field-row-3 {
        grid-template-columns: 1fr;
    }

    .form-nav {
        flex-direction: column-reverse;
    }

    .btn-next,
    .btn-submit,
    .btn-back {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }
}
