/* ===========================================
   THEME: GREEN (Success)
   Used on: services.html, seo.html, city pages, small-business-growth-plan.html, speed-demo.html, reputation-marketing.html
   Primary: #10B981 | Dark: #0D9668 | Light: #34D399
   =========================================== */

:root {
    --theme: #10B981;
    --theme-dark: #0D9668;
    --theme-light: #34D399;
    --theme-glow: rgba(16, 185, 129, 0.25);
    --theme-pale: rgba(16, 185, 129, 0.08);
    --theme-rgb: 16, 185, 129;
    --theme-nav-rgb: 6, 78, 59; /* #064E3B - matches header/footer */
}

/* Navigation CTA Button */
.nav-cta {
    background: var(--theme) !important;
    box-shadow: 0 4px 15px var(--theme-glow) !important;
}
.nav-cta:hover {
    background: var(--theme-dark) !important;
    box-shadow: 0 6px 20px rgba(var(--theme-rgb), 0.4) !important;
}

/* Fluid Header Background */
.fluid-header {
    background: linear-gradient(135deg, #064E3B 0%, #065F46 100%);
}
.fluid-header canvas {
    background: linear-gradient(135deg, #064E3B 0%, #065F46 100%);
}

/* Typewriter Effect */
.typewriter-text {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #10B981 25%,
        #34D399 50%,
        #10B981 75%,
        #ffffff 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}
.typewriter-cursor {
    background: var(--theme-light) !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #064E3B 0%, #065F46 100%) !important;
}
.footer__bottom {
    border-top-color: rgba(255, 255, 255, 0.15);
}

/* Theme Accents */
.theme-accent {
    color: var(--theme);
}
.theme-accent-bg {
    background: var(--theme);
}
.theme-gradient-bg {
    background: linear-gradient(135deg, var(--theme) 0%, var(--theme-light) 100%);
}
.theme-border {
    border-color: var(--theme);
}
.theme-glow {
    box-shadow: 0 4px 20px var(--theme-glow);
}

/* Intro Section Styling */
.page-intro {
    background: linear-gradient(180deg, transparent 0%, var(--theme-pale) 50%, transparent 100%);
}
.page-intro::before {
    background: linear-gradient(180deg, transparent, var(--theme), transparent);
}

/* Stats/Numbers */
.stat-number,
.theme-number {
    color: var(--theme);
}

/* Cards & Highlights */
.theme-card:hover {
    border-color: var(--theme-light);
    box-shadow: 0 8px 30px var(--theme-glow);
}

/* Green-specific: Service Cards accent */
.service-card::before {
    background: linear-gradient(180deg, var(--theme) 0%, transparent 100%);
}
