/* ==========================================================================
   EZ MOWING PRO - ELITE UI/UX BRAND DESIGN STYLESHEET
   Aesthetic Precision, Modern Grid Architecture & High Conversion Rates
   ========================================================================== */

/* --- BRAND DESIGN TOKENS & UTILITIES --- */
:root {
    /* Nature HSL Premium Palette */
    --nature-green: hsl(142, 72%, 18%);
    --nature-green-rgb: 13, 79, 39;
    --nature-green-dark: hsl(142, 76%, 10%);
    --nature-green-light: hsl(142, 69%, 58%);
    
    /* Slate & Charcoal (Elegance & Professional Contrast) */
    --slate-950: hsl(222, 47%, 4%);
    --slate-900: hsl(222, 47%, 8%);
    --slate-800: hsl(222, 40%, 14%);
    --slate-700: hsl(215, 25%, 27%);
    --slate-600: hsl(215, 16%, 47%);
    --slate-100: hsl(210, 40%, 96%);
    --slate-50: hsl(210, 40%, 98%);
    
    /* Interactive Highlight Colors */
    --accent-lime: hsl(84, 81%, 44%);
    --accent-lime-light: hsl(84, 84%, 67%);
    --accent-lime-dark: hsl(84, 85%, 28%);
    --accent-gold: hsl(38, 92%, 50%);
    --accent-gold-dark: hsl(38, 95%, 35%);
    --accent-mint: hsl(142, 70%, 95%);
    
    --white: #ffffff;
    
    /* Layout proportions */
    --container-max-width: 1200px;
    --header-desktop-height: 140px;
    --header-scrolled-height: 100px;
    
    /* Micro-Transitions & Motion physics */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-spring: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Luxury Soft Shadows & Glows */
    --shadow-soft: 0 10px 40px hsla(222, 47%, 8%, 0.03);
    --shadow-medium: 0 20px 50px hsla(222, 47%, 8%, 0.06);
    --shadow-large: 0 35px 80px hsla(222, 47%, 4%, 0.12);
    --shadow-glow-green: 0 12px 30px hsla(142, 72%, 18%, 0.25);
    --shadow-glow-lime: 0 12px 30px hsla(84, 81%, 44%, 0.35);
    --shadow-glow-gold: 0 12px 30px hsla(38, 92%, 50%, 0.35);
    --shadow-glow-glass: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-3d-card: 0 30px 60px -12px hsla(222, 47%, 4%, 0.25), 0 18px 36px -18px hsla(222, 47%, 4%, 0.3);
    
    /* Mesh Gradients */
    --mesh-lime: radial-gradient(at 0% 0%, hsla(84, 81%, 44%, 0.15) 0px, transparent 50%);
    --mesh-green: radial-gradient(at 100% 100%, hsla(142, 72%, 18%, 0.2) 0px, transparent 50%);
}

/* --- SCROLL REVEAL ENGINE --- */
@keyframes forceRevealCSS {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    animation: forceRevealCSS 0.5s 1.5s forwards; /* Failsafe if JS crashes/delays */
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
    animation: none; /* Disable failsafe if JS works */
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
    animation: forceRevealCSS 0.5s 1.5s forwards; /* Failsafe if JS crashes/delays */
}
.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
    animation: none; /* Disable failsafe if JS works */
}
.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.5s; }

/* --- 3D HOVER UTILITIES & GLASSMORPHISM --- */
.hover-3d {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-style: preserve-3d;
}
.hover-3d:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-3d-card);
}
.glassmorphism-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-medium);
}

/* --- BASE & TYPOGRAPHY STANDARDS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate-800);
    background-color: var(--slate-50);
    background-image: 
        radial-gradient(at 0% 0%, hsla(84, 81%, 44%, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(142, 72%, 18%, 0.03) 0px, transparent 50%),
        radial-gradient(at 50% 100%, hsla(38, 92%, 50%, 0.04) 0px, transparent 50%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.25;
}

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

button, input, select, textarea {
    font-family: inherit;
    outline: none;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* --- SECTION CONTAINER --- */
.section-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.desktop-only {
    display: none;
}
@media (min-width: 992px) {
    .desktop-only {
        display: inline-flex;
    }
}

/* --- TOP UTILITY BAR (Premium Slim) --- */
.top-bar {
    background-color: var(--slate-950);
    color: rgba(255, 255, 255, 0.85);
    height: 38px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item i {
    color: var(--accent-lime);
    font-size: 0.85rem;
}

.phone-link {
    background-color: rgba(255, 255, 255, 0.06);
    padding: 4px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-link:hover {
    background-color: var(--nature-green);
    border-color: var(--nature-green);
    box-shadow: var(--shadow-glow-green);
}

.phone-pulse {
    animation: phonePulse 2s infinite;
}

/* --- MAIN STICKY HEADER (Glassmorphic & Elegant) --- */
.main-header {
    width: 100%;
    height: var(--header-desktop-height);
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(18, 24, 36, 0.03);
    transition: var(--transition-smooth);
}

.header-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.main-header.scrolled {
    height: var(--header-scrolled-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 10px 30px rgba(18, 24, 36, 0.03);
    border-bottom: 1px solid rgba(46, 125, 50, 0.08);
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.company-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .company-logo {
    height: 82px;
}

/* Desktop Navigation Menu */
.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--slate-700);
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--nature-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background-color: var(--nature-green);
    transform: translateX(-50%);
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* --- DESKTOP DROPDOWN MEGA MENU --- */
.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: var(--transition-smooth);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--nature-green-light);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 620px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(46, 125, 50, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-inner {
    display: flex;
    gap: 30px;
}

.dropdown-column {
    flex: 1;
}

.dropdown-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nature-green);
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(46, 125, 50, 0.08);
    padding-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background-color: var(--slate-50);
}

.dropdown-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-spring);
}

