/*
Theme Name: SAINT Technology Services
Theme URI: https://saintsecured.com
Author: SAINT Technology Services
Author URI: https://saintsecured.com
Description: Enterprise-grade IT, Cybersecurity, and Physical Security services theme for Lincoln, Omaha Nebraska, Maryville Missouri, and Clarinda Iowa.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: saint-developer-developer
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, one-column, two-columns, full-width-template

SAINT Technology Services - Unified IT & Security Services
*/

/* ============================================
   CSS VARIABLES (Design System)
   ============================================ */
:root {
    /* Primary Colors */
    --color-primary: #00AA44;
    --color-primary-hover: #008833;
    --color-primary-light: rgba(0, 170, 68, 0.1);
    --color-primary-glow: rgba(0, 170, 68, 0.3);

    /* Background Colors */
    --color-bg-dark: #0B0B0C;
    --color-bg-surface: #1A1D21;
    --color-bg-elevated: #242830;
    --color-bg-card: rgba(26, 29, 33, 0.9);

    /* Text Colors */
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B0B3B8;
    --color-text-muted: #6B7280;

    /* Border Colors */
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-hover: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px var(--color-primary-glow);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-dark);
    min-height: 100vh;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-secondary);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-hover);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(11, 11, 12, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.site-logo img {
    height: 40px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.main-navigation a {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--color-text-primary);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
}

@media (max-width: 1024px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg-dark);
        border-bottom: 1px solid var(--color-border);
        padding: var(--spacing-lg);
    }

    .main-navigation.active ul {
        flex-direction: column;
        width: 100%;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--color-primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg-surface);
    border-color: var(--color-border-hover);
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-text-primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
}

.card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.card-text {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(0, 170, 68, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(0, 170, 68, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 800px;
}

/* Hero Floating Logo */
.hero-floating-logo {
    margin-bottom: var(--spacing-lg);
    animation: float 3s ease-in-out infinite;
}

.floating-logo-img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 170, 68, 0.6))
            drop-shadow(0 0 40px rgba(0, 170, 68, 0.4))
            drop-shadow(0 0 60px rgba(0, 170, 68, 0.2));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-primary-light);
    border: 1px solid rgba(0, 170, 68, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

.hero h1 {
    margin-bottom: var(--spacing-lg);
}

.hero h1 .highlight {
    color: var(--color-primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid var(--color-border);
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 var(--spacing-3xl);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover::before {
    opacity: 1;
}

/* ============================================
   LOCATION PAGES
   ============================================ */
.location-hero {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-surface) 100%);
    padding: 120px 0 var(--spacing-3xl);
    position: relative;
    overflow: hidden;
}

.location-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 170, 68, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.location-breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    font-size: 0.875rem;
}

.location-breadcrumbs a {
    color: var(--color-text-muted);
}

.location-breadcrumbs span {
    color: var(--color-text-muted);
}

.location-breadcrumbs .current {
    color: var(--color-text-secondary);
}

.location-content {
    padding: var(--spacing-3xl) 0;
}

.location-content h2 {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.location-content ul {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.location-content ul li {
    position: relative;
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
}

.location-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-bg-surface);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-brand img {
    height: 40px;
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    max-width: 300px;
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-bg-elevated);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-text-primary);
}

.footer-column h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-column ul a {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-column ul a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-primary);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-muted {
    color: var(--color-text-muted);
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.py-1 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-2 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-3 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-4 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.alignleft {
    float: left;
    margin-right: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.alignright {
    float: right;
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Admin bar offset */
body.admin-bar .top-banner-cta {
    top: 32px;
}

body.admin-bar .site-header {
    top: 32px;
}

@media (min-width: 768px) {
    body.admin-bar .site-header {
        top: 72px; /* 32px admin bar + 40px top banner */
    }

    body.admin-bar {
        padding-top: 144px; /* 32px admin bar + 40px top banner + 72px header */
    }
}

@media screen and (max-width: 782px) {
    body.admin-bar .top-banner-cta {
        top: 46px;
    }

    body.admin-bar .site-header {
        top: 46px;
    }
}

/* ============================================
   HOMEPAGE SECTIONS - MATCHING SAINTSECURED.COM
   ============================================ */

/* Logo Styling */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-base);
}

.scrolled .logo-img {
    height: 45px;
}

/* Client Portal Button */
.client-portal-btn {
    display: none;
}

@media (min-width: 1200px) {
    .client-portal-btn {
        display: inline-flex;
    }
}

/* Mobile Menu Icons */
.mobile-menu-icons {
    display: none;
    align-items: center;
    gap: 14px;
}

.mobile-emergency {
    display: none;
    align-items: center;
    gap: 4px;
    color: #DC2626;
    padding: 8px 0;
}

.mobile-phone {
    color: var(--color-primary);
    padding: 8px 0;
}

@media (max-width: 1024px) {
    .mobile-menu-icons {
        display: flex;
    }
    .header-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-emergency {
        display: flex;
    }
}

/* ============================================
   NEW HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(0, 170, 68, 0.07) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0, 170, 68, 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 70%, transparent 100%);
    opacity: 0.3;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 2;
}

.hero-glow-1 {
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(0, 170, 68, 0.2);
    filter: blur(150px);
}

.hero-glow-2 {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(0, 136, 51, 0.15);
    filter: blur(120px);
}

.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.hero-content {
    max-width: 640px;
}

.hero-content-full {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(26, 29, 33, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 170, 68, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(0, 170, 68, 0.2);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    color: #D1D5DB;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #E5E7EB;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.hero-buttons .btn-primary {
    box-shadow: 0 0 20px rgba(0, 170, 68, 0.4);
}

.hero-buttons .btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 170, 68, 0.6);
}

.hero-buttons .btn-outline {
    background: rgba(11, 11, 12, 0.5);
    backdrop-filter: blur(8px);
    border-color: rgba(0, 170, 68, 0.5);
    color: white;
}

.hero-buttons .btn-outline:hover {
    background: var(--color-primary);
}

/* Hero Card */
.hero-card {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero-card {
        margin: 0;
    }
}

.hero-card-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--color-primary), #008833);
    border-radius: 1rem;
    filter: blur(8px);
    opacity: 0.4;
    transition: opacity var(--transition-base);
}

