/*
Theme Name: Dorgan's Landscaping & Lawn Care
Theme URI: https://netone360.com
Author: NetOne360
Author URI: https://netone360.com
Description: Custom WordPress theme for Dorgan's Landscaping & Lawn Care
Version: 3.3.0
License: Private
Text Domain: bgl
*/
/* ============================================================
   GOOGLE FONTS - BARLOW
   ============================================================ */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --primary: #1e743a;
    --primary-dark: #000000;
    --primary-light: #3399e8;
    --alt: #000000;
    --alt-dark: #000000;
    --alt-light: #444444;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --light-gray: #eef0f3;
    --mid-gray: #c4c8ce;
    --dark-gray: #6b7280;
    --text: #1a1a2e;
    --text-light: #4a4a5a;

    --font: 'Barlow', sans-serif;

    --max-width: 1280px;
    --section-pad: 100px;
    --section-pad-sm: 60px;

    --radius: 4px;
    --radius-lg: 8px;

    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
    --shadow-primary: 0 8px 32px rgba(0,124,214,0.25);

    --transition: all 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--alt);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-light);
}

.eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
}

/* Eyebrow inside dark hero sections */
.page-hero .eyebrow {
    color: #ffffff;
    opacity: 0.85;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.container--narrow {
    max-width: 860px;
}

.container--wide {
    max-width: 1440px;
}

.section {
    padding: var(--section-pad) 0;
}

.section--sm {
    padding: var(--section-pad-sm) 0;
}

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

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--white);
}

.section--dark p {
    color: rgba(255,255,255,0.8);
}

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

.section--primary h1,
.section--primary h2,
.section--primary h3,
.section--primary h4 {
    color: var(--white);
}

.section--primary p {
    color: rgba(255,255,255,0.9);
}

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

.grid {
    display: grid;
    gap: 32px;
    align-items: stretch;
}

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

.flex {
    display: flex;
    gap: 32px;
}

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

.flex--between {
    align-items: center;
    justify-content: space-between;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn--primary:hover {
    background: #000000;
    border-color: #000000;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--alt);
    border: 2px solid var(--white);
}

.btn--white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--alt);
    border-color: var(--white);
}

.btn--lg {
    padding: 20px 48px;
    font-size: 0.9rem;
}

/* ============================================================
   BGL HEADER / NAVIGATION
   ============================================================ */

/* Top bar */
.topbar {
    background: var(--alt-dark, #000000);
    padding: 8px 0;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar__left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.topbar__left a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.topbar__left a svg { display: none; }
.topbar__left a:hover { color: #1e743a; }
.topbar__right {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
}

/* Site header */
.site-header {
    background: #ffffff;
    border-bottom: 3px solid #000000;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 96px;
}
.header__logo {
    text-decoration: none;
    flex-shrink: 0;
}
.header__logo img,
.header__logo .custom-logo {
    height: 64px;
    width: auto !important;
    display: block;
}
/* Mobile toggle — HIDDEN on desktop, shown only in media query */
.mobile-menu-toggle {
    display: none !important;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
    margin-left: auto;
    flex-shrink: 0;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.25s;
    border-radius: 2px;
}

/* Desktop nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}
.nav-item { position: relative; }
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--alt, #000000);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-item > a:hover,
.nav-item > a.current { color: var(--primary, #1e743a); }

/* Dropdown */
.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    border: 1px solid var(--light-gray, #eef0f3);
    border-top: 3px solid var(--primary, #1e743a);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    min-width: 220px;
    z-index: 200;
    padding: 6px 0;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--alt, #000000);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover {
    background: var(--off-white, #f7f8fa);
    color: var(--primary, #1e743a);
}

/* Nav CTA */
.nav-cta {
    margin-left: 12px;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.78rem !important;
    padding: 14px 24px !important;
    border-radius: 0 !important;
}

/* Mobile toggle */

/* Mobile nav */
/* Mobile nav - see MOBILE NAV section below */

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(62, 53, 66, 0.85) 0%,
        rgba(62, 53, 66, 0.60) 50%,
        rgba(0, 124, 214, 0.25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 40px 100px;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.hero-content .eyebrow {
    color: var(--primary-light);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    max-width: 700px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 560px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: var(--alt);
    padding: 160px 40px 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0,124,214,0.15));
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .sep {
    color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
    color: var(--primary);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(0,124,214,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--alt);
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    flex-grow: 1;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 560px;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-left: 4px solid var(--primary);
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--alt);
    margin-top: 8px;
    margin-bottom: 28px;
}

/* ============================================================
   TEAM MEMBERS
   ============================================================ */
.team-member {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 48px;
}

.team-member.reverse {
    grid-template-columns: 1fr 360px;
}

.team-member.reverse .team-photo {
    order: 2;
}

.team-member.reverse .team-info {
    order: 1;
}

.team-photo {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-info {
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.team-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
    display: block;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--alt);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0,124,214,0.2) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0,124,214,0.15) 0%, transparent 70%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.area-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.area-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.area-card:hover::after {
    transform: scaleX(1);
}

.area-card h3 {
    font-size: 1rem;
    color: var(--alt);
    margin-bottom: 8px;
}

.area-card p {
    font-size: 0.88rem;
    color: var(--dark-gray);
    margin: 0;
}

.area-arrow {
    position: absolute;
    top: 28px;
    right: 28px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

.area-card:hover .area-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   TRUST BAR / STATS
   ============================================================ */
.trust-bar {
    background: var(--primary);
    padding: 48px 40px;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.trust-stat {
    text-align: center;
    color: var(--white);
}

.trust-stat .number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}

.trust-stat .label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
}

.trust-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.3);
}

/* ============================================================
   COMMUNITY PAGE SPECIFIC
   ============================================================ */
.community-intro {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: start;
}

.community-sidebar {
    position: sticky;
    top: 120px;
}

.contact-widget {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border: 1px solid var(--light-gray);
}

.contact-widget h3 {
    font-size: 1rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
}

.contact-widget-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-widget-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-widget-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-widget-item a {
    color: var(--alt);
    font-weight: 600;
}

.contact-widget-item a:hover {
    color: var(--primary);
}

.communities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.community-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--alt);
    transition: var(--transition);
    text-decoration: none;
}

