/*
Theme Name: Suzis Suds
Theme URI: https://www.suzis-suds.co.uk
Author: Suzi's Suds
Description: Custom single-page theme for Suzi's Suds professional cleaning services
Version: 1.0
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Franklin Gothic Medium', 'Franklin Gothic', 'ITC Franklin Gothic', Arial, sans-serif;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

section {
    scroll-margin-top: 70px;
}

/* ===================== STICKY NAV ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #1565c0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
}

.site-logo {
    color: #fdd835;
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Franklin Gothic Medium', 'Franklin Gothic', 'ITC Franklin Gothic', Arial, sans-serif;
    font-style: italic;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.site-logo span {
    color: #ffffff;
    font-weight: 400;
    font-size: 0.75rem;
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

.site-nav ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.2s;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

.site-nav ul li a:hover {
    color: #fdd835;
    border-bottom-color: #fdd835;
}

.nav-cta a {
    background: #fdd835 !important;
    color: #0d3b6e !important;
    padding: 9px 22px !important;
    border-radius: 50px !important;
    border-bottom: none !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta a:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(253, 216, 53, 0.4) !important;
    color: #0d3b6e !important;
}

/* Hamburger (mobile) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===================== HERO ===================== */
#home {
    min-height: calc(100vh - 70px);
    background: url('L2.png') center center / cover no-repeat;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding: 75px 40px 80px;
}

/* Decorative bubbles */
#home::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

#home::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.bubble-1 { width: 80px; height: 80px; top: 15%; left: 8%; }
.bubble-2 { width: 50px; height: 50px; top: 30%; left: 20%; }
.bubble-3 { width: 120px; height: 120px; top: 60%; left: 5%; }
.bubble-4 { width: 60px; height: 60px; top: 80%; left: 25%; }
.bubble-5 { width: 40px; height: 40px; top: 10%; right: 30%; }
.bubble-6 { width: 90px; height: 90px; top: 70%; right: 15%; }

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-text .eyebrow {
    display: inline-block;
    background: #ffffff;
    color: #0d3b6e;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.hero-text h1 {
    font-size: 3.6rem;
    color: #ffffff;
    font-weight: 900;
    font-family: 'Franklin Gothic Medium', 'Franklin Gothic', 'ITC Franklin Gothic', Arial, sans-serif;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-text h1 .brand {
    color: #fdd835;
    display: block;
}

.hero-text .tagline {
    color: #ffffff;
    font-weight: 900;
    font-family: 'Franklin Gothic Medium', 'Franklin Gothic', 'ITC Franklin Gothic', Arial, sans-serif;
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 28px;
    margin-top: 10px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.badge {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #0d3b6e;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    background: #fdd835;
    color: #0d3b6e;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 216, 53, 0.45);
    color: #0d3b6e;
}

.btn-secondary {
    background: #ffffff;
    color: #0d3b6e;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #f0f0f0;
    border-color: #0d3b6e;
    color: #0d3b6e;
}

.hero-phone {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.hero-phone a {
    color: #fdd835;
    font-weight: 800;
    font-size: 1.5rem;
    transition: opacity 0.2s;
}

.hero-phone a:hover {
    opacity: 0.85;
}

/* Hero logo badge */
.hero-badge {
    flex: 0 0 auto;
    width: 540px;
    height: 540px;
    position: relative;
}

/* ===================== SECTION COMMON ===================== */
.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-header h2 {
    font-size: 2.4rem;
    color: #0d3b6e;
    font-weight: 900;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

.section-header .rule {
    width: 55px;
    height: 4px;
    background: #fdd835;
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ===================== SERVICES ===================== */
#services {
    padding: 90px 40px;
    background: #f5f7fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
    max-width: 1140px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    border-top: 4px solid #1565c0;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(21, 101, 192, 0.14);
}

.service-card .s-icon {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 14px;
    line-height: 1;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #0d3b6e;
    line-height: 1.3;
}

/* ===================== PROMO BANNER ===================== */
#promo {
    background: #fdd835;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#promo::before, #promo::after {
    content: '✦';
    position: absolute;
    font-size: 120px;
    color: rgba(13, 59, 110, 0.06);
    top: -20px;
}

#promo::before { left: 40px; }
#promo::after { right: 40px; top: auto; bottom: -30px; }

.promo-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promo-inner .promo-flag {
    display: inline-block;
    background: #0d3b6e;
    color: #fdd835;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.promo-inner h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0d3b6e;
    margin-bottom: 8px;
    line-height: 1.1;
}

.promo-inner p {
    font-size: 1.1rem;
    color: #0d3b6e;
    margin-bottom: 25px;
    opacity: 0.85;
}

.promo-code-box {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(13, 59, 110, 0.25);
    margin-bottom: 20px;
}

.promo-label {
    background: #0d3b6e;
    color: rgba(255,255,255,0.7);
    padding: 14px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-code {
    background: #0a2a4e;
    color: #fdd835;
    padding: 14px 24px;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
}

.promo-inner .promo-note {
    font-size: 0.9rem;
    color: #0d3b6e;
    opacity: 0.65;
    display: block;
}

/* ===================== RESIDENTIAL ===================== */
#residential {
    padding: 90px 40px;
    background: #f5f7fa;
}

.residential-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.residential-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.residential-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.res-highlight {
    background: #fff;
    border-radius: 16px;
    padding: 24px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #1565c0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.res-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(21, 101, 192, 0.12);
}

.res-highlight .res-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.res-highlight h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #0d3b6e;
    margin-bottom: 5px;
}

.res-highlight p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 960px) {
    .residential-highlights {
        grid-template-columns: 1fr;
    }
}

/* ===================== ABOUT ===================== */
#about {
    padding: 90px 40px;
    background: #fff;
}