.hero-card:hover .hero-card-glow {
    opacity: 0.7;
}

.hero-card-inner {
    position: relative;
    background: rgba(26, 29, 33, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 170, 68, 0.3);
    transition: box-shadow var(--transition-base);
}

.hero-card:hover .hero-card-inner {
    box-shadow: 0 0 50px rgba(0, 170, 68, 0.5);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.hero-card-header span {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-card-body {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #111 0%, #050A10 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 96px;
    height: 96px;
    background: rgba(0, 170, 68, 0.1);
    border-bottom-left-radius: 100%;
}

.hero-card-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
}

.hero-card-content h5 {
    color: var(--color-primary);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-card-content h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-card-line {
    width: 48px;
    height: 4px;
    background: var(--color-primary);
    margin: 0 auto 1rem;
}

.hero-card-content p {
    font-size: 0.625rem;
    color: #9CA3AF;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    font-size: 0.75rem;
    color: #9CA3AF;
}

.hero-card-footer .text-primary {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

/* ============================================
   TRUST BAR SECTION
   ============================================ */
.trust-bar {
    position: relative;
    background: var(--color-bg-surface);
    border-top: 1px solid #2D3748;
    border-bottom: 1px solid #2D3748;
    padding: 2rem 0;
    z-index: 20;
    overflow: hidden;
}

.trust-bar-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--color-primary) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.05;
}

.trust-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .trust-features {
        justify-content: space-between;
        gap: 1rem;
    }
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.trust-feature svg {
    filter: drop-shadow(0 0 8px rgba(0, 170, 68, 0.5));
}

.trust-feature span {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ============================================
   SERVICES SECTION (NEW)
   ============================================ */
.services-section {
    position: relative;
    background: var(--color-bg-surface);
    padding: 6rem 0;
    border-top: 1px solid #2D3748;
    border-bottom: 1px solid #2D3748;
    overflow: hidden;
}

.services-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--color-primary) 1px, transparent 1px),
                      linear-gradient(90deg, var(--color-primary) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.03;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 4rem;
}

.services-section .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.services-section .service-card {
    position: relative;
    background: var(--color-bg-dark);
    border: 1px solid #2D3748;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all var(--transition-base);
    overflow: hidden;
}

.services-section .service-card:hover {
    border-color: rgba(0, 170, 68, 0.6);
    box-shadow: 0 0 25px rgba(0, 170, 68, 0.15);
}

.service-card-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover .service-card-line {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--color-bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: rgba(0, 170, 68, 0.1);
    border-color: rgba(0, 170, 68, 0.3);
}

.service-icon svg {
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PAIN POINTS SECTION
   ============================================ */
.pain-points-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pain-points-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.pain-points-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--color-bg-dark), transparent, var(--color-bg-dark));
}

.pain-points-section .container {
    position: relative;
    z-index: 10;
}

.pain-points-section .section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .pain-points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pain-points-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pain-point-card {
    background: rgba(11, 11, 12, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(45, 55, 72, 0.8);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all var(--transition-base);
}

.pain-point-card:hover {
    border-color: rgba(0, 170, 68, 0.5);
    box-shadow: 0 0 20px rgba(0, 170, 68, 0.2);
}

.pain-point-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 29, 33, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background var(--transition-base);
}

.pain-point-card:hover .pain-point-icon {
    background: rgba(0, 170, 68, 0.2);
}

.pain-point-icon svg {
    color: var(--color-primary);
    filter: drop-shadow(0 0 5px rgba(0, 170, 68, 0.4));
}

.pain-point-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin: 0;
}

/* ============================================
   WHY CHOOSE SAINT SECTION
   ============================================ */
.why-saint-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.why-saint-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(2px);
}

.why-saint-section .container {
    position: relative;
    z-index: 10;
}

.why-saint-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-saint-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.why-saint-content {
    max-width: 512px;
}

.why-saint-line {
    width: 64px;
    height: 4px;
    background: var(--color-primary);
    margin-bottom: 2rem;
    box-shadow: 0 0 10px rgba(0, 170, 68, 0.8);
}

.why-saint-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.why-saint-content h2 .text-primary {
    text-shadow: 0 0 10px rgba(0, 170, 68, 0.3);
}

.why-saint-content p {
    color: #E5E7EB;
    font-size: 1.125rem;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    max-width: 512px;
}

.why-saint-card {
    position: relative;
    background: rgba(26, 29, 33, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(45, 55, 72, 0.5);
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.why-saint-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 128px;
    height: 128px;
    background: rgba(0, 170, 68, 0.2);
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
}

.why-saint-list {
    list-style: none;
    position: relative;
    z-index: 10;
}

.why-saint-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    transition: all var(--transition-base);
    margin-bottom: 0.5rem;
}

.why-saint-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.why-saint-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 0 5px rgba(0, 170, 68, 0.4));
}

.why-saint-list li span {
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.process-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 12, 0.85);
    backdrop-filter: blur(3px);
}

.process-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: rgba(0, 170, 68, 0.1);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
}

