/*
Theme Name: Midwest Breeze Landscaping
Theme URI: https://midwestbreezelandscaping.com
Author: Midwest Breeze
Author URI: https://midwestbreezelandscaping.com
Description: Custom WordPress theme for Midwest Breeze Landscaping — Addison, IL's premier landscape design and maintenance team.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: midwest-breeze
Tags: landscaping, one-page, custom-menu, featured-images
*/

/* -----------------------------------------------------------
   DEDICATED CSS - PERFORMANCE OPTIMIZED - NO FRAMEWORKS
   ----------------------------------------------------------- */

:root {
    /* Brand Colors */
    --color-black: #0a0a0a;
    --color-dark: #121212;
    --color-green: #137a07;
    --color-green-bright: #1cb50a;
    --color-gray: #dddddd;
    --color-white: #ffffff;

    /* Typography */
    --font-head: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1400px;
    --padding-section: 6rem 2rem;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-black);
    color: var(--color-gray);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.9;
    color: var(--color-white);
}

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

ul {
    list-style: none;
}

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

/* UTILITIES */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-green { color: var(--color-green); }
.text-outline {
    -webkit-text-stroke: 1px var(--color-gray);
    color: transparent;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-green);
    color: var(--color-white);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--color-green);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%;
    height: 100%;
    background: var(--color-white);
    z-index: -1;
    transition: var(--transition);
}

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

.btn:hover::before {
    width: 100%;
}

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

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

.btn-outline:hover::before {
    background: var(--color-green);
}

/* -----------------------------------------------------------
   HEADER & NAV
   ----------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -1px;
}

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

/* Primary Navigation */
.nav-links,
.nav-links ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    color: var(--color-gray);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-green);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links .current-menu-item a::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    color: var(--color-white);
    cursor: pointer;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--color-green);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    z-index: 999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-overlay a {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-white);
    transition: var(--transition);
}

.mobile-nav-overlay a:hover {
    color: var(--color-green);
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--color-white);
    cursor: pointer;
    font-size: 2rem;
}

