﻿/* Bookkeeping Sales Page — /wwwroot/css/Sales/Bookkeeping.css */

/* ===== COLOR VARIABLES (Match Client Branding) ===== */
:root {
    --bk-primary: #119da4; /* Teal */
    --bk-accent: #ffbc11; /* Yellow */
    --bk-dark: #163766; /* Deep Blue */
    --bk-bg: #fff;
    --bk-bg-alt: #f7fafc;
    --bk-btn: #ffd600;
    --bk-btn-hover: #119da4;
    --bk-text: #163766;
    --bk-muted: #64919a;
    --bk-card: #fff;
    --bk-shadow: 0 8px 24px rgba(22,55,102,0.09), 0 1.5px 4px rgba(22,55,102,0.07);
    --bk-radius: 22px;
    --bk-radius-sm: 12px;
    --bk-nav-height: 68px;
    --bk-font-main: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    --bk-font-heading: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

/* ===== BASE ===== */
html, body {
    padding: 0;
    margin: 0;
    background: var(--bk-bg);
    color: var(--bk-text);
    font-family: var(--bk-font-main);
    line-height: 1.65;
    font-size: 18px;
}

a {
    color: var(--bk-primary);
    text-decoration: none;
    transition: color 0.15s;
}

    a:hover {
        color: var(--bk-accent);
    }

h1, h2, h3, h4, h5 {
    font-family: var(--bk-font-heading);
    margin-top: 0;
    font-weight: 700;
    color: var(--bk-dark);
    letter-spacing: -0.5px;
}

h1 {
    font-size: 2.7rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.25rem;
    color: var(--bk-primary);
}

h4 {
    font-size: 1.15rem;
}

strong, .highlight {
    color: var(--bk-accent);
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--bk-radius-sm);
}

/* ===== HEADER & NAV ===== */
.bk-header {
    background: var(--bk-bg);
    box-shadow: 0 3px 16px rgba(22,55,102,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--bk-nav-height);
    width: 100%;
}

.bk-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: var(--bk-nav-height);
    padding: 0 36px;
}

.bk-logo {
    height: 54px;
    width: auto;
    margin-right: 24px;
}

.bk-nav {
    display: flex;
    gap: 30px;
}

    .bk-nav a {
        font-weight: 600;
        font-size: 1rem;
        color: var(--bk-dark);
        padding: 6px 0;
        border-bottom: 2px solid transparent;
        transition: border-color 0.15s, color 0.15s;
    }

        .bk-nav a:hover, .bk-nav a.active {
            border-color: var(--bk-accent);
            color: var(--bk-primary);
        }

/* ===== HERO SECTION ===== */
.bk-hero {
    background: linear-gradient(90deg, #e3f7fa 0%, #f7fafc 100%);
    padding: 72px 0 48px 0;
    min-height: 430px;
    display: flex;
    align-items: center;
    border-bottom: 7px solid var(--bk-primary);
}

.bk-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.bk-hero-text {
    flex: 1 1 400px;
}

    .bk-hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 14px;
        color: var(--bk-dark);
        letter-spacing: -1.2px;
    }

        .bk-hero-text h1 strong,
        .bk-hero-text .highlight {
            color: var(--bk-accent);
        }

    .bk-hero-text p {
        font-size: 1.25rem;
        color: var(--bk-muted);
        margin-bottom: 30px;
    }

.bk-hero-img {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 280px;
    max-width: 500px;
    background: #e7f4f9;
    border-radius: var(--bk-radius);
    box-shadow: 0 6px 30px rgba(22,55,102,0.08);
}