.dropdown-icon-box.green-tint {
    background-color: rgba(46, 125, 50, 0.08);
    color: var(--nature-green);
}

.dropdown-icon-box.blue-tint {
    background-color: rgba(132, 204, 22, 0.08);
    color: var(--accent-lime-dark);
}

.dropdown-item:hover .dropdown-icon-box {
    transform: scale(1.08);
}

.dropdown-item-text {
    display: flex;
    flex-direction: column;
}

.item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--slate-900);
    font-family: 'Outfit', sans-serif;
}

.item-desc {
    font-size: 0.76rem;
    color: var(--slate-600);
}

.dropdown-footer {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(18, 24, 36, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-promo {
    font-size: 0.8rem;
    color: var(--slate-600);
    font-weight: 500;
}

.footer-btn {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--nature-green);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.footer-btn:hover {
    color: var(--accent-lime);
    transform: translateX(3px);
}

/* Header Action CTA Button */
.nav-btn {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--nature-green), var(--nature-green-dark));
    padding: 9px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow-green);
}

.nav-btn:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
}

.nav-btn:hover .btn-shine {
    animation: btnShine 0.8s ease-in-out;
}

/* --- MOBILE TOGGLE HAMBURGER --- */
.mobile-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4.5px;
    background-color: var(--slate-100);
    border-radius: 8px;
    z-index: 1005;
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

.hamburger-bar {
    width: 18px;
    height: 2px;
    background-color: var(--slate-900);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.mobile-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
    background-color: var(--nature-green);
}

.mobile-toggle.open .hamburger-bar:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
}

.mobile-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
    background-color: var(--nature-green);
}

/* --- MOBILE DRAWER NAVIGATION --- */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(18, 24, 36, 0.5);
    backdrop-filter: blur(6px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 340px; /* Wider for premium feel */
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(46, 125, 50, 0.05);
}

.drawer-logo-img {
    height: 80px;
    width: auto;
}

.drawer-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--slate-900);
}

.drawer-body {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.mobile-nav-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-nav-link, .mobile-accordion-header {
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--slate-800);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background-color: transparent;
    text-decoration: none;
    width: 100%;
    text-align: left;
}

.mobile-accordion-header {
    justify-content: space-between;
}

