/* ═══════════════════════════════════════════════════
   LOMBARD HARDWARE — site.css
   Design system: gold/ink/white industrial aesthetic
═══════════════════════════════════════════════════ */
:root {
    --gold: #F5C518;
    --gold-dk: #B8960A;
    --ink: #111111;
    --charcoal: #1C1C1C;
    --steel: #2A2A2A;
    --white: #FFFFFF;
    --off-white: #F8F6F0;
    --mid: #888888;
    --light-border: #E5E0D8;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img, video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 32px 0;
}

.section-white {
    background: var(--white);
}

.section-light {
    background: var(--off-white);
}

.section-dark {
    background: var(--ink);
    color: var(--white);
}

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

.gold {
    color: var(--gold);
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── NAV ── */
.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(17,17,17,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold);
    height: 76px;
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--gold);
}

    .nav-logo span {
        color: var(--white);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

    .nav-links a {
        font-family: var(--font-condensed);
        font-weight: 700;
        font-size: 0.82rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #ccc;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--gold);
        }

    .nav-links .nav-cta {
        background: var(--gold);
        color: var(--ink);
        padding: 8px 16px;
        border-radius: 2px;
        font-weight: 900;
    }

        .nav-links .nav-cta:hover {
            background: #e6b800;
        }

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

    .nav-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--gold);
        transition: all 0.3s;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

.nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(17,17,17,0.98);
    padding: 16px 24px 24px;
    border-bottom: 2px solid var(--gold);
    gap: 4px;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(245,197,24,0.02) 40px, rgba(245,197,24,0.02) 41px);
    }

.hero-inner {
    max-width: 680px;
    margin: 0;
    position: relative;
}

