/* =========================================================
   Gulf Breeze Fence Co. — styles.css
   REDESIGNED: Warm, earthy, craftsman-feel fence company
   Colors: Forest Green #2d5a27, Dark Brown #5c3d2e,
           Gold #c9a74e, Burnt Orange CTA #c2571a,
           Background #faf8f5
   Font: Source Sans 3
   ========================================================= */

/* ===== A. BASE & TYPOGRAPHY ===== */
:root {
    --gbf-green: #2d5a27;
    --gbf-green-dark: #1e3d1a;
    --gbf-green-light: #e8f0e7;
    --gbf-brown: #5c3d2e;
    --gbf-brown-dark: #3d2a1e;
    --gbf-brown-light: #f5f0ec;
    --gbf-gold: #c9a74e;
    --gbf-gold-dark: #a88a3a;
    --gbf-gold-light: #f7f0dd;
    --gbf-cta: #c2571a;
    --gbf-cta-hover: #a04815;
    --gbf-bg: #faf8f5;
    --gbf-bg-sage: #e8f0e7;
    --gbf-bg-warm: #f5f0ec;
    --gbf-text: #2d2d2d;
    --gbf-text-muted: #5a5a5a;
    --gbf-white: #ffffff;
    --gbf-border: #d4d0c8;
    --gbf-radius: 6px;
    --gbf-shadow: 0 2px 8px rgba(61,42,30,0.08);
    --gbf-shadow-lg: 0 4px 16px rgba(61,42,30,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gbf-text);
    background-color: var(--gbf-bg);
    line-height: 1.7;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    color: var(--gbf-brown);
    line-height: 1.25;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.15rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--gbf-text);
}

a {
    color: var(--gbf-green);
    text-decoration: underline;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: var(--gbf-cta);
}


/* ===== B. BUTTONS ===== */
.btn-cta {
    background-color: var(--gbf-cta);
    color: var(--gbf-white);
    border: 2px solid var(--gbf-cta);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    border-radius: var(--gbf-radius);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(194,87,26,0.25);
}

.btn-cta:hover,
.btn-cta:focus {
    background-color: var(--gbf-cta-hover);
    border-color: var(--gbf-cta-hover);
    color: var(--gbf-white);
    box-shadow: 0 4px 12px rgba(194,87,26,0.35);
}

.btn-cta:active {
    box-shadow: 0 1px 3px rgba(194,87,26,0.2);
}

.btn-green {
    background-color: var(--gbf-green);
    color: var(--gbf-white);
    border: 2px solid var(--gbf-green);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    border-radius: var(--gbf-radius);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-green:hover,
.btn-green:focus {
    background-color: var(--gbf-green-dark);
    border-color: var(--gbf-green-dark);
    color: var(--gbf-white);
    box-shadow: 0 3px 10px rgba(45,90,39,0.3);
}

.btn-outline-green {
    background-color: transparent;
    color: var(--gbf-green);
    border: 2px solid var(--gbf-green);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    border-radius: var(--gbf-radius);
    transition: all 0.2s ease;
}

.btn-outline-green:hover,
.btn-outline-green:focus {
    background-color: var(--gbf-green);
    color: var(--gbf-white);
    box-shadow: 0 3px 10px rgba(45,90,39,0.25);
}


/* ===== C. PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--gbf-green) 0%, var(--gbf-green-dark) 100%);
    color: var(--gbf-white);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

/* Subtle fence-post texture: vertical lines */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.02) 0px,
        rgba(255,255,255,0.02) 1px,
        transparent 1px,
        transparent 40px
    );
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gbf-gold) 0%, var(--gbf-cta) 50%, var(--gbf-gold) 100%);
}

.page-header h1 {
    color: var(--gbf-white);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.page-header .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
}

.page-header .breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.page-header .breadcrumb-item a {
    color: var(--gbf-gold);
    text-decoration: none;
    font-weight: 600;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item a:focus {
    color: var(--gbf-white);
    text-decoration: underline;
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.75);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}


/* ===== D. SECTION SPACING ===== */
.section-padding {
    padding: 4.5rem 0;
}