.mobile-nav-link span, .mobile-accordion-header span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.mobile-nav-link i, .mobile-accordion-header span i {
    color: var(--nature-green);
    font-size: 1.25rem;
    width: 26px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mobile-accordion-header > i {
    color: var(--nature-green);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active-mobile,
.mobile-accordion-header.active {
    color: var(--nature-green-dark);
    background: rgba(34, 197, 94, 0.08);
    transform: translateX(6px);
}

.mobile-nav-link:hover i,
.mobile-nav-link.active-mobile i,
.mobile-accordion-header.active span i {
    transform: scale(1.2);
}

.mobile-accordion-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-sub-link {
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--slate-600);
    padding: 12px 20px 12px 62px;
    display: block;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 12px;
}

.mobile-sub-link:hover {
    color: var(--nature-green);
    background: rgba(34, 197, 94, 0.04);
    transform: translateX(4px);
}

.drawer-info {
    margin-top: 30px;
}

.drawer-cta-card {
    background-color: var(--slate-50);
    border: 1px solid rgba(46, 125, 50, 0.05);
    border-radius: 12px;
    padding: 16px;
}

.drawer-cta-card h4 {
    font-size: 0.95rem;
    color: var(--nature-green-dark);
    margin-bottom: 6px;
}

.drawer-cta-card p {
    font-size: 0.76rem;
    color: var(--slate-600);
    margin-bottom: 12px;
}

.drawer-phone-btn {
    background: linear-gradient(135deg, var(--nature-green), var(--nature-green-dark));
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.88rem;
    box-shadow: var(--shadow-glow-green);
}

/* ==========================================================================
   HOMEPAGE BRAND NEW PREMIUM SECTIONS
   ========================================================================== */

/* --- 1. HERO SECTION (Google Ads Optimized) --- */
.hero-section {
    position: relative;
    min-height: 95vh;
    padding: 160px 24px 100px 24px;
    background-image: url('sources/premium/lawn_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.blog-hero {
    position: relative;
    min-height: 75vh;
    padding: 160px 24px 80px 24px;
    background-image: url('sources/blog_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.services-hero {
    position: relative;
    min-height: 70vh;
    padding: 160px 24px 80px 24px;
    background-image: url('sources/mowing_web.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--mesh-lime), var(--mesh-green), linear-gradient(
        to bottom,
        rgba(11, 15, 25, 0.88) 0%,
        rgba(11, 15, 25, 0.4) 50%,
        rgba(11, 15, 25, 0.95) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(46, 125, 50, 0.2);
    border: 1px solid rgba(46, 125, 50, 0.45);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-badge i {
    color: var(--accent-lime);
}

.hero-title {
    color: var(--white);
    font-weight: 900;
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.2px;
}

.highlight-lime {
    color: var(--accent-lime-light);
    text-shadow: 0 0 20px hsla(84, 81%, 44%, 0.55);
    display: inline-block;
    font-weight: 900;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.4rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 30%, #C8E6C9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin: 0 auto 44px auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

@media (min-width: 576px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    font-family: 'Roboto', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--nature-green), var(--nature-green-dark));
    color: var(--white);
    box-shadow: var(--shadow-glow-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(46, 125, 50, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

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

/* 4 Benefits Visual Presentation (Refined) */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.benefit-card {
    background: rgba(18, 24, 36, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-lime);
    background-color: rgba(18, 24, 36, 0.85);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.benefit-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(132, 204, 22, 0.15);
    color: var(--accent-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-spring);
}

.benefit-card:hover .benefit-icon-box {
    transform: scale(1.1) rotate(6deg);
    background-color: var(--accent-lime);
    color: var(--slate-950);
}

.benefit-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

/* --- 2. INTERACTIVE ESTIMATE CALCULATOR (Elite Dashboard) --- */
.calculator-section {
    padding: 140px 24px;
    background-color: var(--slate-50);
    border-bottom: 1px solid rgba(18, 24, 36, 0.02);
}

.section-header {
    max-width: 650px;
    margin: 0 auto 64px auto;
}

.section-tag {
    font-family: 'Roboto', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-tag.green-text {
    color: var(--nature-green);
}

.section-tag.blue-text {
    color: var(--nature-green-dark);
}

.section-h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--slate-900);
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.accent-line {
    width: 60px;
    height: 4.5px;
    background-color: var(--nature-green);
    border-radius: 10px;
    margin-bottom: 24px;
}

.accent-line.center-line {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 1.02rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* Pricing Table (Replaces Calculator) */
.pricing-section {
    position: relative;
    padding: 80px 24px;
    background-color: #0d120d;
    color: white;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: -40px;
    right: 0;
    background-color: #c2f200;
    color: #111;
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transform: rotate(2deg);
    z-index: 3;
}
.discount-percent {
    background-color: #111;
    color: #c2f200;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
}
.discount-text {
    display: flex;
    flex-direction: column;
}
.discount-main {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}
.discount-sub {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Header Area */
.pricing-header {
    margin-bottom: 30px;
    max-width: 700px;
    position: relative;
}
.pricing-logo {
    max-width: 280px;
    margin-bottom: 20px;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.5));
}
.pricing-h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}
.pricing-h2-neon {
    font-family: 'Roboto', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
    color: #c2f200;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}
.pricing-subtitle {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #eee;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    display: inline-block;
}

/* Pricing Instruction */
.pricing-instruction {
    margin-top: 25px;
    display: inline-block;
    background-color: rgba(194, 242, 0, 0.15);
    border: 1px solid #c2f200;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.pricing-instruction strong {
    color: #c2f200;
    font-weight: 800;
}
.highlight-pulse {
    animation: gentlePulse 2s infinite;
}
.pulse-icon {
    color: #c2f200;
    margin-right: 8px;
    font-size: 18px;
    animation: pointBounce 1.5s infinite;
}

@keyframes gentlePulse {
    0% { box-shadow: 0 0 0 0 rgba(194, 242, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(194, 242, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(194, 242, 0, 0); }
}
@keyframes pointBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Flex layout for grid and badges */
.pricing-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 0;
}

/* Pricing Grid */
.pricing-grid-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
    max-width: 700px;
}
.pricing-col {
    flex: 1;
    min-width: 140px;
    border: 2px solid #c2f200;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(15, 20, 15, 0.85);
}
.pricing-col-header {
    background-color: #c2f200;
    color: #111;
    text-align: center;
    font-weight: 800;
    padding: 10px 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.pricing-cell {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
    cursor: pointer;
}
.pricing-cell:hover {
    background-color: rgba(194, 242, 0, 0.15);
    transform: scale(1.02);
}
.pricing-cell:last-child {
    border-bottom: none;
}
.pricing-freq {
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    margin-bottom: 4px;
    letter-spacing: 1px;
}
.pricing-price {
    font-size: 22px;
    font-weight: 800;
    color: white;
}

/* Feature Badges */
.pricing-features {
    display: flex;
    gap: 15px;
    background-color: transparent;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}
.feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 80px;
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #c2f200;
    color: #c2f200;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.feature-badge span {
    font-size: 11px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* Footer Bar */
.pricing-footer {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.footer-call {
    flex: 1;
    background-color: #d8f553;
    color: #111;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 12px;
}
.footer-schedule {
    flex: 1.2;
    background-color: #c2f200;
    color: #111;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 12px;
    transition: transform 0.2s;
}
.footer-schedule:hover {
    filter: brightness(1.1);
}
.footer-motto {
    flex: 1;
    background-color: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 12px;
}

.footer-icon {
    font-size: 24px;
}
.footer-icon.leaf-bg {
    color: #c2f200;
}
.footer-text {
    display: flex;
    flex-direction: column;
}
.footer-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.footer-number, .footer-url, .footer-motto-text {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.5px;
}
.footer-motto-text {
    color: #c2f200;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pricing-content-flex {
        flex-direction: column;
        align-items: stretch;
    }
    .pricing-h2, .pricing-h2-neon {
        font-size: 48px;
    }
    .pricing-footer {
        flex-direction: column;
    }
    .discount-badge {
        position: relative;
        top: 0;
        margin-bottom: 20px;
        display: inline-flex;
    }
    .pricing-features {
        justify-content: center;
        margin-top: 20px;
    }
}
@media (max-width: 576px) {
    .pricing-grid-wrapper {
        flex-direction: column;
    }
    .pricing-col {
        width: 100%;
    }
    .pricing-h2, .pricing-h2-neon {
        font-size: 36px;
    }
}

/* --- 3. DETAILED SERVICES BREAKDOWN (Core SEO Solutions) --- */
.services-section {
    padding: 140px 24px;
    background-color: var(--white);
}

/* ZIG ZAG ARCHITECTURE (Services Page) */
.service-feature-row {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 120px;
    align-items: center;
}

@media (min-width: 992px) {
    .service-feature-row {
        flex-direction: row;
        gap: 100px;
    }
    .service-feature-row.reverse {
        flex-direction: row-reverse;
    }
}

.service-feature-img {
    flex: 1;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    position: relative;
}

.service-feature-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.6s ease;
}

.service-feature-img:hover img {
    transform: scale(1.05);
}

.service-feature-content {
    flex: 1;
}

.mega-icon {
    font-size: 3.5rem;
    color: var(--accent-lime);
    margin-bottom: 24px;
    display: inline-block;
    filter: drop-shadow(0 10px 20px rgba(132, 204, 22, 0.4));
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.service-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 44px;
    border: 1px solid rgba(18, 24, 36, 0.04);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: rgba(46, 125, 50, 0.12);
}

.service-card:hover::before {
    background-color: var(--nature-green);
}

.service-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.mowing-tint {
    background-color: rgba(46, 125, 50, 0.05);
    color: var(--nature-green);
}

.care-tint {
    background-color: rgba(245, 158, 11, 0.05);
    color: var(--accent-gold);
}

.cleanup-tint {
    background-color: rgba(18, 24, 36, 0.05);
    color: var(--slate-700);
}

.service-card:hover .service-icon-wrapper.mowing-tint {
    background-color: var(--nature-green);
    color: var(--white);
    transform: rotate(6deg);
}

.service-card:hover .service-icon-wrapper.care-tint {
    background-color: var(--accent-gold);
    color: var(--white);
    transform: rotate(6deg);
}

.service-card:hover .service-icon-wrapper.cleanup-tint {
    background-color: var(--slate-950);
    color: var(--white);
    transform: rotate(6deg);
}

.service-card h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--slate-900);
    margin-bottom: 14px;
}

.card-line {
    width: 40px;
    height: 4px;
    background-color: var(--nature-green);
    margin-bottom: 18px;
    border-radius: 4px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--slate-600);
    line-height: 1.65;
    margin-bottom: 24px;
}

.service-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--slate-100);
    padding-top: 20px;
    margin-top: auto;
}

.service-bullets li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-bullets li i {
    color: var(--nature-green);
    font-size: 0.95rem;
}

/* --- 4. LOCAL RELEVANCE & SOCIAL PROOF --- */
.local-proof-section {
    padding: 140px 24px;
    background-color: var(--slate-50);
    border-top: 1px solid rgba(18, 24, 36, 0.02);
    border-bottom: 1px solid rgba(18, 24, 36, 0.02);
}

.local-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 72px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 992px) {
    .local-proof-grid {
        grid-template-columns: 1.15fr 1fr;
    }
}

.local-rel-block {
    display: flex;
    flex-direction: column;
}

.local-text {
    font-size: 1.02rem;
    color: var(--slate-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.local-text.highlight {
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--nature-green-dark);
    border-left: 4.5px solid var(--accent-lime);
    padding-left: 20px;
    margin-bottom: 28px;
}

.local-badge-wrap {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.local-badge-card {
    background-color: var(--white);
    border: 1px solid rgba(46, 125, 50, 0.06);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--slate-900);
    box-shadow: var(--shadow-soft);
}

.local-badge-card i {
    color: var(--nature-green);
    font-size: 1.1rem;
}

/* Testimonial card (Luxury SaaS Review Style) */
.testimonial-block {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 44px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(46, 125, 50, 0.04);
    position: relative;
    max-width: 480px;
}

.quote-icon {
    position: absolute;
    top: -24px;
    left: 44px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--nature-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow-green);
}

.rating-stars {
    display: flex;
    gap: 4px;
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.testimonial-quote {
    font-size: 0.98rem;
    font-style: italic;
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    font-size: 2.4rem;
    color: var(--nature-green);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--slate-900);
}

.author-meta {
    font-size: 0.74rem;
    color: var(--slate-600);
}

/* --- BOOKING / ESTIMATE FINALIZE CONTAINER (SPLIT-CARD) --- */
.booking-section {
    padding: 140px 24px;
    background: transparent;
}

.booking-split-card {
    max-width: 1080px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(132, 204, 22, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (min-width: 992px) {
    .booking-split-card {
        flex-direction: row;
    }
}

.booking-left-pane {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.95), rgba(13, 79, 39, 0.98)), url('sources/premium/lawn_hero.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 60px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-right-pane {
    flex: 1.2;
    padding: 60px 40px;
    background-color: rgba(255, 255, 255, 0.5);
}

.booking-left-pane h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.booking-left-pane p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 1.05rem;
    font-weight: 500;
}

.trust-list i {
    color: var(--accent-lime);
    font-size: 1.4rem;
}

/* Glass Inputs */
.form-group label i {
    color: var(--nature-green);
    margin-right: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    border: 2px solid rgba(46, 125, 50, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--slate-900);
    outline: none;
    transition: var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-lime);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(132, 204, 22, 0.15), inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-ballpark-summary {
    background-color: rgba(132, 204, 22, 0.05);
    border: 1.5px solid rgba(132, 204, 22, 0.15);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 28px;
}

.form-ballpark-summary span {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--slate-900);
}