.process-section .container {
    position: relative;
    z-index: 10;
}

.process-section .section-title {
    text-align: center;
    margin-bottom: 5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-connector {
    display: none;
}

@media (min-width: 768px) {
    .process-connector {
        display: block;
        position: absolute;
        top: 48px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0, 170, 68, 0.4), transparent);
        box-shadow: 0 0 10px rgba(0, 170, 68, 0.5);
    }
}

.process-card {
    position: relative;
    background: rgba(26, 29, 33, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(45, 55, 72, 0.5);
    border-radius: 0.75rem;
    padding: 2rem;
    z-index: 10;
    transition: all var(--transition-base);
    text-align: center;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 170, 68, 0.4);
    box-shadow: 0 0 25px rgba(0, 170, 68, 0.15);
}

.process-icon {
    position: relative;
    width: 64px;
    height: 64px;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(0, 170, 68, 0.4);
}

.process-icon-ping {
    position: absolute;
    inset: 0;
    background: rgba(0, 170, 68, 0.2);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.process-icon svg {
    position: relative;
    z-index: 10;
    color: var(--color-primary);
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.process-card p {
    font-size: 0.875rem;
    color: #D1D5DB;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   LOCAL SEO SECTION
   ============================================ */
.local-seo-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
}

.local-seo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.local-seo-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 170, 68, 0.05), transparent);
}

.local-seo-section .container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
}

.local-seo-card {
    position: relative;
    background: rgba(26, 29, 33, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 170, 68, 0.2);
    border-radius: 1rem;
    padding: 2rem 3.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.local-seo-glow {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: rgba(0, 170, 68, 0.1);
    filter: blur(40px);
    border-radius: 50%;
    pointer-events: none;
}

.local-seo-card h2 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.local-seo-card p {
    color: #D1D5DB;
    font-size: 1.125rem;
    line-height: 1.7;
    position: relative;
    z-index: 10;
}

.local-seo-card p strong {
    color: white;
}

.local-seo-card h3.service-areas-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.local-seo-card p.service-areas-list {
    font-size: 1rem;
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.local-seo-card p.service-areas-cta {
    font-size: 1rem;
    color: #D1D5DB;
}

.local-seo-card p.service-areas-cta a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.local-seo-card p.service-areas-cta a:hover {
    color: #00cc55;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-bg-dark));
    text-align: center;
    overflow: hidden;
}

.final-cta-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.2;
}

.final-cta-section .container {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.final-cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta-section > .container > p {
    font-size: 1.25rem;
    color: #E5E7EB;
    margin-bottom: 3rem;
    font-weight: 500;
}

.btn-white {
    background: white;
    color: var(--color-bg-dark);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 3rem;
}

.btn-white:hover {
    background: #E5E7EB;
    color: var(--color-bg-dark);
}

.final-cta-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .final-cta-contact {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: rgba(11, 11, 12, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    transition: all var(--transition-base);
}

.cta-contact-link:hover {
    color: white;
    background: rgba(11, 11, 12, 0.3);
}

/* ============================================
   UPDATED FOOTER STYLES
   ============================================ */
.site-footer {
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-bg-surface);
    padding: 5rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

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

.footer-company {
    max-width: 400px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-description {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-surface);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-social a:hover {
    background: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 170, 68, 0.4);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul a {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

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

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-primary) !important;
    font-weight: 600;
}

.view-all-link:hover {
    color: white !important;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact ul li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact ul li a {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-contact ul li a:hover {
    color: white;
}

.footer-contact ul li div {
    display: flex;
    flex-direction: column;
}

.footer-contact ul li div span {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.footer-contact ul li div span:last-child {
    font-size: 0.75rem;
    color: rgba(176, 179, 184, 0.7);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-bg-surface);
    text-align: center;
}

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

.footer-bottom p {
    color: rgba(176, 179, 184, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(176, 179, 184, 0.7);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: white;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 40;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    padding: 1.5rem;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-nav-menu li {
    margin-bottom: 0.5rem;
}

.mobile-nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    background: rgba(0, 170, 68, 0.1);
    color: var(--color-primary);
}

.mobile-menu-cta {
    padding: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
}

/* ============================================
   TOP BANNER CTA
   ============================================ */
.top-banner-cta {
    display: none;
    justify-content: space-between;
    align-items: center;
    background: #050A10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #B0B3B8;
    height: 40px;
    padding: 0 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 60;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.025em;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .top-banner-cta {
        display: flex;
    }

    body {
        padding-top: 112px; /* 40px top banner + 72px header */
    }

    .site-header {
        top: 40px;
    }

    .site-main {
        padding-top: 0;
    }
}

.top-banner-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #B0B3B8;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.top-banner-phone:hover {
    color: var(--color-primary);
}

.top-banner-phone svg {
    color: var(--color-primary);
}

.top-banner-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-banner-tagline {
    color: #6B7280;
}

.top-banner-schedule {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    transition: background var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.top-banner-schedule:hover {
    background: var(--color-primary-hover);
    color: white;
}

/* ============================================
   EMERGENCY CTA (Desktop Floating Button)
   ============================================ */
@keyframes pulse-subtle {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

.emergency-cta-desktop {
    display: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 50;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
}

@media (min-width: 768px) {
    .emergency-cta-desktop {
        display: flex;
        bottom: 2.5rem;
        right: 2.5rem;
    }
}

.emergency-cta-btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 2px solid #DC2626;
    color: #111827;
    padding: 12px 20px;
    border-radius: 9999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 44px;
    animation: pulse-subtle 2s ease-in-out 1;
}

.emergency-cta-btn:hover {
    background: rgba(220, 38, 38, 0.08);
    color: #DC2626;
    transform: translateY(-1px);
}

.emergency-cta-btn:active {
    transform: scale(0.98);
}

.emergency-cta-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.emergency-cta-btn:hover svg {
    color: #DC2626;
}

.emergency-cta-btn span {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.emergency-cta-btn:hover span {
    color: #DC2626;
}

/* ============================================
   MOBILE CTA BAR (Fixed Bottom)
   ============================================ */
.mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    z-index: 60;
    gap: 0.75rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0));
}

@media (min-width: 768px) {
    .mobile-cta-bar {
        display: none;
    }
}

.mobile-cta-call,
.mobile-cta-book {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 56px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

.mobile-cta-call {
    background: var(--color-primary);
    color: white;
}

.mobile-cta-call:hover {
    background: var(--color-primary-hover);
    color: white;
}

.mobile-cta-book {
    background: var(--color-bg-surface);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-book:hover {
    background: var(--color-bg-elevated);
    color: white;
}

.mobile-cta-call svg,
.mobile-cta-book svg {
    width: 20px;
    height: 20px;
}

/* Body padding for mobile CTA bar */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
    }
}

/* ============================================
   SERVICES DESCRIPTION SECTION
   ============================================ */
.services-description-section {
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-description-text {
    font-size: 1.25rem;
    color: #D1D5DB;
    line-height: 1.8;
    font-weight: 300;
}

.services-description-text a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.services-description-text a:hover {
    text-decoration: underline;
}

/* ============================================
   PROMINENT CTA SECTION
   ============================================ */
.prominent-cta-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #050A10 0%, #1A1D21 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.prominent-cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.prominent-cta-subtitle {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
}

.prominent-cta-subtitle .text-primary {
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.025em;
}

.prominent-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .prominent-cta-buttons {
        flex-direction: row;
        max-width: none;
    }
}

.prominent-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 170, 68, 0.3);
}

@media (min-width: 640px) {
    .prominent-cta-buttons .btn {
        width: auto;
    }
}

/* ============================================
   AUTHORITY SECTION
   ============================================ */
.authority-section {
    position: relative;
    padding: 6rem 1rem;
    border-top: 1px solid rgba(45, 55, 72, 1);
    border-bottom: 1px solid rgba(45, 55, 72, 1);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.authority-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 29, 33, 0.9);
    backdrop-filter: blur(4px);
}

