/* ====================================================
   INDUSTRIAL STEEL/ORANGE THEME - East Bay Roofers
   Shared CSS for all pages
   ==================================================== */

:root {
    /* Industrial Confidence Color System */
    --steel-900: #1a1f2e;
    --steel-800: #2a3142;
    --steel-700: #3d4556;
    --steel-600: #505869;
    --steel-500: #6b7280;
    --steel-400: #9ca3af;
    --steel-300: #d1d5db;
    --steel-200: #e5e7eb;
    --steel-100: #f3f4f6;

    --orange-heat: #ff6b35;
    --orange-glow: #ff8c42;
    --warning-red: #ef4444;
    --safety-green: #10b981;
    --california-gold: #fbbf24;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-impact: 'Archivo Black', sans-serif;
    --font-body: 'Work Sans', sans-serif;

    /* Spacing rhythm */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--steel-100);
    color: var(--steel-800);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.top-alert {
    background: linear-gradient(135deg, var(--warning-red) 0%, var(--orange-heat) 100%);
    color: white;
    padding: var(--space-xs) 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.2); }
}

.top-alert strong {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-header {
    background: var(--steel-900);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.logo {
    font-family: var(--font-impact);
    font-size: 1.75rem;
    letter-spacing: -1px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

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

.phone-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, var(--orange-heat), var(--orange-glow));
    padding: var(--space-sm) var(--space-md);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: phone-pulse 3s ease-in-out infinite;
}

@keyframes phone-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6); }
}

.phone-number:hover {
    transform: scale(1.1) rotate(2deg);
    animation: none;
}

.phone-icon {
    font-size: 1.25rem;
}

/* ===== NAVIGATION MENU ===== */
.nav-menu {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--steel-300);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.125rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--orange-glow);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: white;
}

.nav-menu a:hover::after {
    width: 80%;
}

/* Mobile Menu */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.mobile-menu-button span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 650px;
    background: linear-gradient(135deg, var(--steel-900) 0%, var(--steel-700) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-sm);
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid var(--orange-heat);
    color: var(--orange-glow);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    animation: slide-in-right 0.8s ease-out;
}

@keyframes slide-in-right {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero h1 {
    font-family: var(--font-impact);
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1.1;
    color: white;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: slide-in-up 0.8s ease-out 0.2s both;
}

@keyframes slide-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--orange-heat), var(--california-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--steel-200);
    max-width: 800px;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    animation: slide-in-up 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
    max-width: 900px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--space-md);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--orange-heat);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--orange-glow);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--steel-300);
    margin-top: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: var(--space-2xl) var(--space-sm);
    max-width: 1400px;
    margin: 0 auto;
}

.section-alt {
    background: white;
}

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

.section-badge {
    display: inline-block;
    background: var(--orange-heat);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section h2 {
    font-family: var(--font-impact);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--steel-900);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.section h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--steel-800);
    margin-bottom: var(--space-sm);
    letter-spacing: 1px;
}

/* ===== CARDS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-md);
}

.card {
    background: white;
    border: 2px solid var(--steel-200);
    border-radius: 12px;
    padding: var(--space-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--orange-heat), var(--orange-glow));
    transition: height 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--orange-heat);
}

.card:hover::before {
    height: 100%;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--orange-heat);
    margin-bottom: var(--space-md);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.card p {
    color: var(--steel-600);
    line-height: 1.7;
}

.card ul {
    list-style: none;
    padding-left: 0;
    margin-top: var(--space-sm);
}

.card li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--steel-700);
}

.card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange-heat);
    font-weight: bold;
}

/* ===== CHALLENGES SECTION ===== */
.challenge-item {
    background: var(--steel-100);
    border-left: 4px solid var(--orange-heat);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.challenge-item:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateX(8px);
}

.challenge-item h3 {
    color: var(--steel-900);
    margin-bottom: var(--space-sm);
}

.challenge-item p {
    color: var(--steel-600);
    margin-bottom: var(--space-sm);
}

.challenge-item ul {
    list-style: none;
    padding-left: 0;
}

.challenge-item li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--steel-700);
}

