 :root {
        --burgundy: rgb(216, 0, 0);
        --burgundy-dark: rgb(216, 0, 0);
        --gold: #4a9d47;
        --gold-light: #F4E4C1;
        --charcoal: #2C2C2C;
        --slate: #4A5568;
        --cream: #FAF8F3;
        --white: #FFFFFF;
        --green: #2D6A4F;
        --warning: #D97706;
        --error: #DC2626;
    }








   .cf-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)),
        url('../images/services/canton-fair-bg-image.webp') center / cover no-repeat;
    padding: 140px 40px 120px;
    position: relative;
    overflow: hidden;
}

.cf-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, .02) 35px,
            rgba(255, 255, 255, .02) 70px);
    pointer-events: none;
}

.cf-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cf-hero h1 {
    font-size: 46px;
    color: var(--white);
    margin-bottom: 32px;
    font-weight: 700;
    line-height: 1.1;
}

.cf-hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    font-weight: 300;
    max-width: 800px;
    line-height: 1.6;
}

.cf-hero-buttons {
    display: flex;
    gap: 24px;
}

/* Buttons */

.cf-btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 20px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid var(--white);
    transition: all 0.3s;
    display: inline-block;
}

.cf-btn-secondary:hover {
    background: var(--white);
    color: var(--burgundy);
}


    /* Section Base */
    .section {
        padding: 60px 40px;
        max-width: 1400px;
        margin: 0 auto;
    }

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

    .section-title {
        font-size: 38px;
        color: var(--charcoal);
        margin-bottom: 24px;
        font-weight: 800;
        letter-spacing: -1px;
    }

    .section-title .accent {
        color: var(--burgundy);
    }

    .section-subtitle {
        font-size: 20px;
        color: var(--slate);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* Truth Section */
    .truth-grid {
        display: grid;
        /* grid-template-columns: 1fr 1fr; */
        gap: 48px;
        margin-bottom: 80px;
    }

    .truth-box {
        padding: 60px 48px;
        border-radius: 16px;
        position: relative;
        overflow: hidden;
    }

    .truth-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 8px;
        height: 100%;
    }

    .truth-box.can {
        background: #F0FDF4;
        border: 2px solid var(--green);
    }

    .truth-box.can::before {
        background: var(--green);
    }

    .truth-box.cannot {
        background: #FEF2F2;
        border: 2px solid var(--error);
    }

    .truth-box.cannot::before {
        background: var(--error);
    }

    .truth-box h3 {
        font-size: 32px;
        margin-bottom: 32px;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .truth-box.can h3 {
        color: var(--green);
    }

    .truth-box.cannot h3 {
        color: var(--error);
    }

    .truth-box ul {
        list-style: none;
    }

    .truth-box li {
        padding: 16px 0;
        font-size: 17px;
        line-height: 1.7;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding-left: 36px;
        position: relative;
    }

    .truth-box li:last-child {
        border-bottom: none;
    }

    .truth-box.can li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--green);
        font-weight: bold;
        font-size: 20px;
    }

    .truth-box.cannot li::before {
        content: '✕';
        position: absolute;
        left: 0;
        color: var(--error);
        font-weight: bold;
        font-size: 20px;
    }

    /* Warning Box */
    .warning-large {
        background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
        border: 3px solid var(--warning);
        border-radius: 16px;
        padding: 60px;
        margin: 80px 0;
        position: relative;
    }

    .warning-large::before {
        content: '⚠';
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 80px;
        background: var(--warning);
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 6px solid var(--cream);
    }

    .warning-large h3 {
        font-size: 36px;
        color: #78350F;
        margin-bottom: 32px;
        text-align: center;
        margin-top: 20px;
    }

    .warning-large p {
        font-size: 18px;
        color: #78350F;
        line-height: 1.9;
        margin-bottom: 20px;
    }

    .warning-large strong {
        color: var(--burgundy);
        font-weight: 700;
    }



    .services-new {
        padding: 60px 24px;
        background: #ffffff;
    }

    .services-new-header {
        max-width: 900px;
        margin: 0 auto 80px;
        text-align: center;
    }

    .services-new-header h2 {
        font-size: 38px;
        font-weight: 800;
        color: var(--charcoal);
    }

    .services-new-header h2 span {
        color: var(--burgundy);
    }

    .services-new-header p {
        font-size: 18px;
        color: var(--slate);
        margin-top: 14px;
    }

    /* SERVICE ROW */
    .service-row {
        display: grid;
        grid-template-columns: 1.1fr 1.4fr;
        gap: 60px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto 100px;
    }

    /* IMAGE */
    .service-media img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        border-radius: 18px;
    }

    /* CONTENT */
    .service-info h3 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .service-info h3 span {
        color: var(--burgundy);
    }

    .service-info p {
        font-size: 17px;
        color: var(--slate);
        line-height: 1.8;
        margin-bottom: 22px;
    }

    /* LIST */
    .service-info ul {
        list-style: none;
        margin-bottom: 28px;
    }

    .service-info ul li {
        margin-bottom: 12px;
        padding-left: 28px;
        position: relative;
        font-size: 16px;
    }

    .service-info ul li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: var(--burgundy);
        font-weight: 700;
    }

    /* PRICE BAR */
    .service-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        align-items: center;
    }

    .service-price-new {
        font-size: 38px;
        font-weight: 900;
        color: var(--burgundy);
    }

    .service-price-new small {
        display: block;
        font-size: 13px;
        color: var(--slate);
        font-weight: 600;
        text-transform: uppercase;
    }

    /* CTA */
    .service-btn {
        background: var(--burgundy);
        color: #fff;
        padding: 16px 38px;
        border-radius: 10px;
        font-weight: 700;
        transition: background .3s;
    }

    .service-btn:hover {
        background: var(--burgundy-dark);
    }

    /* NOTE */
    .service-note {
        background: #fef2f2;
        border-left: 5px solid #ef4444;
        padding: 16px 20px;
        font-size: 14px;
        color: #991b1b;
        border-radius: 8px;
        margin-bottom: 22px;
    }

    /* MOBILE */
    @media (max-width: 900px) {
        .service-row {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .service-media img {
            height: 240px;
        }

        .services-new-header h2 {
            font-size: 28px;
        }

        .service-info h3 {
            font-size: 26px;
        }
    }






    .pricing-section {
        background: var(--white);
        padding: 60px 40px;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .pricing-card {
        background: var(--cream);
        border-radius: 16px;
        padding: 48px 40px;
        border: 2px solid var(--gold);
    }

    .pricing-card h3 {
        font-size: 22px;
        color: var(--burgundy);
        margin-bottom: 32px;
        padding-bottom: 24px;
        border-bottom: 2px solid var(--gold);
    }

    .pricing-card ul {
        list-style: none;
    }

    .pricing-card li {
        padding: 16px 0;
        font-size: 16px;
        line-height: 1.7;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .pricing-card li:last-child {
        border-bottom: none;
    }

    .pricing-note {
        background: #F0FDF4;
        padding: 20px 24px;
        border-radius: 8px;
        margin-top: 24px;
        border-left: 4px solid var(--green);
    }

    .pricing-note p {
        color: var(--green);
        font-weight: 600;
        font-size: 15px;
        margin: 0;
    }

    /* Why Us */
    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 80px;
    }

    .why-card {
        background: var(--white);
        padding: 48px 40px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    .why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, var(--burgundy), var(--gold));
    }

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    }

    .why-number {
        font-size: 72px;
        color: var(--gold);
        font-weight: 900;
        font-family: 'Crimson Pro', serif;
        line-height: 1;
        margin-bottom: 24px;
        opacity: 0.3;
    }

    .why-card h3 {
        font-size: 24px;
        color: var(--charcoal);
        margin-bottom: 20px;
    }

    .why-card h3 .accent {
        color: var(--burgundy);
    }

    .why-card p {
        font-size: 16px;
        color: var(--slate);
        line-height: 1.8;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
        padding: 100px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
            repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, .02) 35px, rgba(255, 255, 255, .02) 70px);
    }

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

    .cta-section h2 {
        font-size: 38px;
        color: var(--white);
        margin-bottom: 32px;
        font-weight: 800;
    }

    .cta-section h2 .highlight {
        color: var(--gold);
    }

    .cta-section p {
        font-size: 19px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 48px;
        line-height: 1.9;
    }

    .cta-buttons {
        display: flex;
        gap: 24px;
        justify-content: center;
    }


    /* Responsive */
    @media (max-width: 1024px) {
        .hero h1 {
            font-size: 52px;
        }

        .hero h1 .highlight {
            font-size: 44px;
        }

        .truth-grid,
        .services-grid,
        .pricing-grid,
        .why-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .hero {
            padding: 100px 24px 80px;
        }

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

        .hero h1 .highlight {
            font-size: 36px;
        }

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

        .section {
            padding: 80px 24px;
        }

        .section-title {
            font-size: 28px;
        }

        .hero-buttons {
            flex-direction: column;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
            text-align: center;
        }
    }

    .stats-section {
        padding: 100px 0;
        background: #ffffff;
    }

    .fair-schedule {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
    }

    .fair-title {
        font-size: 38px;
        font-weight: 800;
        margin-bottom: 60px;
        color: #1f2937;
    }

    /* GRID */
    .phases-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-bottom: 50px;
    }

    /* CARD */
    .phase-card {
        background: #ffffff;
        border-radius: 14px;
        padding: 36px 28px;
        text-align: left;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
        border-top: 5px solid #4a9d47;
        /* gold accent */
    }

    .phase-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
    }

    /* PHASE LABEL */
    .phase-label {
        display: inline-block;
        background: #4a9d47;
        color: #1a1a1a;
        font-size: 13px;
        font-weight: 700;
        padding: 6px 12px;
        border-radius: 20px;
        margin-bottom: 16px;
    }

    /* DATE */
    .phase-card strong {
        display: block;
        font-size: 20px;
        margin-bottom: 12px;
        color: #111827;
    }

    /* DESCRIPTION */
    .phase-card p {
        font-size: 16px;
        line-height: 1.6;
        color: #4b5563;
    }

    /* LOCATION TEXT */
    .phase-location {
        display: inline-block;
        margin-top: 8px;
        font-weight: 600;
        color: #374151;
    }

    /* LOCATION BAR */
    .fair-location {
        margin-top: 40px;
        padding: 22px 28px;
        background: #ffffff;
        border-radius: 12px;
        font-size: 16px;
        color: #374151;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .phases-grid {
            grid-template-columns: 1fr;
        }

        .fair-title {
            font-size: 32px;
        }
    }



    /* ==============================
   COST CALCULATOR SECTION
================================ */

    .calculator-section {
        padding: 120px 0;
        background:
            linear-gradient(rgba(0, 0, 0, 0.75),
                rgba(0, 0, 0, 0.75)),
            url('/assets/images/canton-fair-hero.jpg') center / cover no-repeat;
        position: relative;
    }

    /* Section Header */
    .calculator-section .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .calculator-section .section-title {
        font-size: 42px;
        font-weight: 900;
        margin-bottom: 16px;
    }

    .calculator-section .section-subtitle {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
    }

    /* ==============================
   CALCULATOR BOX
================================ */

    .calculator-container {
        max-width: 1100px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    }

    /* Header */
    .calculator-header {
        background: #111827;
        padding: 32px;
        text-align: center;
    }

    .calculator-header h3 {
        color: #ffd700;
        font-size: 28px;
        margin-bottom: 8px;
        font-weight: 800;
    }

    .calculator-header p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 16px;
    }

    /* ==============================
   FORM SECTIONS
================================ */

    #costCalculatorForm {
        padding: 48px;
    }

    .form-section {
        margin-bottom: 48px;
    }

    .form-section-title {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 24px;
        color: #111827;
        border-left: 5px solid #ffd700;
        padding-left: 14px;
    }

    /* Rows */
    .form-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 24px;
    }

    .form-group label {
        display: block;
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 8px;
        color: #374151;
    }

    .required {
        color: #dc2626;
    }

    /* Inputs */
    .form-group input,
    .form-group select {
        width: 100%;
        padding: 14px 16px;
        border-radius: 8px;
        border: 1px solid #d1d5db;
        font-size: 15px;
        transition: all 0.25s ease;
    }

    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: #ffd700;
        box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.25);
    }

    /* ==============================
   SERVICES CHECKLIST
================================ */

    .services-checklist {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 32px;
    }

    .service-checkbox {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        color: #374151;
    }

    .service-checkbox input {
        width: 18px;
        height: 18px;
        accent-color: #ffd700;
        cursor: pointer;
    }

    .service-price {
        color: #111827;
        font-weight: 700;
        margin-left: 6px;
    }

    /* ==============================
   COST SUMMARY
================================ */

    .cost-summary {
        background: #f9fafb;
        border-radius: 12px;
        padding: 32px;
        margin-top: 24px;
    }

    .cost-summary h4 {
        font-size: 22px;
        font-weight: 900;
        margin-bottom: 24px;
        color: #111827;
    }

    .cost-item {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px dashed #d1d5db;
        font-size: 16px;
    }

    .cost-item:last-child {
        border-bottom: none;
    }

    .cost-label {
        color: #374151;
    }

    .cost-value {
        font-weight: 700;
        color: #111827;
    }

    /* TOTAL */
    .total-cost {
        display: flex;
        justify-content: space-between;
        margin-top: 24px;
        padding-top: 20px;
        border-top: 3px solid #ffd700;
        font-size: 22px;
        font-weight: 900;
        color: #111827;
    }

    /* ==============================
   SUBMIT BUTTON
================================ */

    .btn-submit {
        width: 100%;
        margin-top: 40px;
        padding: 20px;
        font-size: 20px;
        font-weight: 900;
        border-radius: 10px;
        background: linear-gradient(135deg, #ffd700, #f5c400);
        color: #111827;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
    }

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

    @media (max-width: 992px) {

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

        #costCalculatorForm {
            padding: 32px;
        }

        .calculator-section .section-title {
            font-size: 34px;
        }
    }

    @media (max-width: 576px) {
        .calculator-section {
            padding: 80px 0;
        }

        .calculator-header h3 {
            font-size: 24px;
        }

        .btn-submit {
            font-size: 18px;
        }
    }