.authority-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 170, 68, 0.05), transparent);
}

.authority-section .container {
    position: relative;
    z-index: 10;
}

.authority-header {
    text-align: center;
    margin-bottom: 4rem;
}

.authority-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 170, 68, 0.3);
    background: rgba(0, 170, 68, 0.1);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.authority-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

@media (min-width: 640px) {
    .authority-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .authority-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.authority-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(11, 11, 12, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all var(--transition-base);
}

.authority-card:hover {
    border-color: rgba(0, 170, 68, 0.4);
    box-shadow: 0 0 20px rgba(0, 170, 68, 0.1);
}

.authority-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: var(--color-bg-surface);
    border: 1px solid rgba(45, 55, 72, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.authority-card:hover .authority-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 170, 68, 0.2);
    border-color: rgba(0, 170, 68, 0.5);
}

.authority-icon svg {
    color: var(--color-primary);
}

.authority-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

/* ============================================
   SOLUTIONS PAGE
   ============================================ */

/* Solutions Hero */
.solutions-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.solutions-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.solutions-hero-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.solutions-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(11, 11, 12, 0.4),
        rgba(11, 11, 12, 0.8),
        rgba(11, 11, 12, 1)
    );
}

.solutions-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(0, 170, 68, 0.1);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.solutions-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.solutions-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(0, 170, 68, 0.1);
    border: 1px solid rgba(0, 170, 68, 0.2);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(0, 170, 68, 0.15);
}

.solutions-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.text-gradient {
    background: linear-gradient(to right, var(--color-primary), #00ff66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hidden-mobile {
        display: block;
    }
}

.solutions-hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: #D1D5DB;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 300;
}

.solutions-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

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

.solutions-hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    min-width: 200px;
}

/* Solutions Grid Section */
.solutions-grid-section {
    position: relative;
    z-index: 10;
    padding: 6rem 0;
}

.solutions-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.solutions-section-subtitle {
    font-size: 1.25rem;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Solution Card */
.solution-card {
    display: flex;
    flex-direction: column;
    background: rgba(26, 29, 33, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid #2D3748;
    border-radius: 0.75rem;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.solution-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 170, 68, 0.2);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg-dark);
    border: 1px solid #2D3748;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.solution-card:hover .solution-icon {
    border-color: rgba(0, 170, 68, 0.5);
    background: rgba(0, 170, 68, 0.1);
}

.solution-icon svg {
    color: var(--color-primary);
}

.solution-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-title {
    color: var(--color-primary);
}

.solution-description {
    font-size: 1rem;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.solution-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    transition: color 0.3s ease;
    margin-top: auto;
}

.solution-card:hover .solution-link {
    color: var(--color-primary);
}

.solution-link svg {
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-link svg {
    transform: translateX(8px);
}

/* Solutions CTA Section */
.solutions-cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(45, 55, 72, 0.5);
    background: var(--color-bg-dark);
}

.solutions-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 170, 68, 0.05));
}

.solutions-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solutions-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solutions-cta-description {
    font-size: 1.25rem;
    color: #9CA3AF;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.solutions-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .solutions-cta-buttons {
        flex-direction: row;
    }
}

.solutions-cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    min-width: 180px;
}

/* ============================================
   BLOG PAGE
   ============================================ */

/* Blog Hero */
.blog-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blog-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.blog-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-bg-dark), rgba(11, 11, 12, 0.8), transparent);
}