.challenge-item li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange-heat);
    font-weight: bold;
}

/* ===== FAQ SECTION ===== */
.faq-item {
    background: white;
    border: 2px solid var(--steel-200);
    border-radius: 12px;
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--orange-heat);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--steel-900);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.faq-answer {
    color: var(--steel-700);
    line-height: 1.8;
}

.faq-answer ul {
    margin-top: var(--space-sm);
    padding-left: var(--space-md);
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    border: 2px solid var(--steel-200);
    border-radius: 12px;
    padding: var(--space-lg);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--orange-heat);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--orange-heat);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.testimonial-text {
    color: var(--steel-700);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--steel-900);
    letter-spacing: 1px;
}

.testimonial-location {
    color: var(--steel-500);
    font-size: 0.875rem;
}

.star-rating {
    color: var(--california-gold);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

/* ===== NEIGHBORHOODS ===== */
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.neighborhood-tag {
    background: white;
    border: 2px solid var(--steel-200);
    border-radius: 8px;
    padding: var(--space-md);
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.125rem;
    letter-spacing: 1px;
    color: var(--steel-800);
    transition: all 0.3s ease;
}

.neighborhood-tag:hover {
    background: var(--orange-heat);
    color: white;
    border-color: var(--orange-heat);
    transform: scale(1.05);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--steel-900) 0%, var(--steel-700) 100%);
    color: white;
    padding: var(--space-2xl) var(--space-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--steel-200);
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-md) var(--space-lg);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-heat), var(--orange-glow));
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--steel-900);
}

/* ===== CONTENT SECTIONS (for service/blog content) ===== */
.content-body {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-sm);
}

.content-body h2 {
    font-family: var(--font-impact);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--steel-900);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid var(--orange-heat);
    line-height: 1.1;
}

.content-body h2:first-child {
    margin-top: 0;
}

.content-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--steel-800);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-sm);
    border-left: 4px solid var(--orange-heat);
    letter-spacing: 1px;
}

.content-body p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
    color: var(--steel-600);
}

.content-body ul {
    list-style: none;
    padding-left: 0;
    margin: var(--space-md) 0;
}

.content-body ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--orange-heat);
    position: relative;
    color: var(--steel-700);
    transition: all 0.3s ease;
}

.content-body ul li:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(4px);
}

.content-body ul li::before {
    content: '\2713';
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    color: var(--safety-green);
    font-weight: bold;
}

.content-body ol {
    margin: var(--space-md) 0;
    padding-left: 2rem;
    counter-reset: custom-counter;
}

.content-body ol li {
    counter-increment: custom-counter;
    position: relative;
    padding: 0.75rem 0 0.75rem 1.5rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--orange-heat);
    color: var(--steel-700);
}

.content-body ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: -2rem;
    top: 0.75rem;
    background: linear-gradient(135deg, var(--orange-heat), var(--orange-glow));
    color: white;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-body table {
    width: 100%;
    margin: var(--space-lg) 0;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.content-body table thead {
    background: linear-gradient(135deg, var(--steel-800), var(--steel-900));
    color: white;
}

.content-body table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.content-body table td {
    padding: 1rem;
    border-bottom: 1px solid var(--steel-200);
    font-size: 0.95rem;
    line-height: 1.6;
}

.content-body table tbody tr:nth-child(even) {
    background: rgba(255, 107, 53, 0.02);
}

.content-body table tbody tr:hover {
    background: rgba(255, 107, 53, 0.08);
    transition: all 0.3s ease;
}

.content-body table tbody tr:last-child td {
    border-bottom: none;
}

.content-body a {
    color: var(--orange-heat);
    text-decoration: underline;
    transition: color 0.2s;
}

.content-body a:hover {
    color: var(--orange-glow);
}

.content-body strong {
    color: var(--steel-900);
    font-weight: 600;
}

/* ===== BLOG SPECIFIC ===== */
.blog-hero {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, var(--steel-900) 0%, var(--steel-700) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
}

.blog-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-sm);
    position: relative;
    z-index: 10;
    text-align: center;
}