.hero-tag {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: #999;
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-phones {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

    .hero-phones a {
        color: var(--gold);
        font-weight: 600;
    }

        .hero-phones a:hover {
            color: var(--white);
        }

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-condensed);
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-primary:hover {
        background: #e6b800;
        transform: translateY(-2px);
    }

.btn-outline {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 2px;
    transition: all 0.2s;
}

    .btn-outline:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.btn-outline-white {
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 2px;
    transition: all 0.2s;
}

    .btn-outline-white:hover {
        background: rgba(255,255,255,0.1);
    }

.btn-outline-dark {
    display: inline-block;
    border: 2px solid var(--ink);
    color: var(--ink);
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 2px;
    transition: all 0.2s;
}

    .btn-outline-dark:hover {
        background: var(--ink);
        color: var(--white);
    }

/* ── PAGE HERO ── */
.page-hero {
    background: var(--ink);
    padding: 120px 24px 60px;
    text-align: center;
}

.page-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-tag {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-hero-sub {
    font-size: 1.05rem;
    color: #999;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── SECTION HEADERS ── */
.section-header {
    margin-bottom: 48px;
}

    .section-header.text-center {
        text-align: center;
    }

.section-tag {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.section-desc {
    color: #999;
    font-weight: 300;
    margin-top: 12px;
    max-width: 560px;
    line-height: 1.7;
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-desc {
    color: #888;
}

.section-white .section-title,
.section-light .section-title {
    color: var(--ink);
}

/* ── TRUST STRIP ── */
.trust-strip {
    background: var(--charcoal);
    border-bottom: 1px solid #2a2a2a;
    padding: 20px 0;
}

.trust-items {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-right: 1px solid #2a2a2a;
}

    .trust-item:last-child {
        border-right: none;
    }

.trust-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-family: var(--font-condensed);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.trust-item span {
    font-size: 0.78rem;
    color: #888;
    font-weight: 300;
}

/* ── FEATURED PRODUCTS ── */
.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.featured-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    display: block;
}

    .featured-product-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .featured-product-card:hover img {
        transform: scale(1.05);
    }

.featured-product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.featured-product-cat {
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.featured-product-name {
    font-family: var(--font-condensed);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

/* ── SERVICES GRID (home) ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2px;
}

.service-card {
    background: #1a1a1a;
    padding: 36px 24px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: background 0.2s, border-color 0.2s;
    display: block;
}

    .service-card:hover {
        background: #222;
        border-color: var(--gold);
    }

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
    line-height: 1.6;
}

/* ── HOME UPDATES GRID ── */
.home-updates-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.home-update-card {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--light-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .home-update-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

.home-update-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

    .home-update-thumb img,
    .home-update-thumb video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.home-update-body {
    padding: 16px;
    background: var(--white);
}

.update-cat-tag {
    font-family: var(--font-condensed);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dk);
}

.home-update-title {
    font-family: var(--font-condensed);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin: 6px 0;
    line-height: 1.3;
}

.home-update-date {
    font-size: 0.78rem;
    color: #aaa;
}

.video-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: var(--font-condensed);
    font-weight: 700;
}

/* ── CTA SECTION ── */
.cta-section {
    background: var(--gold);
    padding: 80px 24px;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem,4vw,3.5rem);
    color: var(--ink);
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(17,17,17,0.65);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

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

/* ── FILTER BAR ── */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    display: inline-block;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 2px;
    background: var(--off-white);
    color: #555;
    border: 1px solid var(--light-border);
    cursor: pointer;
    transition: all 0.2s;
}

    .filter-chip:hover {
        background: var(--charcoal);
        color: var(--white);
        border-color: var(--charcoal);
    }

    .filter-chip.active {
        background: var(--gold);
        color: var(--ink);
        border-color: var(--gold);
    }

.service-tag-chip {
    display: inline-block;
    font-family: var(--font-condensed);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 2px;
    background: var(--off-white);
    color: var(--ink);
    border: 1px solid var(--light-border);
}

/* ── PRODUCTS PAGE ── */
.products-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.product-upload-card {
    border: 1px solid var(--light-border);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .product-upload-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .product-upload-card img {
        aspect-ratio: 4/3;
        object-fit: cover;
    }

.product-upload-info {
    padding: 10px 12px;
    background: var(--white);
}

.product-upload-cat {
    font-family: var(--font-condensed);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dk);
    display: block;
}

.product-upload-cap {
    font-size: 0.85rem;
    color: #444;
    display: block;
    margin-top: 2px;
}

.pcat-block {
    margin-bottom: 32px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.pcat-heading-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #111111 !important;
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    flex-wrap: wrap;
}

.pcat-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #ffffff !important;
    margin: 0 0 4px;
    line-height: 1.1;
}

.pcat-desc {
    font-size: 0.82rem;
    color: #aaaaaa !important;
    margin: 0;
    font-weight: 300;
    line-height: 1.5;
}

.pcat-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
    text-decoration: none;
}

    .pcat-enquire-btn:hover {
        background: #20c55a;
    }

.pcat-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    background: #e8e8e8;
    gap: 1px;
}

.pcat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 18px;
    background: #ffffff;
    text-decoration: none;
    transition: background 0.15s;
}

    .pcat-item:hover {
        background: #fffbee;
    }

        .pcat-item:hover .pcat-item-name {
            color: #8a6800;
        }

        .pcat-item:hover .pcat-item-wa {
            color: #25D366;
            opacity: 1;
        }

        .pcat-item:hover .pcat-item-dot {
            background: var(--gold);
        }

.pcat-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.pcat-item-dot {
    width: 5px;
    height: 5px;
    min-width: 5px;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0;
    transition: background 0.15s;
}

.pcat-item-name {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.4;
    transition: color 0.15s;
}

.pcat-item-wa {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-condensed);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #bbb;
    opacity: 0.7;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.15s, opacity 0.15s;
}

/* ── REPAIRS PAGE ── */
.storm-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    background: var(--off-white);
    border: 1px solid var(--light-border);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    padding: 40px;
}

.storm-highlight-icon {
    font-size: 4rem;
}

.repairs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 20px;
}

.repair-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 28px;
    transition: border-color 0.2s;
}

    .repair-card:hover {
        border-color: var(--gold);
    }

.repair-card-badge {
    display: inline-block;
    font-family: var(--font-condensed);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(245,197,24,0.12);
    color: var(--gold);
    border: 1px solid rgba(245,197,24,0.2);
    margin-bottom: 12px;
}

.repair-card-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.repair-card-desc {
    font-size: 0.875rem;
    color: #888;
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 16px;
}

.repair-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

    .repair-card-features li {
        font-size: 0.82rem;
        color: #666;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .repair-card-features li::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            flex-shrink: 0;
        }

.repair-card-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-condensed);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 2px;
    transition: background 0.2s;
}

    .repair-card-btn:hover {
        background: #e6b800;
    }

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 20px;
}