.section-padding-sm {
    padding: 3rem 0;
}

.section-bg-light {
    background-color: var(--gbf-bg-sage);
    position: relative;
}

/* Subtle dot grid texture for sage sections */
.section-bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(45,90,39,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.section-bg-brown-light {
    background-color: var(--gbf-bg-warm);
    position: relative;
}

/* Subtle diagonal line texture for warm sections */
.section-bg-brown-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(92,61,46,0.02) 10px,
        rgba(92,61,46,0.02) 11px
    );
    pointer-events: none;
}

.section-title {
    font-size: 2.15rem;
    font-weight: 800;
    color: var(--gbf-brown);
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--gbf-gold);
    margin-top: 0.75rem;
    border-radius: 2px;
}

.section-title-center::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gbf-text-muted);
    max-width: 700px;
    line-height: 1.7;
}


/* ===== E. SERVICE CARDS (ALTERNATING) ===== */
.service-card-alt {
    background-color: var(--gbf-white);
    border: 1px solid var(--gbf-border);
    border-left: 5px solid var(--gbf-green);
    border-radius: 0 var(--gbf-radius) var(--gbf-radius) 0;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: border-left-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card-alt:hover {
    border-left-color: var(--gbf-gold);
    box-shadow: var(--gbf-shadow);
}

.service-card-alt .service-icon {
    width: 56px;
    height: 56px;
    background-color: var(--gbf-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-card-alt .service-icon i {
    font-size: 1.5rem;
    color: var(--gbf-white);
}

.service-card-alt h3 {
    margin-bottom: 0.75rem;
}

.service-card-alt h3 a {
    color: var(--gbf-brown);
    text-decoration: none;
}

.service-card-alt h3 a:hover,
.service-card-alt h3 a:focus {
    color: var(--gbf-green);
    text-decoration: underline;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--gbf-text);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(212,208,200,0.4);
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li i {
    color: var(--gbf-green);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}


/* ===== F. PROCESS STEPS ===== */
.process-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background-color: var(--gbf-green);
    color: var(--gbf-gold);
    border: 3px solid var(--gbf-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: 0 3px 8px rgba(45,90,39,0.25);
}

.process-step h4 {
    color: var(--gbf-brown);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--gbf-text-muted);
}

.process-connector {
    display: none;
}

@media (min-width: 768px) {
    .process-connector {
        display: block;
        position: absolute;
        top: 30px;
        right: -20px;
        color: var(--gbf-green);
        font-size: 1.5rem;
        z-index: 1;
    }
}


/* ===== G. FENCE TYPE CARDS ===== */
.fence-type-card {
    background-color: var(--gbf-white);
    border: 1px solid var(--gbf-border);
    border-top: 4px solid var(--gbf-green);
    border-radius: 0 0 var(--gbf-radius) var(--gbf-radius);
    padding: 2rem;
    height: 100%;
    transition: border-top-color 0.3s ease, box-shadow 0.3s ease;
}

.fence-type-card:hover {
    border-top-color: var(--gbf-gold);
    box-shadow: var(--gbf-shadow);
}

.fence-type-card .card-icon {
    width: 52px;
    height: 52px;
    background-color: var(--gbf-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.fence-type-card .card-icon i {
    font-size: 1.35rem;
    color: var(--gbf-white);
}

.fence-type-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gbf-brown);
}

.fence-type-card p {
    font-size: 0.95rem;
    color: var(--gbf-text-muted);
    margin-bottom: 0;
    line-height: 1.65;
}


/* ===== H. PRICING TABLE ===== */
.pricing-row {
    background-color: var(--gbf-white);
    border: 1px solid var(--gbf-border);
    border-left: 4px solid var(--gbf-green);
    border-radius: 0 var(--gbf-radius) var(--gbf-radius) 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-left-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-row:hover {
    border-left-color: var(--gbf-gold);
    box-shadow: var(--gbf-shadow);
}

.pricing-row .fence-style {
    font-weight: 700;
    color: var(--gbf-brown);
    font-size: 1.05rem;
}

.pricing-row .price-range {
    font-weight: 800;
    color: var(--gbf-green);
    font-size: 1.15rem;
    white-space: nowrap;
}


/* ===== I. FAQ ACCORDION ===== */
.faq-accordion .accordion-item {
    border: 1px solid var(--gbf-border);
    border-radius: var(--gbf-radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gbf-brown);
    background-color: var(--gbf-white);
    padding: 1.25rem 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--gbf-green);
    color: var(--gbf-white);
    box-shadow: none;
    font-weight: 700;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.25);
    border-color: var(--gbf-green);
}

.faq-accordion .accordion-button::after {
    filter: none;
}

.faq-accordion .accordion-body {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    color: var(--gbf-text);
    line-height: 1.7;
    border-top: 3px solid var(--gbf-gold);
}


/* ===== J. GALLERY PLACEHOLDERS ===== */
.gallery-placeholder {
    background: linear-gradient(135deg, #8B6914 0%, #A0764A 40%, #6B4F1D 100%);
    border-radius: var(--gbf-radius);
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Wood grain CSS texture for gallery placeholders */
.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(0,0,0,0.06) 8px,
            rgba(0,0,0,0.06) 9px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 30px,
            rgba(0,0,0,0.03) 30px,
            rgba(0,0,0,0.03) 31px
        );
    pointer-events: none;
}

.gallery-placeholder:hover {
    box-shadow: var(--gbf-shadow-lg);
}

.gallery-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
}

