/* ============================================
   TBM UNIFIED STYLES - totalbuildingmaintenance.org
   Brand Site - Professional Corporate Design
   Primary Green: #1a5f2a
   Font: 'Segoe UI', 'Inter', sans-serif
   Created: January 18, 2026
   ============================================ */

/* CSS Reset and Variables */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* TBM Brand Colors */
    --tbm-green-primary: #1a5f2a;
    --tbm-green-light: #2a7a3a;
    --tbm-green-dark: #0f4a1f;
    --tbm-accent: #8BC34A;

    /* UI Colors */
    --white: #ffffff;
    --bg-light: #f5f5f5;
    --bg-section: #f9f9f9;
    --text-dark: #1a1a1a;
    --text-body: #333333;
    --text-muted: #666666;
    --border-light: #e2e8f0;
    --footer-bg: #1a1a2e;

    /* Typography */
    --font-primary: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 60px;
    --content-padding: 20px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-body);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

/* ============================================
   UNIFIED HEADER & NAVIGATION
   ============================================ */
.tbm-header {
    background: var(--white);
    border-bottom: 3px solid var(--tbm-green-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tbm-header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--content-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo */
.tbm-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tbm-green-primary);
    text-decoration: none;
}

.tbm-logo svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Desktop Navigation */
.tbm-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tbm-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.tbm-nav-item {
    position: relative;
}

.tbm-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.tbm-nav-link:hover {
    color: var(--tbm-green-primary);
    background: rgba(26, 95, 42, 0.05);
}

.tbm-nav-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

/* Dropdown Menu */
.tbm-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 4px;
    z-index: 1001;
}

.tbm-nav-item:hover .tbm-dropdown-menu {
    display: block;
}

.tbm-nav-item:hover .tbm-nav-link svg {
    transform: rotate(180deg);
}

.tbm-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.tbm-dropdown-menu a:hover {
    background: rgba(26, 95, 42, 0.08);
    color: var(--tbm-green-primary);
}

/* Phone Link */
.tbm-nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--tbm-green-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.tbm-nav-phone svg {
    width: 18px;
    height: 18px;
}

/* CTA Button */
.tbm-nav-cta {
    display: inline-block;
    background: var(--tbm-green-primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.tbm-nav-cta:hover {
    background: var(--tbm-green-light);
    transform: translateY(-1px);
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.tbm-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.tbm-hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tbm-hamburger-line + .tbm-hamburger-line {
    margin-top: 5px;
}

.tbm-hamburger.active .tbm-hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.tbm-hamburger.active .tbm-hamburger-line:nth-child(2) {
    opacity: 0;
}

.tbm-hamburger.active .tbm-hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.tbm-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tbm-mobile-overlay.active {
    opacity: 1;
}

/* Mobile Menu Panel */
.tbm-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.tbm-mobile-menu.active {
    right: 0;
}

.tbm-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
}

.tbm-mobile-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tbm-green-primary);
}

.tbm-mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-muted);
    border-radius: 8px;
}

.tbm-mobile-close:hover {
    background: rgba(26, 95, 42, 0.08);
}

/* Mobile Nav List */
.tbm-mobile-nav {
    list-style: none;
    padding: 16px 0;
}

.tbm-mobile-nav li {
    border-bottom: 1px solid var(--border-light);
}

.tbm-mobile-nav > li > a,
.tbm-mobile-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.tbm-mobile-nav > li > a:hover,
.tbm-mobile-dropdown-btn:hover {
    background: rgba(26, 95, 42, 0.05);
}

.tbm-mobile-dropdown-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.tbm-mobile-dropdown-btn.active svg {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.tbm-mobile-submenu {
    display: none;
    list-style: none;
    background: var(--bg-light);
}

.tbm-mobile-submenu.active {
    display: block;
}

.tbm-mobile-submenu a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tbm-mobile-submenu a:hover {
    background: rgba(26, 95, 42, 0.08);
    color: var(--tbm-green-primary);
}

/* Mobile CTA */
.tbm-mobile-cta {
    display: block;
    margin: 20px;
    padding: 14px;
    text-align: center;
    background: var(--tbm-green-primary);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
}

.tbm-mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    color: var(--tbm-green-primary);
    font-weight: 600;
    border-top: 1px solid var(--border-light);
}