.community-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateX(4px);
}

.community-link svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.community-link:hover svg {
    color: var(--white);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--alt);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,124,214,0.1);
}

.form-control::placeholder {
    color: var(--mid-gray);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

select.form-control {
    appearance: none;
    cursor: pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer,
.site-footer {
    background: var(--alt-dark);
    color: var(--white);
}

.footer-main {
    padding: 80px 40px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-brand img {
    height: 52px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
}

.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
    color: var(--primary);
}

.nhwa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,124,214,0.15);
    border: 1px solid rgba(0,124,214,0.3);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-top: 20px;
}

/* ============================================================
   WORDPRESS CORE CLASSES
   ============================================================ */
.wp-block-image { margin: 0; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-up {
    animation: fadeInUp 0.7s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================================
   MOBILE NAV — HAMBURGER & OVERLAY
   ============================================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(320px, 90vw);
    background: var(--alt);
    z-index: 1100;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    visibility: hidden;
}
.mobile-nav.active { right: 0; visibility: visible; }
.mobile-nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1099;
}
.mobile-nav__overlay.active { display: block; }
.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav__close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    padding: 4px;
}
.mobile-nav__links {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 8px 0;
}
.mobile-nav__links a {
    display: block;
    padding: 14px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s, background 0.2s;
}
.mobile-nav__links a:hover { color: #000000; background: rgba(255,255,255,0.04); }
.mobile-accordion__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    text-align: left;
}
.mobile-accordion__btn svg { transition: transform 0.25s; flex-shrink: 0; }
.mobile-accordion__btn.open svg { transform: rotate(180deg); }
.mobile-accordion__panel { display: none; background: rgba(0,0,0,0.2); }
.mobile-accordion__panel.open { display: block; }
.mobile-accordion__panel a {
    padding: 11px 24px 11px 36px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
}
.mobile-nav__footer {
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-sizing: border-box;
}

/* ============================================================
   FOOTER — 4 COLUMN GRID
   ============================================================ */