.gallery-placeholder span {
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.8);
}


/* ===== K. IMAGE PLACEHOLDER ===== */
.img-placeholder {
    background: linear-gradient(135deg, var(--gbf-green) 0%, var(--gbf-green-dark) 100%);
    border-radius: var(--gbf-radius);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
}

/* Fence picket pattern for image placeholders */
.img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 2px,
        transparent 2px,
        transparent 20px
    );
    pointer-events: none;
}

.img-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.35);
    position: relative;
    z-index: 1;
}

.img-placeholder span {
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.5);
}


/* ===== L. SERVICE AREA LIST ===== */
.service-area-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 2rem;
}

@media (min-width: 768px) {
    .service-area-list {
        columns: 3;
    }
}

@media (min-width: 992px) {
    .service-area-list {
        columns: 4;
    }
}

.service-area-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    break-inside: avoid;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(212,208,200,0.5);
    font-weight: 500;
}

.service-area-list li i {
    color: var(--gbf-green);
    font-size: 0.85rem;
    flex-shrink: 0;
}


/* ===== M. CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--gbf-green) 0%, var(--gbf-green-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle texture overlay */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 14px,
            rgba(255,255,255,0.015) 14px,
            rgba(255,255,255,0.015) 15px
        );
    pointer-events: none;
}


/* ===== N. FOOTER ===== */
.site-footer {
    background-color: var(--gbf-brown-dark);
    color: #e2e1dc;
    position: relative;
}

/* Subtle wood grain texture for footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 12px,
            rgba(255,255,255,0.015) 12px,
            rgba(255,255,255,0.015) 13px
        );
    pointer-events: none;
}

.footer-logo-text {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gbf-white);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.footer-logo-text:hover,
.footer-logo-text:focus {
    color: var(--gbf-gold);
}

.footer-tagline {
    color: #e2e1dc;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
}

.footer-heading {
    color: var(--gbf-gold);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background-color: var(--gbf-gold);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #e2e1dc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    position: relative;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--gbf-gold);
    padding-left: 3px;
}

.footer-contact {
    font-size: 0.95rem;
    position: relative;
}

.footer-contact-icon {
    color: var(--gbf-gold);
}

.footer-contact-link {
    color: #e2e1dc;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.footer-contact-link:hover,
.footer-contact-link:focus {
    color: var(--gbf-gold);
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--gbf-radius);
    border: 2px solid rgba(201,167,78,0.4);
    color: var(--gbf-gold);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.footer-social-icon:hover,
.footer-social-icon:focus {
    background-color: var(--gbf-gold);
    border-color: var(--gbf-gold);
    color: var(--gbf-brown-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(201,167,78,0.2);
    position: relative;
}

.footer-copyright {
    color: #e2e1dc;
    opacity: 0.6;
    font-size: 0.9rem;
    margin: 0;
    position: relative;
}

.footer-service-area {
    color: #e2e1dc;
    opacity: 0.5;
    font-size: 0.85rem;
    position: relative;
}


/* ===== O. BENEFITS LIST ===== */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212,208,200,0.5);
}

.benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.benefit-item .benefit-icon {
    width: 48px;
    height: 48px;
    background-color: var(--gbf-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item .benefit-icon i {
    font-size: 1.2rem;
    color: var(--gbf-white);
}

.benefit-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--gbf-brown);
}

.benefit-item p {
    font-size: 0.92rem;
    color: var(--gbf-text-muted);
    margin-bottom: 0;
    line-height: 1.65;
}


/* ===== P. REPAIR SIGNS CARDS ===== */
.repair-sign-card {
    background-color: var(--gbf-white);
    border: 1px solid var(--gbf-border);
    border-left: 5px solid var(--gbf-cta);
    border-radius: 0 var(--gbf-radius) var(--gbf-radius) 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-left-color 0.2s ease, box-shadow 0.2s ease;
}

.repair-sign-card:hover {
    border-left-color: var(--gbf-green);
    box-shadow: var(--gbf-shadow);
}

.repair-sign-card i {
    color: var(--gbf-cta);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.repair-sign-card strong {
    color: var(--gbf-brown);
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.repair-sign-card p {
    font-size: 0.9rem;
    color: var(--gbf-text-muted);
    margin-bottom: 0;
}


/* ===== Q. RESPONSIVE ===== */
@media (max-width: 767.98px) {
    .page-header h1 {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 1.65rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.65rem; }

    .service-card-alt {
        padding: 1.5rem;
    }

    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .service-area-list {
        columns: 2;
    }
}


/* ===== R. HOMEPAGE HERO ===== */
.hero-section {
    background: linear-gradient(145deg, var(--gbf-green) 0%, var(--gbf-green-dark) 70%, #142e10 100%);
    color: var(--gbf-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Fence post / wood grain subtle texture */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            -30deg,
            transparent,
            transparent 20px,
            rgba(255,255,255,0.012) 20px,
            rgba(255,255,255,0.012) 21px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.015) 0px,
            rgba(255,255,255,0.015) 1px,
            transparent 1px,
            transparent 50px
        );
    pointer-events: none;
}

/* Gold accent strip at bottom of hero */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gbf-gold) 0%, var(--gbf-gold-dark) 50%, var(--gbf-gold) 100%);
}

.hero-section h1 {
    color: var(--gbf-white);
    font-weight: 800;
    font-size: 2.85rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    max-width: 560px;
    position: relative;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, rgba(201,167,78,0.15) 0%, rgba(255,255,255,0.08) 100%);
    border: 3px solid rgba(201,167,78,0.3);
    border-radius: var(--gbf-radius);
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201,167,78,0.5);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

/* Fence picket pattern inside hero placeholder */
.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(201,167,78,0.05) 0px,
        rgba(201,167,78,0.05) 3px,
        transparent 3px,
        transparent 24px
    );
    pointer-events: none;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 5.5rem 0;
    }
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 3.5rem 0;
        text-align: center;
    }
    .hero-section h1 {
        font-size: 2.1rem;
    }
    .hero-subtitle {
        margin: 0 auto;
    }
    .hero-image-placeholder {
        min-height: 200px;
        margin-top: 2rem;
    }
}


/* ===== S. TRUST BAR ===== */
.trust-bar {
    background-color: var(--gbf-green);
    border-bottom: 3px solid var(--gbf-gold);
}

.trust-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.trust-item .trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gbf-gold);
    display: block;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.trust-item .trust-number i {
    color: var(--gbf-gold);
}

.trust-item .trust-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}


