:root{--page-title-display:none;}/* Start custom CSS *//* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --green: #88c440;
            --green-dark: #6fa832;
            --green-light: #a4d65e;
            --navy: #012b43;
            --navy-deep: #00344d;
            --navy-light: #112337;
            --white: #ffffff;
            --gray-50: #f8fafb;
            --gray-100: #f0f4f7;
            --gray-200: #dce4ea;
            --gray-400: #8fa3b3;
            --gray-600: #5a6f7d;
            --gray-800: #2d3e4a;
            --accent: #baccd6;
            --shadow-sm: 0 1px 3px rgba(1,43,67,0.08);
            --shadow-md: 0 4px 12px rgba(1,43,67,0.12);
            --shadow-lg: 0 8px 30px rgba(1,43,67,0.16);
            --shadow-xl: 0 16px 50px rgba(1,43,67,0.2);
            --radius: 12px;
            --radius-lg: 16px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 17px;
            color: var(--gray-800);
            line-height: 1.6;
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

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

        /* ===== UTILITY ===== */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .text-center { text-align: center; }
        .text-green { color: var(--green); }
        .text-navy { color: var(--navy); }

        /* ===== STICKY CTA BAR (mobile) ===== */
        .sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--navy);
            padding: 12px 16px;
            z-index: 1000;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        }
        .sticky-cta a {
            display: block;
            background: var(--green);
            color: var(--white);
            text-align: center;
            padding: 14px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            letter-spacing: 0.3px;
        }
        .sticky-cta a:hover { background: var(--green-dark); }

        @media (max-width: 768px) {
            .sticky-cta { display: block; }
            body { padding-bottom: 72px; }
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: var(--navy);
            padding: 10px 0;
            font-size: 13px;
            color: var(--accent);
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar a {
            color: var(--green);
            text-decoration: none;
            font-weight: 600;
        }
        .top-bar .phone {
            font-size: 15px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 0.5px;
        }

        /* ===== HEADER / NAV ===== */
        .header {
            background: var(--white);
            padding: 16px 0;
            border-bottom: 1px solid var(--gray-200);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-sm);
        }
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo img { height: 50px; width: auto; }
        .header-cta {
            background: var(--green);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.2s;
            letter-spacing: 0.3px;
        }
        .header-cta:hover {
            background: var(--green-dark);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        /* ===== HERO ===== */
        .hero {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 50%, #003d5c 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('https://graslawn.com/wp-content/uploads/2026/03/01_luxury_corporate_entrance.jpg') center/cover;
            opacity: 0.25;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 48px;
            align-items: center;
        }
        .hero-content { position: relative; z-index: 2; }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(136,196,64,0.15);
            border: 1px solid rgba(136,196,64,0.3);
            color: var(--green);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        .hero h1 .highlight {
            color: var(--green);
        }
        .hero p {
            font-size: 18px;
            color: var(--accent);
            margin-bottom: 32px;
            line-height: 1.7;
            max-width: 540px;
        }
        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 40px;
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat .number {
            font-size: 36px;
            font-weight: 800;
            color: var(--green);
            line-height: 1;
        }
        .hero-stat .label {
            font-size: 12px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 6px;
        }

        /* ===== HERO FORM ===== */
        .hero-form {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            box-shadow: var(--shadow-xl);
            position: relative;
            z-index: 2;
        }
        .hero-form h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
            text-align: center;
        }
        .hero-form .form-subtitle {
            font-size: 14px;
            color: var(--gray-600);
            text-align: center;
            margin-bottom: 24px;
        }
        .form-group { margin-bottom: 16px; }
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 6px;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--gray-200);
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            color: var(--gray-800);
            transition: border-color 0.2s;
            background: var(--gray-50);
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--green);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(136,196,64,0.15);
        }
        .form-group textarea { resize: vertical; min-height: 80px; }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .form-submit {
            width: 100%;
            padding: 16px;
            background: var(--green);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            letter-spacing: 0.3px;
            margin-top: 8px;
        }
        .form-submit:hover {
            background: var(--green-dark);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }
        .form-trust {
            text-align: center;
            margin-top: 12px;
            font-size: 12px;
            color: var(--gray-400);
        }
        .form-trust svg { vertical-align: middle; margin-right: 4px; }

        /* ===== TRUST BAR ===== */
        .trust-bar {
            background: var(--navy);
            border-bottom: 2px solid var(--green);
            padding: 20px 0;
        }
        .trust-items {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 700;
            color: var(--white);
        }
        .trust-item .icon {
            width: 44px;
            height: 44px;
            background: rgba(136,196,64,0.2);
            border: 2px solid var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green);
            font-size: 20px;
            flex-shrink: 0;
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            padding: 80px 0;
        }
        .section-label {
            display: inline-block;
            background: rgba(136,196,64,0.1);
            color: var(--green-dark);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }
        .section-title {
            font-size: 38px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
            letter-spacing: -0.3px;
        }
        .section-subtitle {
            font-size: 17px;
            color: var(--gray-600);
            max-width: 640px;
            margin: 0 auto 48px;
            line-height: 1.7;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .service-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s;
        }
        .service-card:hover {
            border-color: var(--green);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .service-card .service-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }
        .service-card .service-body {
            padding: 24px 24px 28px;
        }
        .service-card .icon {
            display: none;
        }
        .service-card h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }
        .service-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* ===== WHY GRAS SECTION ===== */
        .why-gras {
            background: var(--navy);
            padding: 80px 0;
            color: var(--white);
        }
        .why-gras .section-title { color: var(--white); }
        .why-gras .section-subtitle { color: var(--accent); }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .why-card {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(136,196,64,0.25);
            border-radius: var(--radius);
            padding: 32px 28px;
            transition: all 0.3s;
        }
        .why-card:hover {
            background: rgba(255,255,255,0.15);
            border-color: var(--green);
        }
        .why-card .number {
            font-size: 14px;
            font-weight: 700;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .why-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
        }
        .why-card p {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
        }

        /* ===== PROPERTIES WE SERVE ===== */
        .properties {
            padding: 80px 0;
            background: var(--gray-50);
        }
        .property-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .property-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            padding: 28px 20px;
            text-align: center;
            transition: all 0.3s;
        }
        .property-card:hover {
            border-color: var(--green);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .property-card .icon {
            font-size: 36px;
            margin-bottom: 12px;
        }
        .property-card h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
        }
        .property-card p {
            font-size: 13px;
            color: var(--gray-600);
        }

        /* ===== FLORIDA AREAS ===== */
        .fl-areas {
            padding: 80px 0;
        }
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
            margin-top: 32px;
        }
        .area-link {
            display: block;
            padding: 14px 18px;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            color: var(--navy);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s;
        }
        .area-link:hover {
            background: var(--green);
            color: white;
            border-color: var(--green);
        }
        .area-link::before {
            content: '📍 ';
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 80px 0;
            background: var(--gray-50);
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
        }
        .testimonial-stars {
            color: #f4b942;
            font-size: 18px;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }
        .testimonial-card blockquote {
            font-size: 15px;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 20px;
            font-style: italic;
        }
        .testimonial-author {
            font-size: 14px;
            font-weight: 700;
            color: var(--navy);
        }
        .testimonial-role {
            font-size: 12px;
            color: var(--gray-400);
        }

        /* ===== PHOTO SHOWCASE ===== */
        .photo-showcase {
            padding: 80px 0;
            background: var(--white);
        }
        .photo-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: 280px 280px;
            gap: 16px;
        }
        .photo-grid-item {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
        }
        .photo-grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .photo-grid-item:hover img { transform: scale(1.05); }
        .photo-grid-item:first-child { grid-row: 1 / 3; }
        .photo-grid-item .photo-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px 20px;
            background: linear-gradient(transparent, rgba(1,43,67,0.8));
            color: white;
            font-size: 13px;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .photo-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }
            .photo-grid-item:first-child { grid-row: auto; grid-column: 1 / 3; }
            .photo-grid-item img { height: 220px; }
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
            padding: 80px 0;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 42px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
            letter-spacing: -0.3px;
        }
        .cta-section p {
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-white {
            background: var(--white);
            color: var(--navy);
            padding: 16px 36px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        .btn-outline {
            background: transparent;
            color: var(--white);
            padding: 16px 36px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            border: 2px solid rgba(255,255,255,0.4);
            transition: all 0.2s;
        }
        .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--white);
        }

        /* ===== FAQ ===== */
        .faq {
            padding: 80px 0;
        }
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--gray-200);
            padding: 24px 0;
        }
        .faq-question {
            font-size: 17px;
            font-weight: 700;
            color: var(--navy);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: var(--green);
            transition: transform 0.3s;
        }
        .faq-item.open .faq-question::after {
            transform: rotate(45deg);
        }
        .faq-answer {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-top: 16px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--navy-light);
            padding: 48px 0 24px;
            color: var(--accent);
            font-size: 14px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 32px;
        }
        .footer h4 {
            color: var(--white);
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .footer a {
            color: var(--accent);
            text-decoration: none;
        }
        .footer a:hover { color: var(--green); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: var(--gray-400);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container { grid-template-columns: 1fr; }
            .hero-form { max-width: 480px; margin: 0 auto; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .property-grid { grid-template-columns: repeat(2, 1fr); }
            .testimonial-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .hero { padding: 48px 0 40px; }
            .hero::before { opacity: 0.3; }
            .hero h1 { font-size: 34px; }
            .hero-stats { gap: 20px; }
            .hero-stat .number { font-size: 28px; }
            .services-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 30px; }
            .cta-section h2 { font-size: 30px; }
            .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
            .form-row { grid-template-columns: 1fr; }
            .property-grid { grid-template-columns: 1fr 1fr; }
            .header { padding: 10px 0; }
            .logo img { height: 40px; }
            .header-cta { padding: 10px 20px; font-size: 14px; }
            .trust-items { gap: 16px; }
            .trust-item { font-size: 12px; }
            .trust-item .icon { width: 36px; height: 36px; font-size: 16px; }
            .testimonial-grid { grid-template-columns: 1fr !important; }
        }

        /* ===== SCHEMA MARKUP HIDDEN ===== */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }

/* === FIXES (Mar 18) === */

/* Hide theme page title */
.fusion-page-title-bar,
.page-title-bar,
body .fusion-page-title-wrapper {
    display: none !important;
}

/* Top bar: larger and easier to read on mobile */
@media (max-width: 768px) {
    .top-bar {
        padding: 14px 0 !important;
        font-size: 15px !important;
        text-align: center !important;
    }
    .top-bar .container {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .top-bar .phone {
        font-size: 20px !important;
        letter-spacing: 1px !important;
    }
    .top-bar span {
        font-size: 14px !important;
    }
}

/* Hide theme title bar - showing duplicate H1 */
.entry-title { display: none !important; }
.n-container > .entry-title { display: none !important; }/* End custom CSS */