.blog-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.blog-hero-description {
    font-size: 1.25rem;
    color: #CBD5E1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Blog Mid CTA */
.blog-mid-cta {
    background: var(--color-bg-surface);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}

.blog-mid-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .blog-mid-cta-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.blog-mid-cta-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.blog-mid-cta-content p {
    font-size: 0.875rem;
    color: #9CA3AF;
    margin: 0;
}

.blog-mid-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-icon {
    color: #9CA3AF;
    margin-right: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--color-bg-surface);
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: #2A2D31;
    color: white;
}

.filter-btn.active {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 0 15px rgba(0, 170, 68, 0.4);
}

/* Blog Content Section */
.blog-content-section {
    padding: 5rem 0;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Blog Card */
.blog-card {
    background: var(--color-bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: rgba(0, 170, 68, 0.5);
    box-shadow: 0 0 30px rgba(0, 170, 68, 0.1);
}

.blog-card-image-link {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #050A10;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #4B5563;
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(11, 11, 12, 0.8);
    backdrop-filter: blur(8px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-bottom: 1rem;
}

.blog-card-date,
.blog-card-read-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-title {
    color: var(--color-primary);
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: auto;
}

.blog-card-link:hover {
    color: white;
}

.blog-card-link svg {
    transition: transform 0.2s ease;
}

.blog-card:hover .blog-card-link svg {
    transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-info {
    font-size: 0.875rem;
    color: #9CA3AF;
}

/* Blog Empty State */
.blog-empty {
    text-align: center;
    padding: 5rem 0;
    background: var(--color-bg-surface);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-empty h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.blog-empty p {
    color: #9CA3AF;
}

/* Blog Bottom CTA */
.blog-bottom-cta {
    background: linear-gradient(135deg, var(--color-bg-surface), var(--color-bg-dark));
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-bottom-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.blog-bottom-cta > .container > p {
    font-size: 1.125rem;
    color: #9CA3AF;
    margin-bottom: 2rem;
}

.blog-bottom-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .blog-bottom-cta-buttons {
        flex-direction: row;
    }
}

/* ============================================
   SERVICE LOCATIONS PAGE
   ============================================ */

.locations-hero {
    position: relative;
    padding: 8rem 0 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.locations-hero-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 170, 68, 0.05), transparent);
    pointer-events: none;
}

.locations-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.locations-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(0, 170, 68, 0.1);
    border: 1px solid rgba(0, 170, 68, 0.3);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.locations-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.locations-hero-description {
    font-size: 1.25rem;
    color: #D1D5DB;
    line-height: 1.7;
}

.locations-grid-section {
    padding: 5rem 0;
}

.location-group {
    margin-bottom: 4rem;
}

.location-group:last-child {
    margin-bottom: 0;
}

.location-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-group-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
}

.location-group-count {
    background: rgba(0, 170, 68, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(0, 170, 68, 0.2);
    font-size: 0.875rem;
    font-weight: 700;
    font-family: monospace;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.location-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .location-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .location-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .location-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.location-card {
    background: #0B121C;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: rgba(0, 170, 68, 0.5);
    background: #0F172A;
    transform: translateY(-4px);
}

.location-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.location-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 170, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.location-card:hover .location-card-icon {
    background: var(--color-primary);
    color: white;
}

.location-card-arrow {
    color: #4B5563;
    transition: color 0.3s ease;
}

.location-card:hover .location-card-arrow {
    color: var(--color-primary);
}

.location-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.location-card:hover .location-card-name {
    color: var(--color-primary);
}

.location-card-region {
    font-size: 0.875rem;
    color: #9CA3AF;
    font-family: monospace;
    margin-bottom: 1rem;
}

.location-card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: auto;
}

/* ============================================
   HELP DESK STAFFING PAGE
   ============================================ */

.helpdesk-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.helpdesk-hero-bg {
    position: absolute;
    inset: 0;
}

.helpdesk-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.helpdesk-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 11, 12, 1), rgba(11, 11, 12, 0.9), rgba(11, 11, 12, 0.6));
    backdrop-filter: blur(2px);
}

.helpdesk-hero-content {
    position: relative;
    z-index: 10;
}

.helpdesk-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.helpdesk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(0, 170, 68, 0.1);
    border: 1px solid rgba(0, 170, 68, 0.2);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.helpdesk-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.helpdesk-hero-description {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 500px;
}