.site-footer { background: var(--alt-dark, #000000); color: #fff; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 48px;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000000;
    display: inline-block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: #1e743a; }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */
@media (max-width: 900px) {
    .site-nav { display: none !important; }
    .nav-cta  { display: none !important; }
    .mobile-menu-toggle { display: flex !important; }
    .topbar__right { display: none; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 0 32px; }
}

@media (max-width: 900px) {
    /* Container padding */
    .container { padding: 0 20px; }

    /* Sections */
    .section { padding: 56px 0; }
    .section--sm { padding: 36px 0; }

    /* Header */
    .header__inner { height: 100px; }
    .header__logo img,
    .header__logo .custom-logo { height: 56px !important; width: auto !important; }

    /* Page hero — enough top padding to clear the sticky header */
    .page-hero { padding: 100px 20px 60px; min-height: auto !important; }
    .page-hero h1 { font-size: 2.2rem; }
    .page-hero p  { font-size: 0.95rem; }

    /* CTA actions — stack */
    .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
    .cta-actions .btn, .cta-actions button { width: 100%; max-width: 360px; justify-content: center; text-align: center; }

    /* Grids — stack to 1 col */
    .grid--4, .grid--5, .grid--3, .grid--2 { grid-template-columns: 1fr !important; }

    /* About / service splits — stack */
    [style*="grid-template-columns:1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }
    [style*="direction:rtl"] { direction: ltr !important; }

    /* CTA section */
    .cta-section { padding: 56px 0; }
    .cta-section h2 { font-size: 1.8rem; }

    /* Footer */
    .footer__grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 24px; }
    .footer-col--brand { order: -1; }

    /* Service cards */
    .service-card { padding: 24px; }

    /* Process steps */
    .grid--4 { grid-template-columns: 1fr 1fr !important; }

    /* Forms */
    [style*="grid-template-columns:1fr 1fr"]:has(input),
    .form-row { grid-template-columns: 1fr !important; }

    /* Floating CTA */
    .bgl-floating-cta { display: none; }

    /* Service areas grid */
    .grid--3[style*="gap:12px"] { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 1.8rem; }
    .grid--4 { grid-template-columns: 1fr !important; }
    .grid--3[style*="gap:12px"] { grid-template-columns: 1fr !important; }
    .header__inner { height: 60px; }
    .topbar { display: none; }
    .footer__grid { gap: 20px; }
    .about-split { flex-direction: column; }
    .about-split .about-image,
    .about-split .about-content { width: 100%; min-height: auto; }
}

/* About split stacking fix */
@media (max-width: 900px) {
    .about-split {
        flex-direction: column !important;
        direction: ltr !important;
    }
    .about-split .about-image { min-height: 280px; }
    .about-split .about-content { padding: 40px 24px; }
}

/* ── Force square corners on all buttons including HCP ── */
.btn, .hcp-button.btn, button.btn,
.btn--primary, .btn--outline, .btn--outline-white,
.btn--lg { border-radius: 0 !important; }

/* ============================================================
   NAV BREAKPOINT — ABSOLUTE BACKSTOP
   ============================================================ */
@media screen and (min-width: 1201px) {
    .mobile-menu-toggle { display: none !important; }
    .site-nav           { display: flex !important; }
    .nav-cta            { display: inline-flex !important; }
}
@media screen and (max-width: 1200px) {
    .mobile-menu-toggle { display: flex !important; }
    .site-nav           { display: none !important; }
    .nav-cta            { display: none !important; }
}

@media (max-width: 1200px) {
    /* Extra breathing room below sticky header on mobile hero */
    .page-hero { padding-top: 120px; }
}
@media (max-width: 480px) {
    .page-hero { padding-top: 100px; }
}

/* ── Review cards equal height ── */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .review-grid { grid-template-columns: 1fr; } }

/* ── Community & City page mobile fixes ── */
@media (max-width: 900px) {
    .community-layout {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .community-layout > div:last-child {
        position: static !important;
    }
    .community-services-grid {
        grid-template-columns: 1fr !important;
    }
    .city-about-split {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}

@media (max-width: 900px) {
    .service-split {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}

/* ============================================================
   IRISH / CLOVER THEME — Dorgan's Landscaping
   ============================================================ */

/* Clover section divider */
.clover-divider {
    text-align: center;
    margin: 8px 0;
    line-height: 1;
}
.clover-divider img {
    height: 32px;
    width: auto;
    opacity: 0.85;
}

/* Clover bullet list */
.clover-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.clover-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}
.clover-list li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('https://www.dorganslandscaping.com/wp-content/uploads/2024/10/clover.png');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Irish green accent on section eyebrows */
.eyebrow {
    color: var(--primary);
}

/* Clover watermark on hero */
.hero-clover {
    position: absolute;
    right: 60px;
    bottom: 40px;
    width: 120px;
    height: 120px;
    background-image: url('https://www.dorganslandscaping.com/wp-content/uploads/2024/10/clover.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

/* Trust bar clover icon */
.topbar__left a::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('https://www.dorganslandscaping.com/wp-content/uploads/2024/10/clover.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 2px;
    opacity: 0.7;
}

/* Section break clover row */
.clover-break {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 0;
    opacity: 0.6;
}
.clover-break img { height: 18px; width: auto; }
.clover-break::before,
.clover-break::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--primary);
    opacity: 0.3;
}

/* ── Dorgan's layout fixes ── */
.grid--5 { justify-content: center; }
.grid--4 { justify-content: center; }
.grid--3 { justify-content: center; }
.grid--2 { justify-content: center; }
.grid { justify-content: center; }

/* Larger logo */
.header__logo img,
.site-header .custom-logo { 
    height: 80px !important; 
    width: auto !important; 
}
.footer-col--brand img {
    height: 72px !important;
    width: auto !important;
}

/* ── Dorgan's Oversized Logo Design ── */
.site-header {
    position: relative;
    z-index: 100;
}

.header__logo {
    position: relative;
}

.header__logo img {
    height: 160px !important;
    width: auto !important;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    transition: transform 0.2s;
}

.header__logo img:hover {
    transform: scale(1.04);
}

/* Logo badge ring */
.header__logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 20px rgba(30,116,58,0.25);
    z-index: 9;
}

/* Extend header height to accommodate large logo */
.header__inner {
    min-height: 90px;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Hero section — add top padding so text doesn't sit behind logo on overlap */
.page-hero {
    padding-top: 20px !important;
}

/* Footer logo */
.footer-col--brand img {
    height: 90px !important;
    width: auto !important;
}

@media (max-width: 900px) {
    .header__logo img { height: 72px !important; }
    .header__logo::before { width: 80px; height: 80px; }
    .header__inner { min-height: 64px; }
}

/* ═══════════════════════════════════════
   DORGAN'S — FINAL POLISH
   ═══════════════════════════════════════ */

/* ── Logo badge → white circle ── */
.header__logo::before {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(30,116,58,0.2) !important;
}

/* ── Topbar clover fix — keep inline, not above ── */
.topbar__right img { vertical-align: middle !important; }

/* ── Eyebrow clover ── */
.eyebrow::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('https://www.dorganslandscaping.com/wp-content/uploads/2024/10/clover.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 6px;
    opacity: 0.75;
}
/* Don't add clover on dark/hero eyebrows */
.section--dark .eyebrow::before,
.page-hero .eyebrow::before,
.cta-section .eyebrow::before { display: none; }

/* ── Location / city service grid — square cards, centered ── */
.location-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.location-service-card {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    border: 2px solid var(--light-gray);
    border-top: 4px solid var(--primary);
    padding: 24px 16px;
    text-decoration: none;
    transition: all 0.2s;
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.location-service-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30,116,58,0.12);
    color: var(--primary);
}
.location-service-card h3 {
    font-size: 1rem;
    margin: 0 0 8px;
    color: inherit;
}
.location-service-card p {
    font-size: 0.76rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}
.location-service-card .card-icon {
    width: 44px;
    height: 44px;
    background: rgba(30,116,58,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .location-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .location-service-card {
        padding: 18px 12px;
        aspect-ratio: unset;
        min-height: 120px;
    }
    .location-service-card p { display: none; }
}
@media (max-width: 480px) {
    .location-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════
   LOGO — HERO STAMP DESIGN
   ═══════════════════════════════════════ */

/* Keep nav logo small and clean */
.header__logo::before { display: none !important; }
.header__logo img {
    height: 64px !important;
    filter: none !important;
}

/* Hero stamp logo — big circular badge bottom-left of hero */
.hero-logo-stamp {
    position: absolute;
    bottom: -55px;
    left: 48px;
    z-index: 10;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #ffffff;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 4px rgba(30,116,58,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-logo-stamp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Push hero content right so text never overlaps stamp */
.hero-with-stamp .container {
    padding-left: 220px !important;
}

/* Section after hero needs top padding for stamp overhang */
.hero-stamp-spacer {
    padding-top: 72px !important;
}

@media (max-width: 900px) {
    .hero-logo-stamp {
        width: 90px;
        height: 90px;
        bottom: -40px;
        left: 20px;
    }
    .hero-with-stamp .container {
        padding-left: 24px !important;
    }
    .hero-stamp-spacer {
        padding-top: 56px !important;
    }
}
@media (max-width: 600px) {
    .hero-logo-stamp { display: none; }
    .hero-stamp-spacer { padding-top: 0 !important; }
}

/* ═══════════════════════════════════════
   SPLIT NAV HEADER
   ═══════════════════════════════════════ */
.site-header {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 200;
}

.header__split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 180px 1fr;
    align-items: center;
    min-height: 140px;
    gap: 0;
}

/* Center logo — large */
.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    z-index: 5;
}
.header__logo img {
    height: 160px !important;
    width: auto !important;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    transition: transform 0.2s;
}
.header__logo img:hover { transform: scale(1.04); }

/* Left nav */
.header__nav--left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    padding-right: 12px;
}

/* Right nav */
.header__nav--right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding-left: 12px;
}

.header__nav a {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--alt);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: color 0.2s;
    white-space: nowrap;
}
.header__nav a:hover,
.header__nav a.current { color: var(--primary); }