.guarantee-card {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.guarantee-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.guarantee-title {
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.guarantee-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 300;
    line-height: 1.6;
}

/* ── WHY US PAGE ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
}

.why-card {
    background: var(--off-white);
    border: 1px solid var(--light-border);
    padding: 36px 28px;
    transition: background 0.2s, border-color 0.2s;
}

    .why-card:hover {
        background: var(--white);
        border-color: var(--gold);
    }

.why-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.why-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.why-card-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
    line-height: 1.7;
}

.stats-strip-gold {
    background: var(--gold);
    padding: 32px 0;
}

.stats-row {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
}

.stat-block {
    padding: 16px;
    border-right: 1px solid rgba(17,17,17,0.15);
}

    .stat-block:last-child {
        border-right: none;
    }

.stat-block-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--ink);
    line-height: 1;
}

.stat-block-lbl {
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(17,17,17,0.6);
    margin-top: 6px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.testimonial-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 28px;
}

.tcard-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.tcard-text {
    font-size: 0.9rem;
    color: #999;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 20px;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid #2a2a2a;
}

.tcard-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--ink);
    flex-shrink: 0;
}

.tcard-name {
    font-family: var(--font-condensed);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.tcard-role {
    font-size: 0.75rem;
    color: #666;
    font-weight: 300;
    margin-top: 2px;
}

/* ── QUOTE PAGE ── */
.quote-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.quote-form-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 40px;
}

.quote-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.qform-group {
    margin-bottom: 16px;
}

.qlabel {
    display: block;
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.qinput {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    border-radius: 2px;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

    .qinput:focus {
        border-color: var(--gold);
    }

    .qinput::placeholder {
        color: #555;
    }

.qinput-light {
    width: 100%;
    background: var(--off-white);
    border: 1px solid var(--light-border);
    border-radius: 2px;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
}

    .qinput-light:focus {
        border-color: var(--gold);
    }

.qselect {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    border-radius: 2px;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

    .qselect:focus {
        border-color: var(--gold);
    }

.qselect-light {
    width: 100%;
    background: var(--off-white);
    border: 1px solid var(--light-border);
    border-radius: 2px;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--ink);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.qtextarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    border-radius: 2px;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    outline: none;
    resize: vertical;
    min-height: 110px;
}

    .qtextarea:focus {
        border-color: var(--gold);
    }

.qtextarea-light {
    width: 100%;
    background: var(--off-white);
    border: 1px solid var(--light-border);
    border-radius: 2px;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--ink);
    outline: none;
    resize: vertical;
    min-height: 100px;
}

.qerror {
    font-size: 0.78rem;
    color: #ff8080;
    display: block;
    margin-top: 4px;
}

.qform-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.qtype-label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    border: 1px solid #333;
    border-radius: 2px;
    padding: 11px 14px;
    cursor: pointer;
    transition: border-color 0.2s;
}

    .qtype-label:has(input:checked) {
        border-color: var(--gold);
        background: rgba(245,197,24,0.05);
    }

    .qtype-label span {
        font-size: 0.82rem;
        color: #aaa;
        font-weight: 300;
    }

    .qtype-label input {
        accent-color: var(--gold);
    }

.qsidebar-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 22px;
}

.qsidebar-title {
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #2a2a2a;
}

.qsidebar-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 16px;
    border-radius: 2px;
    transition: background 0.2s;
}

    .qsidebar-wa-btn:hover {
        background: #20c55a;
    }

.qsidebar-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1e1e;
    color: #ccc;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 11px 16px;
    border-radius: 2px;
    border: 1px solid #333;
    transition: all 0.2s;
}

    .qsidebar-call-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.qsidebar-emergency {
    border-color: rgba(245,197,24,0.3) !important;
}

.how-it-works-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2px;
}

.hiw-step {
    background: var(--white);
    border: 1px solid var(--light-border);
    padding: 24px 20px;
    text-align: center;
}

.hiw-num {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ink);
    margin: 0 auto 12px;
}

.hiw-text {
    font-size: 0.85rem;
    color: #555;
    font-weight: 400;
    line-height: 1.5;
}

/* ── CONTACT PAGE ── */
.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s;
}

    .contact-info-card:hover {
        border-color: var(--gold);
    }

.cic-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cic-label {
    font-family: var(--font-condensed);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 6px;
}

.cic-value {
    font-size: 0.95rem;
    color: var(--gold-dk);
    font-weight: 500;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.contact-form-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 40px;
}