.about-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.4rem;
    color: #0d3b6e;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.2;
}

.about-text > p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.trust-item .t-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #e8f1fb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.trust-item .t-text h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0d3b6e;
    margin-bottom: 3px;
}

.trust-item .t-text p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.4;
}

.about-visual {
    flex: 0 0 420px;
    background: url('L2.png') center center / cover no-repeat;
    border-radius: 24px;
    padding: 20px 40px 45px;
    color: #1a1a1a;
    text-align: center;
    box-shadow: 0 20px 50px rgba(13, 59, 110, 0.3);
    border: 3px solid #0d3b6e;
}

.about-visual .av-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 2px;
}

.about-visual h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.about-visual p {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-stat-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    padding: 20px 25px;
    border-top: 1px solid rgba(0,0,0,0.15);
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #0d3b6e;
}

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

.about-stat .stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #0d3b6e;
    line-height: 1;
}

.about-stat .stat-label {
    font-size: 0.68rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ===================== CONTACT ===================== */
#contact {
    padding: 90px 40px;
    background: url('L2.png') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

#contact::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.contact-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-inner .section-header h2 {
    color: #ffffff;
}

.contact-inner .section-header p {
    color: #ffffff;
}

.contact-inner .section-header .rule {
    background: #fdd835;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin: 0 auto 40px;
    max-width: 600px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 32px 22px;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-4px);
}

.contact-card .cc-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 14px;
}

.contact-card h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fdd835;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-card a,
.contact-card p {
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.contact-card a:hover {
    color: #fdd835;
}

.contact-cta {
    text-align: center;
    background: rgba(253, 216, 53, 0.1);
    border: 1px solid rgba(253, 216, 53, 0.25);
    border-radius: 18px;
    padding: 35px;
}

.contact-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 18px;
    font-size: 1.05rem;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: #1565c0;
    padding: 25px 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s;
}

.site-footer a:hover {
    color: #fdd835;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 { font-size: 2.8rem; }

    .hero-badges { justify-content: center; }
    .hero-cta { justify-content: center; }
    .hero-phone { justify-content: center; }

    .hero-badge {
        width: 420px;
        height: 420px;
    }

    .about-inner {
        flex-direction: column;
    }

    .about-visual {
        flex: none;
        width: 100%;
    }

}

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

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #0d3b6e;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .site-nav.open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 5px;
    }

    .site-nav ul li a {
        display: block;
        padding: 10px 5px;
        border-bottom: none;
        font-size: 1rem;
    }

    .nav-cta a {
        display: inline-block;
        margin-top: 8px;
    }

    .hero-text h1 { font-size: 2.2rem; }

    #home {
        padding: 25px 20px 60px;
    }

    #services, #residential, #how-it-works, #results, #about, #contact, #promo {
        padding: 40px 20px;
    }

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

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

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.9rem; }
    .section-header h2 { font-size: 1.9rem; }
    .promo-inner h2 { font-size: 1.9rem; }
    .about-text h2 { font-size: 1.9rem; }

    .about-stat-row {
        gap: 10px;
        padding: 14px 10px;
    }

    .about-stat .stat-num {
        font-size: 1.2rem;
    }

    .about-stat .stat-label {
        font-size: 0.68rem;
    }
}

/* ===================== MORE SERVICES PILLS ===================== */
.more-services {
    max-width: 1140px;
    margin: 50px auto 0;
    text-align: center;
    padding: 0 40px;
}

.more-services-label {
    font-size: 0.82rem;
    font-weight: 800;
    color: #0d3b6e;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    opacity: 0.7;
}

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

.service-pill {
    background: #fff;
    border: 2px solid #1565c0;
    color: #0d3b6e;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.service-pill:hover {
    background: #0d3b6e;
    color: #fff;
    border-color: #0d3b6e;
}

/* ===================== HOW IT WORKS ===================== */
#how-it-works {
    padding: 90px 40px;
    background: #fff;
}

.steps-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.step-num {
    width: 54px;
    height: 54px;
    background: #fdd835;
    color: #0d3b6e;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 16px rgba(253, 216, 53, 0.45);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0d3b6e;
    margin-bottom: 8px;
}

.step p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.6;
}