.helpdesk-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.helpdesk-hero-form {
    background: rgba(26, 29, 33, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(12px);
}

.helpdesk-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.helpdesk-form-card > p {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.helpdesk-form-fallback {
    margin-top: 1.5rem;
    text-align: center;
}

.helpdesk-form-fallback p {
    color: #9CA3AF;
    margin-bottom: 0.75rem;
}

.helpdesk-tiers {
    padding: 6rem 0;
    background: #050A10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.helpdesk-tiers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .helpdesk-tiers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tier-card {
    background: #0A1628;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tier-card:hover {
    border-color: rgba(0, 170, 68, 0.5);
    box-shadow: 0 0 30px rgba(0, 170, 68, 0.1);
}

.tier-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 170, 68, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.tier-card:hover .tier-icon {
    background: var(--color-primary);
    color: white;
}

.tier-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.tier-card > p {
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-features li {
    display: flex;
    align-items: center;
    color: #CBD5E1;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.tier-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' stroke='%2300AA44' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.helpdesk-trust {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.helpdesk-trust-glow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: rgba(0, 170, 68, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

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

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

.helpdesk-trust-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.helpdesk-trust-content > p {
    font-size: 1.125rem;
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.helpdesk-trust-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .helpdesk-trust-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.trust-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-bg-surface);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-feature-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.trust-feature-item span {
    color: white;
    font-weight: 500;
}

.helpdesk-trust-image {
    position: relative;
}

.helpdesk-trust-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.helpdesk-trust-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--color-bg-dark);
    border: 1px solid rgba(0, 170, 68, 0.3);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 0 30px rgba(0, 170, 68, 0.2);
}

.trust-badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 170, 68, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.trust-badge-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.trust-badge-label {
    font-size: 0.875rem;
    color: #9CA3AF;
    margin: 0;
}

.helpdesk-industries {
    padding: 6rem 0;
    background: #050A10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.helpdesk-industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .helpdesk-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .helpdesk-industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.industry-card {
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: rgba(0, 170, 68, 0.3);
}

.industry-card svg {
    color: var(--color-primary);
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.industry-card:hover svg {
    transform: scale(1.1);
}

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.industry-card p {
    font-size: 0.875rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.helpdesk-geo-cta {
    padding: 5rem 0;
}

.geo-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .geo-cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.geo-cta-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
}

.geo-cta-lincoln {
    background: linear-gradient(135deg, #0A1628, #050A10);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.geo-cta-omaha {
    background: linear-gradient(135deg, rgba(0, 170, 68, 0.2), #0A1628);
    border: 1px solid rgba(0, 170, 68, 0.3);
    box-shadow: 0 0 30px rgba(0, 170, 68, 0.1);
}

.geo-cta-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.5rem;
    opacity: 0.1;
}

.geo-cta-card h3 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.geo-cta-card p {
    color: #9CA3AF;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.geo-cta-card .btn {
    position: relative;
    z-index: 10;
}

/* ============================================
   VERTICALS/INDUSTRIES PAGE
   ============================================ */
.verticals-page {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.verticals-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(5, 10, 16, 0.95), rgba(10, 22, 40, 0.9));
    pointer-events: none;
    z-index: 0;
}

.verticals-hero {
    position: relative;
    z-index: 1;
    padding: 8rem 0 4rem;
    text-align: center;
}

.verticals-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.verticals-hero-description {
    font-size: 1.125rem;
    color: #9CA3AF;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.verticals-grid-section {
    position: relative;
    z-index: 1;
    padding: 4rem 0 6rem;
}

.verticals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .verticals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .verticals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .verticals-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vertical-card {
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vertical-card:hover {
    border-color: rgba(0, 170, 68, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vertical-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 170, 68, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.vertical-card:hover .vertical-icon {
    background: rgba(0, 170, 68, 0.25);
}

.vertical-icon svg {
    color: var(--color-primary);
}

.vertical-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.vertical-description {
    font-size: 0.875rem;
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vertical-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.vertical-card:hover .vertical-link {
    gap: 0.75rem;
}

.vertical-link svg {
    transition: transform 0.3s ease;
}

.vertical-card:hover .vertical-link svg {
    transform: translateX(4px);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.about-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 170, 68, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

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

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

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 170, 68, 0.15);
    border: 1px solid rgba(0, 170, 68, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.about-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.about-hero-description {
    font-size: 1.125rem;
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.about-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-hero-image-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 170, 68, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.founder-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(0, 170, 68, 0.4);
    box-shadow: 0 0 40px rgba(0, 170, 68, 0.2);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .founder-image {
        width: 400px;
        height: 400px;
    }
}

/* Founder Story Section */
.founder-story-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--color-bg-dark), rgba(10, 22, 40, 0.5));
}

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

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

.founder-story-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.founder-story-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.founder-story-content p {
    font-size: 1.125rem;
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-story-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 170, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    color: var(--color-primary);
}

.story-highlight span {
    color: white;
    font-weight: 500;
}

/* Mission / Values Section */
.mission-section {
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: rgba(0, 170, 68, 0.4);
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 170, 68, 0.15);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    color: var(--color-primary);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.875rem;
    color: #9CA3AF;
    line-height: 1.7;
}

/* About CTA Section */
.about-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 170, 68, 0.15), rgba(10, 22, 40, 0.9));
    text-align: center;
}

.about-cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .about-cta-section h2 {
        font-size: 2.5rem;
    }
}

.about-cta-section p {
    font-size: 1.125rem;
    color: #9CA3AF;
    margin-bottom: 2rem;
}

