/* =============================================================
   BAKERY CLEANING SYDNEY PAGE
   Scoped only to .bakery-cleaning-page classes
   Uses existing KV Cleaning brand colours only
   Brand: #077CEA
   Dark Blue: #0563C1
   Accent: #FEE766
   Light Blue: #DCF0FF
   Dark: #0A0A1A
   White: #FFFFFF
   Text: #444
   ============================================================= */

/* -------------------------------------------------------------
   PAGE VARIABLES
------------------------------------------------------------- */
.bk-faq-question,
.bk-faq-answer {
    cursor: pointer;
}
.bakery-cleaning-page {
    --bk-blue: #077CEA;
    --bk-blue-dark: #0563C1;
    --bk-yellow: #FEE766;
    --bk-white: #FFFFFF;
    --bk-dark: #0A0A1A;
    --bk-lightblue: #DCF0FF;
    --bk-border: #d2e0eb;
    --bk-text: #444444;
    --bk-radius: 14px;
}

.bakery-cleaning-page h1,
.bakery-cleaning-page h2,
.bakery-cleaning-page h3 {
    margin-top: 0;
    color: var(--bk-dark);
}

.bakery-cleaning-page h2 {
    margin-bottom: 20px;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.bakery-cleaning-page h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.3;
}

.bakery-cleaning-page p {
    margin: 0 0 16px;
    color: var(--bk-text);
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.bakery-cleaning-page p:last-child {
    margin-bottom: 0;
}

.bakery-cleaning-page a {
    color: var(--bk-blue);
    text-decoration: none;
}

.bakery-cleaning-page a:hover {
    text-decoration: underline;
}

/* -------------------------------------------------------------
   LAYOUT PRIMITIVES
------------------------------------------------------------- */

.bk-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.bk-section {
    padding: 80px 0;
}

.bk-bg-white {
    background: var(--bk-white);
}

.bk-bg-blue {
    background: var(--bk-lightblue);
}

.bk-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--bk-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    line-height: 1.4;
}

.bk-centered-heading {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}

.bk-centered-heading p {
    text-align: center;
}

/* -------------------------------------------------------------
   BUTTONS
------------------------------------------------------------- */

.bk-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 30px;
    border: 2px solid var(--bk-dark);
    border-radius: 30px;
    color: var(--bk-dark);
    font-weight: 600;
    font-size: 16px;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.bk-btn-outline:hover {
    background: var(--bk-dark);
    color: var(--bk-white);
    transform: translateY(-2px);
    text-decoration: none;
}

.bk-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
    align-items: center;
}

/* -------------------------------------------------------------
   HERO
------------------------------------------------------------- */

.bk-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 55px;
    align-items: center;
}

.bk-hero-content h1 {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 18px;
}

.bk-hero-image {
    width: 100%;
    object-fit: cover;
    border-radius: var(--bk-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    display: block;
}

/* -------------------------------------------------------------
   CONTENT BLOCK
------------------------------------------------------------- */

.bk-content-block {
    max-width: 950px;
    margin: 0 auto;
}

.bk-list {
    margin: 18px 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.bk-content-block .bk-list {
    grid-template-columns: repeat(2, 1fr);
}

.bk-list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--bk-text);
}

.bk-list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bk-blue);
}

/* -------------------------------------------------------------
   AREA CARDS (with image on first)
------------------------------------------------------------- */

.bk-areas-intro {
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;
}

.bk-areas-intro p {
    text-align: center;
}

.bk-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.bk-area-card {
    padding: 34px 32px;
    border: 1px solid var(--bk-border);
    border-top: 4px solid var(--bk-blue);
    border-radius: 12px;
    background: var(--bk-white);
    box-shadow: 0 6px 22px rgba(10, 10, 26, .05);
}

.bk-area-card-image {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.bk-area-card-image img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--bk-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.bk-area-card h3 {
    color: var(--bk-blue-dark);
}

/* -------------------------------------------------------------
   SIMPLE CARD GRIDS
------------------------------------------------------------- */

.bk-cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

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

.bk-card {
    padding: 30px 28px;
    border: 1px solid var(--bk-border);
    border-radius: 12px;
    background: var(--bk-white);
    box-shadow: 0 5px 20px rgba(10, 10, 26, .04);
    transition: .3s ease;
}

.bk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(7, 124, 234, .10);
    border-color: var(--bk-blue);
}

.bk-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.bk-card p {
    font-size: 14px;
    margin-bottom: 0;
}