/* ===== T. SERVICE OVERVIEW CARDS (HOMEPAGE) ===== */
.service-card {
    background: var(--gbf-white);
    border: 1px solid var(--gbf-border);
    border-top: 4px solid var(--gbf-green);
    border-radius: 0 0 var(--gbf-radius) var(--gbf-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-top-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    border-top-color: var(--gbf-gold);
    box-shadow: var(--gbf-shadow);
}

.service-card .service-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--gbf-green);
    color: var(--gbf-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 3px 8px rgba(45,90,39,0.2);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--gbf-text-muted);
    margin-bottom: 1rem;
    line-height: 1.65;
}

.service-card .learn-more {
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    color: var(--gbf-cta);
    transition: color 0.2s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.service-card .learn-more:hover {
    color: var(--gbf-cta-hover);
    border-bottom-color: var(--gbf-cta-hover);
}

.service-card .learn-more::after {
    content: ' \2192';
}


/* ===== U. WHY CHOOSE US ===== */
.why-us-section {
    background-color: var(--gbf-bg-sage);
    position: relative;
}

/* Dot grid texture */
.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(45,90,39,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.why-us-item {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.why-us-item .why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--gbf-green);
    color: var(--gbf-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    border: 3px solid var(--gbf-gold);
    box-shadow: 0 3px 8px rgba(45,90,39,0.2);
}

.why-us-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-us-item p {
    font-size: 0.92rem;
    color: var(--gbf-text-muted);
    margin-bottom: 0;
    line-height: 1.65;
}


/* ===== V. SERVICE AREAS MAP SECTION ===== */
.service-areas-section {
    background-color: var(--gbf-brown-dark);
    color: var(--gbf-white);
    position: relative;
    overflow: hidden;
}

/* Wood grain texture for service areas */
.service-areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 16px,
            rgba(255,255,255,0.02) 16px,
            rgba(255,255,255,0.02) 17px
        );
    pointer-events: none;
}

.service-areas-section h2 {
    color: var(--gbf-white);
}

.service-areas-section .section-title::after {
    background-color: var(--gbf-gold);
}

.area-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(201,167,78,0.15);
    border: 1px solid rgba(201,167,78,0.4);
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gbf-gold);
    margin: 0.3rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.area-tag:hover {
    background-color: rgba(201,167,78,0.25);
    border-color: var(--gbf-gold);
    color: var(--gbf-white);
    box-shadow: 0 0 12px rgba(201,167,78,0.25);
}


/* ===== W. TESTIMONIAL ===== */
.testimonial-section {
    background: var(--gbf-bg-warm);
    border-top: 4px solid var(--gbf-gold);
    border-bottom: 4px solid var(--gbf-gold);
    position: relative;
}

.testimonial-section blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gbf-text);
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    padding: 1rem 2rem;
    line-height: 1.75;
}

.testimonial-section blockquote::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--gbf-gold);
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    font-style: normal;
    font-weight: 700;
    color: var(--gbf-green);
    font-size: 1.05rem;
}

.testimonial-stars {
    color: var(--gbf-gold);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}


/* ===== X. GALLERY FILTER PILLS & CARDS ===== */
.gallery-filters .btn {
    border-radius: var(--gbf-radius);
    padding: 0.45rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--gbf-border);
    color: var(--gbf-text-muted);
    background: var(--gbf-white);
    transition: all 0.2s ease;
    text-decoration: none;
}

.gallery-filters .btn:hover {
    border-color: var(--gbf-green);
    color: var(--gbf-green);
}

.gallery-filters .btn.active {
    background-color: var(--gbf-green);
    border-color: var(--gbf-green);
    color: var(--gbf-white);
    box-shadow: 0 2px 6px rgba(45,90,39,0.25);
}

.gallery-card {
    background: var(--gbf-white);
    border: 1px solid var(--gbf-border);
    border-radius: var(--gbf-radius);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    box-shadow: var(--gbf-shadow-lg);
    border-color: var(--gbf-green);
}

.gallery-color-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Wood grain texture on gallery color placeholders */
.gallery-color-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 6px,
            rgba(0,0,0,0.05) 6px,
            rgba(0,0,0,0.05) 7px
        );
    pointer-events: none;
}