.blog-hero h1 {
    font-family: var(--font-impact);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: white;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.blog-meta {
    color: var(--steel-300);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 1rem;
}

.blog-meta i {
    margin-right: 0.5rem;
    color: var(--orange-glow);
}

.blog-article {
    max-width: 900px;
    margin: var(--space-xl) auto;
    padding: var(--space-lg);
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-article h2 {
    font-family: var(--font-impact);
    font-size: 2rem;
    color: var(--steel-900);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid var(--orange-heat);
    line-height: 1.1;
}

.blog-article h2:first-child,
.blog-article h2:first-of-type {
    margin-top: 0;
}

.blog-article h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--orange-heat);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    letter-spacing: 1px;
}

.blog-article p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
    color: var(--steel-600);
}

.blog-article strong {
    color: var(--steel-900);
}

.blog-article a {
    color: var(--orange-heat);
    text-decoration: underline;
    transition: color 0.2s;
}

.blog-article a:hover {
    color: var(--orange-glow);
}

.blog-article ul {
    list-style: none;
    padding-left: 0;
    margin: var(--space-md) 0;
}

.blog-article ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--orange-heat);
    position: relative;
    color: var(--steel-700);
}

.blog-article ul li::before {
    content: '\2713';
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    color: var(--safety-green);
    font-weight: bold;
}

.blog-article ol {
    margin: var(--space-md) 0;
    padding-left: 2rem;
    counter-reset: custom-counter;
}

.blog-article ol li {
    counter-increment: custom-counter;
    position: relative;
    padding: 0.75rem 0 0.75rem 1.5rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--orange-heat);
    color: var(--steel-700);
}

.blog-article ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: -2rem;
    top: 0.75rem;
    background: linear-gradient(135deg, var(--orange-heat), var(--orange-glow));
    color: white;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.blog-article table {
    width: 100%;
    margin: var(--space-lg) 0;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.blog-article table thead {
    background: linear-gradient(135deg, var(--steel-800), var(--steel-900));
    color: white;
}

.blog-article table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-article table td {
    padding: 1rem;
    border-bottom: 1px solid var(--steel-200);
}

.blog-article table tbody tr:nth-child(even) {
    background: rgba(255, 107, 53, 0.02);
}

/* Expert quote / highlight boxes */
.expert-quote, .highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.05));
    border-left: 4px solid var(--orange-heat);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
    border-radius: 8px;
}

.cta-box {
    background: linear-gradient(135deg, var(--steel-800), var(--steel-900));
    color: white;
    text-align: center;
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-box h3 {
    color: white;
    font-family: var(--font-impact);
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.cta-box p {
    color: var(--steel-200);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

/* Blog index grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.blog-card {
    background: white;
    border: 2px solid var(--steel-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--orange-heat);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: var(--space-md);
}

.blog-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--steel-900);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.blog-card p {
    color: var(--steel-600);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.blog-card a {
    color: var(--orange-heat);
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card a:hover {
    color: var(--orange-glow);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--steel-900);
    color: var(--steel-300);
    padding: var(--space-2xl) var(--space-sm) var(--space-lg);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer h3 {
    font-family: var(--font-display);
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

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

.footer a {
    color: var(--steel-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--orange-glow);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--steel-700);
    text-align: center;
    color: var(--steel-400);
    font-size: 0.875rem;
}

/* ===== FLOATING PHONE BUTTON ===== */
.floating-phone {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.floating-phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange-heat), var(--orange-glow));
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6);
    animation: float-bounce 2s ease-in-out infinite;
    text-decoration: none;
}

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

/* ===== ACCESSIBILITY ===== */
a:focus, button:focus {
    outline: 2px solid var(--orange-heat);
    outline-offset: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .floating-phone {
        display: block;
    }

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

    .nav-menu {
        display: none;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: var(--space-xl) var(--space-sm);
    }

    .grid-2, .grid-3, .grid-4, .neighborhoods-grid, .blog-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .blog-article {
        padding: var(--space-md);
        margin: var(--space-lg) var(--space-sm);
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-meta {
        font-size: 0.875rem;
        gap: 1rem;
    }
}