/* -----------------------------------------------------------
   HERO SECTION
   ----------------------------------------------------------- */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(19,122,7,0.4) 0%, rgba(10,10,10,0) 70%);
    z-index: -1;
    filter: blur(80px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
    color: var(--color-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 600px;
    width: 100%;
    border-radius: 0;
    clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(19, 122, 7, 0.2);
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* -----------------------------------------------------------
   SCROLL MARQUEE
   ----------------------------------------------------------- */
.marquee {
    background: var(--color-green);
    color: var(--color-black);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-2deg) scale(1.05);
    margin: 4rem 0;
    border-top: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.marquee span {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 2rem;
    text-transform: uppercase;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* -----------------------------------------------------------
   ABOUT / INTRO
   ----------------------------------------------------------- */
.about-section {
    padding: var(--padding-section);
    background: var(--color-dark);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    color: var(--color-green);
    display: block;
    margin-bottom: 0.5rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat h3 {
    font-size: 3rem;
    color: var(--color-green);
}

.stat p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image img {
    border-radius: 0;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    filter: grayscale(100%);
    transition: 0.5s;
}

.about-image img:hover {
    filter: grayscale(0%);
}

/* -----------------------------------------------------------
   SERVICES
   ----------------------------------------------------------- */
.services-section {
    padding: var(--padding-section);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 4rem;
    color: var(--color-white);
}

.section-header span {
    color: var(--color-green);
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.service-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    border-top: 1px solid rgba(221, 221, 221, 0.2);
    padding: 2.5rem 0;
    display: grid;
    grid-template-columns: 0.5fr 2fr 1fr;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.service-item:last-child {
    border-bottom: 1px solid rgba(221, 221, 221, 0.2);
}

.service-num {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--color-green);
    opacity: 0.5;
}

.service-title {
    font-size: 3.5rem;
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--color-gray);
    transition: var(--transition);
}

.service-desc {
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(19, 122, 7, 0.1);
    padding-left: 2rem;
}

.service-item:hover .service-title {
    color: var(--color-white);
    margin-left: 1rem;
}

.service-item:hover .service-desc {
    opacity: 1;
    transform: translateX(0);
}

.service-item.snow {
    border-color: rgba(60, 160, 255, 0.3);
}

.service-item.snow:hover {
    background: rgba(60, 160, 255, 0.1);
}

/* -----------------------------------------------------------
   GALLERY / RECENT WORK
   ----------------------------------------------------------- */
.gallery-section {
    padding: var(--padding-section);
    background: var(--color-white);
    color: var(--color-black);
}

.gallery-section h2 {
    color: var(--color-black);
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-align: right;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #000;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.8;
}

.gallery-card:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

/* -----------------------------------------------------------
   CONTACT / LOCATION
   ----------------------------------------------------------- */
.contact-section {
    padding: var(--padding-section);
    background: var(--color-black);
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: #1a1a1a;
    padding: 4rem;
    border: 1px solid #333;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.contact-list i {
    color: var(--color-green);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid #444;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--color-green);
    background: rgba(255,255,255,0.05);
}

select.form-control {
    background: #1a1a1a;
}

/* -----------------------------------------------------------
   FOOTER
   ----------------------------------------------------------- */
.site-footer {
    padding: 4rem 2rem;
    background: var(--color-black);
    border-top: 1px solid #222;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-links,
.footer-links ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: var(--color-gray);
    transition: var(--transition);
}

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

.copyright {
    color: #666;
    font-size: 0.8rem;
}

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

    .hero-content p {
        margin: 0 auto 2rem auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid, .contact-container {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1rem;
    }

    .service-num, .service-desc {
        display: none;
    }

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

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 2rem;
    }

    .contact-container {
        padding: 2rem;
    }

    .hero-image {
        height: 350px;
    }
}
/* -----------------------------------------------------------
   MOBILE FIXES v2 — midwest-breeze
   REPLACES the previous mobile-fixes.css entirely.
   Paste at the BOTTOM of style.css or enqueue separately.
   ----------------------------------------------------------- */

/* ============================================================
   1. GLOBAL: Kill horizontal scroll
   ============================================================ */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.marquee {
    overflow: hidden;
}

.site-wrapper {
    overflow-x: clip;
    width: 100%;
}

/* ============================================================
   2. HEADER: Mobile layout
   ============================================================ */
@media (max-width: 992px) {
    .site-header {
        padding: 1rem 0;
    }

    .nav-wrapper {
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .cta-phone-text {
        display: none;
    }

    .cta-phone-link {
        display: flex;
        align-items: center;
        color: var(--color-green);
    }

    .cta-phone {
        gap: 0.75rem;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
    }
}

@media (max-width: 400px) {
    .logo {
        font-size: 1rem;
    }
}

/* ============================================================
   3. HERO: Proper mobile sizing — NO ugly word breaks
   ============================================================ */
@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: unset;
        padding: 7rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        letter-spacing: -1px;
        word-break: normal;
        overflow-wrap: normal;
        hyphens: none;
        padding: 0 0.25rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 0 auto 2rem auto;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        padding: 0.85rem 1.75rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .hero-image {
        height: 300px;
        width: calc(100% - 1rem);
        margin: 0 auto;
        clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6.5rem 0 2rem;
    }

    /* "LANDSCAPING" in Syne 800 at ~1.85rem fits on one line on 375px */
    .hero-content h1 {
        font-size: 1.85rem;
        letter-spacing: -0.5px;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .hero-image {
        height: 250px;
    }
}

/* iPhone SE / 320px */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
}

/* ============================================================
   4. MARQUEE
   ============================================================ */
@media (max-width: 992px) {
    .marquee {
        transform: rotate(-1deg) scale(1.02);
        margin: 2rem 0;
        padding: 1rem 0;
    }

    .marquee span {
        font-size: 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .marquee {
        transform: rotate(0deg) scale(1);
    }

    .marquee span {
        font-size: 1.2rem;
        margin: 0 0.75rem;
    }
}

/* ============================================================
   5. ABOUT SECTION
   ============================================================ */
@media (max-width: 992px) {
    .about-section {
        padding: 4rem 1.5rem;
    }

    .about-grid {
        gap: 2.5rem;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .stat-grid {
        gap: 1.5rem;
    }

    .stat h3 {
        font-size: 2.2rem;
    }
}

/* ============================================================
   6. SERVICES
   ============================================================ */
@media (max-width: 992px) {
    .services-section {
        padding: 4rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.6rem;
    }

    .service-item {
        padding: 1.5rem 0;
    }
}

/* ============================================================
   7. GALLERY
   ============================================================ */
@media (max-width: 992px) {
    .gallery-section {
        padding: 4rem 1.5rem;
    }

    .gallery-section h2 {
        font-size: 2.5rem;
        text-align: left;
    }

    .gallery-card {
        height: 280px;
    }

    .gallery-info {
        transform: translateY(0);
    }
}

/* ============================================================
   8. CONTACT
   ============================================================ */
@media (max-width: 992px) {
    .contact-section {
        padding: 4rem 1rem;
    }

    .contact-container {
        padding: 2rem 1.5rem;
        gap: 2.5rem;
        border: none;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-list li {
        font-size: 1rem;
    }

    .form-control {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 1.5rem 1rem;
    }
}

/* ============================================================
   9. FOOTER — Complete redesign styles
   ============================================================ */

/* Override original footer-logo to prevent overflow */
.site-footer .footer-logo {
    font-size: clamp(1.3rem, 4vw, 2rem);
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* Divider line */
.footer-divider {
    width: 60px;
    height: 1px;
    background: #333;
    margin: 0 auto 1.5rem;
}

/* Phone row */
.footer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-gray);
}

.footer-phone a {
    color: var(--color-green);
    transition: color 0.3s ease;
}

.footer-phone a:hover {
    color: var(--color-green-bright, #1cb50a);
}

.footer-phone svg,
.footer-phone i {
    width: 18px;
    height: 18px;
    color: var(--color-green);
}

/* Social icons */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(221,221,221,0.15);
    border-radius: 50%;
    color: var(--color-gray);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-link:hover {
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-social-link.fs-linkedin:hover  { border-color: #0A66C2; background: rgba(10,102,194,0.15); }
.footer-social-link.fs-facebook:hover  { border-color: #1877F2; background: rgba(24,119,242,0.15); }
.footer-social-link.fs-instagram:hover { border-color: #E4405F; background: rgba(228,64,95,0.15); }
.footer-social-link.fs-nextdoor:hover  { border-color: #00B246; background: rgba(0,178,70,0.15); }

.footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Nav links — ensure wrap */
.footer-links,
.footer-links ul {
    flex-wrap: wrap;
    justify-content: center;
}

/* Legal links */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 0.75rem;
    color: #555;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-legal a:hover {
    color: var(--color-green);
}

.footer-legal .legal-sep {
    color: #333;
}

/* Copyright — already styled, just tighten */
.site-footer .copyright {
    color: #555;
    font-size: 0.75rem;
    margin-top: 0;
}

/* Mobile footer tweaks */
@media (max-width: 992px) {
    .site-footer {
        padding: 3rem 1.5rem;
    }

    .footer-links,
    .footer-links ul {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-socials {
        gap: 0.6rem;
    }

    .footer-social-link {
        width: 38px;
        height: 38px;
    }

    .footer-phone {
        font-size: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-legal .legal-sep {
        display: none;
    }
}

/* ============================================================
   10. GLOBAL MOBILE
   ============================================================ */
@media (max-width: 992px) {
    :root {
        --padding-section: 4rem 1.5rem;
    }

    img, video, iframe, table, pre, blockquote {
        max-width: 100%;
    }

    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}
/* -----------------------------------------------------------
   MOBILE NAV & HEADER PHONE FIX
   Add this at the very bottom of style.css,
   AFTER the mobile-fixes block.
   ----------------------------------------------------------- */

/* ============================================================
   HEADER: Hide phone NUMBER text on mobile, keep icon only
   ============================================================ */
@media (max-width: 992px) {

    /* Hide the phone number text — icon stays */
    .cta-phone .cta-phone-text,
    .cta-phone a span,
    .cta-phone > a:not(.cta-phone-link) {
        display: none !important;
    }

    /* If the old header.php structure has a bare <a> with text */
    .cta-phone a {
        font-size: 0;        /* collapse text */
        line-height: 0;
    }

    /* But keep the icon visible */
    .cta-phone a i,
    .cta-phone a svg,
    .cta-phone i,
    .cta-phone svg {
        font-size: 1rem;
        width: 22px;
        height: 22px;
        display: block;
    }

    /* Keep the phone link wrapper clickable */
    .cta-phone-link,
    .cta-phone > a {
        display: flex;
        align-items: center;
        color: var(--color-green);
    }

    /* Tighten the header bar */
    .cta-phone {
        gap: 0.75rem;
        align-items: center;
    }
}

/* ============================================================
   MOBILE NAV OVERLAY: Full restyle
   ============================================================ */

/* Base overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 2rem;
    text-align: center;
}

.mobile-nav-overlay.active {
    display: flex;
}

/* Close button */
.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--color-white);
    cursor: pointer;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close i,
.mobile-nav-close svg {
    width: 28px;
    height: 28px;
}

/* Remove all default list styling from WP menu output */
.mobile-nav-overlay ul,
.mobile-nav-overlay li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.mobile-nav-overlay li::before,
.mobile-nav-overlay li::marker {
    content: none !important;
    display: none !important;
}

/* Nav links — whether <a> direct children or inside <li> */
.mobile-nav-overlay a,
.mobile-nav-overlay li a {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-white);
    letter-spacing: -0.5px;
    display: block;
    padding: 0.75rem 0;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    position: relative;
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay li a:hover {
    color: var(--color-green);
    transform: translateX(5px);
}

/* Subtle line between links */
.mobile-nav-overlay li + li {
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Phone CTA button at bottom */
.mobile-nav-overlay .btn {
    margin-top: 2rem;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    width: auto;
    max-width: 280px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Decorative green accent */
.mobile-nav-overlay::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(19,122,7,0.15) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
}

/* Small phone tweaks */
@media (max-width: 480px) {
    .mobile-nav-overlay a,
    .mobile-nav-overlay li a {
        font-size: 1.8rem;
        padding: 0.6rem 0;
    }

    .mobile-nav-overlay .btn {
        font-size: 0.9rem;
        padding: 0.85rem 2rem;
    }
}
/* -----------------------------------------------------------
   TEXT OVERFLOW FIX — paste at very bottom of style.css
   Fixes cut-off headings in About, Contact, and Stats
   ----------------------------------------------------------- */

/* Force all headings to stay within bounds */
@media (max-width: 992px) {
    h1, h2, h3, h4 {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    /* About section heading */
    .about-text h2 {
        font-size: 2rem;
    }

    /* Contact heading */
    .contact-info h2 {
        font-size: 1.8rem;
    }

    /* Stats — stack them and shrink */
    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    /* Section headers (services etc.) */
    .section-header h2 {
        font-size: 2.2rem;
    }

    /* Gallery heading */
    .gallery-section h2 {
        font-size: 2.2rem;
    }

    /* About paragraphs — ensure they don't overflow */
    .about-text p,
    .contact-info p {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    /* Give all sections more side padding */
    .about-section,
    .contact-section,
    .services-section,
    .gallery-section {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .about-grid {
        gap: 2rem;
    }

    /* Contact container inner padding */
    .contact-container {
        padding: 2rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.7rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .gallery-section h2 {
        font-size: 1.8rem;
    }

    .contact-container {
        padding: 1.5rem 1rem;
    }

    .about-section,
    .contact-section,
    .services-section,
    .gallery-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
/* -----------------------------------------------------------
   DROPDOWN NAVIGATION — DEFINITIVE FIX
   Paste at the VERY BOTTOM of style.css (after all other CSS)
   ----------------------------------------------------------- */


/* ============================================================
   DESKTOP: Allow dropdown to overflow the header
   ============================================================ */

/* The header itself must allow visible overflow for the dropdown */
.site-header {
    overflow: visible !important;
}

.site-header .nav-wrapper {
    overflow: visible !important;
}

.site-header .nav-links {
    overflow: visible !important;
}

.site-header .nav-links > ul {
    overflow: visible !important;
}


/* ============================================================
   DESKTOP DROPDOWN
   ============================================================ */

.nav-links li.menu-item-has-children {
    position: relative;
}

/* The dropdown panel */
.nav-links li.menu-item-has-children > .sub-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 230px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 2px solid var(--color-green);
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 10000;
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}

/* Hover bridge — invisible gap filler */
.nav-links li.menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
    pointer-events: auto;
    background: transparent;
}

/* Show dropdown on hover */
.nav-links li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown list items */
.nav-links .sub-menu li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* Dropdown links */
.nav-links .sub-menu li a {
    display: block !important;
    padding: 0.6rem 1.4rem !important;
    font-family: var(--font-head) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #aaa !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    position: relative !important;
    transition: all 0.2s ease !important;
    background: transparent !important;
    line-height: 1.5 !important;
    border: none !important;
}

/* Green left-bar on hover */
.nav-links .sub-menu li a::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 3px !important;
    height: 100% !important;
    background: var(--color-green) !important;
    transform: scaleY(0) !important;
    transition: transform 0.2s ease !important;
}

.nav-links .sub-menu li a:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.04) !important;
    padding-left: 1.65rem !important;
}

.nav-links .sub-menu li a:hover::before {
    transform: scaleY(1) !important;
}

/* ============================================================
   MOBILE: Submenu inside overlay
   ============================================================ */

/* --- Parent item row: link + toggle side by side --- */
.mobile-nav-overlay li.menu-item-has-children {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
}

/* --- Sub-menu: collapsed by default --- */
.mobile-nav-overlay ul.sub-menu,
.mobile-nav-overlay .sub-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    flex-basis: 100% !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease, padding 0.4s ease !important;
    border: none !important;
}

/* --- Sub-menu: expanded --- */
.mobile-nav-overlay li.submenu-open > ul.sub-menu,
.mobile-nav-overlay li.submenu-open > .sub-menu {
    max-height: 600px !important;
    padding: 0.25rem 0 0.75rem !important;
}

/* --- Sub-menu items --- */
.mobile-nav-overlay .sub-menu li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
}

.mobile-nav-overlay .sub-menu li + li {
    border-top: none !important;
}

/* --- Sub-menu links: SMALLER than parent links --- */
.mobile-nav-overlay .sub-menu li a,
.mobile-nav-overlay ul.sub-menu li a {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #999 !important;
    padding: 0.4rem 0 !important;
    letter-spacing: 1.5px !important;
    opacity: 0.8 !important;
    transform: none !important;
}

.mobile-nav-overlay .sub-menu li a:hover,
.mobile-nav-overlay ul.sub-menu li a:hover {
    color: var(--color-green) !important;
    opacity: 1 !important;
    transform: none !important;
}

/* --- Toggle button (+) --- */
.mobile-submenu-toggle {
    display: none !important;
}

.mobile-nav-overlay .mobile-submenu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 50% !important;
    color: var(--color-green) !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    margin-left: 0.6rem !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    padding: 0 !important;
    font-family: var(--font-head) !important;
}

.mobile-nav-overlay .mobile-submenu-toggle:hover {
    background: rgba(19,122,7,0.15) !important;
    border-color: var(--color-green) !important;
}

/* Active toggle — rotates to × */
.mobile-nav-overlay li.submenu-open > .mobile-submenu-toggle {
    transform: rotate(45deg) !important;
    background: var(--color-green) !important;
    border-color: var(--color-green) !important;
    color: #fff !important;
}


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

@media (max-width: 992px) {
    /* Don't show desktop dropdown on mobile */
    .nav-links li.menu-item-has-children > .sub-menu {
        display: none !important;
    }
    .nav-links > ul > li.menu-item-has-children > a::after {
        display: none !important;
    }
}

@media (min-width: 993px) {
    .mobile-submenu-toggle {
        display: none !important;
    }
}