.gallery-color-wood {
    background: linear-gradient(135deg, #8B6914 0%, #A0764A 50%, #6B4F1D 100%);
}

.gallery-color-vinyl {
    background: linear-gradient(135deg, #e8e4df 0%, #f5f2ee 50%, #d9d5d0 100%);
    color: #999;
}

/* Metal cross-hatch texture for vinyl/aluminum/chainlink */
.gallery-color-vinyl::before {
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            rgba(0,0,0,0.02) 8px,
            rgba(0,0,0,0.02) 9px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 8px,
            rgba(0,0,0,0.02) 8px,
            rgba(0,0,0,0.02) 9px
        ) !important;
}

.gallery-color-aluminum {
    background: linear-gradient(135deg, #6a6f74 0%, #8a8f94 30%, #a0a5aa 60%, #7a7f84 100%);
}

/* Metal brushed texture for aluminum */
.gallery-color-aluminum::before {
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.04) 2px,
            rgba(255,255,255,0.04) 3px
        ) !important;
}

.gallery-color-chainlink {
    background: linear-gradient(135deg, #5e6368 0%, #7a7f84 40%, #8a8f94 70%, #6e7378 100%);
}

/* Diamond pattern for chainlink */
.gallery-color-chainlink::before {
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.04) 10px,
            rgba(255,255,255,0.04) 11px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.04) 10px,
            rgba(255,255,255,0.04) 11px
        ) !important;
}

.gallery-card .card-body {
    padding: 1.25rem;
}

.fence-type-badge {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.badge-wood { background-color: #f5ecd7; color: #7a5a2e; border-left: 3px solid #A0764A; }
.badge-vinyl { background-color: #eef0f2; color: #4a5568; border-left: 3px solid #b0b5ba; }
.badge-aluminum { background-color: #e8eef4; color: #3a5570; border-left: 3px solid #7a8a9a; }
.badge-chainlink { background-color: #e8e8e8; color: #4a4a4a; border-left: 3px solid #7a7f84; }

.gallery-card .card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.gallery-card .card-text {
    font-size: 0.88rem;
    color: var(--gbf-text-muted);
}

/* Gallery fade transition for filtering */
.gallery-item {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item.gallery-hidden {
    opacity: 0;
    transform: scale(0.95);
    position: absolute;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
}


/* ===== Y. CONTACT PAGE ===== */
.contact-form .form-label {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--gbf-brown);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--gbf-border);
    border-radius: var(--gbf-radius);
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--gbf-green);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.15);
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    background: var(--gbf-white);
    border: 1px solid var(--gbf-border);
    border-left: 4px solid var(--gbf-green);
    border-radius: 0 var(--gbf-radius) var(--gbf-radius) 0;
    margin-bottom: 0.75rem;
    transition: border-left-color 0.2s ease, box-shadow 0.2s ease;
}

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

.contact-info-card .info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gbf-green);
    color: var(--gbf-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(45,90,39,0.2);
}

.contact-info-card .info-label {
    font-size: 0.78rem;
    color: var(--gbf-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.contact-info-card .info-value {
    font-weight: 700;
    color: var(--gbf-text);
    font-size: 1rem;
}

.contact-info-card a.info-value {
    text-decoration: none;
    color: var(--gbf-green);
}

.contact-info-card a.info-value:hover {
    color: var(--gbf-cta);
}

/* What Happens Next numbered steps */
.next-steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    position: relative;
}

/* Vertical connecting line */
.next-steps-list::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background-color: var(--gbf-green);
    opacity: 0.3;
}

.next-steps-list li {
    counter-increment: step-counter;
    padding: 0.85rem 0;
    padding-left: 3.25rem;
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
}

.next-steps-list li:last-child {
    border-bottom: none;
}

.next-steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--gbf-green);
    color: var(--gbf-gold);
    font-weight: 800;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(45,90,39,0.2);
}


/* ===== Z. ABOUT PAGE ===== */
.about-story {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-story p {
    margin-bottom: 1.25rem;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--gbf-green) 0%, var(--gbf-green-dark) 100%);
    border-radius: var(--gbf-radius);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

/* Fence picket pattern */
.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 2px,
        transparent 2px,
        transparent 22px
    );
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .about-image-placeholder {
        min-height: 220px;
        margin-bottom: 2rem;
    }
}