.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
    position: relative;
    padding: 8rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.contact-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 170, 68, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.contact-hero-description {
    font-size: 1rem;
    color: #9CA3AF;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Options Section */
.contact-options-section {
    padding: 3rem 0;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-option-card {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.contact-option-card:hover {
    border-color: rgba(0, 170, 68, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-option-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 170, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-option-icon svg {
    color: var(--color-primary);
}

.contact-option-card h2 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #9CA3AF;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-option-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-option-note {
    font-size: 0.875rem;
    color: var(--color-primary);
}

.contact-option-location {
    cursor: default;
}

.contact-option-location:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

/* Main Contact Section */
.contact-main-section {
    padding: 4rem 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

/* Calendly Embed */
.contact-calendly h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.contact-calendly p {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.calendly-embed-container {
    background: var(--color-bg-surface);
    border-radius: 1rem;
    overflow: hidden;
    min-height: 700px;
}

.calendly-embed-container iframe {
    width: 100%;
    min-height: 700px;
}

/* Contact Info Side */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-list li svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-info-list li div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-list a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-list a:hover {
    color: var(--color-primary);
}

.contact-info-list span:not(.info-label) {
    color: white;
}

/* FAQ Section */
.contact-faq {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-faq h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(0, 170, 68, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: white;
    padding-right: 1rem;
}

.faq-chevron {
    color: #6B7280;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.25rem 1rem;
}

.faq-answer p {
    font-size: 0.875rem;
    color: #9CA3AF;
    line-height: 1.7;
}

/* Service Areas Section */
.contact-areas-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, transparent, rgba(10, 22, 40, 0.5));
}

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

.contact-areas-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.contact-areas-section .section-header p {
    color: #9CA3AF;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .service-areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-area-card {
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.service-area-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.service-area-card p {
    font-size: 0.875rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.service-areas-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   SINGLE SERVICE PAGE
   ============================================ */
.service-hero {
    position: relative;
    padding: 10rem 0 6rem;
    text-align: center;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.service-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 10, 16, 0.98) 0%, rgba(10, 22, 40, 0.95) 50%, rgba(0, 170, 68, 0.1) 100%);
}

.service-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 170, 68, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.service-hero-icon {
    width: 96px;
    height: 96px;
    background: rgba(0, 170, 68, 0.15);
    border: 1px solid rgba(0, 170, 68, 0.3);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-hero-icon svg {
    color: var(--color-primary);
}

.service-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

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

.service-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-hero-description {
    font-size: 1.125rem;
    color: #9CA3AF;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.service-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.service-hero-buttons .btn svg {
    margin-right: 0.5rem;
}

/* Service Stats Section */
.service-stats-section {
    padding: 3rem 0;
    background: rgba(0, 170, 68, 0.05);
    border-top: 1px solid rgba(0, 170, 68, 0.1);
    border-bottom: 1px solid rgba(0, 170, 68, 0.1);
}

.service-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .service-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-stat {
    text-align: center;
}

.service-stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .service-stat-value {
        font-size: 3rem;
    }
}

.service-stat-label {
    font-size: 0.875rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Service Features Section */
.service-features-section {
    padding: 6rem 0;
}

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

.service-features-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.service-features-section .section-header p {
    color: #9CA3AF;
}

.service-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-feature-card {
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    border-color: rgba(0, 170, 68, 0.3);
    transform: translateY(-4px);
}

.service-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 170, 68, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-feature-icon svg {
    color: var(--color-primary);
}

.service-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.service-feature-card p {
    font-size: 0.9375rem;
    color: #9CA3AF;
    line-height: 1.7;
}

/* Service Why Section */
.service-why-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--color-bg-dark), rgba(10, 22, 40, 0.5));
}

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

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

.service-why-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.service-why-content > p {
    font-size: 1.125rem;
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-why-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-why-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-why-point svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.service-why-point div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-why-point strong {
    color: white;
    font-weight: 600;
}

.service-why-point span {
    font-size: 0.9375rem;
    color: #9CA3AF;
}

.service-why-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Service Areas Section (single service) */
.service-areas-section {
    padding: 6rem 0;
}

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

.service-areas-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.service-areas-section .section-header p {
    color: #9CA3AF;
}

.service-areas-section .service-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .service-areas-section .service-areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-area-card {
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-area-card:hover {
    border-color: rgba(0, 170, 68, 0.4);
    transform: translateY(-4px);
}

.service-area-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 170, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-area-icon svg {
    color: var(--color-primary);
}

.service-area-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.service-area-card p {
    font-size: 0.875rem;
    color: #6B7280;
}

.service-areas-cta {
    text-align: center;
}

/* Service CTA Section */
.service-cta-section {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.service-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 170, 68, 0.15) 0%, rgba(10, 22, 40, 0.95) 100%);
    z-index: 0;
}

.service-cta-content {
    position: relative;
    z-index: 1;
}

.service-cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service-cta-section h2 {
        font-size: 2.5rem;
    }
}

.service-cta-section p {
    font-size: 1.125rem;
    color: #9CA3AF;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ============================================
   SINGLE LOCATION PAGE
   ============================================ */
.location-hero-section {
    position: relative;
    padding: 10rem 0 6rem;
    text-align: center;
    overflow: hidden;
}

.location-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.location-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 10, 16, 0.98) 0%, rgba(10, 22, 40, 0.95) 50%, rgba(0, 170, 68, 0.1) 100%);
}

.location-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 170, 68, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.location-hero-content {
    position: relative;
    z-index: 1;
}

.location-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 170, 68, 0.15);
    border: 1px solid rgba(0, 170, 68, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.location-hero-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

@media (min-width: 1024px) {
    .location-hero-title {
        font-size: 3.5rem;
    }
}

.location-hero-description {
    font-size: 1.125rem;
    color: #9CA3AF;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.location-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.location-hero-buttons .btn svg {
    margin-right: 0.5rem;
}

/* Location Trust Section */
.location-trust-section {
    padding: 3rem 0;
    background: rgba(0, 170, 68, 0.05);
    border-top: 1px solid rgba(0, 170, 68, 0.1);
    border-bottom: 1px solid rgba(0, 170, 68, 0.1);
}

.location-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .location-trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.location-trust-item {
    text-align: center;
}

.location-trust-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .location-trust-value {
        font-size: 3rem;
    }
}