.contact-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.chours-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: 0.85rem;
    font-weight: 300;
}

    .chours-row:last-child {
        border-bottom: none;
    }

/* ── TOWING PAGE ── */
.towing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.towing-card {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .towing-card:hover {
        border-color: var(--gold);
        box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    }

.towing-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.towing-icon {
    font-size: 2.5rem;
}

.towing-distance-badge {
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.towing-card-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.towing-card-desc {
    font-size: 0.875rem;
    color: #666;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 18px;
}

.towing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
    flex: 1;
}

    .towing-features li {
        font-size: 0.82rem;
        color: #555;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .towing-features li::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            flex-shrink: 0;
        }

.process-strip {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 2px;
}

.process-step-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 28px 20px;
    text-align: center;
    transition: background 0.2s;
}

    .process-step-card:hover {
        background: #222;
    }

.process-step-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: rgba(245,197,24,0.2);
    line-height: 1;
    margin-bottom: 10px;
}

.process-step-title {
    font-family: var(--font-condensed);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.process-step-desc {
    font-size: 0.82rem;
    color: #888;
    font-weight: 300;
    line-height: 1.6;
}

.towing-quote-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.towing-form-card {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.towing-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── UPDATES PAGE ── */
.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 24px;
}

.update-card {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--light-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .update-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

.update-card-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

    .update-card-thumb img,
    .update-card-thumb video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.update-card-count {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.65);
    color: white;
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
}

.update-card-body {
    padding: 20px;
    background: var(--white);
}

.update-cat-tag {
    font-family: var(--font-condensed);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dk);
}

.update-card-title {
    font-family: var(--font-condensed);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 8px 0 6px;
    line-height: 1.3;
}

.update-card-desc {
    font-size: 0.85rem;
    color: #666;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 8px;
}

.update-card-date {
    font-size: 0.75rem;
    color: #aaa;
}

.empty-state {
    text-align: center;
    padding: 80px 40px;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.empty-state p {
    color: #888;
    font-weight: 300;
}

/* ── UPDATES DETAIL ── */
.back-btn {
    display: inline-block;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin-bottom: 28px;
    transition: color 0.2s;
}

    .back-btn:hover {
        color: var(--gold);
    }

.detail-hero-media {
    margin-bottom: 16px;
    border-radius: 4px;
    overflow: hidden;
}

.detail-hero-img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
}

.detail-thumb-strip {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.detail-thumb {
    width: 80px;
    height: 60px;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    position: relative;
    flex-shrink: 0;
}

    .detail-thumb.active {
        border-color: var(--gold);
    }

    .detail-thumb img,
    .detail-thumb video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: white;
    font-size: 0.8rem;
}

/* ── LIGHTBOX ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

    .lightbox.open {
        display: flex;
    }

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    gap: 16px;
}

.lb-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.lb-prev, .lb-next {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}

    .lb-prev:hover, .lb-next:hover {
        background: rgba(255,255,255,0.2);
    }

.lb-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-counter {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    color: #aaa;
    font-size: 0.85rem;
    white-space: nowrap;
    font-family: var(--font-condensed);
}

/* ── SERVICES PAGE ── */
.svc-row {
    overflow: hidden;
}

.svc-row-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: center;
}

.svc-flip {
    direction: rtl;
}

    .svc-flip > * {
        direction: ltr;
    }

.svc-img-panel {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    flex-shrink: 0;
}

.svc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.svc-img-panel:hover .svc-img {
    transform: scale(1.04);
}

.svc-number-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 2px;
}

.svc-content-panel {
    display: flex;
    align-items: center;
}

.svc-content-inner {
    width: 100%;
    padding: 8px 0;
}

.svc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .svc-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.875rem;
        font-weight: 300;
        line-height: 1.5;
    }

.svc-feature-dot {
    width: 5px;
    height: 5px;
    min-width: 5px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}

.svc-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 2px;
    transition: background 0.2s;
}

.svc-wa-dark {
    background: rgba(255,255,255,0.07);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
}

    .svc-wa-dark:hover {
        background: rgba(255,255,255,0.13);
    }

.svc-wa-light {
    background: rgba(0,0,0,0.05);
    color: var(--ink);
    border: 1px solid rgba(0,0,0,0.1);
}

    .svc-wa-light:hover {
        background: rgba(0,0,0,0.1);
    }

/* ── FOOTER ── */
.site-footer {
    background: #0a0a0a;
    border-top: 2px solid var(--gold);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
}

    .footer-logo span {
        color: var(--white);
    }

