    /* ========== FENCE TYPES (Unique section) ========== */
    .fence-types {
        padding: 5rem 2rem;
        background: var(--cream-100);
    }

    .fence-types-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .fence-types-intro {
        max-width: 700px;
        margin: 0 auto 3rem;
        text-align: center;
    }

    .fence-types-intro p {
        font-size: 1.0625rem;
        color: var(--text-medium);
        line-height: 1.6;
    }

    .fence-type-card {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 2.5rem;
        background: white;
        border-radius: var(--radius-sm);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        margin-bottom: 2rem;
        transition: box-shadow 0.2s ease;
    }

    .fence-type-card:hover {
        box-shadow: var(--shadow-lg);
    }

    .fence-type-card:nth-child(even) {
        direction: rtl;
    }

    .fence-type-card:nth-child(even) > * {
        direction: ltr;
    }

    .fence-type-image {
        width: 100%;
        height: 100%;
        min-height: 280px;
        object-fit: cover;
    }

    .fence-type-content {
        padding: 2rem 2rem 2rem 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .fence-type-card:nth-child(even) .fence-type-content {
        padding: 2rem 0 2rem 2rem;
    }

    .fence-type-content h3 {
        font-size: 1.5rem;
        color: var(--green-800);
        margin-bottom: 0.75rem;
    }

    .fence-type-content p {
        font-size: 1rem;
        color: var(--text-medium);
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .fence-type-meta {
        display: flex;
        gap: 2rem;
        margin-bottom: 1.25rem;
        flex-wrap: wrap;
    }

    .fence-type-meta span {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--green-700);
    }

    .fence-type-meta svg {
        width: 16px;
        height: 16px;
    }

    .fence-type-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 700;
        color: var(--green-700);
        text-decoration: none;
        text-transform: uppercase;
        transition: gap 0.2s ease;
    }

    .fence-type-link:hover {
        gap: 0.75rem;
    }

    .fence-type-link svg {
        width: 18px;
        height: 18px;
    }

    /* ========== INTRO SECTION ========== */
    .res-intro {
        padding: 5rem 2rem;
        background: white;
    }

    .res-intro-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .res-intro h2 {
        color: var(--green-900);
        margin-bottom: 2rem;
    }

    .res-intro p {
        font-size: 1.125rem;
        color: var(--text-medium);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    /* ========== SERVICE AREA ========== */
    .res-area {
        padding: 5rem 2rem;
        background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
        color: white;
    }

    .res-area-container {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
    }

    .res-area h2 { color: white; margin-bottom: 1rem; }
    .res-area > .res-area-container > p { color: var(--green-100); font-size: 1.0625rem; margin-bottom: 2rem; }

    .res-area-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .res-area-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: rgba(255,255,255,0.1);
        border-radius: var(--radius-sm);
        color: white;
        text-decoration: none;
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 1rem;
        transition: background 0.2s ease;
    }

    .res-area-link:hover { background: rgba(255,255,255,0.2); }
    .res-area-link svg { width: 18px; height: 18px; }

    .res-area-counties {
        margin-top: 1.5rem;
        color: var(--green-200);
        font-size: 0.9375rem;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
        .fence-type-card,
        .fence-type-card:nth-child(even) {
            grid-template-columns: 1fr;
            direction: ltr;
        }

        .fence-type-card:nth-child(even) > * { direction: ltr; }

        .fence-type-image { min-height: 220px; max-height: 260px; }

        .fence-type-content,
        .fence-type-card:nth-child(even) .fence-type-content {
            padding: 0 2rem 2rem;
        }
    }

    @media (max-width: 768px) {
        .fence-type-meta { gap: 1rem; }
    }