/* -------------------------------------------------------------
   INCLUDED / NOT-INCLUDED PANELS
------------------------------------------------------------- */

.bk-scope-panel {
    max-width: 950px;
    margin: 0 auto;
    padding: 34px 36px;
    border: 1px solid var(--bk-border);
    border-radius: 12px;
    background: var(--bk-white);
}

/* -------------------------------------------------------------
   PROCESS STEPS
------------------------------------------------------------- */

.bk-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bk-process-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bk-process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--bk-border);
    border-radius: 12px;
    background: var(--bk-white);
    box-shadow: 0 5px 20px rgba(10, 10, 26, .05);
}

.bk-process-step > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--bk-blue);
    border-radius: 50%;
    color: var(--bk-blue);
    font-weight: 700;
    font-size: 14px;
}

.bk-process-step h3 {
    margin-bottom: 6px;
    font-size: 17px;
}

.bk-process-step p {
    margin-bottom: 0;
    font-size: 14px;
}

.bk-process-image img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--bk-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

/* -------------------------------------------------------------
   FAQ ACCORDION
------------------------------------------------------------- */

.bk-faq-list {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bk-faq-item {
    border: 1px solid var(--bk-border);
    border-radius: 12px;
    background: var(--bk-white);
    overflow: hidden;
    transition: border-color .3s ease, background-color .3s ease;
}

.bk-faq-item.is-open {
    border-color: var(--bk-blue);
}

.bk-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    color: var(--bk-dark);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
}

.bk-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--bk-blue);
    border-radius: 50%;
    color: var(--bk-blue);
    font-size: 20px;
    line-height: 1;
    transition: transform .3s ease, background-color .3s ease, color .3s ease;
}

.bk-faq-item.is-open .bk-faq-icon {
    transform: rotate(45deg);
    background: var(--bk-blue);
    color: var(--bk-white);
}

.bk-faq-answer {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
}

.bk-faq-answer-inner {
    padding: 0 26px 24px;
}

.bk-faq-answer-inner p {
    margin: 0;
    font-size: 15px;
}

/* -------------------------------------------------------------
   FINAL CTA
------------------------------------------------------------- */

.bk-final-cta {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    align-items: center;
    padding: 55px;
    border-radius: var(--bk-radius);
    background: var(--bk-blue);
}

.bk-final-cta-content h2 {
    color: var(--bk-white);
}

.bk-final-cta-content p {
    color: rgba(255, 255, 255, .9);
}

.bk-final-cta-content .bk-eyebrow {
    color: rgba(255, 255, 255, .8);
}

.bk-final-cta-panel {
    padding: 30px;
    border-radius: 12px;
    background: var(--bk-white);
}

.bk-final-cta-panel h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.bk-final-cta-panel p {
    margin-bottom: 20px;
    font-size: 14px;
}

.bk-cta-phone {
    display: inline-flex;
    flex-direction: column;
    color: var(--bk-blue);
    font-weight: 700;
    font-size: 17px;
}

.bk-cta-phone span {
    margin-bottom: 4px;
    color: var(--bk-text);
    font-size: 12px;
    font-weight: 400;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .bk-cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .bk-section {
        padding: 60px 0;
    }

    .bk-hero-grid,
    .bk-area-card-image,
    .bk-process-grid,
    .bk-final-cta {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bk-hero-image {
        height: 320px;
    }

    .bk-process-image img {
        height: 320px;
    }

    .bk-areas-grid,
    .bk-cards-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .bk-section {
        padding: 45px 0;
    }

    .bk-container {
        width: min(100% - 30px, 1200px);
    }

    .bk-hero-content h1 {
        font-size: 28px;
    }

    .bk-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .bk-btn-outline {
        text-align: center;
        padding: 14px 20px;
    }

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

    .bk-list,
    .bk-content-block .bk-list {
        grid-template-columns: 1fr;
    }

    .bk-area-card {
        padding: 26px 22px;
    }

    .bk-scope-panel {
        padding: 26px 22px;
    }

    .bk-process-step {
        grid-template-columns: 40px 1fr;
        padding: 16px;
    }

    .bk-final-cta {
        padding: 30px 22px;
    }

    .bk-faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .bk-faq-answer-inner {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .bk-hero-content h1 {
        font-size: 24px;
    }

    .bk-hero-image {
        height: 220px;
    }

    .bk-process-image img {
        height: 220px;
    }
}