.form-ballpark-summary strong {
    color: var(--nature-green-dark);
    font-size: 1.25rem;
    margin-left: 6px;
}

/* Radiant Submit Button */
.btn-radiant {
    background: linear-gradient(135deg, var(--nature-green), var(--accent-lime-dark));
    color: var(--white);
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    border-radius: 14px;
    box-shadow: var(--shadow-glow-lime);
    transition: all 0.4s ease;
    border: none;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.btn-radiant:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(132, 204, 22, 0.4);
    background: linear-gradient(135deg, var(--accent-lime-dark), var(--nature-green));
}

/* --- FOOTER (Elegant Corporate Dark) --- */
.main-footer {
    background-color: var(--slate-950);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 24px 36px 24px;
    border-top: 3.5px solid var(--nature-green);
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.25fr 1fr;
    }
}

.footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-logo-col p {
    font-size: 0.85rem;
    max-width: 380px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.footer-contact-col h4 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.88rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-list li i {
    color: var(--accent-lime);
}

.footer-service-areas {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 18px 24px;
    font-size: 0.88rem;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-service-areas strong {
    color: var(--white);
}

.footer-bottom {
    width: 100%;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

/* --- MOTION PHYSICS KEYFRAMES --- */
@keyframes phonePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
        text-shadow: 0 0 8px rgba(132, 204, 22, 0.4);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes btnShine {
    100% {
        left: 125%;
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Global motion animation utility classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* ==========================================================================
   5. FAQs ACCORDION SECTION - PREMIUM STYLING
   ========================================================================== */
.faqs-section {
    padding: 140px 24px;
    background-color: var(--slate-50);
    border-top: 1px solid rgba(18, 24, 36, 0.02);
    border-bottom: 1px solid rgba(18, 24, 36, 0.02);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid rgba(18, 24, 36, 0.05);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: var(--accent-lime);
    box-shadow: var(--shadow-medium);
}

.faq-trigger {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-900);
    gap: 16px;
    transition: var(--transition-smooth);
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background-color: var(--slate-50);
    color: var(--nature-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-spring);
}

.faq-item:hover .faq-icon {
    background-color: var(--nature-green);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-inner {
    padding: 0 28px 24px 28px;
    font-size: 0.98rem;
    color: var(--slate-600);
    line-height: 1.7;
}

/* Active FAQ Item adjustments */
.faq-item.active {
    border-color: var(--nature-green);
    box-shadow: var(--shadow-medium);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background-color: var(--nature-green);
    color: var(--white);
}

/* ==========================================================================
   GOOGLE ADS LANDING CONVERSION OPTIMIZATIONS
   ========================================================================== */

/* --- TRUST & AUTHORITY BADGES BAR --- */
.trust-proof-bar {
    background-color: var(--slate-900);
    padding: 30px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 5;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

@media (min-width: 576px) {
    .trust-bar-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .trust-bar-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.trust-badge-item:hover {
    transform: translateY(-2.5px);
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-lime);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.trust-badge-icon {
    font-size: 1.8rem;
    color: var(--accent-lime);
    filter: drop-shadow(0 0 8px rgba(132, 204, 22, 0.3));
}

.trust-badge-content h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    font-family: 'Outfit', sans-serif;
}

.trust-badge-content p {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* --- HOW IT WORKS IN 3 SIMPLE STEPS --- */
.how-it-works-section {
    padding: 140px 24px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
}

.step-card {
    background-color: var(--slate-50);
    border: 1px solid rgba(46, 125, 50, 0.05);
    border-radius: 28px;
    padding: 44px 36px;
    position: relative;
    transition: var(--transition-spring);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--nature-green);
    box-shadow: var(--shadow-medium);
}

.step-number-glow {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 6.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: rgba(46, 125, 50, 0.03);
    line-height: 1;
    user-select: none;
    transition: var(--transition-smooth);
}

.step-card:hover .step-number-glow {
    color: rgba(46, 125, 50, 0.06);
    transform: scale(1.05) translate(-5px, 5px);
}

.step-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background-color: rgba(46, 125, 50, 0.06);
    color: var(--nature-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 28px;
    transition: var(--transition-spring);
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.05);
}

.step-card:hover .step-icon-wrapper {
    background-color: var(--nature-green);
    color: var(--white);
    transform: scale(1.1) rotate(4deg);
    box-shadow: var(--shadow-glow-green);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 14px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* --- RISK-FREE IRONCLAD GUARANTEES --- */
.guarantees-section {
    padding: 140px 24px;
    background-color: var(--slate-50);
    border-top: 1px solid rgba(18, 24, 36, 0.02);
    border-bottom: 1px solid rgba(18, 24, 36, 0.02);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .guarantees-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.guarantee-card {
    background-color: var(--white);
    border: 1px solid rgba(18, 24, 36, 0.04);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-lime);
    box-shadow: var(--shadow-medium);
}

.guarantee-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(132, 204, 22, 0.08);
    color: var(--accent-lime-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: var(--transition-spring);
}

.guarantee-card:hover .guarantee-icon-box {
    background-color: var(--accent-lime);
    color: var(--slate-950);
    transform: rotateY(180deg);
}

.guarantee-card h3 {
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.guarantee-card p {
    font-size: 0.9rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* --- SERVICES DETAIL PAGE SPECIFIC STYLES --- */
.climate-section {
    padding: 140px 24px;
    background-color: var(--white);
}

.climate-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

@media (min-width: 992px) {
    .climate-grid {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

.climate-content {
    display: flex;
    flex-direction: column;
}

.climate-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 440px;
    background-image: linear-gradient(135deg, rgba(13, 79, 39, 0.15), rgba(11, 15, 25, 0.85)), url('sources/lush_lawn_hero.png');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-large);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.climate-visual-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-medium);
    max-width: 360px;
    transform: translateY(0);
    transition: var(--transition-spring);
}

.climate-visual:hover .climate-visual-card {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.climate-visual-card h4 {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--nature-green);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.climate-visual-card p {
    font-size: 0.8rem;
    color: var(--slate-700);
    line-height: 1.5;
}

/* ==========================================================================
   CONTACT DASHBOARD & SPECTACULAR FLOATING FORM
   ========================================================================== */
.contact-dashboard-section {
    padding: 120px 24px;
    background-color: var(--slate-50);
}

.contact-grid-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 992px) {
    .contact-grid-wrap {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 50px;
    }
}

.contact-info-col {
    display: flex;
    flex-direction: column;
}

.contact-cards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background-color: var(--white);
    border: 1px solid rgba(18, 24, 36, 0.04);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-spring);
}

.contact-detail-card:hover {
    transform: translateX(6px) translateY(-2px);
    border-color: var(--nature-green);
    box-shadow: var(--shadow-medium);
}

.detail-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-color: rgba(46, 125, 50, 0.06);
    color: var(--nature-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.contact-detail-card:hover .detail-icon-box {
    background-color: var(--nature-green);
    color: var(--white);
    transform: scale(1.08) rotate(4deg);
}

.detail-text-box span {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.detail-text-box h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--slate-900);
    margin: 2px 0 4px 0;
    font-family: 'Outfit', sans-serif;
}

.detail-text-box p {
    font-size: 0.8rem;
    color: var(--slate-600);
}

.contact-trust-bar {
    display: flex;
    gap: 28px;
    border-top: 1px solid rgba(18, 24, 36, 0.05);
    padding-top: 24px;
}

.trust-seal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--slate-800);
}

.trust-seal-item i {
    color: var(--nature-green);
}

/* --- THE ALUCINANTE GLASS CARD --- */
.contact-form-glass-card {
    background-color: var(--slate-900);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 56px 44px;
    box-shadow: var(--shadow-large);
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .contact-form-glass-card {
        padding: 44px 28px;
    }
}

.card-glow-layer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(132, 204, 22, 0.035) 0%, rgba(46, 125, 50, 0.02) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.form-header-box {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.form-icon-glow {
    width: 64px;
    height: 64px;
    background-color: rgba(132, 204, 22, 0.08);
    color: var(--accent-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 20px auto;
    box-shadow: var(--shadow-glow-lime);
    animation: pulseGlow 2.5s infinite;
}

.form-header-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.form-header-box p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.floating-label-form {
    position: relative;
    z-index: 2;
}

.form-group-flex {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 576px) {
    .form-group-flex {
        flex-direction: row;
        gap: 20px;
    }
}

/* --- INTERACTIVE FLOATING LABELS ENGINE --- */
.form-input-container {
    position: relative;
    margin-bottom: 24px;
    width: 100%;
}

.form-input-container input,
.form-input-container textarea,
.form-input-container select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-input-container label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.45);
    pointer-events: none;
    transition: var(--transition-smooth);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-input-container textarea ~ label {
    top: 24px;
    transform: none;
}

/* Floating label active states on focus & validation values */
.form-input-container input:focus ~ label,
.form-input-container input:not(:placeholder-shown) ~ label,
.form-input-container textarea:focus ~ label,
.form-input-container textarea:not(:placeholder-shown) ~ label,
.form-input-container select:focus ~ label,
.form-input-container select.has-value ~ label {
    top: 0;
    font-size: 0.78rem;
    background-color: var(--slate-900);
    padding: 2px 10px;
    color: var(--accent-lime-light);
    transform: translateY(-50%);
    border-radius: 4px;
}

/* Select specific styling overrides */
.form-input-container select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-chevron {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.45);
    pointer-events: none;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.form-input-container select:focus ~ .select-chevron {
    transform: translateY(-50%) rotate(180deg);
    color: var(--accent-lime);
}

/* ==========================================================================
   PHASE 5: ULTRA-PREMIUM UX/UI ENHANCEMENTS (By Antigravity)
   ========================================================================== */

/* 1. Metallic Gradient Typography */
.text-gradient-metallic {
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--nature-green) 50%, var(--accent-lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

/* 2. Stats Counter Section */
.stats-counter-section {
    padding: 80px 24px;
    background-color: var(--white);
    position: relative;
    z-index: 5;
    margin-top: -60px; /* Overlap with hero slightly */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--slate-50);
    border-radius: 32px;
    border: 1px solid rgba(46, 125, 50, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(132, 204, 22, 0.15);
}

.counter-wrap {
    font-size: 4.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: var(--slate-900);
    line-height: 1;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-number {
    background: linear-gradient(to right, var(--slate-900), var(--nature-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-plus {
    color: var(--accent-lime);
    font-size: 3.5rem;
    margin-left: 4px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3. Sweep-Shine Hover Animation */
.sweep-shine {
    position: relative;
    overflow: hidden;
}

.sweep-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
    z-index: 10;
    pointer-events: none;
}

.sweep-shine:hover::after {
    left: 200%;
}

/* 4. SVG Shape Dividers */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: #FFFFFF;
}

@media (min-width: 992px) {
    .custom-shape-divider-bottom svg {
        height: 120px;
    }
}

/* ==========================================================================
   PHASE 6: GLOBAL MEGA-FOOTER (Ultra-Premium Architecture)
   ========================================================================== */

.mega-footer {
    position: relative;
    background-image: url('sources/premium/footer_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 24px 40px;
    margin-top: 60px;
    z-index: 10;
}

.mega-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

/* Wavy Top Divider to transition from main content */
.mega-footer-divider {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.mega-footer-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.mega-footer-divider .shape-fill {
    fill: #FFFFFF; /* Match page background */
}

.mega-footer-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.mega-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .mega-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .mega-footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 80px;
    }
}

/* Column 1: Brand Identity */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand-logo {
    max-width: 220px;
    background-color: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.footer-brand-desc {
    color: var(--slate-300);
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.footer-social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social-btn:hover {
    background: var(--nature-green);
    border-color: var(--accent-lime);
    color: var(--slate-900);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(132, 204, 22, 0.3);
}

/* Column 2 & 3: Links & Contact */
.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-lime);
    border-radius: 2px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link-item {
    display: flex;
    align-items: center;
}

.footer-link {
    color: var(--slate-300);
    text-decoration: none;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.footer-link i {
    color: var(--nature-green);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-lime);
    transform: translateX(8px);
}

.footer-link:hover i {
    color: var(--accent-lime);
    transform: translateX(3px);
}

/* Contact Specifics */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--slate-300);
    font-size: 1.05rem;
    line-height: 1.6;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Service Areas Tag Box */
.footer-areas-box {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.footer-areas-title {
    font-size: 0.9rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-tag {
    background: rgba(255, 255, 255, 0.08);
    color: var(--slate-200);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: var(--nature-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Bottom Bar */
.footer-bottom-bar {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-bar {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    color: var(--slate-400);
    font-size: 0.95rem;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

/* Focus effects */
.form-input-container input:focus,
.form-input-container textarea:focus,
.form-input-container select:focus {
    border-color: var(--accent-lime);
    box-shadow: 0 0 15px rgba(132, 204, 22, 0.15);
    background-color: rgba(255, 255, 255, 0.04);
}

.secure-submit-btn {
    width: 100%;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--slate-950);
    background: linear-gradient(135deg, var(--accent-lime), var(--accent-lime-light));
    box-shadow: var(--shadow-glow-lime);
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition-spring);
}

.secure-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(132, 204, 22, 0.45);
}

.button-shield-icon {
    font-size: 1.1rem;
    transition: var(--transition-spring);
}

.secure-submit-btn:hover .button-shield-icon {
    transform: rotateY(180deg);
}

.secure-ssl-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.secure-ssl-indicator i {
    color: var(--accent-lime);
}

/* --- PULSE GLOW KEYFRAMES --- */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(132, 204, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(132, 204, 22, 0);
    }
}

/* ==========================================================================
   PHASE 8: INTERACTIVE SERVICE AREAS MAP MODULE
   ========================================================================== */
.service-map-section {
    background-color: #F8F9FA;
    position: relative;
    overflow: hidden;
    padding: 80px 20px; /* Masive padding added for centering */
}

.map-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .map-dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.map-info-col {
    padding-right: 0;
}

@media (min-width: 992px) {
    .map-info-col {
        padding-right: 40px;
    }
}

.map-desc-text {
    font-size: 1.1rem;
    color: var(--slate-600);
    margin-bottom: 35px;
    line-height: 1.7;
}

/* --- Search Bar Card --- */
.map-search-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
}

.map-search-card h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.map-search-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.map-search-wrapper input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--slate-200);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.map-search-wrapper input:focus {
    border-color: var(--nature-green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.map-search-wrapper button {
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.2rem;
}

.search-feedback {
    font-size: 0.95rem;
    font-weight: 500;
    min-height: 24px;
    transition: color 0.3s ease;
}

.search-feedback.success {
    color: var(--nature-green);
}
.search-feedback.error {
    color: #ef4444;
}

/* --- Interactive SVG Map --- */
.svg-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.08));
}

.interactive-wi-map {
    width: 100%;
    height: auto;
    display: block;
}

.county-group {
    cursor: pointer;
}

.county-path {
    fill: #e2e8f0;
    stroke: #ffffff;
    stroke-width: 4px;
    stroke-linejoin: round;
    transform-origin: center;
    transition: fill 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), stroke-width 0.3s ease, filter 0.3s ease;
}

/* The core hub (Dane County) default state */
.hub-county {
    fill: #cbd5e1;
}

.county-group:hover .county-path,
.county-group.active-search .county-path {
    fill: var(--nature-green);
    transform: scale(1.03);
    stroke-width: 2px;
    filter: drop-shadow(0 10px 15px rgba(34, 197, 94, 0.35)); /* Premium green glow */
    z-index: 10;
}

.map-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    fill: #64748b;
    pointer-events: none; /* Let clicks pass through to the path */
    transform-origin: center;
    transition: fill 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hub-label {
    fill: #334155;
    font-size: 18px;
}

.county-group:hover .map-label,
.county-group.active-search .map-label {
    fill: #ffffff;
    transform: scale(1.05); /* Text pops alongside the box */
}

/* JavaScript toggles this class on the group when active */
.county-group.text-light .map-label {
    fill: #ffffff;
}

/* --- Floating Tooltip Card --- */
.county-tooltip-card {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    pointer-events: none; /* Crucial: stops flickering when hovering over tooltip */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 9999;
    min-width: 200px;
}

.county-tooltip-card.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.tooltip-status {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#tooltipCountyName {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--slate-900);
    margin: 0 0 12px 0;
}

.tooltip-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--nature-green);
    text-decoration: none;
    background: #f0fdf4;
    padding: 6px 12px;
    border-radius: 6px;
}

/* ==========================================================================
   PHASE 9: UNIVERSAL MOBILE RESPONSIVENESS ARCHITECTURE
   ========================================================================== */

/* --- TABLETS & SMALL LAPTOPS (Max 991px) --- */
@media (max-width: 991px) {
    /* 1. Core Layout Reductions */
    .services-grid, .benefits-grid, .process-grid, .guarantees-grid {
        grid-template-columns: 1fr 1fr; /* Reduce to 2 columns */
        gap: 30px;
    }
    
    .pricing-calculator-layout, .contact-content {
        grid-template-columns: 1fr; /* Stack side-by-side elements */
        gap: 50px;
    }
    
    .footer-top, .footer-main {
        grid-template-columns: 1fr 1fr; /* Stack footer links */
        gap: 40px;
    }

    .map-dashboard-grid {
        grid-template-columns: 1fr; /* Map drops below search */
        gap: 30px;
    }

    /* 2. Typography Scaling */
    .hero-h1 {
        font-size: 3.5rem; /* Scale down massive hero text */
    }
    
    .section-h2 {
        font-size: 2.2rem;
    }
    
    /* 3. Header Adjustments */
    .top-bar {
        display: none; /* Hide top bar info to save screen real estate */
    }
    
    .nav-btn {
        display: none; /* Hide 'Get Estimate' in header (mobile drawer handles it) */
    }
}

/* --- SMARTPHONES & SMALL DEVICES (Max 767px) --- */
@media (max-width: 767px) {
    /* 1. Ultimate Column Stacking (Everything to 1 column) */
    .services-grid, .benefits-grid, .process-grid, .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-top, .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* 2. Paddings & Spacing */
    /* Fix for iOS Safari background-attachment: fixed bug where images disappear */
    .hero-section, .services-hero, .blog-hero {
        background-attachment: scroll !important;
    }

    .hero-section {
        padding: 120px 20px 60px;
    }
    
    .services-section, .process-section, .premium-stats-section, .estimation-section, .guarantees-section, .faq-section {
        padding: 60px 20px; /* Reduce vertical padding significantly */
    }
    
    .section-container, .hero-container, .container {
        padding: 0 15px;
    }
    
    .service-map-section {
        padding: 50px 15px;
    }

    /* 3. Aggressive Typography Scaling */
    .hero-h1 {
        font-size: 2.4rem;
        line-height: 1.15;
    }
    
    .hero-desc {
        font-size: 1.1rem;
    }
    
    .section-h2 {
        font-size: 1.8rem;
    }
    
    .premium-stat-number {
        font-size: 3.2rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    /* 4. Form & UI Component Adjustments */
    .estimation-card {
        padding: 25px 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr; /* Stack inputs vertically */
        gap: 15px;
    }
    
    .radio-group {
        flex-direction: column; /* Stack custom radio buttons */
    }
    
    .radio-card {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column; /* Stack hero buttons */
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .drawer-logo-img {
        height: 60px;
    }
}