.step-connector {
    flex: 0 0 50px;
    height: 2px;
    background: linear-gradient(90deg, #fdd835, #1565c0);
    margin-top: 27px;
    align-self: flex-start;
    border-radius: 2px;
}

/* ===================== CONTACT FORM ===================== */
.contact-form-wrap {
    margin-top: 50px;
    background: #fff;
    border: 3px solid #0d3b6e;
    border-radius: 24px;
    padding: 45px 50px;
}

.contact-form-wrap h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0d3b6e;
    margin-bottom: 6px;
}

.contact-form-wrap .form-intro {
    color: #555;
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.form-success {
    background: rgba(253, 216, 53, 0.15);
    border: 1px solid rgba(253, 216, 53, 0.4);
    border-radius: 12px;
    padding: 18px 22px;
    color: #fdd835;
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group > label {
    font-size: 0.78rem;
    font-weight: 800;
    color: #0d3b6e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    background: #f5f7fa;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 13px 16px;
    color: #1a1a1a;
    font-family: 'Franklin Gothic Medium', 'Franklin Gothic', 'ITC Franklin Gothic', Arial, sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1565c0;
    background: #e8f1fb;
}

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

.checkbox-group {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #fdd835;
    cursor: pointer;
    flex-shrink: 0;
}

.contact-form .btn-primary {
    margin-top: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Franklin Gothic Medium', 'Franklin Gothic', 'ITC Franklin Gothic', Arial, sans-serif;
    font-size: 1rem;
}

/* ===================== BEFORE & AFTER ===================== */
#results {
    padding: 90px 40px;
    background: #f5f7fa;
}

.ba-slideshow {
    max-width: 700px;
    margin: 0 auto;
}

.ba-caption {
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    color: #0d3b6e;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-style: italic;
}

.ba-pair {
    display: none;
}
.ba-pair.active {
    display: block;
}

.ba-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 3px solid #0d3b6e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(13, 59, 110, 0.18);
}

.ba-img-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.ba-img-wrap:first-child {
    border-right: 3px solid #0d3b6e;
}

.ba-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-label {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    pointer-events: none;
}

.ba-label-before {
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
}

.ba-label-after {
    background: #fdd835;
    color: #0d3b6e;
}

@keyframes ba-fade-out {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-6px); }
}

@keyframes ba-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ba-fade-out {
    animation: ba-fade-out 0.25s ease forwards;
}

.ba-fade-in {
    animation: ba-fade-in 0.35s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
    .ba-fade-out, .ba-fade-in { animation: none; }
}

@media (max-width: 600px) {
    .ba-compare {
        grid-template-columns: 1fr;
    }
    .ba-img-wrap:first-child {
        border-right: none;
        border-bottom: 3px solid #0d3b6e;
    }
}

.ba-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 28px;
}

.ba-prev,
.ba-next {
    background: #1565c0;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 1.8rem;
    font-style: normal;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}

.ba-prev:hover,
.ba-next:hover {
    background: #0d3b6e;
    transform: scale(1.08);
}

.ba-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ba-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #1565c0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.ba-dot.active {
    background: #1565c0;
    transform: scale(1.2);
}

/* ===================== ANIMATIONS ===================== */

/* Hero load-in */
@keyframes suds-rise {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Bubble gentle bob */
@keyframes suds-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

.hero-text .eyebrow { animation: suds-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both; }
.hero-text h1        { animation: suds-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both; }
.hero-text .tagline  { animation: suds-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both; }
.hero-badges         { animation: suds-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.30s both; }
.hero-cta            { animation: suds-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both; }
.hero-badge          { animation: suds-rise 0.80s cubic-bezier(0.22, 1, 0.36, 1) 0.20s both; }

.bubble-1 { animation: suds-float 6.0s ease-in-out 0.0s infinite; }
.bubble-2 { animation: suds-float 4.5s ease-in-out 1.0s infinite; }
.bubble-3 { animation: suds-float 7.0s ease-in-out 0.5s infinite; }
.bubble-4 { animation: suds-float 5.0s ease-in-out 2.0s infinite; }
.bubble-5 { animation: suds-float 5.5s ease-in-out 0.3s infinite; }
.bubble-6 { animation: suds-float 6.5s ease-in-out 1.5s infinite; }

/* Scroll reveal base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal[data-delay="1"] { transition-delay: 0.10s; }
.reveal[data-delay="2"] { transition-delay: 0.20s; }
.reveal[data-delay="3"] { transition-delay: 0.30s; }
.reveal[data-delay="4"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .hero-text .eyebrow, .hero-text h1, .hero-text .tagline,
    .hero-badges, .hero-cta, .hero-badge, .bubble {
        animation: none;
    }
}

/* ===================== RESPONSIVE — NEW SECTIONS ===================== */
@media (max-width: 768px) {
    .more-services {
        padding: 0 20px;
    }

    .steps-inner {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step {
        width: 100%;
        max-width: 340px;
        padding: 0 10px 30px;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        flex: none;
        background: linear-gradient(180deg, #fdd835, #1565c0);
        margin: 0 auto;
        align-self: auto;
    }

    .contact-form-wrap {
        padding: 30px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-stat-row {
        gap: 16px;
        padding: 16px 14px;
    }

    .about-stat .stat-num {
        font-size: 1.5rem;
    }
}