.location-trust-label {
    font-size: 0.875rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Location Services Section */
.location-services-section {
    padding: 6rem 0;
}

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

.location-services-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.location-services-section .section-header p {
    color: #9CA3AF;
}

.location-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .location-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.location-service-card {
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.location-service-card:hover {
    border-color: rgba(0, 170, 68, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.location-service-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 170, 68, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.location-service-icon svg {
    color: var(--color-primary);
}

.location-service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.location-service-card p {
    font-size: 0.9375rem;
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.location-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.location-service-card:hover .location-service-link {
    gap: 0.75rem;
}

.location-service-link svg {
    transition: transform 0.3s ease;
}

.location-service-card:hover .location-service-link svg {
    transform: translateX(4px);
}

/* Location Why Section */
.location-why-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--color-bg-dark), rgba(10, 22, 40, 0.5));
}

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

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

.location-why-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.location-why-content > p {
    font-size: 1.125rem;
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-why-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.location-why-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-why-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 170, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-why-icon svg {
    color: var(--color-primary);
}

.location-why-point > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.location-why-point strong {
    color: white;
    font-weight: 600;
}

.location-why-point span {
    font-size: 0.9375rem;
    color: #9CA3AF;
}

.location-why-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Location Industries Section */
.location-industries-section {
    padding: 6rem 0;
}

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

.location-industries-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.location-industries-section .section-header p {
    color: #9CA3AF;
}

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

@media (min-width: 640px) {
    .location-industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .location-industries-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.location-industry-card {
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.location-industry-card:hover {
    border-color: rgba(0, 170, 68, 0.3);
}

.location-industry-card svg {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.location-industry-card span {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.location-industries-cta {
    text-align: center;
}

/* Location Nearby Section */
.location-nearby-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.5), var(--color-bg-dark));
}

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

.location-nearby-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.location-nearby-section .section-header p {
    color: #9CA3AF;
}

.location-nearby-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-nearby-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.location-nearby-card:hover {
    border-color: rgba(0, 170, 68, 0.3);
    background: rgba(0, 170, 68, 0.1);
}

.location-nearby-card svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.location-nearby-card span {
    font-size: 0.9375rem;
    color: white;
}

.location-nearby-cta {
    text-align: center;
}

/* Location CTA Section */
.location-cta-section {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.location-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 170, 68, 0.15) 0%, rgba(10, 22, 40, 0.95) 100%);
    z-index: 0;
}

.location-cta-content {
    position: relative;
    z-index: 1;
}

.location-cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .location-cta-section h2 {
        font-size: 2.5rem;
    }
}

.location-cta-section p {
    font-size: 1.125rem;
    color: #9CA3AF;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.location-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ============================================
   Location-Service Page Styles
   ============================================ */

/* Breadcrumb in hero */
.location-service-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #9CA3AF;
    flex-wrap: wrap;
}

.location-service-breadcrumb a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-service-breadcrumb a:hover {
    color: #00AA44;
}

.location-service-breadcrumb svg {
    opacity: 0.5;
    flex-shrink: 0;
}

.location-service-breadcrumb span[aria-current="page"] {
    color: #E5E7EB;
}

/* Intro section */
.location-service-intro-section {
    padding: 3rem 0;
    background-color: #0F1A2A;
}

.location-service-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.location-service-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #D1D5DB;
}

@media (min-width: 768px) {
    .location-service-intro p {
        font-size: 1.25rem;
    }
}

/* Feature cards (non-clickable) */
.location-service-feature-card {
    cursor: default;
}

.location-service-feature-card:hover {
    transform: none;
    border-color: rgba(0, 170, 68, 0.3);
}

/* Other services section */
.location-other-services {
    background-color: #0A1628;
}

.location-other-services .location-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

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

.location-other-services .location-service-card {
    padding: 1.5rem;
}

.location-other-services .location-service-card h3 {
    font-size: 1rem;
}

.location-other-services .location-service-icon {
    width: 48px;
    height: 48px;
}

.location-other-services .location-service-icon svg {
    width: 28px;
    height: 28px;
}

/* ============================================
   Contact Page Map Section
   ============================================ */

.contact-map-section {
    padding: 4rem 0;
    background-color: #0A1628;
}

.contact-map-container {
    width: 100%;
    height: 400px;
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .contact-map-container {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .contact-map-container {
        height: 600px;
    }
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-map-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #E5E7EB;
}

.map-info-item svg {
    color: #00AA44;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .contact-map-info {
        flex-direction: column;
        text-align: center;
    }

    .map-info-item {
        justify-content: center;
    }
}

/* ============================================
   Google Review Section
   ============================================ */

.google-review-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0A1628 0%, #0F1A2A 100%);
}

.google-review-section > .container {
    display: flex;
    justify-content: center;
}

.google-review-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 3rem 4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
}

.google-review-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.google-review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.google-review-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.google-review-content p {
    font-size: 1.125rem;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.google-review-btn svg {
    fill: white;
}

.google-review-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 12px;
    min-width: 180px;
    flex-shrink: 0;
}

.google-review-qr img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.google-review-qr span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

@media (max-width: 768px) {
    .google-review-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }

    .google-review-content {
        align-items: center;
    }

    .google-review-content p {
        max-width: 100%;
        text-align: center;
    }

    .google-review-content h2 {
        font-size: 1.5rem;
    }

    .google-review-qr img {
        width: 120px;
        height: 120px;
    }
}

/* Footer Google Review Link */
.footer-google-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(251, 188, 5, 0.1);
    border: 1px solid rgba(251, 188, 5, 0.3);
    border-radius: 6px;
    color: #FBBC05;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-google-review:hover {
    background: rgba(251, 188, 5, 0.2);
    border-color: rgba(251, 188, 5, 0.5);
    color: #FBBC05;
}

/* ============================================
   Google Reviews Widget Section (Elfsight)
   ============================================ */

.google-reviews-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0A1628 0%, #0d1f35 100%);
}

.google-reviews-section .section-header {
    margin-bottom: 2rem;
}

.google-reviews-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.google-reviews-section .section-header p {
    font-size: 1.125rem;
    color: #9CA3AF;
}

.google-reviews-widget {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 3rem 0;
    }

    .google-reviews-section .section-header h2 {
        font-size: 1.5rem;
    }
}