.tbm-mobile-phone svg {
    width: 18px;
    height: 18px;
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 968px) {
    .tbm-nav {
        display: none;
    }

    .tbm-hamburger {
        display: flex;
    }

    .tbm-mobile-menu,
    .tbm-mobile-overlay {
        display: block;
    }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.tbm-breadcrumb {
    background: var(--bg-light);
    padding: 15px 0;
    font-size: 0.875rem;
}

.tbm-breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.tbm-breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tbm-breadcrumb-list a {
    color: var(--tbm-green-primary);
    transition: color 0.2s ease;
}

.tbm-breadcrumb-list a:hover {
    color: var(--tbm-green-light);
    text-decoration: underline;
}

.tbm-breadcrumb-list .separator {
    color: var(--text-muted);
}

.tbm-breadcrumb-list .current {
    color: var(--text-muted);
}

/* ============================================
   PAGE HERO SECTIONS
   ============================================ */
.tbm-hero {
    background: linear-gradient(135deg, var(--tbm-green-primary) 0%, var(--tbm-green-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.tbm-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.tbm-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .tbm-hero h1 {
        font-size: 2rem;
    }

    .tbm-hero p {
        font-size: 1.1rem;
    }
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.tbm-content {
    padding: var(--section-padding) 0;
}

.tbm-content h2 {
    color: var(--tbm-green-primary);
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.tbm-content h3 {
    color: var(--tbm-green-primary);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.tbm-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Cards */
.tbm-card {
    background: var(--bg-section);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--tbm-green-primary);
}

.tbm-card h3 {
    margin-bottom: 15px;
}

/* Grids */
.tbm-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tbm-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tbm-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 968px) {
    .tbm-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tbm-grid-2,
    .tbm-grid-3,
    .tbm-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Stats Section */
.tbm-stats {
    background: var(--tbm-green-primary);
    color: var(--white);
    padding: var(--section-padding) 0;
}

.tbm-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.tbm-stat h3 {
    font-size: 2.75rem;
    margin-bottom: 8px;
    color: var(--white);
}

.tbm-stat p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .tbm-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tbm-stat h3 {
        font-size: 2rem;
    }
}

/* CTA Section */
.tbm-cta {
    background: var(--bg-light);
    padding: var(--section-padding) 0;
    text-align: center;
}

.tbm-cta h2 {
    color: var(--tbm-green-primary);
    font-size: 2rem;
    margin-bottom: 16px;
}

.tbm-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.tbm-cta-btn {
    display: inline-block;
    background: var(--tbm-green-primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.tbm-cta-btn:hover {
    background: var(--tbm-green-light);
    transform: translateY(-2px);
}

/* ============================================
   FORMS
   ============================================ */
.tbm-form-group {
    margin-bottom: 20px;
}

.tbm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.tbm-form-group input,
.tbm-form-group select,
.tbm-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.tbm-form-group input:focus,
.tbm-form-group select:focus,
.tbm-form-group textarea:focus {
    outline: none;
    border-color: var(--tbm-green-primary);
}

.tbm-submit-btn {
    background: var(--tbm-green-primary);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tbm-submit-btn:hover {
    background: var(--tbm-green-light);
}

/* ============================================
   TBM NETWORK BANNER
   ============================================ */
.tbm-network-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
    padding: 48px 20px;
    border-top: 4px solid var(--tbm-green-primary);
}

.tbm-network-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.tbm-network-header {
    text-align: center;
    margin-bottom: 40px;
}

.tbm-network-header h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tbm-network-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.tbm-network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tbm-network-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.tbm-network-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--tbm-green-primary);
    transform: translateY(-4px);
}

.tbm-network-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tbm-network-card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.tbm-network-card-icon.commercial {
    background: linear-gradient(135deg, #1a5f2a 0%, #2a7a3a 100%);
}

.tbm-network-card-icon.eco {
    background: linear-gradient(135deg, #2D5A27 0%, #4A7C43 100%);
}

.tbm-network-card-icon.exterior {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.tbm-network-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.tbm-network-card .tbm-domain {
    color: var(--tbm-accent);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
}

.tbm-network-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .tbm-network-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TBM UNIFIED FOOTER
   ============================================ */
.tbm-footer {
    background: var(--footer-bg);
    color: var(--white);
}

.tbm-footer-main {
    padding: 60px 20px 48px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.tbm-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Footer Brand */
.tbm-footer-brand h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.tbm-footer-brand .tagline {
    color: var(--tbm-accent);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.tbm-footer-brand .description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Trust Badges */
.tbm-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.tbm-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tbm-trust-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--tbm-accent);
}

.tbm-trust-badge.experience {
    background: rgba(139, 195, 74, 0.15);
    border-color: rgba(139, 195, 74, 0.3);
}

.tbm-trust-badge.experience svg {
    fill: #fbbf24;
}

/* Social Links */
.tbm-social-links {
    display: flex;
    gap: 12px;
}

.tbm-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--white);
}

.tbm-social-link:hover {
    background: var(--tbm-green-primary);
    transform: translateY(-2px);
}

.tbm-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer Links */
.tbm-footer-links h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--tbm-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tbm-footer-links ul {
    list-style: none;
}

.tbm-footer-links li {
    margin-bottom: 12px;
}

.tbm-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.tbm-footer-links a:hover {
    color: var(--white);
}

/* Service Areas List */
.tbm-service-areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

/* Contact Info */
.tbm-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tbm-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.tbm-footer-contact-item:hover {
    color: var(--tbm-accent);
}

.tbm-footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--tbm-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.tbm-footer-contact-item.phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

/* Footer Bottom */
.tbm-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tbm-footer-bottom-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.tbm-footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.tbm-footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tbm-footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.tbm-footer-legal a:hover {
    color: var(--white);
}

.tbm-footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

.tbm-footer-location {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .tbm-footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .tbm-footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .tbm-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .tbm-service-areas-list {
        grid-template-columns: 1fr;
    }

    .tbm-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tbm-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tbm-trust-badges,
    .tbm-social-links {
        justify-content: center;
    }

    .tbm-footer-contact {
        align-items: center;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }

/* ============================================
   LEGACY CLASS COMPATIBILITY
   Styles for existing page class names
   ============================================ */

/* Hero Section - Full Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #E8F5E9 0%, var(--white) 100%);
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--tbm-accent);
    color: var(--tbm-green-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--tbm-green-primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--tbm-green-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--tbm-green-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--tbm-green-primary);
    padding: 1rem 2rem;
    border: 2px solid var(--tbm-green-primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #E8F5E9;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 95, 42, 0.1);
}

.stat h3 {
    font-size: 2rem;
    color: var(--tbm-green-primary);
}

.stat p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Hero Visual Panel */
.hero-image,
.hero-visual {
    background: linear-gradient(135deg, var(--tbm-green-primary) 0%, #1a5f2a 50%, #0d3d15 100%);
    border-radius: 20px;
    padding: 3rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(26, 95, 42, 0.3);
}

.hero-visual-content {
    text-align: center;
    color: white;
}

.hero-visual-icon {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-visual-icon svg {
    color: rgba(255, 255, 255, 0.9);
}

.hero-visual-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-visual-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-visual-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.hero-visual-stat .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Hero Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

/* Content Section (legacy) */
.content {
    padding: 60px 0;
}

.content h2 {
    color: var(--tbm-green-primary);
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.content h3 {
    color: var(--tbm-green-primary);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Two Column Grid (legacy) */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}

/* Values Grid (legacy) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-card {
    background: var(--bg-section);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--tbm-green-primary);
}

.value-card h3 {
    color: var(--tbm-green-primary);
    margin-bottom: 15px;
}

/* Stats Section (legacy) */
.stats-section {
    background: var(--tbm-green-primary);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.75rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item h3 {
        font-size: 2rem;
    }
}

/* CTA Section (legacy) */
.cta-section {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--tbm-green-primary);
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    background: var(--tbm-green-primary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: var(--tbm-green-light);
    transform: translateY(-2px);
}

/* Contact Grid (legacy) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form h2 {
    color: var(--tbm-green-primary);
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: var(--tbm-green-primary);
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--tbm-green-primary);
}

.contact-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Hours Table (legacy) */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.hours-table td:first-child {
    font-weight: 500;
}

/* Emergency Banner (legacy) */
.emergency-banner {
    background: var(--bg-light);
    border-left: 4px solid var(--tbm-green-primary);
    padding: 20px;
    margin-top: 40px;
}

.emergency-banner h3 {
    color: var(--tbm-green-primary);
    margin-bottom: 10px;
}

/* Form Styles (legacy) */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tbm-green-primary);
}

.submit-btn {
    background: var(--tbm-green-primary);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submit-btn:hover {
    background: var(--tbm-green-light);
}

/* Testimonials (legacy) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-section);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--tbm-green-primary);
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #444;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--tbm-green-primary);
}

.testimonial-card .company {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stars {
    color: #f5a623;
    margin-bottom: 15px;
}

/* Services Grid (legacy) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(26, 95, 42, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--tbm-green-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--tbm-green-primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Styles (legacy) */
.faq-item {
    background: var(--bg-section);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--tbm-green-primary);
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Seasons Grid (legacy - index page) */
.seasons {
    padding: 60px 20px;
    background: var(--tbm-green-primary);
    color: var(--white);
}

.seasons .section-header h2 {
    color: var(--white);
}

.seasons .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.season-card {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: background 0.3s;
}

.season-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.season-icon {
    margin-bottom: 16px;
}

.season-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--white);
}

.season-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #f59e0b;
}

.season-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

@media (max-width: 968px) {
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .seasons-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Header (legacy) */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--tbm-green-primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Container (legacy) */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Services Section (legacy) */
.services {
    padding: 60px 20px;
    background: var(--white);
}
