/* ==========================================================================
   HVAC PLANO - MODERN STYLING SYSTEM
   Brand Accent: #dc3545
   Typography: Plus Jakarta Sans & Inter
   ========================================================================== */

:root {
    --primary: #dc3545;
    --primary-hover: #bb2d3b;
    --primary-dark: #9a1a28;
    --primary-subtle: rgba(220, 53, 69, 0.08);
    --primary-glow: rgba(220, 53, 69, 0.25);
    
    --dark-bg: #090d16;
    --dark-surface: #111827;
    --dark-card: #161f30;
    --dark-border: #1f2d45;
    
    --light-bg: #f8fafc;
    --light-surface: #ffffff;
    --light-card: #f1f5f9;
    --light-border: #e2e8f0;
    
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 35px -5px rgba(0,0,0,0.12), 0 10px 15px -5px rgba(0,0,0,0.06);
    --shadow-red: 0 12px 25px -5px rgba(220, 53, 69, 0.35);
    
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--light-surface);
    line-height: 1.65;
    font-size: 1.05rem;
    overflow-x: hidden;
    padding-bottom: 60px; /* Space for mobile sticky bar */
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

p:last-child {
    margin-bottom: 0;
}

ul, ol {
    margin-bottom: 1.25rem;
    padding-left: 1.4rem;
    color: var(--text-muted);
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container-narrow {
    max-width: 860px;
}

/* Top Announcement Bar */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-size: 0.88rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--dark-border);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.live-pulse {
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.top-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-white);
    font-weight: 600;
}

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

/* Site Header */
.site-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--light-border);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

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

.logo-image {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    display: none;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    padding: 0.4rem 0.2rem;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
}

/* Buttons */
.header-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
    color: var(--text-white) !important;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: var(--shadow-red);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-primary-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -5px rgba(220, 53, 69, 0.5);
    color: var(--text-white) !important;
}

.btn-phone-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.15;
}

.btn-phone-text .btn-sub {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    font-weight: 600;
}

.btn-phone-text .btn-main {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.btn-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

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

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--light-surface);
    border-bottom: 2px solid var(--light-border);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    z-index: 999;
}

.mobile-drawer.open {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    display: block;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--light-border);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
    color: var(--primary);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Hero Section (Saleunion-inspired clean modern layout) */
.hero-section {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(220, 53, 69, 0.05) 0%, rgba(255, 255, 255, 1) 90%);
    padding: 4rem 0 5rem 0;
    overflow: hidden;
    border-bottom: 1px solid var(--light-border);
}

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

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
    }
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background-color: var(--primary-subtle);
    color: var(--primary);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.badge-pill.light {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.badge-pill.light .pulse-dot {
    background-color: #22c55e;
}

@keyframes pulseDot {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
    100% { transform: scale(0.9); opacity: 1; }
}

.hero-h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

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

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

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 576px) {
    .hero-cta-group {
        flex-direction: row;
        align-items: center;
    }
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-border);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-media-wrapper {
    position: relative;
}

.hero-main-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    border: 4px solid var(--light-surface);
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--dark-border);
    max-width: 280px;
}

.floating-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 0.25rem;
}

.floating-card-body {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Trust Badges Bar */
.trust-bar {
    background-color: var(--dark-bg);
    color: var(--text-white);
    padding: 2.5rem 0;
}

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

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon-box {
    width: 48px;
    height: 48px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-text h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.trust-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* Section Shared Styles */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--light-bg);
}

.section-dark {
    background-color: var(--dark-bg);
    color: var(--text-white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--text-white);
}

.section-dark p {
    color: var(--text-light);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* 10 Sub Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

.service-card {
    background-color: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(220, 53, 69, 0.3);
}

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

.service-icon-box {
    width: 56px;
    height: 56px;
    background: var(--primary-subtle);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(220, 53, 69, 0.15);
}

.service-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.service-card-desc {
    font-size: 0.96rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.service-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--light-card);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
    border: 1px solid var(--light-border);
    transition: var(--transition);
}