/* ===== BUTTONS (Unified, Consistent, Supportable) ===== */
.bk-btn,
.bk-btn-main {
    display: inline-block;
    font-family: var(--bk-font-main);
    font-weight: 700;
    font-size: 1.03rem;
    padding: 10px 28px;
    line-height: 1.16;
    border: none;
    border-radius: 16px;
    box-shadow: var(--bk-shadow);
    cursor: pointer;
    background: var(--bk-accent);
    color: var(--bk-dark);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    transition: background 0.18s, color 0.13s, box-shadow 0.13s;
    min-width: 130px;
    max-width: 100%;
    margin: 10px 0 0 0;
}

    .bk-btn-main,
    .bk-btn-main:visited {
        background: linear-gradient(93deg, var(--bk-accent) 80%, #ffd600 100%);
        color: var(--bk-dark);
        box-shadow: 0 4px 12px rgba(255,188,17,0.07);
    }

        .bk-btn-main:hover,
        .bk-btn:hover {
            background: var(--bk-btn-hover);
            color: #fff;
            box-shadow: 0 8px 24px rgba(17,157,164,0.10);
        }

/* BUTTONS inside PACKAGE TIERS: smaller, full-width, but crisp */
.bk-tier .bk-btn,
.bk-tier .bk-btn-main {
    display: block;
    width: 100%;
    min-width: 0;
    font-size: 0.99rem;
    padding: 9px 0;
    border-radius: 14px;
    margin: 10px 0 0 0;
}

/* BUTTONS inside GALLERY CTA */
.bk-gallery-cta .bk-btn,
.bk-gallery-cta .bk-btn-main {
    font-size: 1rem;
    padding: 10px 26px;
    border-radius: 15px;
    margin: 14px auto 0 auto;
    display: inline-block;
}

/* CONTACT FORM BUTTON */
.contact-button {
    width: 100%;
    display: block;
    font-size: 1.08rem;
    font-weight: 700;
    padding: 12px 0;
    border: none;
    border-radius: 14px;
    background: var(--bk-accent);
    color: var(--bk-dark);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-top: 14px;
    transition: background 0.15s, color 0.13s;
    box-shadow: 0 2px 8px rgba(255,188,17,0.10);
}

    .contact-button:hover {
        background: var(--bk-btn-hover);
        color: #fff;
    }

/* Remove any unwanted spacing between stacked buttons */
.bk-btn + .bk-btn,
.bk-btn-main + .bk-btn-main {
    margin-top: 8px;
}

/* ===== WHY US SECTION ===== */
.bk-whyus {
    background: var(--bk-bg-alt);
    padding: 72px 0 40px 0;
    border-bottom: 4px solid var(--bk-accent);
}

.bk-whyus-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.bk-whyus-grid {
    display: flex;
    gap: 28px;
    margin: 32px 0 18px 0;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.bk-whyus-item {
    flex: 1 1 260px;
    max-width: 320px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .bk-whyus-item img {
        width: 100%;
        min-width: 180px;
        max-width: 250px;
        border-radius: var(--bk-radius);
        object-fit: cover;
        box-shadow: 0 6px 16px rgba(17,157,164,0.08);
        margin-bottom: 18px;
    }

.bk-whyus-caption {
    color: var(--bk-dark);
    font-size: 1.07rem;
    margin-top: 0;
    font-weight: 500;
    background: #f9fafc;
    border-radius: var(--bk-radius-sm);
    padding: 10px 8px 7px 8px;
}

.bk-whyus-singleline {
    font-size: 1.13rem;
    color: var(--bk-muted);
    margin: 24px 0 0 0;
    text-align: center;
    font-style: italic;
    font-weight: 500;
}

@media (max-width: 900px) {
    .bk-whyus-grid {
        flex-direction: column;
        gap: 24px;
    }

    .bk-whyus-item {
        max-width: 100%;
    }
}

.bk-whyus-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 18px 0;
}

.bk-stat {
    font-size: 1.5rem;
    color: var(--bk-accent);
    font-weight: 700;
    margin-right: 18px;
}

.bk-whyus-copy {
    font-size: 1.15rem;
    color: var(--bk-muted);
    margin: 18px 0 10px 0;
}

.bk-whyus-about {
    color: var(--bk-dark);
    background: #e9f8fa;
    padding: 30px 28px;
    border-radius: var(--bk-radius);
    margin: 24px 0;
    font-size: 1.09rem;
    line-height: 1.72;
    box-shadow: var(--bk-shadow);
}

/* ===== About the Academy ===== */
.bk-aboutacademy {
    background: var(--bk-bg-alt);
    padding: 64px 0 56px 0;
    border-bottom: 4px solid var(--bk-accent);
}

.bk-aboutacademy-inner {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.bk-aboutacademy-img {
    flex: 0 0 340px;
    max-width: 360px;
    min-width: 240px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

    .bk-aboutacademy-img img {
        width: 100%;
        border-radius: var(--bk-radius);
        box-shadow: 0 8px 28px rgba(22,55,102,0.08);
    }

.bk-aboutacademy-text {
    flex: 1 1 380px;
    color: var(--bk-dark);
    font-size: 1.09rem;
    line-height: 1.7;
    background: #fff;
    border-radius: var(--bk-radius);
    padding: 38px 34px;
    box-shadow: 0 6px 32px rgba(17,157,164,0.04);
}

    .bk-aboutacademy-text h3 {
        font-size: 1.38rem;
        color: var(--bk-primary);
        margin-bottom: 10px;
        letter-spacing: 0.01em;
    }

    .bk-aboutacademy-text .highlight,
    .bk-aboutacademy-text strong {
        color: var(--bk-accent);
    }

@media (max-width: 900px) {
    .bk-aboutacademy-inner {
        flex-direction: column;
        gap: 30px;
    }

    .bk-aboutacademy-img,
    .bk-aboutacademy-text {
        max-width: 100%;
        padding: 22px 12px;
    }
}

/* ===== HOW IT WORKS SECTION (DRAMATIC) ===== */
.bk-howitworks.clean-cards {
    background: #fff;
    padding: 80px 0 64px 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

    .bk-howitworks.clean-cards h2 {
        color: #163766;
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 44px;
        letter-spacing: -1px;
    }

.bk-howitworks-cards {
    display: flex;
    gap: 36px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.bk-howit-card {
    position: relative;
    width: 255px;
    height: 400px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(22,55,102,0.18), 0 2px 10px rgba(255,188,17,0.09);
    display: flex;
    align-items: flex-end;
    transition: box-shadow 0.18s, transform 0.14s;
}

    .bk-howit-card:hover {
        box-shadow: 0 22px 56px rgba(17,157,164,0.16), 0 6px 18px rgba(255,188,17,0.10);
        transform: translateY(-8px) scale(1.032);
    }

.bk-howit-card-overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(20,34,53,0.28) 20%, rgba(16,27,45,0.79) 100%);
    z-index: 1;
}

.bk-howit-card-num {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #ffbc11;
    color: #163766;
    font-size: 1.09rem;
    font-weight: 800;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255,188,17,0.10);
    z-index: 2;
}

.bk-howit-card-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 30px 22px 38px 22px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 150px;
}

.bk-howit-card-title {
    font-size: 1.21rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
    text-align: left;
    letter-spacing: -0.4px;
    text-shadow: 0 2px 18px rgba(0,0,0,0.18);
}

/* ===== PACKAGES & SERVICES ===== */
/* ===== PACKAGES & SERVICES ===== */
/* ===== PACKAGES SECTION (World-Class, Aligned, Responsive) ===== */
.bk-packages {
    background: var(--bk-bg-alt);
    padding: 72px 0 40px 0;
    border-bottom: 4px solid var(--bk-primary);
}

    .bk-packages h2 {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 2rem;
        margin-bottom: 32px;
    }

.bk-packages-inner {
    max-width: 1120px;
    margin: 0 auto;
}

/* ===== Utility: Force All Cards in a Row to Equal Height ===== */
.bk-row-equal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    align-items: stretch;
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .bk-row-equal {
        flex-direction: column;
        gap: 22px;
    }
}

/* ===== Service Cards (Row 1) ===== */
.bk-services-grid {
    margin-bottom: 24px;
}

.bk-service {
    flex: 1 1 0;
    min-width: 260px;
    max-width: 320px;
    min-height: 310px;
    background: #fff;
    border-radius: var(--bk-radius);
    border: 2px solid var(--bk-primary);
    box-shadow: 0 8px 24px rgba(22,55,102,0.11), 0 1.5px 4px rgba(22,55,102,0.07);
    padding: 26px 18px 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    text-align: left;
    transition: box-shadow 0.18s, border-color 0.18s;
}

    .bk-service:hover {
        box-shadow: 0 14px 28px rgba(17,157,164,0.13);
        border-color: var(--bk-accent);
    }

    .bk-service img {
        margin: 0 auto 16px auto;
        height: 88px;
        object-fit: contain;
        border-radius: var(--bk-radius-sm);
    }

    .bk-service h3 {
        margin-bottom: 10px;
        color: var(--bk-primary);
        text-align: left;
    }

    .bk-service p {
        color: var(--bk-muted);
        font-size: 1.03rem;
        flex-grow: 1;
        text-align: left;
        margin-bottom: 0;
    }

    /* Centered, consistent button at bottom of Service Card */
    .bk-service .bk-btn,
    .bk-service .bk-btn-main {
        margin-top: auto;
        margin-bottom: 0;
        align-self: center;
        width: 90%;
        min-width: 120px;
        max-width: 200px;
        display: block;
        text-align: center;
    }

/* ===== Tier Cards (Row 2) ===== */
.bk-package-tiers {
    margin-bottom: 0;
}

.bk-tier {
    flex: 1 1 0;
    min-width: 260px;
    max-width: 320px;
    min-height: 390px;
    background: #fff;
    border-radius: var(--bk-radius);
    border: 2px solid var(--bk-primary);
    box-shadow: 0 8px 24px rgba(22,55,102,0.11), 0 1.5px 4px rgba(22,55,102,0.07);
    padding: 34px 26px 30px 26px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    text-align: left;
    margin: 0 8px 22px 8px;
    transition: border-color 0.16s, box-shadow 0.16s;
}

.bk-tier-featured {
    border-color: var(--bk-accent);
    box-shadow: 0 14px 32px rgba(255,188,17,0.10);
    z-index: 2;
}

.bk-tier h4 {
    font-size: 1.28rem;
    color: var(--bk-primary);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
    text-align: left;
}

.bk-tier ul {
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    font-size: 1.05rem;
    color: var(--bk-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

    .bk-tier ul li {
        margin: 0;
    }

/* Centered, consistent button at bottom of Tier Card */
.bk-tier .bk-btn,
.bk-tier .bk-btn-main {
    margin-top: auto;
    margin-bottom: 0;
    align-self: center;
    width: 90%;
    min-width: 120px;
    max-width: 200px;
    display: block;
    text-align: center;
}

/* Note at bottom */
.bk-packages-note {
    text-align: center;
    color: var(--bk-muted);
    margin-top: 20px;
    font-size: 1.03rem;
}



/* ===== GALLERY & TESTIMONIALS ===== */
.bk-gallery {
    background: #fff;
    padding: 72px 0 42px 0;
}
    .bk-gallery h2 {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 2rem;
        margin-bottom: 32px;
    }

.bk-testimonial {
    max-width: 730px;
    margin: 0 auto 34px auto;
    background: var(--bk-bg-alt);
    border-radius: var(--bk-radius-sm);
    box-shadow: 0 2px 10px rgba(22,55,102,0.07);
    padding: 32px 28px;
    font-size: 1.17rem;
    text-align: center;
}

    .bk-testimonial blockquote {
        quotes: "“" "”" "‘" "’";
        font-size: 1.18rem;
        font-style: italic;
        color: var(--bk-primary);
        margin: 0;
    }

    .bk-testimonial cite {
        display: block;
        color: var(--bk-accent);
        font-size: 1.07rem;
        margin-top: 14px;
    }

.bk-gallery-showcase {
    margin: 34px auto 16px auto;
    max-width: 1000px;
}

.bk-gallery-row {
    display: flex;
    gap: 18px;
    margin-bottom: 12px;
}

    .bk-gallery-row img {
        flex: 1 1 0;
        max-width: 33%;
        border-radius: var(--bk-radius-sm);
        box-shadow: 0 2px 8px rgba(22,55,102,0.07);
        min-width: 120px;
        object-fit: cover;
    }

.bk-gallery-cta {
    margin-top: 30px;
    text-align: center;
}

    .bk-gallery-cta p {
        font-size: 1.15rem;
        color: var(--bk-muted);
        margin-bottom: 16px;
    }

/* ===== DEMO SECTION ===== */
.bk-demo {
    background: var(--bk-bg-alt);
    padding: 72px 0 42px 0;
    text-align: center;
}

    .bk-demo h2 {
        margin-bottom: 18px;
    }

    .bk-demo p {
        color: var(--bk-primary);
        font-size: 1.08rem;
        margin-bottom: 32px;
    }

.bk-calendly-embed {
    margin: 0 auto;
    max-width: 540px;
    background: #fff;
    border-radius: var(--bk-radius-sm);
    box-shadow: var(--bk-shadow);
    overflow: hidden;
    min-height: 700px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #fff;
    padding: 62px 0 40px 0;
    text-align: center;
}

.contact-form-inner {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    background: #f8fafd;
    border-radius: var(--bk-radius);
    box-shadow: 0 2px 14px rgba(17,157,164,0.08);
    padding: 36px 28px 30px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title {
    font-size: 1.65rem;
    margin-bottom: 12px;
    color: var(--bk-dark);
}

.contact-body {
    color: var(--bk-muted);
    margin-bottom: 26px;
    font-size: 1.08rem;
    text-align: center;
}

.contact-success {
    background: #f7fdea;
    color: #758800;
    border: 1.5px solid #e9ff80;
    padding: 16px 0;
    border-radius: var(--bk-radius-sm);
    text-align: center;
    margin-bottom: 18px;
    font-size: 1.09rem;
    font-weight: 600;
}

.contact-error {
    background: #fdecea;
    color: #b13026;
    border: 1.5px solid #f5b8b4;
    padding: 12px 0;
    border-radius: var(--bk-radius-sm);
    text-align: center;
    margin-top: 10px;
    font-size: 1.06rem;
    font-weight: 600;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .contact-form-field label {
        font-size: 1.04rem;
        color: var(--bk-dark);
        font-weight: 500;
    }

    .contact-form-field input,
    .contact-form-field textarea {
        width: 100%;
        font-size: 1.01rem;
        padding: 11px 13px;
        border: 1.5px solid #c6d7ef;
        border-radius: var(--bk-radius-sm);
        background: #fff;
        font-family: inherit;
        transition: border 0.14s;
    }

        .contact-form-field input:focus,
        .contact-form-field textarea:focus {
            border-color: var(--bk-primary);
            outline: none;
        }

.contact-button {
    margin-top: 12px;
    padding: 13px 0;
    width: 100%;
    border: none;
    border-radius: var(--bk-radius-sm);
    background: var(--bk-accent);
    color: var(--bk-dark);
    font-weight: 600;
    font-size: 1.09rem;
    cursor: pointer;
    transition: background 0.16s, color 0.12s;
}

    .contact-button:hover {
        background: var(--bk-primary);
        color: #fff;
    }

/* ===== FOOTER ===== */
.bk-footer {
    background: var(--bk-dark);
    color: #fff;
    text-align: center;
    padding: 12px 0 12px 0;
}

.bk-footer-logo {
    height: 200px;
    max-width: 180vw;
    display: block;
    margin: 0 auto 6px auto; /* Reduce this value as needed */
    transition: height 0.1s;
}



.bk-footer-copy {
    font-size: 1.05rem;
    color: #fff;
    opacity: 0.88;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1050px) {
    .bk-header-inner,
    .bk-hero-content,
    .bk-whyus-inner,
    .bk-services-grid,
    .bk-package-tiers,
    .bk-howitworks,
    .bk-gallery-showcase {
        max-width: 96vw;
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 900px) {
    .bk-hero-content, .bk-whyus-grid, .bk-services-grid, .bk-package-tiers, .bk-gallery-row, .bk-howitworks-steps {
        flex-direction: column;
        gap: 22px;
        align-items: stretch;
    }

    .bk-header-inner {
        flex-direction: column;
        height: auto;
        padding: 16px 8px;
    }

    .bk-logo {
        margin: 0 auto 16px auto;
    }

    .bk-nav {
        flex-direction: row;
        gap: 18px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
}

@media (max-width: 650px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    .bk-hero,
    .bk-whyus,
    .bk-howitworks,
    .bk-packages,
    .bk-gallery,
    .bk-demo,
    .contact-section {
        padding: 32px 0 24px 0;
    }

    .bk-step,
    .bk-service,
    .bk-tier {
        min-width: 140px;
        padding: 18px 10px 14px 10px;
    }

    .bk-header-inner {
        padding: 10px 3vw;
    }

    .bk-nav {
        gap: 10px;
    }

    .bk-hero-content,
    .bk-whyus-inner {
        flex-direction: column;
    }
}
@media (max-width: 900px) {
    .bk-package-tiers {
        flex-direction: column;
        align-items: stretch;
    }

    .bk-tier {
        max-width: 100%;
        min-width: 0;
        margin: 0 0 22px 0;
    }
}

::-webkit-scrollbar {
    width: 10px;
    background: #f4f7fa;
}

::-webkit-scrollbar-thumb {
    background: #b3cad6;
    border-radius: 8px;
}
/* =================
   SALES/BOOKKEEPING.CSS MOBILE PATCH
   ================= */

/* 1. NAV: Convert to a hamburger menu below 800px */
@media (max-width: 800px) {
    .bk-header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: auto;
        padding: 12px 6vw;
        position: relative;
    }

    .bk-nav {
        display: none;
        flex-direction: column;
        gap: 12px;
        background: #fff;
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        z-index: 999;
        border-bottom: 2px solid var(--bk-accent);
        box-shadow: 0 8px 24px rgba(22,55,102,0.09);
        padding: 24px 0 18px 0;
        transition: max-height 0.22s cubic-bezier(.4,0,.2,1);
    }

        .bk-nav.show {
            display: flex;
        }

    .bk-header-inner .mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--bk-primary);
        cursor: pointer;
        position: absolute;
        right: 12px;
        top: 12px;
        z-index: 1000;
    }
}

/* Hide the mobile nav toggle button on desktop */
.mobile-nav-toggle {
    display: none;
}

/* 2. HERO: Stack everything, increase vertical padding, scale images */
@media (max-width: 700px) {
    .bk-hero {
        flex-direction: column;
        padding: 38px 0 18px 0;
        min-height: 320px;
    }

    .bk-hero-content {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .bk-hero-text h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .bk-hero-img {
        max-width: 300px;
        min-width: 0;
        margin: 0 auto;
        padding: 0;
        box-shadow: 0 4px 16px rgba(22,55,102,0.07);
    }
}

/* 3. CARDS, SERVICES, TIERS: Ensure single-column on XS screens, proper margin */
@media (max-width: 500px) {
    .bk-row-equal, .bk-package-tiers, .bk-services-grid, .bk-gallery-row, .bk-howitworks-cards {
        flex-direction: column !important;
        gap: 14px !important;
        align-items: stretch !important;
        margin-bottom: 0 !important;
    }

    .bk-service, .bk-tier, .bk-howit-card {
        min-width: 0;
        max-width: 98vw;
        width: 100%;
        margin: 0 auto 12px auto;
        padding: 14px 6vw !important;
        font-size: 0.99rem;
    }

    .bk-howit-card {
        height: 220px;
        min-height: 170px;
    }
}

/* 4. GALLERY: Stack images, shrink as needed, improve tap targets */
@media (max-width: 600px) {
    .bk-gallery-showcase {
        max-width: 99vw;
        margin: 8px auto 8px auto;
    }

    .bk-gallery-row {
        flex-direction: column;
        gap: 12px;
    }

        .bk-gallery-row img {
            max-width: 96vw;
            margin: 0 auto;
            min-width: 80px;
            height: auto;
        }
}

/* 5. FORM: Make contact input fields and button super-tap-friendly */
@media (max-width: 450px) {
    .contact-form-inner {
        padding: 18px 2vw 20px 2vw;
    }

    .contact-title {
        font-size: 1.23rem;
    }

    .contact-form-field input,
    .contact-form-field textarea {
        font-size: 0.99rem;
        padding: 9px 7px;
    }

    .contact-button {
        padding: 11px 0;
        font-size: 1.01rem;
    }
}

/* 6. ABOUT THE ACADEMY: Stack, shrink padding on smallest screens */
@media (max-width: 650px) {
    .bk-aboutacademy-inner {
        flex-direction: column;
        gap: 18px;
        padding: 0 2vw;
    }

    .bk-aboutacademy-img {
        max-width: 90vw;
        margin: 0 auto;
        padding: 0;
    }

    .bk-aboutacademy-text {
        padding: 14px 5vw !important;
        font-size: 1.01rem;
    }
}

/* 7. FOOTER: Shrink logo and spacing, avoid scroll-eating */
@media (max-width: 450px) {
    .bk-footer-logo {
        height: 58px !important;
        max-width: 75vw !important;
        margin: 0 auto 6px auto;
    }

    .bk-footer-copy {
        font-size: 0.92rem;
        padding: 2px 1vw;
    }
}

/* 8. Universal micro-adjustment for padding and text on micro screens */
@media (max-width: 350px) {
    html, body {
        font-size: 14px;
    }

    .bk-header-inner, .bk-hero-content, .bk-whyus-inner, .bk-packages-inner, .bk-gallery-showcase, .contact-form-inner {
        padding-left: 2vw !important;
        padding-right: 2vw !important;
    }
}

/* 9. Fixes for horizontal scroll caused by oversized images or containers */
body, html {
    overflow-x: hidden;
}
/* Center cards on mobile for 'Choose Your Package' section */
@media (max-width: 900px) {
    .bk-row-equal, .bk-package-tiers, .bk-services-grid {
        align-items: center !important;
    }

    .bk-service, .bk-tier {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
@media (max-width: 500px) {
    .bk-service, .bk-tier {
        max-width: 340px !important;
        width: 95vw !important;
    }
}
/* Center the "Why Your Online Presence Matters" heading on all screen sizes */
.bk-whyus-inner h2 {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
/* --- REMOVE YELLOW HORIZONTAL RULES (accent border-bottom) --- */

/* Remove yellow accent borders from the following sections */
.bk-whyus,
.bk-aboutacademy {
    border-bottom: none !important;
}
/* --- Responsive Contact/Calendly Flex --- */
.contact-flex-container {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-form-inner,
.contact-calendly-outer {
    flex: 1 1 380px;
    min-width: 300px;
    max-width: 440px;
    box-sizing: border-box;
}

.contact-calendly-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

    .contact-calendly-outer .calendly-inline-widget {
        width: 100% !important;
        min-width: 280px !important;
        max-width: 440px;
        height: 700px;
        border-radius: var(--bk-radius);
        box-shadow: 0 2px 14px rgba(17,157,164,0.08);
        background: #fff;
        margin-top: 0;
    }

/* Responsive stacking for mobile/tablet */
@media (max-width: 900px) {
    .contact-flex-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        max-width: 98vw;
        padding-left: 1vw;
        padding-right: 1vw;
    }

    .contact-form-inner,
    .contact-calendly-outer {
        max-width: 98vw;
        min-width: 0;
        width: 100%;
    }

        .contact-calendly-outer .calendly-inline-widget {
            min-width: 0 !important;
            max-width: 100vw !important;
            width: 100% !important;
        }
}

/* On smallest screens, tweak height for scrolling */
@media (max-width: 600px) {
    .contact-calendly-outer .calendly-inline-widget {
        height: 480px !important;
    }
}
.bk-samples-section {
    margin: 64px 0 32px 0;
    text-align: center;
}

.bk-samples-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--bk-dark);
    letter-spacing: 0.01em;
}

.bk-samplecard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto 24px auto;
    padding: 0 18px;
}

.bk-samplecard {
    background: var(--bk-card);
    border-radius: var(--bk-radius);
    box-shadow: var(--bk-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.18s, border-color 0.18s;
    border: 2px solid var(--bk-primary);
    min-width: 0;
    position: relative;
}

    .bk-samplecard:hover {
        box-shadow: 0 18px 48px 0 rgba(17,157,164,0.15), 0 4px 16px 0 rgba(22,55,102,0.14);
        border-color: var(--bk-accent);
        z-index: 2;
    }

.bk-samplecard-thumb {
    width: 100%;
    aspect-ratio: 3/2;
    background: var(--bk-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 2px solid var(--bk-primary);
}

    .bk-samplecard-thumb img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 0 0 var(--bk-radius-sm) var(--bk-radius-sm);
        box-shadow: none;
        transition: filter 0.18s;
    }

.bk-samplecard-content {
    padding: 20px 18px 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .bk-samplecard-content h3 {
        font-size: 1.14rem;
        font-weight: 700;
        color: var(--bk-primary);
        margin: 0 0 8px 0;
    }

    .bk-samplecard-content p {
        font-size: 1rem;
        color: var(--bk-dark);
        margin: 0 0 14px 0;
        line-height: 1.36;
    }

.bk-btn.bk-btn-sample {
    padding: 10px 26px;
    background: var(--bk-accent);
    color: var(--bk-dark);
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    margin-top: 5px;
    box-shadow: 0 2px 12px 0 rgba(255,188,17,0.07);
    transition: background 0.15s, color 0.13s;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

    .bk-btn.bk-btn-sample:hover {
        background: var(--bk-primary);
        color: #fff;
    }

@media (max-width: 900px) {
    .bk-samplecard-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .bk-samplecard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bk-samples-title {
        font-size: 1.35rem;
    }
}