.header__nav .nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 10px 18px !important;
    border-radius: 4px !important;
    margin-left: 8px;
}
.header__nav .nav-cta:hover { background: #000 !important; color: #fff !important; }

/* Dropdowns */
.header__nav .nav-item { position: relative; }
.header__nav .nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    min-width: 220px;
    padding: 8px 0;
    z-index: 300;
    border-top: 3px solid var(--primary);
}
.header__nav--right .nav-dropdown { left: auto; right: 0; transform: none; }
.header__nav--left .nav-dropdown { left: 0; transform: none; }
.header__nav .nav-item:hover .nav-dropdown { display: block; }
.header__nav .nav-dropdown a {
    display: block;
    padding: 9px 18px;
    font-size: 0.78rem;
    color: var(--text) !important;
    border-radius: 0;
}
.header__nav .nav-dropdown a:hover { color: var(--primary) !important; background: var(--off-white); }

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--alt);
    transition: all 0.3s;
}
.mobile-menu { display: none; }
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: block;
    padding: 13px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--alt);
    text-decoration: none;
    border-bottom: 1px solid var(--light-gray);
}
.mobile-menu a:hover { color: var(--primary); }

/* Remove old header__before pseudo */
.header__logo::before { display: none !important; }

/* Remove stamp from hero — clean hero now */
.hero-logo-stamp { display: none !important; }
.hero-with-stamp .container { padding-left: 24px !important; }