.service-card:hover .service-card-cta {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

/* Rich Content Blocks */
.content-block-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

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

.content-block-grid.reverse {
    direction: rtl;
}

.content-block-grid.reverse > * {
    direction: ltr;
}

.content-img-box {
    position: relative;
}

.content-img-box img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    border: 4px solid var(--light-surface);
}

.content-info-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(17, 24, 39, 0.95);
    color: var(--text-white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rich-content-article {
    max-width: 900px;
    margin: 0 auto;
}

.rich-content-article h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
}

.rich-content-article h3 {
    font-size: 1.45rem;
    margin: 1.5rem 0 0.75rem 0;
}

.rich-content-article p {
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
}

.key-takeaways-card {
    background: var(--light-bg);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.75rem 2rem;
    margin: 2rem 0;
}

.key-takeaways-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

/* Why Choose Us 4-Box Grid */
.features-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.feature-box-item {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
}

.feature-box-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.feature-box-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
}

.feature-box-item h4 svg {
    color: var(--primary);
}

/* FAQ Accordion */
.faq-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.faq-question-btn:hover {
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.35s ease;
    padding: 0 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Global Callout Section */
.global-callout-section {
    padding: 4rem 0;
    background: var(--light-surface);
}

.global-callout-card {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #151e2e 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem 2.5rem;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--dark-border);
}

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

@media (min-width: 992px) {
    .callout-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.callout-heading {
    color: var(--text-white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.callout-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
}

.callout-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

.highlight-item svg {
    color: #4ade80;
}

.callout-action-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    text-align: center;
}

.action-sub {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.btn-cta-big {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    background: var(--primary);
    color: var(--text-white) !important;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: var(--shadow-red);
    width: 100%;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.btn-cta-big:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 35px -5px rgba(220, 53, 69, 0.6);
}

.action-caption {
    font-size: 0.82rem;
    color: var(--text-light);
    display: block;
}

/* Footer Styling */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding-top: 5rem;
    border-top: 1px solid var(--dark-border);
}

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

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

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

.footer-logo-img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.25rem;
    border-radius: var(--radius-sm);
}

.footer-about-text {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-direct-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: var(--text-white);
}

.contact-line svg {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-phone-cta {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.15rem;
}

.footer-phone-cta:hover {
    color: var(--text-white);
}

.footer-heading {
    color: var(--text-white);
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--primary);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-nav-list li a {
    color: var(--text-light);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-nav-list li a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.area-tags li {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text-light);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
}

.zip-coverage small {
    color: var(--text-muted);
    font-size: 0.8rem;
    display: block;
}

/* Footer Disclaimer Box */
.footer-disclaimer-box {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    margin-bottom: 3rem;
}

.disclaimer-text {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0;
    text-align: justify;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid var(--dark-border);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-bottom-bar {
        flex-direction: row;
    }
}

.bottom-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bottom-right a {
    color: var(--text-light);
}

.bottom-right a:hover {
    color: var(--text-white);
}

.bottom-right .sep {
    color: var(--dark-border);
}

/* Mobile Sticky Call Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--dark-border);
    padding: 0.75rem 1rem;
    z-index: 1000;
    display: block;
}

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

.mobile-sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: var(--primary);
    color: var(--text-white) !important;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: var(--shadow-red);
}

/* Page Banner (For Inner Pages: About, Services, Contact, Legal) */
.page-banner {
    background: radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.08) 0%, #090d16 95%);
    color: var(--text-white);
    padding: 4.5rem 0 4rem 0;
    border-bottom: 1px solid var(--dark-border);
}

.page-banner-title {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .page-banner-title {
        font-size: 3.2rem;
    }
}

.page-banner-lead {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 720px;
}

.breadcrumb-trail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.breadcrumb-trail a {
    color: var(--text-light);
}

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

.breadcrumb-trail .sep {
    color: var(--dark-border);
}

/* Contact Page Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

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

.contact-info-card {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.contact-icon-large {
    width: 64px;
    height: 64px;
    background: var(--primary-subtle);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}