.value-card {
    background: var(--gbf-white);
    border: 1px solid var(--gbf-border);
    border-top: 4px solid var(--gbf-green);
    border-radius: 0 0 var(--gbf-radius) var(--gbf-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: border-top-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    border-top-color: var(--gbf-gold);
    box-shadow: var(--gbf-shadow);
}

.value-card .value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--gbf-green);
    color: var(--gbf-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    border: 3px solid var(--gbf-gold);
    box-shadow: 0 3px 8px rgba(45,90,39,0.2);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.value-card p {
    font-size: 0.92rem;
    color: var(--gbf-text-muted);
    margin-bottom: 0;
}

/* Stats bar for About page */
.stats-bar {
    background-color: var(--gbf-green);
    color: var(--gbf-white);
    position: relative;
}

/* Texture for stats bar */
.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 14px,
        rgba(255,255,255,0.015) 14px,
        rgba(255,255,255,0.015) 15px
    );
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 2.25rem 1rem;
    position: relative;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1.2;
    color: var(--gbf-gold);
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.35rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 767.98px) {
    .stat-item .stat-number {
        font-size: 1.85rem;
    }
}

/* Certification badges */
.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: var(--gbf-white);
    border: 1px solid var(--gbf-border);
    border-top: 3px solid var(--gbf-gold);
    border-radius: 0 0 var(--gbf-radius) var(--gbf-radius);
    text-align: center;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.cert-badge:hover {
    box-shadow: var(--gbf-shadow);
}

.cert-badge .cert-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--gbf-green);
    color: var(--gbf-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 6px rgba(45,90,39,0.2);
}

.cert-badge .cert-label {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gbf-brown);
}


/* ===== Z1. NAVBAR (fixed top with body padding) ===== */
body {
    padding-top: 76px;
}

#mainNav {
    background-color: var(--gbf-green);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: box-shadow 0.2s ease;
}

#mainNav .navbar-brand {
    color: var(--gbf-white);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.01em;
}

#mainNav .navbar-brand:hover {
    color: var(--gbf-gold);
}

#mainNav .nav-link {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

#mainNav .nav-link:hover,
#mainNav .nav-link:focus {
    color: var(--gbf-gold);
}

#mainNav .nav-link.active {
    color: var(--gbf-gold);
    font-weight: 700;
}

/* Active underline indicator */
#mainNav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.85rem;
    right: 0.85rem;
    height: 3px;
    background-color: var(--gbf-gold);
    border-radius: 2px 2px 0 0;
}

.nav-cta-btn {
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201,167,78,0.4);
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background-color: var(--gbf-gold);
    color: var(--gbf-brown-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 var(--gbf-radius) var(--gbf-radius);
    font-weight: 700;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
    color: var(--gbf-brown-dark);
}


/* ===== Z2. PRINT ===== */
@media print {
    .navbar, .cta-banner, .site-footer, .skip-link,
    .gbf-navbar, .gbf-cta-banner, .gbf-footer, .gbf-skip-link,
    .gbf-cookie-banner {
        display: none !important;
    }
    body {
        padding-top: 0;
        background: white;
        color: black;
    }
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8rem;
    }
    .page-header,
    .hero-section,
    .trust-bar,
    .service-areas-section,
    .cta-banner,
    .stats-bar {
        background: #333 !important;
        color: white !important;
    }
}


/* ===== Z3. ACCESSIBILITY ===== */
*:focus-visible {
    outline: 3px solid var(--gbf-gold);
    outline-offset: 2px;
}

.btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(201, 167, 78, 0.5);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-contrast: more) {
    :root {
        --gbf-text: #000000;
        --gbf-text-muted: #333333;
        --gbf-border: #666666;
    }

    a {
        text-decoration: underline;
    }

    .trust-item .trust-label,
    .stat-item .stat-label {
        opacity: 1;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Minimum touch target size for mobile */
@media (pointer: coarse) {
    .btn,
    .nav-link,
    .accordion-button,
    a {
        min-height: 44px;
        min-width: 44px;
    }
}