@media (max-width: 1024px) {
    .header__nav a { font-size: 0.7rem; padding: 6px 8px; }
    .header__logo img { height: 90px !important; }
    .header__split { min-height: 80px; }
}

@media (max-width: 768px) {
    .header__split {
        grid-template-columns: 1fr auto auto;
        padding: 0 16px;
        min-height: 70px;
    }
    .header__nav--left,
    .header__nav--right { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header__logo img { height: 72px !important; }
    .header__logo { justify-content: flex-start; }
}

/* ── Topbar white text force ── */
.topbar__left a,
.topbar__right { color: #ffffff !important; }
.topbar__left a:hover { color: #1e743a !important; }

/* ═══════════════════════════════════════
   MOBILE FIX — COMPREHENSIVE
   ═══════════════════════════════════════ */

/* Prevent horizontal scroll / slide */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
* { box-sizing: border-box; }

/* Fix any element that bleeds viewport */
img, video, iframe, table { max-width: 100%; }

/* ── Mobile menu JS toggle ── */
.mobile-menu {
    display: none;
    background: #fff;
    border-top: 3px solid var(--primary);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }

/* ── Split header on mobile ── */
@media (max-width: 768px) {
    .topbar { padding: 0 16px; }
    .topbar__left a { font-size: 0.62rem; gap: 5px; }

    .header__split {
        grid-template-columns: auto 1fr auto;
        padding: 8px 16px;
        min-height: 70px;
        gap: 12px;
    }
    .header__nav--left,
    .header__nav--right { display: none !important; }
    .mobile-menu-toggle { display: flex !important; }
    .header__logo { justify-content: center; }
    .header__logo img { height: 70px !important; }

    /* Hero */
    .page-hero { min-height: 420px; }
    .page-hero .container { padding: 48px 16px 60px !important; }
    .page-hero h1 { font-size: 2rem !important; }
    .page-hero p { font-size: 0.9rem !important; }
    .cta-actions { flex-direction: column; gap: 10px !important; }
    .cta-actions .btn { width: 100%; justify-content: center; text-align: center; }
    .hero-with-stamp .container { padding-left: 16px !important; }

    /* Grids → single column */
    .grid--5, .grid--4, .grid--3, .grid--2 {
        grid-template-columns: 1fr !important;
    }
    .footer__grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .community-layout { grid-template-columns: 1fr !important; }
    .service-split { grid-template-columns: 1fr !important; gap: 24px !important; }
    .city-about-split { grid-template-columns: 1fr !important; gap: 24px !important; }
    .about-split { flex-direction: column !important; }
    .about-split > div { width: 100% !important; }

    /* Location services grid → 2 cols */
    .location-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .location-service-card { aspect-ratio: unset !important; min-height: 110px; }
    .location-service-card p { display: none; }

    /* Map sidebar → stack */
    #bgl-map-wrap { flex-direction: column !important; }
    #bgl-map { height: 280px !important; }
    #bgl-loc-list { max-height: 300px !important; }

    /* Forms */
    .form-group + .form-group { margin-top: 16px; }
    [style*="grid-template-columns:1fr 1fr"] {
        display: block !important;
    }

    /* Review cards */
    .grid--3 { grid-template-columns: 1fr !important; }

    /* Section padding */
    .section { padding: 48px 0 !important; }
    .container { padding-left: 16px !important; padding-right: 16px !important; }

    /* Floating CTA hidden on mobile */
    .bgl-floating-cta { display: none !important; }

    /* Clover breaks */
    .clover-break { margin: 4px 0; }

    /* Community services grid */
    .community-services-grid {
        grid-template-columns: 1fr !important;
    }
    .community-layout > div:last-child {
        position: static !important;
    }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 1.7rem !important; }
    .header__logo img { height: 56px !important; }
    .location-services-grid { grid-template-columns: 1fr 1fr !important; }
    .btn--lg { padding: 12px 20px !important; font-size: 0.76rem !important; }
}

/* ── Mobile menu styles ── */
.mobile-menu a {
    display: block;
    padding: 13px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.15s, background 0.15s;
}
.mobile-menu a:hover {
    color: var(--primary);
    background: #f9f9f9;
}
.mobile-menu a[style*="background:#1e743a"],
.mobile-menu a[style*="background: #1e743a"] {
    color: #fff !important;
}

/* ── Footer menu tighter spacing ── */
.footer-col ul { gap: 4px !important; }
.footer-col ul li { margin-bottom: 0 !important; }
.footer-col ul li a { font-size: 0.82rem !important; line-height: 1.4 !important; padding: 3px 0; display: block; }

/* ── Dropdown hover delay — prevents timeout on mouse travel ── */
.header__nav .nav-item { position: relative; }
.header__nav .nav-dropdown {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.header__nav .nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}
/* Bridge gap between nav link and dropdown so mouse doesn't lose hover */
.header__nav .nav-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

/* ── Nav font size increase ── */
.header__nav a {
    font-size: 0.85rem !important;
    letter-spacing: 0.08em !important;
}
.header__nav .nav-cta {
    font-size: 0.82rem !important;
}

/* ── Services page stacked mobile fix ── */
@media (max-width: 768px) {
    .about-split {
        flex-direction: column !important;
        direction: ltr !important;
    }
    .about-split > * {
        direction: ltr !important;
        width: 100% !important;
    }
    .about-split .about-image {
        min-height: 240px !important;
        height: 240px !important;
    }
    .about-split .about-content {
        padding: 32px 20px !important;
    }
    /* Fix RTL reversed sections — image always on top on mobile */
    .about-split[style*="direction:rtl"] {
        flex-direction: column !important;
    }
    .about-split[style*="direction:rtl"] .about-image {
        order: -1 !important;
    }
}

/* ── About-split / Services page — definitive mobile fix ── */
@media (max-width: 768px) {
    .about-split {
        display: flex !important;
        flex-direction: column !important;
        direction: ltr !important;
        min-height: unset !important;
    }
    .about-split[style*="direction:rtl"] {
        flex-direction: column !important;
    }
    .about-image {
        width: 100% !important;
        min-height: 260px !important;
        max-height: 300px !important;
        order: 0 !important;
    }
    /* Force RTL reversed image back on top */
    .about-split[style*="direction:rtl"] .about-image {
        order: -1 !important;
        direction: ltr !important;
    }
    .about-split[style*="direction:rtl"] .about-content {
        direction: ltr !important;
    }
    .about-content {
        width: 100% !important;
        padding: 32px 20px !important;
        order: 1 !important;
    }
    .about-content h2 { font-size: 1.6rem !important; }
}
