/* Navigation */
.main-navigation {
    background: var(--text-light);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #144024;
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: #d68910;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: var(--primary-color);
    /* Placeholder for background image */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)); 
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 120px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Service Cards */
.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--text-light);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Footer */
.site-footer {
    background: #11331d;
    color: var(--text-light);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid h3, 
.footer-grid h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-grid ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    background: #0a2012;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}
/* --- Hero Slider Styles --- */
.hero-slider-container {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-prev, .hero-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s;
    border-radius: 4px;
    background: rgba(0,0,0,0.3);
    border: none;
    z-index: 10;
}

.hero-next { right: 20px; }
.hero-prev { left: 20px; }
.hero-prev:hover, .hero-next:hover { background-color: rgba(0,0,0,0.8); }

/* --- Gallery Grid Styles --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(29, 92, 52, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.2rem;
    font-weight: bold;
}

.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* --- Lightbox Styles --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

#lightbox-img {
    max-height: 80vh;
    max-width: 90vw;
    margin: auto;
    display: block;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border-radius: 4px;
}

.lightbox-close {
    color: white;
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-close:hover { color: var(--secondary-color); }

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 4px;
}

.lightbox-next { right: 20px; }
.lightbox-prev { left: 20px; }

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    font-size: 1.2rem;
}
/* --- Emergency Bar Styles --- */
.emergency-bar {
    background-color: #d9534f; /* Alert Red */
    color: var(--text-light);
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 1001;
    position: relative;
}

.emergency-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.emergency-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.emergency-icon {
    width: 20px;
    height: 20px;
}

.emergency-phone {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.emergency-phone:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .emergency-bar-inner {
        justify-content: center;
        text-align: center;
    }
}

/* --- Scroll Animation Classes --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for service cards */
.grid-services .service-card:nth-child(1) { transition-delay: 0.1s; }
.grid-services .service-card:nth-child(2) { transition-delay: 0.2s; }
.grid-services .service-card:nth-child(3) { transition-delay: 0.3s; }
.grid-services .service-card:nth-child(4) { transition-delay: 0.4s; }
/* --- Mega Homepage Enhancements --- */

.bg-dark {
    background-color: #11331d;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-light {
    color: var(--text-light);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* --- FAQ Accordion (Using HTML5 Details/Summary) --- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.faq-question {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none; /* Hide default marker in Safari/Chrome */
}

.faq-question:hover {
    background-color: #f1f8f4;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: #444;
    line-height: 1.6;
}
/* --- Dropdown Menu Styles (Desktop Only) --- */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Force absolute positioning on desktop so it floats over the page */
@media (min-width: 769px) {
    .dropdown-menu {
        display: none;
        position: absolute !important;
        top: 100%;
        left: 0;
        background-color: var(--text-light);
        min-width: 250px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        z-index: 1000;
        border-radius: 0 0 4px 4px;
        padding: 10px 0;
        border-top: 3px solid var(--primary-color);
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f1f8f4;
    color: var(--primary-color);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- City Link Buttons --- */
.city-link-btn {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    display: inline-block;
}

.city-link-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* --- THEME-AWARE UI COMPONENTS --- */

/* Replaces the old glass-panel and hardcoded white backgrounds */
.service-card {
    background-color: var(--card-bg);
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: all 0.3s ease;
}
.service-card, .theme-panel {
    background-color: var(--card-bg);
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    /* Slightly intensify shadow on hover */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
}

/* Ensure headings inside theme-aware areas respect the text colors */
.service-card h3, .theme-panel h3 {
    color: var(--primary-color);
}

.service-card p, .theme-panel p {
    color: var(--text-muted);
}

/* Buttons update to match the radius of the chosen theme */
.btn {
    border-radius: var(--border-radius);
}
/* ==========================================================================
   WICKED AWESOME DYNAMIC COMPONENTS
   ========================================================================== */

/* Main Cards & Panels */
.service-card, .theme-panel, .review-card {
    background: var(--card-bg) !important;
    border: var(--card-border) !important;
    box-shadow: var(--card-shadow) !important;
    border-radius: var(--border-radius) !important;
    padding: 35px 30px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s ease !important;
    position: relative;
    overflow: hidden;
}

/* Hover States */
.service-card:hover, .theme-panel:hover {
    transform: var(--card-hover-transform) !important;
    box-shadow: var(--card-hover-shadow) !important;
}

/* Theme-Aware Buttons */
.btn {
    border-radius: var(--border-radius) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Neo-brutalist active button press simulation */
html[data-theme="cyber-timber"] .btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #11331d !important;
}
/* ==========================================================================
   INTERACTIVE GLASS & SPOTLIGHT ENGINE
   ========================================================================== */

html[data-theme="hyper-glass"] .service-card,
html[data-theme="hyper-glass"] .theme-panel,
html[data-theme="hyper-glass"] .review-card {
    background: var(--card-bg) !important;
    border: var(--card-border) !important;
    box-shadow: var(--card-shadow) !important;
    border-radius: var(--border-radius) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Glass Edge Specular Light Reflection */
html[data-theme="hyper-glass"] .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 40%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 60%
    );
    pointer-events: none;
    transition: transform 0.8s ease;
}

html[data-theme="hyper-glass"] .service-card:hover::before {
    transform: translateX(50%);
}

/* Dynamic Mouse Spotlight Glow Layer */
html[data-theme="hyper-glass"] .service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(243, 156, 18, 0.18),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

html[data-theme="hyper-glass"] .service-card:hover::after {
    opacity: 1;
}

/* Glossy 3D Button Polish */
html[data-theme="hyper-glass"] .btn-primary {
    background: var(--btn-bg) !important;
    border: var(--btn-border) !important;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    font-weight: 700;
}

html[data-theme="hyper-glass"] .btn-primary:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}
/* ==========================================================================
   HYPER-GLASS: NAVBAR WHITE LOCK & DARK TYPOGRAPHY
   ========================================================================== */

/* 1. Force Navigation Bar & Top Bar to Pure White */
html[data-theme="hyper-glass"] .main-navigation,
html[data-theme="hyper-glass"] header,
html[data-theme="hyper-glass"] .top-bar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

/* Regular Menu Links, Brand Text, & Top Bar Info (Black Text) */
html[data-theme="hyper-glass"] .main-navigation a:not(.btn),
html[data-theme="hyper-glass"] .brand-text,
html[data-theme="hyper-glass"] .top-bar a:not(.btn),
html[data-theme="hyper-glass"] .top-bar span,
html[data-theme="hyper-glass"] .dropdown-arrow {
    color: #111111 !important;
}

/* Navigation Call-to-Action Buttons (White Text Preserved) */
html[data-theme="hyper-glass"] .main-navigation .btn,
html[data-theme="hyper-glass"] header .btn,
html[data-theme="hyper-glass"] .top-bar .btn {
    color: #ffffff !important;
}

/* Hover state on regular menu links (Gold accent) */
html[data-theme="hyper-glass"] .main-navigation a:not(.btn):hover {
    color: #f39c12 !important;
}

/* 2. Dropdown Menus (White Background + Dark Text) */
html[data-theme="hyper-glass"] .dropdown-menu {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-top: 3px solid #11331d !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

html[data-theme="hyper-glass"] .dropdown-menu a {
    color: #111111 !important;
}

html[data-theme="hyper-glass"] .dropdown-menu a:hover {
    background-color: #f1f8f4 !important;
    color: #11331d !important;
}

/* 3. Mobile Hamburger Toggle Icon (Dark for visibility against white) */
html[data-theme="hyper-glass"] .hamburger,
html[data-theme="hyper-glass"] .hamburger::before,
html[data-theme="hyper-glass"] .hamburger::after {
    background-color: #111111 !important;
}
/* ==========================================================================
   GLOBAL SPACING, CONTRAST, TRUST BAR & CITY BUTTON OVERRIDES
   ========================================================================== */

/* 1. Global Section & Grid Spacing Fixes */
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card, .review-card, .theme-panel {
    padding: 35px 30px !important;
    margin-bottom: 10px;
}

.reviews-section, .specials-section, footer {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
}

/* 2. Enhanced Trust Builders Bar */
.trust-bar-enhanced {
    background: linear-gradient(135deg, rgba(17, 51, 29, 0.95) 0%, rgba(10, 25, 15, 0.98) 100%);
    border-top: 2px solid var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(243, 156, 18, 0.4);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.trust-icon {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.trust-text {
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* 3. Industry Accreditations & Logo Bar */
.industry-accreditations-bar {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accreditation-label {
    color: var(--secondary-color) !important;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.logo-badge-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.accreditation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.accreditation-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.acc-logo-symbol {
    color: #ffffff !important;
    font-weight: 900;
    font-size: 1.2rem;
}

.acc-title {
    color: #cbd5e1 !important;
    font-size: 0.75rem;
    font-weight: 500;
}

/* 4. Orange Location Buttons (Home Page) */
.city-link-btn {
    background: linear-gradient(135deg, #f39c12 0%, #d35400 100%) !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3) !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    text-decoration: none;
}

.city-link-btn:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5) !important;
    color: #ffffff !important;
}

/* 5. Universal Contrast Rules (White text on dark, dark text on white) */
html[data-theme="hyper-glass"] .service-card,
html[data-theme="hyper-glass"] .theme-panel,
html[data-theme="hyper-glass"] .review-card,
html[data-theme="hyper-glass"] footer,
html[data-theme="hyper-glass"] .interior-page-header {
    color: #ffffff !important;
}

html[data-theme="hyper-glass"] .service-card h1,
html[data-theme="hyper-glass"] .service-card h2,
html[data-theme="hyper-glass"] .service-card h3,
html[data-theme="hyper-glass"] .theme-panel h1,
html[data-theme="hyper-glass"] .theme-panel h2,
html[data-theme="hyper-glass"] .theme-panel h3,
html[data-theme="hyper-glass"] footer h1,
html[data-theme="hyper-glass"] footer h2,
html[data-theme="hyper-glass"] footer h3,
html[data-theme="hyper-glass"] footer h4 {
    color: #ffffff !important;
}

html[data-theme="hyper-glass"] .service-card p,
html[data-theme="hyper-glass"] .theme-panel p,
html[data-theme="hyper-glass"] .review-card p,
html[data-theme="hyper-glass"] footer p,
html[data-theme="hyper-glass"] footer li,
html[data-theme="hyper-glass"] footer a {
    color: #e2e8f0 !important;
}

/* Explicit Light Surface Overrides (White containers have Dark Text) */
.bg-white, .card-light, div[style*="background: white"], div[style*="background-color: white"] {
    color: #111111 !important;
}

.bg-white h1, .bg-white h2, .bg-white h3, 
.card-light h1, .card-light h2, .card-light h3 {
    color: #111111 !important;
}

.bg-white p, .bg-white span, 
.card-light p, .card-light span {
    color: #333333 !important;
}
/* ==========================================================================
   HERO SLIDER FIX
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 550px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 15, 10, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 18px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.prev-slide { left: 25px; }
.next-slide { right: 25px; }

.prev-slide:hover, .next-slide:hover {
    background: var(--secondary-color);
    color: #111111;
}
/* ==========================================================================
   DARK GLASS REVIEW CARDS
   ========================================================================== */
.review-card {
    background: rgba(10, 25, 15, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.35s ease !important;
}

.review-card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 15px rgba(243, 156, 18, 0.2) !important;
}

.review-card h3,
.review-card h4,
.review-author {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.review-card p,
.review-text {
    color: #f1f5f9 !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
}

.review-stars {
    color: var(--secondary-color) !important;
    font-size: 1.3rem !important;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
/* ==========================================================================
   HERO SLIDER HEIGHT & OVERFLOW FIX
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 700px !important; /* Expanded canvas height to contain the full card */
    background: #050a06;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Ken Burns Motion */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 7s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(8, 15, 10, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

/* 100% Flex Center Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 50px 20px; /* Padding keeps card clear of navigation controls */
}

/* Glassmorphic Centered Card (Slightly more compact vertical padding) */
.hero-glass-card {
    background: rgba(8, 18, 11, 0.20) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 28px 35px !important; /* Compacted vertical padding to prevent overflow */
    border-radius: 20px;
    max-width: 820px;
    width: 92%;
    text-align: center;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.slide.active .hero-glass-card {
    transform: translateY(0);
    opacity: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(243, 156, 18, 0.2);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color) !important;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-title {
    font-size: 2.5rem !important; /* Scaled down slightly to fit 2 lines cleanly */
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.08rem !important;
    color: #f1f5f9 !important;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Slide Nav Arrows */
.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-slide { left: 20px; }
.next-slide { right: 20px; }

.prev-slide:hover, .next-slide:hover {
    background: var(--secondary-color);
    color: #111111;
    border-color: var(--secondary-color);
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--secondary-color);
    width: 28px;
    border-radius: 20px;
    border-color: var(--secondary-color);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .slider-container { height: 600px !important; }
    .hero-title { font-size: 1.8rem !important; }
    .hero-subtitle { font-size: 0.95rem !important; }
    .hero-glass-card { padding: 20px 15px !important; }
    .prev-slide { left: 10px; }
    .next-slide { right: 10px; }
}
/* ==========================================================================
   GOLD & BRONZE COMPONENT OVERRIDES
   ========================================================================== */

/* 1. Primary & Secondary Buttons */
.btn-secondary {
    background: linear-gradient(135deg, #d1a461 0%, #aa7d44 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 15px rgba(209, 164, 97, 0.3) !important;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #aa7d44 0%, #8c6232 100%) !important;
    box-shadow: 0 8px 25px rgba(209, 164, 97, 0.5) !important;
    color: #ffffff !important;
}

/* Navigation Hover Highlights */
html[data-theme="hyper-glass"] .main-navigation a:not(.btn):hover {
    color: #d1a461 !important;
}

/* 2. City Location Buttons (Home Page) */
.city-link-btn {
    background: linear-gradient(135deg, #d1a461 0%, #aa7d44 100%) !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(209, 164, 97, 0.3) !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    text-decoration: none;
}

.city-link-btn:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 8px 25px rgba(209, 164, 97, 0.5) !important;
    color: #ffffff !important;
}

/* 3. Hero Badge Pill */
.hero-badge {
    display: inline-block;
    background: rgba(209, 164, 97, 0.18) !important;
    border: 1px solid #d1a461 !important;
    color: #d1a461 !important;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* 4. Trust Bar Badges */
.trust-badge-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(209, 164, 97, 0.4) !important;
}

.trust-icon {
    color: #d1a461 !important;
}

/* 5. Review Cards & Hover Effects */
.review-card:hover {
    border-color: #d1a461 !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 20px rgba(209, 164, 97, 0.25) !important;
}

.review-stars {
    color: #d1a461 !important;
}

/* 6. Mouse Spotlight Cursor Glow (Hyper-Glass) */
html[data-theme="hyper-glass"] .service-card::after {
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(209, 164, 97, 0.22),
        transparent 40%
    ) !important;
}

/* 7. Emergency Alert Bar Background (Home Page) */
.emergency-alert-banner {
    background: rgba(209, 164, 97, 0.15) !important;
    border-bottom: 1px solid rgba(209, 164, 97, 0.3) !important;
}

.emergency-alert-banner h3 {
    color: #d1a461 !important;
}
/* ==========================================================================
   FORCE GOLD PALETTE (#d1a461 & #aa7d44) - ALL BUTTONS & BANNERS
   ========================================================================== */

/* 1. TOP EMERGENCY BAR (Dark Gold / Bronze) */
.emergency-bar,
.top-bar,
.emergency-alert-banner {
    background-color: #aa7d44 !important; /* Darker Gold provided */
    background: linear-gradient(135deg, #aa7d44 0%, #8c6232 100%) !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.emergency-bar a,
.emergency-phone {
    background: rgba(0, 0, 0, 0.25) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.emergency-phone:hover {
    background: rgba(0, 0, 0, 0.4) !important;
}

/* 2. UNIVERSAL BUTTON OVERRIDES (Primary & Secondary Buttons) */
/* Primary Action Buttons (e.g. "Learn More", Nav Call Button) */
.btn-primary,
html[data-theme="hyper-glass"] .btn-primary {
    background: linear-gradient(135deg, #d1a461 0%, #aa7d44 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 4px 15px rgba(170, 125, 68, 0.4) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.btn-primary:hover,
html[data-theme="hyper-glass"] .btn-primary:hover {
    background: linear-gradient(135deg, #aa7d44 0%, #8c6232 100%) !important;
    box-shadow: 0 8px 25px rgba(170, 125, 68, 0.6) !important;
    color: #ffffff !important;
}

/* Secondary Action Buttons (e.g. "Request Estimate") */
.btn-secondary,
html[data-theme="hyper-glass"] .btn-secondary {
    background: rgba(209, 164, 97, 0.15) !important;
    color: #ffffff !important;
    border: 1px solid #d1a461 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px) !important;
}

.btn-secondary:hover,
html[data-theme="hyper-glass"] .btn-secondary:hover {
    background: #d1a461 !important;
    color: #111111 !important;
    box-shadow: 0 8px 25px rgba(209, 164, 97, 0.5) !important;
}

/* Header Call Button explicitly locked */
header .btn,
.main-navigation .btn {
    background: linear-gradient(135deg, #d1a461 0%, #aa7d44 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 12px rgba(170, 125, 68, 0.3) !important;
}

header .btn:hover,
.main-navigation .btn:hover {
    background: linear-gradient(135deg, #aa7d44 0%, #8c6232 100%) !important;
    color: #ffffff !important;
}

/* 3. SLIDER CONTROLS & DOTS */
.prev-slide:hover, 
.next-slide:hover,
.slider-dot.active {
    background: #d1a461 !important;
    border-color: #d1a461 !important;
    color: #111111 !important;
}
/* ==========================================================================
   SERVICE CARD FLEX ALIGNMENT, REVIEWS & FAQ ENGINE
   ========================================================================== */

/* 1. Flexbox alignment to pin service card buttons to the bottom */
.service-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    text-align: center !important;
    padding: 35px 28px !important;
}

.service-card p {
    margin-bottom: 25px !important;
}

.service-card .btn {
    margin-top: auto !important; /* Pushes button cleanly to bottom margin */
    align-self: center !important;
}

/* 2. Review Card Header & Solid White Author Names */
.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.google-review-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #e2e8f0;
}

.review-author {
    color: #ffffff !important; /* Solid crisp white author name */
    font-weight: 800 !important;
    font-size: 1.15rem !important;
    margin: 15px 0 2px 0 !important;
}

.review-location {
    color: var(--secondary-color) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
}

/* 3. FAQ & Video Showcase Grid */
.faq-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(10, 25, 15, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 14px !important;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: var(--secondary-color) !important;
}

.faq-question {
    padding: 18px 22px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-question:hover {
    background: rgba(209, 164, 97, 0.1) !important;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 22px 20px 22px;
    color: #cbd5e1 !important;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 4. Video Glass Card Placeholder */
.video-glass-card {
    background: rgba(10, 25, 15, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
}

.video-thumbnail-placeholder {
    position: relative;
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-overlay-tint {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.video-play-btn {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1a461 0%, #aa7d44 100%);
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(209, 164, 97, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 0 45px rgba(209, 164, 97, 1);
}

.video-badge-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.video-card-body {
    padding: 25px;
}

.video-card-title {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
}

.video-card-desc {
    color: #cbd5e1 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

@media (max-width: 992px) {
    .faq-video-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   SERVICE CARD IMAGE BANNER STYLES
   ========================================================================== */
.service-card-image {
    width: 100%;
    height: 190px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills container neatly without distortion */
    object-position: center;
    transition: transform 0.5s ease-out;
}

/* Smooth Image Zoom Effect on Card Hover */
.service-card:hover .service-card-image img {
    transform: scale(1.08);
}
/* ==========================================================================
   VIDEO LIGHTBOX POPUP MODAL STYLES
   ========================================================================== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.video-modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    background: #000000;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    transition: color 0.3s ease, transform 0.2s ease;
}

.video-modal-close:hover {
    color: var(--secondary-color);
    transform: scale(1.15);
}

.video-responsive-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
}

.video-responsive-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* ==========================================================================
   DYNAMIC EMERGENCY DISPATCH BANNER
   ========================================================================== */
.emergency-banner-section {
    padding: 50px 0 !important; /* Generous top & bottom section padding */
    background: linear-gradient(135deg, rgba(170, 125, 68, 0.12) 0%, rgba(8, 15, 10, 0.95) 50%, rgba(209, 164, 97, 0.12) 100%);
    border-top: 1px solid rgba(209, 164, 97, 0.25);
    border-bottom: 1px solid rgba(209, 164, 97, 0.25);
    position: relative;
}

.emergency-banner-card {
    background: rgba(10, 25, 15, 0.85) !important;
    border: 1px solid rgba(209, 164, 97, 0.4) !important;
    border-radius: 20px !important;
    padding: 32px 40px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    flex-wrap: wrap;
}

/* Live Dispatch Pulsing Dot Badge */
.emergency-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.emergency-text-content {
    flex: 1;
    min-width: 280px;
}

.emergency-title {
    color: #ffffff !important;
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.3 !important;
}

.lightning-glow {
    color: #d1a461;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(209, 164, 97, 0.8));
    animation: bounce-light 2s infinite ease-in-out;
}

@keyframes bounce-light {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

.emergency-subtext {
    color: #cbd5e1 !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
}

/* Call Button Inside Banner */
.btn-emergency-call {
    background: linear-gradient(135deg, #d1a461 0%, #aa7d44 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    padding: 13px 26px !important;
    border-radius: 50px !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 6px 20px rgba(209, 164, 97, 0.4) !important;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease !important;
}

.btn-emergency-call:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 10px 30px rgba(209, 164, 97, 0.6) !important;
    color: #ffffff !important;
}

@media (max-width: 992px) {
    .emergency-banner-card {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 25px 20px !important;
    }
}
/* ==========================================================================
   ABOUT PAGE FEATURED IMAGE STYLES
   ========================================================================== */
.about-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.about-featured-img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.about-hero-image-wrapper:hover .about-featured-img {
    transform: scale(1.03);
}

/* Floating Glass Accent Badge */
.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(8, 18, 11, 0.85);
    border: 1px solid var(--secondary-color);
    border-radius: 30px;
    padding: 10px 22px;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .about-hero-image-wrapper {
        max-height: 300px;
    }
    .about-image-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
        bottom: 12px;
        left: 12px;
    }
}
/* ==========================================================================
   SERVICE DETAIL PAGES: IMAGE SHOWCASE & SIDEBAR GLASS FIX
   ========================================================================== */

/* 1. Featured Service Hero Image (Above Paragraph) */
.service-featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.service-featured-image-wrapper:hover .service-featured-img {
    transform: scale(1.04);
}

/* 2. Sidebar "Get Free Assessment" Card Dark Glass Override */
.sidebar-assessment-card,
.card-light,
div[class*="sidebar"] .theme-panel {
    background: rgba(10, 25, 15, 0.88) !important;
    border: 1px solid rgba(209, 164, 97, 0.35) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7) !important;
}

/* Force dark glass sidebar text to high-contrast white */
.sidebar-assessment-card h3,
.sidebar-assessment-card h4,
.sidebar-assessment-card .card-title {
    color: #ffffff !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
}

.sidebar-assessment-card p,
.sidebar-assessment-card span {
    color: #cbd5e1 !important;
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

/* 3. 4-Step Process Grid (High-Value Service Addition) */
.service-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.process-step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    position: relative;
}

.process-number {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1a461 0%, #aa7d44 100%);
    color: #ffffff;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.process-step-card h4 {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
}

.process-step-card p {
    color: #cbd5e1 !important;
    font-size: 0.88rem !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}
/* ==========================================================================
   BILL PAY PAGE & FORM STYLES
   ========================================================================== */
.bill-pay-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Main Dark Glass Card */
.bill-pay-card {
    background: rgba(10, 25, 15, 0.88) !important;
    border: 1px solid rgba(209, 164, 97, 0.35) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.bill-pay-header {
    text-align: center;
    margin-bottom: 30px;
}

.secure-icon-circle {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    background: rgba(209, 164, 97, 0.15);
    border: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.bill-pay-header h3 {
    color: #ffffff !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
}

.bill-pay-header p {
    color: #cbd5e1 !important;
    font-size: 1rem !important;
    margin: 0 !important;
}

/* High-Contrast Inputs & Labels */
.form-label {
    display: block;
    color: #ffffff !important; /* Solid white labels */
    font-weight: 700 !important;
    font-size: 1rem !important;
    margin-bottom: 8px;
}

.required {
    color: var(--secondary-color);
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    color: #ffffff !important; /* Crisp white text when user types */
    font-size: 1.05rem !important;
    transition: all 0.3s ease !important;
    outline: none;
}

.form-input::placeholder {
    color: #94a3b8 !important; /* Soft legible placeholder */
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 15px rgba(209, 164, 97, 0.3) !important;
}

/* Payment Badges Footer */
.payment-security-footer {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
}

.security-note {
    color: #cbd5e1 !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    margin-bottom: 12px !important;
}

.payment-methods-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

@media (max-width: 992px) {
    .bill-pay-grid {
        grid-template-columns: 1fr;
    }
    .bill-pay-card {
        padding: 25px 20px !important;
    }
}
/* ==========================================================================
   CONTACT PAGE & DARK GLASS FORM STYLES
   ========================================================================== */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: start;
}

/* Left Column Info Card */
.contact-info-card {
    background: rgba(10, 25, 15, 0.88) !important;
    border: 1px solid rgba(209, 164, 97, 0.35) !important;
    border-radius: 24px !important;
    padding: 35px !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7) !important;
}

.contact-card-title {
    color: #ffffff !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
}

.contact-card-intro {
    color: #cbd5e1 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(209, 164, 97, 0.15);
    border: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.detail-label {
    display: block;
    color: #ffffff !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-link, .detail-text {
    color: var(--secondary-color) !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    text-decoration: none;
}

.detail-link:hover {
    text-decoration: underline;
}

/* Right Column Contact Form Container */
.contact-form-card {
    background: rgba(10, 25, 15, 0.88) !important;
    border: 1px solid rgba(209, 164, 97, 0.35) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.contact-form-header h3 {
    color: #ffffff !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
}

.contact-form-header p {
    color: #cbd5e1 !important;
    font-size: 0.98rem !important;
    margin-bottom: 30px !important;
}

/* Form Controls Layout */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-field-hint {
    display: block;
    color: #94a3b8 !important;
    font-size: 0.78rem;
    margin-top: 5px;
}

/* Dropdown Select & Textarea Overrides */
.form-select, .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    outline: none;
}

.form-select option {
    background: #080f0a !important;
    color: #ffffff !important;
}

.form-select:focus, .form-textarea:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 15px rgba(209, 164, 97, 0.3) !important;
}

/* Drag & Drop File Upload Area */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-box {
    border: 2px dashed rgba(209, 164, 97, 0.4);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.file-upload-wrapper:hover .file-upload-box {
    border-color: var(--secondary-color);
    background: rgba(209, 164, 97, 0.08);
}

.file-upload-icon {
    font-size: 1.8rem;
}

.file-upload-text {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
}

.file-upload-sub {
    color: #94a3b8 !important;
    font-size: 0.8rem;
}

/* Custom Checkbox Design */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-checkmark {
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .checkbox-checkmark {
    border-color: var(--secondary-color);
}

.checkbox-container input:checked ~ .checkbox-checkmark {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkbox-checkmark:after {
    display: block;
}

.checkbox-container .checkbox-checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #111111;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label-text {
    color: #cbd5e1 !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
}

.sms-consent-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px;
    border-radius: 12px;
}

.gold-link {
    color: var(--secondary-color) !important;
    text-decoration: underline;
}

.style-submit-btn {
    width: 100%;
    text-align: center;
    font-size: 1.1rem !important;
    padding: 16px !important;
}

@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .contact-form-card, .contact-info-card {
        padding: 25px 20px !important;
    }
}
/* ==========================================================================
   MASONRY GALLERY & DYNAMIC LIGHTBOX STYLES
   ========================================================================== */

/* 1. Category Filter Buttons */
.gallery-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.gallery-filter-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: linear-gradient(135deg, #d1a461 0%, #aa7d44 100%);
    border-color: #d1a461;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(209, 164, 97, 0.4);
}

/* 2. Responsive CSS Column Masonry Layout */
.masonry-gallery-grid {
    column-count: 3;
    column-gap: 24px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.masonry-item.hide {
    display: none;
}

.gallery-card-inner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    background: #080f0a;
}

.masonry-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card-inner:hover .masonry-img {
    transform: scale(1.08);
}

/* Hover Overlay & Zoom Button */
.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 18, 11, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-card-inner:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-badge {
    align-self: flex-start;
    background: rgba(209, 164, 97, 0.2);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gallery-card-title {
    color: #ffffff !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    margin-bottom: 4px !important;
}

.gallery-card-location {
    color: #cbd5e1 !important;
    font-size: 0.88rem !important;
    margin-bottom: 14px !important;
}

.gallery-lightbox-trigger {
    background: linear-gradient(135deg, #d1a461 0%, #aa7d44 100%);
    color: #ffffff;
    border: none;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(209, 164, 97, 0.3);
    transition: transform 0.2s ease;
}

.gallery-lightbox-trigger:hover {
    transform: scale(1.05);
}

/* 3. SEO Supporting Feature Boxes */
.seo-feature-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px;
    border-radius: 14px;
}

/* 4. Lightbox Popup Styles */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.gallery-modal-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#galleryModalImg {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.gallery-modal-caption {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 15px;
    text-align: center;
}

.gallery-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 42px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.gallery-modal-close:hover {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .masonry-gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry-gallery-grid {
        column-count: 1;
    }
}
/* ==========================================================================
   CLEAN & SPONGE-FREE EMERGENCY TOP BAR
   ========================================================================== */
.top-emergency-bar {
    background: #7a5426 !important; /* Rich Dark Bronze/Gold */
    background: linear-gradient(90deg, #6e491f 0%, #aa7d44 50%, #6e491f 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 6px 0 !important;
    font-size: 0.85rem !important;
    color: #ffffff !important;
    position: relative;
    z-index: 1000;
}

.top-emergency-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* Left Section */
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.live-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    padding: 3px 10px !important;
    border-radius: 20px !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: 0.5px;
}

.pulse-beacon {
    width: 7px;
    height: 7px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(239, 68, 68, 0.8);
    animation: beaconPulse 1.6s infinite;
}

@keyframes beaconPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.8); }
    70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.top-bar-headline {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
}

/* Center Section */
.top-bar-center {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-trust-tag {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 3px 12px !important;
    border-radius: 15px !important;
    color: #ffffff !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    white-space: nowrap;
}

/* Right Action Button */
.top-bar-call-btn {
    background: linear-gradient(135deg, #d1a461 0%, #aa7d44 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    padding: 5px 18px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3) !important;
    display: inline-block;
    white-space: nowrap;
    transition: all 0.3s ease !important;
}

.top-bar-call-btn strong {
    color: #ffffff !important;
}

.top-bar-call-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 5px 15px rgba(209, 164, 97, 0.5) !important;
    background: #d1a461 !important;
}

/* Responsive Hide Rules */
@media (max-width: 1024px) {
    .top-bar-center {
        display: none !important; /* Hides middle tags on smaller screens so it never overlaps */
    }
}

@media (max-width: 600px) {
    .top-bar-headline {
        display: none !important; /* Hides headline on mobile, showing only LIVE badge + call button */
    }
}
/* ==========================================================================
   NAVIGATION MENU ENHANCEMENTS (Bigger Text + Bill Pay Icon)
   ========================================================================== */

/* Main Nav Links */
.main-navigation a:not(.btn),
.nav-menu .nav-link {
    font-size: 1.12rem !important; /* Bumped up from ~0.95rem */
    font-weight: 700 !important;   /* Slightly bolder for crisp readability */
    color: #222222 !important;
    padding: 8px 14px !important;
    letter-spacing: 0.2px;
    transition: color 0.25s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Hover Effect for Nav Links */
.main-navigation a:not(.btn):hover,
.nav-menu .nav-link:hover {
    color: #aa7d44 !important; /* Warm Bronze/Gold Hover */
}

/* Specific Bill Pay Link Highlighting */
.nav-bill-pay {
    color: #11331d !important; /* Deep Forest Emerald Accent */
}

.nav-bill-pay .pay-icon {
    font-size: 1.15rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
    transition: transform 0.2s ease;
}

.nav-bill-pay:hover .pay-icon {
    transform: scale(1.2) rotate(-5deg);
}

/* Header Container Spacing Alignment */
.header-container,
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px; /* Spacing between menu items */
    list-style: none;
    margin: 0;
    padding: 0;
}
/* ==========================================================================
   NAVIGATION FLEX & INLINE FIX
   ========================================================================== */
.nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
    max-width: 1400px !important;
}

.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.nav-menu li {
    display: flex !important;
    align-items: center !important;
}

.nav-menu .nav-link {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #222222 !important;
    padding: 6px 10px !important;
    white-space: nowrap !important; /* Prevents text from wrapping into 2 lines */
    display: inline-flex !important;
    flex-direction: row !important; /* Strictly forces icon & text side-by-side */
    align-items: center !important;
    gap: 6px !important;
}

.nav-bill-pay {
    color: #11331d !important;
}

.nav-bill-pay .pay-icon {
    font-size: 1.1rem !important;
    line-height: 1 !important;
    display: inline-block !important;
}

.call-now-btn {
    white-space: nowrap !important;
    padding: 10px 20px !important;
    font-size: 0.95rem !important;
}
/* ==========================================================================
   BILL PAY NAV ITEM COLOR FIX
   ========================================================================== */
.nav-menu .nav-bill-pay,
a.nav-bill-pay {
    color: #111111 !important; /* Force solid crisp charcoal/black to match Home, About, etc. */
    font-weight: 700 !important;
}

.nav-menu .nav-bill-pay span,
a.nav-bill-pay span {
    color: #111111 !important;
}

.nav-menu .nav-bill-pay .pay-icon {
    font-size: 1.15rem !important;
    color: #d1a461 !important; /* Gold card icon accent */
    line-height: 1 !important;
    margin-right: 4px !important;
}

/* Hover State */
.nav-menu .nav-bill-pay:hover,
.nav-menu .nav-bill-pay:hover span {
    color: #aa7d44 !important; /* Warm gold hover matching other nav links */
}
/* ==========================================================================
   HOMEPAGE FACEBOOK FEED GLASS CARD
   ========================================================================== */
.fb-feed-glass-card {
    background: rgba(10, 25, 15, 0.88) !important;
    border: 1px solid rgba(209, 164, 97, 0.35) !important;
    border-radius: 24px !important;
    padding: 25px !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.fb-feed-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.fb-icon {
    font-size: 2rem;
    line-height: 1;
}

.fb-feed-title {
    color: #ffffff !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    margin: 0 !important;
}

.fb-feed-sub {
    color: #cbd5e1 !important;
    font-size: 0.88rem !important;
    margin: 0 !important;
}

/* Styled Container for Meta iFrame */
.fb-page-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fb-page-wrapper iframe {
    width: 100% !important;
    border: none !important;
}
/* ==========================================================================
   LOCATION LINK LIST STYLES
   ========================================================================== */
.location-links-list li a {
    color: #cbd5e1 !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}

.location-links-list li a:hover {
    color: var(--secondary-color) !important; /* Metallic Gold Accent */
    transform: translateX(4px);
    text-decoration: underline;
}
/* ==========================================================================
   FORCE SIDE-BY-SIDE GRID LAYOUT
   ========================================================================== */
.side-by-side-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    align-items: stretch !important; /* Forces equal height cards */
    width: 100% !important;
}

.side-card {
    flex: 1 1 50% !important; /* Strictly forces 50% width each */
    width: 50% !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
}

.location-links-list li a {
    color: #cbd5e1 !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.location-links-list li a:hover {
    color: #d1a461 !important;
    text-decoration: underline;
}

/* Mobile Fallback: Stack cleanly on small mobile screens */
@media (max-width: 992px) {
    .side-by-side-row {
        flex-direction: column !important;
    }
    .side-card {
        width: 100% !important;
        flex: 1 1 100% !important;
    }
}
/* ==========================================================================
   DARK FACEBOOK EMBED & LOCATION LINK STYLES
   ========================================================================== */
.fb-page-wrapper.dark-fb-embed {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #080f0a !important; /* Matches dark card background */
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Invert Facebook white iframe to dark mode while preserving photo hue */
.fb-page-wrapper.dark-fb-embed iframe {
    width: 100% !important;
    border: none !important;
    filter: invert(0.92) hue-rotate(180deg) contrast(1.1) !important;
    border-radius: 16px;
}

/* Re-invert images inside the iframe so job photos look normal */
.fb-page-wrapper.dark-fb-embed iframe img {
    filter: invert(1) hue-rotate(180deg) !important;
}

/* Location Links Hover Styling */
.location-links-list li a {
    color: #cbd5e1 !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.location-links-list li a:hover {
    color: #d1a461 !important; /* Gold hover */
    text-decoration: underline;
}
/* ==========================================================================
   FACEBOOK FEED CONTAINER (NATURAL CLEAN FRAME)
   ========================================================================== */
.fb-page-wrapper.dark-fb-embed {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff !important; /* Native Facebook light canvas */
    border: 2px solid rgba(209, 164, 97, 0.45) !important; /* Gold accent frame */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6) !important;
    line-height: 0;
}

/* Ensure no filters or blend modes interfere with post photos */
.fb-page-wrapper.dark-fb-embed iframe {
    width: 100% !important;
    border: none !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    border-radius: 14px;
}
/* ==========================================================================
   COOL LOCATION HERO & SEO PAGE LAYOUT
   ========================================================================== */

/* 1. Cool Hero Layout */
.location-hero-banner {
    background-size: cover;
    background-position: center center;
    border-radius: 28px;
    padding: 60px 30px;
    border: 1px solid rgba(209, 164, 97, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.location-hero-glass-card {
    background: rgba(8, 18, 11, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Trust Pills Bar */
.location-trust-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(209, 164, 97, 0.35);
    color: #f8fafc;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 25px;
}

/* 2. SEO Service Cards Grid */
.seo-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.seo-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.service-card-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.seo-service-card h3 {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
}

.seo-service-card p {
    color: #cbd5e1 !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    flex-grow: 1;
}

.card-link-btn {
    color: var(--secondary-color) !important;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.card-link-btn:hover {
    text-decoration: underline;
}

/* 3. SEO FAQ Box */
.seo-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
}
/* ==========================================================================
   TRANSLUCENT HERO GLASS CARD (MORE BACKGROUND VISIBILITY)
   ========================================================================== */
.location-hero-glass-card {
    background: rgba(8, 18, 11, 0.45) !important; /* Reduced opacity so image shines through */
    backdrop-filter: blur(8px) !important;       /* Softened blur for clearer image detail */
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 22px !important;
    padding: 45px 35px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

/* Enhanced Text Contrast Over Background Image */
.location-hero-glass-card h1,
.location-hero-glass-card p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.location-trust-pills .trust-pill {
    background: rgba(8, 18, 11, 0.6) !important;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(209, 164, 97, 0.45) !important;
}
/* ==========================================================================
   HOMEPAGE SERVICE LOCATIONS LIST SQUISH FIX
   ========================================================================== */
.location-links-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.location-links-list li {
    margin-bottom: 14px !important;    /* Adds comfortable vertical breathing room */
    font-size: 0.95rem !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;    /* Prevents city names from breaking into 2 stacked lines */
    display: flex !important;
    align-items: center !important;
}

.location-links-list li a {
    color: #cbd5e1 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.location-links-list li a:hover {
    color: #d1a461 !important;          /* Gold hover effect */
    text-decoration: underline !important;
    transform: translateX(3px) !important;
}