.footer-tagline {
    font-size: 0.875rem;
    color: #666;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 2px;
    transition: background 0.2s;
}

    .footer-wa-btn:hover {
        background: #20c55a;
    }

.footer-heading {
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .footer-links a {
        font-size: 0.875rem;
        color: #666;
        font-weight: 300;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--gold);
        }

.site-footer p a {
    color: #666;
    transition: color 0.2s;
}

    .site-footer p a:hover {
        color: var(--gold);
    }

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

    .footer-bottom p {
        font-size: 0.78rem;
        color: #555;
        font-weight: 300;
    }

.footer-admin-link {
    font-size: 0.72rem;
    color: #333;
    font-family: var(--font-condensed);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

    .footer-admin-link:hover {
        color: var(--gold);
    }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 900;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .trust-items {
        grid-template-columns: repeat(2,1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .towing-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .process-strip {
        grid-template-columns: repeat(3,1fr);
    }

    .featured-products-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2,1fr);
    }

    .home-updates-grid {
        grid-template-columns: repeat(2,1fr);
    }

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

    .quote-layout {
        grid-template-columns: 1fr;
    }

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

    .towing-quote-layout {
        grid-template-columns: 1fr;
    }

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

    .svc-row-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        direction: ltr !important;
    }

    .svc-flip > * {
        direction: ltr;
    }

    .svc-img-panel {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

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

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

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

    .process-strip {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-cards-row {
        grid-template-columns: repeat(2,1fr);
    }

    .how-it-works-strip {
        grid-template-columns: repeat(2,1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2,1fr);
    }

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

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

    .storm-highlight {
        grid-template-columns: 1fr;
    }

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

    .pcat-heading-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .pcat-enquire-btn {
        width: 100%;
        justify-content: center;
    }

    .pcat-item-wa {
        display: none;
    }
}

@media (max-width: 640px) {
    .pcat-items {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

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

    .featured-products-grid {
        grid-template-columns: 1fr;
    }

    .home-updates-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .qform-type-grid {
        grid-template-columns: 1fr;
    }

    .pcat-items {
        grid-template-columns: 1fr;
    }

    .svc-img-panel {
        height: 180px;
    }
}
/* ══ HOMEPAGE SIDEBAR LAYOUT ══ */
.home-page-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 0;
    align-items: start;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.home-content-area {
    min-width: 0;
}

.home-section-inner {
    max-width: 100%;
}

.home-sidebar {
    position: sticky;
    top: 84px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px 0 40px 32px;
}

.hsb-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.hsb-card-header {
    background: #111;
    color: #fff;
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 16px;
    border-bottom: 2px solid var(--gold);
}

.hsb-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hsb-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    color: #111;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    padding: 10px 12px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

    .hsb-contact-btn:hover {
        background: var(--gold);
        border-color: var(--gold);
    }

.hsb-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    border-radius: 2px;
    padding: 11px 12px;
    font-family: var(--font-condensed);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
    text-decoration: none;
}

    .hsb-wa-btn:hover {
        background: #20c55a;
    }

.hsb-links {
    display: flex;
    flex-direction: column;
}

.hsb-link {
    display: block;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.15s;
    text-decoration: none;
}

    .hsb-link:last-child {
        border-bottom: none;
    }

    .hsb-link:hover {
        background: #fffbee;
        color: var(--gold-dk);
        padding-left: 20px;
    }

.hsb-link-cta {
    background: var(--gold) !important;
    color: var(--ink) !important;
    font-weight: 600;
    text-align: center;
}

    .hsb-link-cta:hover {
        background: #e6b800 !important;
        padding-left: 16px !important;
    }

.hsb-emergency {
    background: #111 !important;
    border-color: rgba(245,197,24,0.3) !important;
    padding: 18px 16px;
}

.hsb-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #555;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
}

    .hsb-hours-row:last-child {
        border-bottom: none;
    }

.hsb-open {
    color: #2d8a4e;
    font-weight: 600;
}

/* Remove container padding from sections inside sidebar layout */
.home-content-area .section .container,
.home-content-area .section-sm .container {
    max-width: 100%;
    padding: 0;
}

@media (max-width: 1050px) {
    .home-page-wrap {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .home-sidebar {
        position: static;
        padding: 0 24px 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .home-sidebar {
        grid-template-columns: 1fr;
    }
}