/* 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: #245c3c;
}

.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: #173f2a;
    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: #173f2a;
}

.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 #173f2a !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: #d1a461 !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 #173f2a !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: #173f2a !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, #d1a461 0%, #b8894f 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%, #b8894f 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, #b8894f 0%, #8f663c 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%, #b8894f 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 & #b8894f) - ALL BUTTONS & BANNERS
   ========================================================================== */

/* 1. TOP EMERGENCY BAR (Dark Gold / Bronze) */
.emergency-bar,
.top-bar,
.emergency-alert-banner {
    background-color: #b8894f !important; /* Darker Gold provided */
    background: linear-gradient(135deg, #b8894f 0%, #8f663c 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%, #b8894f 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, #b8894f 0%, #8f663c 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%, #b8894f 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, #b8894f 0%, #8f663c 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%, #b8894f 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%, #b8894f 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%, #b8894f 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%, #b8894f 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%, #b8894f 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: #245c3c !important; /* Rich Dark Bronze/Gold */
    background: linear-gradient(90deg, #173f2a 0%, #b8894f 50%, #173f2a 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%, #b8894f 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: #b8894f !important; /* Warm Bronze/Gold Hover */
}

/* Specific Bill Pay Link Highlighting */
.nav-bill-pay {
    color: #173f2a !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: #173f2a !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: #b8894f !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;
}
/* ==========================================================================
   NAVIGATION MENU ENHANCEMENTS (REGULAR WEIGHT 400)
   ========================================================================== */

/* Main Nav Links */
.main-navigation a:not(.btn),
.nav-menu .nav-link {
    font-size: 1.05rem !important;
    font-weight: 400 !important; /* Regular font weight */
    color: #222222 !important;
    padding: 6px 10px !important;
    letter-spacing: 0.2px;
    white-space: nowrap !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    transition: color 0.25s ease, transform 0.2s ease;
}

/* Hover Effect */
.main-navigation a:not(.btn):hover,
.nav-menu .nav-link:hover {
    color: #b8894f !important;
    font-weight: 400 !important;
}

/* Bill Pay Nav Item Alignment & Weight */
.nav-menu .nav-bill-pay,
a.nav-bill-pay,
.nav-menu .nav-bill-pay span,
a.nav-bill-pay span {
    color: #111111 !important;
    font-weight: 400 !important; /* Regular font weight */
}

.nav-menu .nav-bill-pay .pay-icon {
    font-size: 1.15rem !important;
    color: #d1a461 !important;
    line-height: 1 !important;
    margin-right: 4px !important;
}

.nav-menu .nav-bill-pay:hover,
.nav-menu .nav-bill-pay:hover span {
    color: #b8894f !important;
}
/* ==========================================================================
   NAVIGATION FLEX & SPACING ADJUSTMENTS
   ========================================================================== */

/* Align logo on far left, push menu & button to the right */
.nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    max-width: 1400px !important;
}

/* Push navigation list directly against the Estimate button */
.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important; /* Spacing between nav items */
    margin-left: auto !important; /* Pushes menu over toward button */
    margin-right: 15px !important; /* Tight gap before the CTA button */
    padding: 0 !important;
    list-style: none !important;
}

.nav-menu li {
    display: flex !important;
    align-items: center !important;
}

/* Bigger Nav Link Text (Regular Weight) */
.main-navigation a:not(.btn),
.nav-menu .nav-link {
    font-size: 1.18rem !important; /* Increased font size */
    font-weight: 400 !important; /* Kept regular weight */
    color: #222222 !important;
    padding: 6px 12px !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    transition: color 0.25s ease, transform 0.2s ease;
}

.main-navigation a:not(.btn):hover,
.nav-menu .nav-link:hover {
    color: #b8894f !important;
    font-weight: 400 !important;
}

/* Bill Pay Nav Item Fixes */
.nav-menu .nav-bill-pay,
a.nav-bill-pay,
.nav-menu .nav-bill-pay span,
a.nav-bill-pay span {
    color: #111111 !important;
    font-weight: 400 !important;
}

.nav-menu .nav-bill-pay .pay-icon {
    font-size: 1.25rem !important;
    color: #d1a461 !important;
    line-height: 1 !important;
    margin-right: 4px !important;
}

.nav-menu .nav-bill-pay:hover,
.nav-menu .nav-bill-pay:hover span {
    color: #b8894f !important;
}

/* Bigger Estimate Button Text */
.call-now-btn,
.main-navigation .btn {
    white-space: nowrap !important;
    padding: 12px 24px !important;
    font-size: 1.05rem !important; /* Increased button font size */
    font-weight: 600 !important;
}
/* ==========================================================================
   FORCE 2-COLUMN SIDE-BY-SIDE LAYOUT ON DESKTOP
   ========================================================================== */
@media (min-width: 992px) {
    .grid-2-col {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* Forces 50/50 side-by-side columns */
        gap: 40px !important;
        align-items: center !important;
    }

    /* Constrain the image container width so it doesn't blow out vertically */
    .grid-2-col .about-hero-image-wrapper {
        width: 100% !important;
        max-height: 480px !important;
    }
}

/* Stacks cleanly on mobile / tablet screens */
@media (max-width: 991px) {
    .grid-2-col {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }
}
/* ==========================================================================
   TEXT WRAPPING & FLOAT LAYOUT FOR WELCOME SECTION
   ========================================================================== */

/* Clearfix helper */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Floating Image on Desktop */
@media (min-width: 768px) {
    .float-welcome-img {
        float: left !important;
        width: 420px !important; /* Fixed width for the floating image */
        margin-right: 30px !important; /* Gap between image and wrapping text */
        margin-bottom: 20px !important;
        position: relative;
    }
}

/* Mobile Stack */
@media (max-width: 767px) {
    .float-welcome-img {
        float: none !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }
}

.float-welcome-img img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
/* ==========================================================================
   GLOBAL SECTION SPACING & TIGHT VERTICAL RHYTHM
   ========================================================================== */

/* Reduce vertical padding across all major sections (Desktop) */
.py-5 {
    padding-top: 2.2rem !important;  /* Reduced from 4–5rem */
    padding-bottom: 2.2rem !important;
}

/* Remove excessive bottom margins on theme panels & service cards */
.theme-panel,
.service-card,
.emergency-banner-section {
    margin-bottom: 1.5rem !important;
}

/* Tighten inline break spaces between section elements */
main section p &nbsp;,
section .mb-5 {
    margin-bottom: 1.5rem !important;
}

/* MOBILE VERTICAL SPACING ADJUSTMENTS */
@media (max-width: 768px) {
    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .theme-panel,
    .service-card {
        margin-bottom: 1rem !important;
    }
}
/* ==========================================================================
   BALANCED & UNIFORM SECTION SPACING
   ========================================================================== */

/* 1. Set perfectly uniform, moderate vertical padding across all main sections */
main > section,
section.py-5,
.emergency-banner-section,
.locations-social-section,
.reviews-section,
.faq-section {
    padding-top: 2.25rem !important;    /* ~36px top padding */
    padding-bottom: 2.25rem !important; /* ~36px bottom padding */
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 2. Zero out conflicting outer margins on section cards */
main > section .theme-panel,
main > section .mb-4,
main > section .mb-5 {
    margin-bottom: 0 !important;
}

/* 3. Keep section header titles balanced */
section .text-center.mb-5,
section .text-center.mb-4 {
    margin-bottom: 1.5rem !important;
}

/* MOBILE UNIFORM SPACING */
@media (max-width: 768px) {
    main > section,
    section.py-5,
    .emergency-banner-section,
    .locations-social-section {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}
/* Force Gold SVG Checkmarks across iOS Safari & Android */
.check-list li::before {
    content: '' !important;
    display: inline-block !important;
    position: absolute !important;
    left: 0 !important;
    top: 4px !important;
    width: 18px !important;
    height: 18px !important;
    background-color: #d1a461 !important; /* Gold */
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center / contain !important;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center / contain !important;
}

/* Trust badge checkmark fixes */
.trust-badge-item .trust-icon {
    color: #d1a461 !important;
    font-weight: 900 !important;
}
/* ==========================================================================
   UNIFIED GOLD CHECKMARKS (DESKTOP + MOBILE SAFARI FIX)
   ========================================================================== */

/* Target checkmark icons inside pills and badges */
.trust-badge-item i,
.trust-badge-item .check-icon,
.check-list li::before {
    color: #d1a461 !important; /* Gold */
    font-style: normal !important;
    font-weight: 700 !important;
    margin-right: 6px !important;
}

/* Ensure no extra pseudo-elements are injected */
.trust-badge-item::before {
    content: none !important;
}
/* ==========================================================================
   FORCE MOBILE SAFARI TO COLORIZE UNICODE CHECKMARKS
   ========================================================================== */

/* 1. Force WebKit/Safari to render the checkmark as text instead of an emoji */
.trust-badge-item,
.check-list li {
    font-variant-emoji: text !important; /* Tells iOS NOT to load the black system emoji */
}

/* 2. Alternative SVG replacement if Safari still ignores text color */
@media (max-width: 768px) {
    /* If you wrapped your checkmarks in a span like <span class="check-icon">✔</span> */
    .trust-badge-item span,
    .trust-badge-item i {
        color: #d1a461 !important;
        -webkit-text-fill-color: #d1a461 !important; /* Force WebKit fill */
        display: inline-block !important;
    }
}
/* ==========================================================================
   FORCE ALL HEADINGS & TEXT TO BLACK ON WHITE CONTAINERS
   ========================================================================== */

/* 1. Target white containers directly */
.bg-white,
.card-light,
[style*="background: white"],
[style*="background: #fff"],
[style*="background:#fff"],
[style*="background: #ffffff"],
[style*="background:#ffffff"],
[style*="background-color: white"],
[style*="background-color: #fff"],
[style*="background-color:#fff"],
[style*="background-color: #ffffff"],
[style*="background-color:#ffffff"] {
    color: #111111 !important;
}

/* 2. Specifically target ALL headings inside white containers to override global dark mode H-tags */
.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5, .bg-white h6,
.card-light h1, .card-light h2, .card-light h3, .card-light h4, .card-light h5, .card-light h6,
[style*="background: white"] h1, [style*="background: white"] h2, [style*="background: white"] h3, [style*="background: white"] h4, [style*="background: white"] h5, [style*="background: white"] h6,
[style*="background: #fff"] h1, [style*="background: #fff"] h2, [style*="background: #fff"] h3, [style*="background: #fff"] h4, [style*="background: #fff"] h5, [style*="background: #fff"] h6,
[style*="background:#fff"] h1, [style*="background:#fff"] h2, [style*="background:#fff"] h3, [style*="background:#fff"] h4, [style*="background:#fff"] h5, [style*="background:#fff"] h6,
[style*="background: #ffffff"] h1, [style*="background: #ffffff"] h2, [style*="background: #ffffff"] h3, [style*="background: #ffffff"] h4, [style*="background: #ffffff"] h5, [style*="background: #ffffff"] h6,
[style*="background:#ffffff"] h1, [style*="background:#ffffff"] h2, [style*="background:#ffffff"] h3, [style*="background:#ffffff"] h4, [style*="background:#ffffff"] h5, [style*="background:#ffffff"] h6,
[style*="background-color: white"] h1, [style*="background-color: white"] h2, [style*="background-color: white"] h3, [style*="background-color: white"] h4, [style*="background-color: white"] h5, [style*="background-color: white"] h6,
[style*="background-color: #fff"] h1, [style*="background-color: #fff"] h2, [style*="background-color: #fff"] h3, [style*="background-color: #fff"] h4, [style*="background-color: #fff"] h5, [style*="background-color: #fff"] h6,
[style*="background-color:#fff"] h1, [style*="background-color:#fff"] h2, [style*="background-color:#fff"] h3, [style*="background-color:#fff"] h4, [style*="background-color:#fff"] h5, [style*="background-color:#fff"] h6,
[style*="background-color: #ffffff"] h1, [style*="background-color: #ffffff"] h2, [style*="background-color: #ffffff"] h3, [style*="background-color: #ffffff"] h4, [style*="background-color: #ffffff"] h5, [style*="background-color: #ffffff"] h6,
[style*="background-color:#ffffff"] h1, [style*="background-color:#ffffff"] h2, [style*="background-color:#ffffff"] h3, [style*="background-color:#ffffff"] h4, [style*="background-color:#ffffff"] h5, [style*="background-color:#ffffff"] h6 {
    color: #111111 !important;
}

/* 3. Force all paragraphs, lists, spans, and strong tags */
.bg-white p, .bg-white span, .bg-white li, .bg-white strong, .bg-white em,
.card-light p, .card-light span, .card-light li, .card-light strong, .card-light em,
[style*="background: white"] p, [style*="background: white"] span, [style*="background: white"] li, [style*="background: white"] strong,
[style*="background: #fff"] p, [style*="background: #fff"] span, [style*="background: #fff"] li, [style*="background: #fff"] strong,
[style*="background:#fff"] p, [style*="background:#fff"] span, [style*="background:#fff"] li, [style*="background:#fff"] strong,
[style*="background: #ffffff"] p, [style*="background: #ffffff"] span, [style*="background: #ffffff"] li, [style*="background: #ffffff"] strong,
[style*="background:#ffffff"] p, [style*="background:#ffffff"] span, [style*="background:#ffffff"] li, [style*="background:#ffffff"] strong,
[style*="background-color: white"] p, [style*="background-color: white"] span, [style*="background-color: white"] li, [style*="background-color: white"] strong,
[style*="background-color: #fff"] p, [style*="background-color: #fff"] span, [style*="background-color: #fff"] li, [style*="background-color: #fff"] strong,
[style*="background-color:#fff"] p, [style*="background-color:#fff"] span, [style*="background-color:#fff"] li, [style*="background-color:#fff"] strong,
[style*="background-color: #ffffff"] p, [style*="background-color: #ffffff"] span, [style*="background-color: #ffffff"] li, [style*="background-color: #ffffff"] strong,
[style*="background-color:#ffffff"] p, [style*="background-color:#ffffff"] span, [style*="background-color:#ffffff"] li, [style*="background-color:#ffffff"] strong {
    color: #111111 !important;
}
/* ==========================================================================
   STRICTLY ISOLATED BLACK TEXT FOR WHITE POLICY CARDS ONLY
   ========================================================================== */

/* Target ONLY elements that explicitly have a white background */
.bg-white,
.card-light,
.policy-card,
.legal-card,
.terms-card,
[style*="background: #ffffff"],
[style*="background:#ffffff"],
[style*="background-color: #ffffff"],
[style*="background-color:#ffffff"],
[style*="background: white"],
[style*="background-color: white"] {
    color: #111111 !important;
}

/* Force headings INSIDE white cards to black without touching dark-theme pages */
.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5, .bg-white h6,
.card-light h1, .card-light h2, .card-light h3, .card-light h4, .card-light h5, .card-light h6,
.policy-card h1, .policy-card h2, .policy-card h3, .policy-card h4,
[style*="background: #ffffff"] h1, [style*="background: #ffffff"] h2, [style*="background: #ffffff"] h3, [style*="background: #ffffff"] h4,
[style*="background:#ffffff"] h1, [style*="background:#ffffff"] h2, [style*="background:#ffffff"] h3, [style*="background:#ffffff"] h4,
[style*="background-color: #ffffff"] h1, [style*="background-color: #ffffff"] h2, [style*="background-color: #ffffff"] h3, [style*="background-color: #ffffff"] h4,
[style*="background-color:#ffffff"] h1, [style*="background-color:#ffffff"] h2, [style*="background-color:#ffffff"] h3, [style*="background-color:#ffffff"] h4 {
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
}

/* Force body text and list items INSIDE white cards to dark text */
.bg-white p, .bg-white li, .bg-white span, .bg-white strong,
.card-light p, .card-light li, .card-light span, .card-light strong,
.policy-card p, .policy-card li, .policy-card span, .policy-card strong,
[style*="background: #ffffff"] p, [style*="background: #ffffff"] li, [style*="background: #ffffff"] span, [style*="background: #ffffff"] strong,
[style*="background:#ffffff"] p, [style*="background:#ffffff"] li, [style*="background:#ffffff"] span, [style*="background:#ffffff"] strong,
[style*="background-color: #ffffff"] p, [style*="background-color: #ffffff"] li, [style*="background-color: #ffffff"] span, [style*="background-color: #ffffff"] strong,
[style*="background-color:#ffffff"] p, [style*="background-color:#ffffff"] li, [style*="background-color:#ffffff"] span, [style*="background-color:#ffffff"] strong {
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
}
/* ==========================================================================
   FORCE ALL TEXT & HEADINGS TO BLACK INSIDE WHITE CARDS
   ========================================================================== */

/* Target headings specifically inside white backgrounds */
div[style*="background"] h1, div[style*="background"] h2, div[style*="background"] h3, div[style*="background"] h4,
div[style*="background-color"] h1, div[style*="background-color"] h2, div[style*="background-color"] h3, div[style*="background-color"] h4,
.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4,
.card h1, .card h2, .card h3, .card h4,
.policy-card h1, .policy-card h2, .policy-card h3, .policy-card h4 {
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
}

/* Force body text, lists, and dates */
div[style*="background"] p, div[style*="background"] li, div[style*="background"] span,
div[style*="background-color"] p, div[style*="background-color"] li, div[style*="background-color"] span,
.bg-white p, .bg-white li, .bg-white span,
.card p, .card li, .card span {
    color: #222222 !important;
    -webkit-text-fill-color: #222222 !important;
}
/* ==========================================================================
   REQUEST A FREE ESTIMATE - GREEN ACCENT BUTTON OVERRIDE
   ========================================================================== */

/* Target header navigation CTA button */
.call-now-btn,
.main-navigation .btn.call-now-btn,
a[href*="contact.php"].btn {
    background: linear-gradient(135deg, #173f2a 0%, #245c3c 100%) !important;
    color: #ffffff !important;
    border: 1.5px solid #d1a461 !important; /* Gold border accent */
    box-shadow: 0 4px 15px rgba(17, 51, 29, 0.4) !important;
    transition: all 0.3s ease !important;
}

/* Hover state */
.call-now-btn:hover,
.main-navigation .btn.call-now-btn:hover,
a[href*="contact.php"].btn:hover {
    background: linear-gradient(135deg, #245c3c 0%, #2f6b48 100%) !important;
    border-color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(17, 51, 29, 0.6) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}
/* ==========================================================================
   SWIPER HERO SLIDER (UNOBSTRUCTED PHOTO LAYOUT)
   ========================================================================== */

.hero-swiper-section {
    position: relative;
    width: 100%;
    background: #050a06;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 600px; /* High-impact canvas size */
}

.heroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Ken Burns Zoom Motion */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.swiper-slide-active .slide-bg {
    transform: scale(1.08);
}

/* Gradient Vignette: Dark on left for text readability, clear on right for photography */
.slide-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 10, 6, 0.88) 0%, rgba(5, 10, 6, 0.5) 45%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.slide-content-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Compact Left-Anchored Glass Card */
.hero-left-card {
    background: rgba(8, 18, 11, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px;
    max-width: 540px; /* Leaves 60-70% of image wide open */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: translateX(-30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.swiper-slide-active .hero-left-card {
    transform: translateX(0);
    opacity: 1;
}

.hero-badge-pill {
    display: inline-block;
    background: rgba(209, 164, 97, 0.2);
    border: 1px solid #d1a461;
    color: #d1a461 !important;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.hero-heading {
    color: #ffffff !important;
    font-size: 2.3rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtext {
    color: #cbd5e1 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 22px !important;
}

.hero-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Green Primary Action Button Override */
.btn-primary-green {
    background: linear-gradient(135deg, #173f2a 0%, #245c3c 100%) !important;
    color: #ffffff !important;
    border: 1.5px solid #d1a461 !important;
    font-weight: 700 !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(17, 51, 29, 0.4) !important;
}

.btn-primary-green:hover {
    background: linear-gradient(135deg, #245c3c 0%, #2f6b48 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Custom Navigation Controls */
.hero-swiper-section .swiper-button-next,
.hero-swiper-section .swiper-button-prev {
    color: #d1a461 !important;
    background: rgba(0, 0, 0, 0.4);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.hero-swiper-section .swiper-button-next::after,
.hero-swiper-section .swiper-button-prev::after {
    font-size: 1.1rem !important;
    font-weight: bold;
}

.hero-swiper-section .swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.5;
}

.hero-swiper-section .swiper-pagination-bullet-active {
    background: #d1a461 !important;
    opacity: 1;
    width: 26px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .heroSwiper { height: 520px; }
    .hero-left-card { max-width: 100%; padding: 22px; }
    .hero-heading { font-size: 1.7rem !important; }
}
/* ==========================================================================
   DRAMATIC SWIPER TEXT BOX ANIMATION & MATCHING BUTTON CORNERS
   ========================================================================== */

/* 1. Unify Hero Button Corners (Matching 12px Smooth Squircle Look) */
.hero-btn-group .btn {
    border-radius: 12px !important;
    padding: 12px 26px !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-btn-group .btn-secondary {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1.5px solid #d1a461 !important;
    color: #ffffff !important;
}

.hero-btn-group .btn-secondary:hover {
    background: #d1a461 !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
}

/* 2. Dramatic Entrance Animation for the Glass Card */
.hero-left-card {
    background: rgba(8, 18, 11, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 35px;
    max-width: 540px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    
    /* Off-screen starting position for animation */
    opacity: 0 !important;
    transform: translateY(40px) scale(0.95) !important;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.8s ease !important;
}

/* Slide Active State: Triggers card to float up & reveal */
.swiper-slide-active .hero-left-card {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Staggered text element reveals inside active slide */
.hero-left-card .hero-badge-pill,
.hero-left-card .hero-heading,
.hero-left-card .hero-subtext,
.hero-left-card .hero-btn-group {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.swiper-slide-active .hero-left-card .hero-badge-pill {
    opacity: 1; transform: translateY(0); transition-delay: 0.2s;
}
.swiper-slide-active .hero-left-card .hero-heading {
    opacity: 1; transform: translateY(0); transition-delay: 0.35s;
}
.swiper-slide-active .hero-left-card .hero-subtext {
    opacity: 1; transform: translateY(0); transition-delay: 0.5s;
}
.swiper-slide-active .hero-left-card .hero-btn-group {
    opacity: 1; transform: translateY(0); transition-delay: 0.65s;
}
/* ==========================================================================
   NAVIGATION FLEX & SPACING REFINEMENT (TIGHTER ITEMS + CLOSER CTA)
   ========================================================================== */

@media (min-width: 992px) {
    /* 1. Main Navigation Flex Container */
    .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 15px !important;
    }

    /* 2. Menu Items: Pulled closer together and anchored right next to the CTA button */
    .nav-menu {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important; /* Balanced spacing between individual nav links */
        margin-left: auto !important; /* Pushes menu group to the right */
        margin-right: 8px !important; /* Tight, clean gap before the estimate button */
        padding: 0 !important;
        list-style: none !important;
    }

    /* 3. Individual Nav Links: Slightly tighter horizontal padding */
    .main-navigation a:not(.btn),
    .nav-menu .nav-link {
        padding: 6px 8px !important;
        font-size: 1.05rem !important;
    }
}
/* ==========================================================================
   STRICT MOBILE RESPONSIVE OVERRIDE FOR SWIPER HERO SLIDER
   ========================================================================== */

@media (max-width: 768px) {
    /* 1. Expand the slider height on phones so content never overflows */
    .hero-swiper-section,
    .heroSwiper {
        height: 560px !important;
    }

    /* 2. Center the glass card & adjust padding */
    .hero-left-card {
        max-width: 92% !important;
        margin: 0 auto !important;
        padding: 20px 18px !important;
        border-radius: 16px !important;
        text-align: center !important;
        background: rgba(5, 12, 7, 0.45) !important; /* Slightly darker for mobile readability */
    }

    /* 3. Scale down text size for phone screens */
    .hero-badge-pill {
        font-size: 0.75rem !important;
        padding: 4px 10px !important;
        margin-bottom: 8px !important;
    }

    .hero-heading {
        font-size: 1.45rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    .hero-subtext {
        font-size: 0.88rem !important;
        line-height: 1.45 !important;
        margin-bottom: 15px !important;
    }

    /* 4. Stack buttons vertically on small screens */
    .hero-btn-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .hero-btn-group .btn {
        width: 100% !important;
        padding: 10px 15px !important;
        font-size: 0.95rem !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* 5. Scale down nav arrows on mobile so they don't cover the card */
    .hero-swiper-section .swiper-button-next,
    .hero-swiper-section .swiper-button-prev {
        width: 36px !important;
        height: 36px !important;
    }

    .hero-swiper-section .swiper-button-next::after,
    .hero-swiper-section .swiper-button-prev::after {
        font-size: 0.9rem !important;
    }
}
/* ==========================================================================
   FORM SUCCESS MESSAGE HIGH-CONTRAST OVERRIDE
   ========================================================================== */
.form-success-alert {
    background: rgba(17, 51, 29, 0.95) !important;
    border: 2px solid #22c55e !important;
    padding: 22px !important;
    border-radius: 12px !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
}

.form-success-alert h4 {
    color: #4ade80 !important;
    font-weight: 800 !important;
    font-size: 1.25rem !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
}

.form-success-alert p,
.form-success-alert strong {
    color: #ffffff !important;
    font-size: 0.98rem !important;
    line-height: 1.5 !important;
}

/* ==========================================================================
   GOODBYE TREES, INC. — AUTHORITATIVE COMPONENT BRAND SYSTEM
   Added 2026-08-17\n   This final layer intentionally wins over older legacy component rules.
   ========================================================================== */

:root {
    --gt-ink: #050a06;
    --gt-night: #08120b;
    --gt-forest-deep: #102f20;
    --gt-forest: #173f2a;
    --gt-evergreen: #245c3c;
    --gt-leaf: #5f8f48;
    --gt-gold: #d1a461;
    --gt-gold-light: #e5c58e;
    --gt-gold-dark: #a97943;
    --gt-cream: #f7f3e8;
    --gt-text: #f8faf8;
    --gt-muted: #cbd5ce;
    --gt-line: rgba(209, 164, 97, 0.34);
    --gt-green-line: rgba(95, 143, 72, 0.38);
}

/* NAVIGATION — move away from the old white Endless header */
html[data-theme="hyper-glass"] .main-navigation {
    background: linear-gradient(90deg, #102f20 0%, #173f2a 55%, #102f20 100%) !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    border-bottom: 3px solid var(--gt-gold) !important;
    box-shadow: 0 12px 34px rgba(0,0,0,0.34) !important;
    padding: 10px 0 !important;
}

html[data-theme="hyper-glass"] .main-navigation .brand-logo {
    display: inline-flex !important;
    align-items: center !important;
    padding: 5px 10px !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,0.96) !important;
    border: 1px solid rgba(209,164,97,0.35) !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18) !important;
}

html[data-theme="hyper-glass"] .main-navigation .brand-logo img {
    max-height: 74px !important;
    width: auto !important;
}

html[data-theme="hyper-glass"] .main-navigation a:not(.btn),
html[data-theme="hyper-glass"] .nav-menu .nav-link,
html[data-theme="hyper-glass"] .main-navigation .dropdown-arrow {
    color: #ffffff !important;
    font-weight: 600 !important;
}

html[data-theme="hyper-glass"] .main-navigation a:not(.btn):hover,
html[data-theme="hyper-glass"] .nav-menu .nav-link:hover,
html[data-theme="hyper-glass"] .main-navigation a.active,
html[data-theme="hyper-glass"] .nav-menu .nav-link.active {
    color: var(--gt-gold-light) !important;
}

html[data-theme="hyper-glass"] .dropdown-menu {
    background: #102f20 !important;
    border: 1px solid rgba(209,164,97,0.35) !important;
    border-top: 3px solid var(--gt-gold) !important;
    border-radius: 0 0 14px 14px !important;
    box-shadow: 0 18px 38px rgba(0,0,0,0.38) !important;
    overflow: hidden !important;
}

html[data-theme="hyper-glass"] .dropdown-menu a {
    color: #f4f7f4 !important;
    background: transparent !important;
}

html[data-theme="hyper-glass"] .dropdown-menu a:hover {
    color: var(--gt-gold-light) !important;
    background: rgba(255,255,255,0.06) !important;
}

html[data-theme="hyper-glass"] .hamburger,
html[data-theme="hyper-glass"] .hamburger::before,
html[data-theme="hyper-glass"] .hamburger::after {
    background-color: #ffffff !important;
}

/* BUTTON HIERARCHY */
.btn,
html[data-theme="hyper-glass"] .btn {
    border-radius: 999px !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease !important;
}

.btn-primary,
.call-now-btn,
.main-navigation .btn.call-now-btn,
a[href*="contact.php"].btn.call-now-btn {
    background: linear-gradient(135deg, var(--gt-gold-light) 0%, var(--gt-gold) 55%, var(--gt-gold-dark) 100%) !important;
    color: #102016 !important;
    border: 1px solid rgba(255,255,255,0.30) !important;
    box-shadow: 0 8px 24px rgba(209,164,97,0.28) !important;
    text-shadow: none !important;
}

.btn-primary:hover,
.call-now-btn:hover,
.main-navigation .btn.call-now-btn:hover,
a[href*="contact.php"].btn.call-now-btn:hover {
    background: linear-gradient(135deg, #edd4a8 0%, var(--gt-gold-light) 48%, var(--gt-gold) 100%) !important;
    color: #08120b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(209,164,97,0.42) !important;
}

.btn-secondary,
html[data-theme="hyper-glass"] .btn-secondary {
    background: rgba(16,47,32,0.90) !important;
    color: var(--gt-gold-light) !important;
    border: 1px solid var(--gt-gold) !important;
    box-shadow: 0 7px 20px rgba(0,0,0,0.28) !important;
    backdrop-filter: blur(8px) !important;
}

.btn-secondary:hover,
html[data-theme="hyper-glass"] .btn-secondary:hover {
    background: var(--gt-gold) !important;
    color: #0b170f !important;
    border-color: var(--gt-gold-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 28px rgba(209,164,97,0.36) !important;
}

.btn-primary-green {
    background: linear-gradient(135deg, #2f6b48 0%, var(--gt-evergreen) 55%, var(--gt-forest) 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(209,164,97,0.65) !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 22px rgba(0,0,0,0.30) !important;
}

.btn-primary-green:hover {
    background: linear-gradient(135deg, #397c56 0%, #2f6b48 100%) !important;
    border-color: var(--gt-gold-light) !important;
    transform: translateY(-2px) !important;
}

/* SECTION TITLES — branded gold rule */
.section-title {
    color: #ffffff !important;
    position: relative !important;
    padding-bottom: 16px !important;
}

.section-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, var(--gt-gold) 20%, var(--gt-gold-light) 50%, var(--gt-gold) 80%, transparent 100%);
}

/* CARDS — less generic glass, more grounded evergreen */
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"] .fb-feed-glass-card,
.video-glass-card,
.contact-info-card,
.contact-form-card,
.sidebar-assessment-card {
    background: linear-gradient(155deg, rgba(18,52,34,0.97) 0%, rgba(7,17,10,0.98) 100%) !important;
    border: 1px solid rgba(95,143,72,0.34) !important;
    border-top: 2px solid rgba(209,164,97,0.70) !important;
    box-shadow: 0 20px 46px rgba(0,0,0,0.43) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

html[data-theme="hyper-glass"] .service-card:hover,
html[data-theme="hyper-glass"] .theme-panel:hover,
html[data-theme="hyper-glass"] .review-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(209,164,97,0.72) !important;
    box-shadow: 0 26px 58px rgba(0,0,0,0.54), 0 0 0 1px rgba(209,164,97,0.08) !important;
}

.service-card::before {
    opacity: .35 !important;
}

.service-card::after {
    background: radial-gradient(520px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(95,143,72,0.16), transparent 42%) !important;
}

.service-card-image {
    border: 1px solid rgba(209,164,97,0.28) !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.32) !important;
}

.service-card h3 {
    color: #ffffff !important;
    font-weight: 850 !important;
    letter-spacing: .01em !important;
}

.service-card p,
.theme-panel p,
.review-text,
.faq-answer,
.fb-feed-sub {
    color: var(--gt-muted) !important;
}

/* REVIEWS */
.review-card {
    position: relative !important;
    overflow: hidden !important;
}

.review-card::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--gt-gold-dark), var(--gt-gold-light), var(--gt-gold-dark)) !important;
    opacity: .9 !important;
}

.review-stars,
.review-location {
    color: var(--gt-gold-light) !important;
}

.google-review-badge {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(209,164,97,0.24) !important;
}

/* FAQ */
.faq-item {
    background: #0d2418 !important;
    border: 1px solid rgba(95,143,72,0.28) !important;
    border-left: 3px solid rgba(209,164,97,0.55) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.24) !important;
}

.faq-item[open] {
    border-color: rgba(209,164,97,0.65) !important;
    background: #123020 !important;
}

.faq-question {
    color: #ffffff !important;
}

.faq-question:hover {
    background: rgba(209,164,97,0.07) !important;
}

.faq-question::after {
    color: var(--gt-gold-light) !important;
}

/* TRUST / ACCREDITATION */
.trust-bar-enhanced {
    background: linear-gradient(90deg, #0c2417 0%, #173f2a 50%, #0c2417 100%) !important;
    border-top: 1px solid rgba(209,164,97,.38) !important;
    border-bottom: 1px solid rgba(209,164,97,.38) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 10px 26px rgba(0,0,0,.28) !important;
}

.trust-badge-item {
    background: rgba(255,255,255,0.045) !important;
    border: 1px solid rgba(95,143,72,0.38) !important;
    border-radius: 10px !important;
    padding: 11px 18px !important;
}

.trust-icon {
    color: var(--gt-gold-light) !important;
}

.industry-accreditations-bar {
    background: #08120b !important;
    border-bottom: 1px solid rgba(209,164,97,0.24) !important;
}

.accreditation-card {
    background: linear-gradient(145deg, rgba(23,63,42,.72), rgba(8,18,11,.86)) !important;
    border: 1px solid rgba(95,143,72,.32) !important;
    border-radius: 10px !important;
}

.accreditation-card:hover {
    border-color: var(--gt-gold) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.28) !important;
}

.accreditation-label {
    color: var(--gt-gold-light) !important;
}

/* HERO — preserve full photography while making text readable */
.hero-swiper-section {
    background: var(--gt-ink) !important;
}

.slide-vignette {
    background: linear-gradient(90deg, rgba(5,10,6,.56) 0%, rgba(5,10,6,.22) 42%, rgba(0,0,0,.03) 75%, transparent 100%) !important;
}

.hero-left-card {
    background: linear-gradient(145deg, rgba(10,30,19,.78), rgba(5,10,6,.66)) !important;
    border: 1px solid rgba(209,164,97,.34) !important;
    border-left: 4px solid var(--gt-gold) !important;
    border-radius: 14px !important;
    box-shadow: 0 24px 55px rgba(0,0,0,.50) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.hero-badge-pill {
    background: rgba(209,164,97,.12) !important;
    border: 1px solid rgba(209,164,97,.70) !important;
    color: var(--gt-gold-light) !important;
}

.hero-heading {
    color: #ffffff !important;
}

.hero-subtext {
    color: #e5ece6 !important;
}

.hero-swiper-section .swiper-button-next,
.hero-swiper-section .swiper-button-prev {
    color: var(--gt-gold-light) !important;
    background: rgba(8,18,11,.72) !important;
    border: 1px solid rgba(209,164,97,.45) !important;
}

.hero-swiper-section .swiper-pagination-bullet-active {
    background: var(--gt-gold) !important;
}

/* HAZARD / STORM BANNER */
.emergency-banner-section {
    background: linear-gradient(135deg, rgba(23,63,42,.24) 0%, rgba(5,10,6,.96) 50%, rgba(209,164,97,.08) 100%) !important;
    border-top: 1px solid rgba(95,143,72,.24) !important;
    border-bottom: 1px solid rgba(95,143,72,.24) !important;
}

.emergency-banner-card {
    background: linear-gradient(145deg, rgba(18,52,34,.94), rgba(5,10,6,.97)) !important;
    border: 1px solid rgba(209,164,97,.42) !important;
    border-left: 4px solid var(--gt-gold) !important;
    border-radius: 14px !important;
}

.btn-emergency-call {
    background: var(--gt-gold) !important;
    color: #0b170f !important;
    border: 1px solid var(--gt-gold-light) !important;
    border-radius: 999px !important;
}

.btn-emergency-call:hover {
    background: var(--gt-gold-light) !important;
    color: #08120b !important;
}

/* FACEBOOK */
.fb-feed-glass-card {
    border-top: 2px solid rgba(66,103,178,.65) !important;
}

.fb-page-wrapper,
.fb-page-wrapper.dark-fb-embed {
    background: #ffffff !important;
    border: 1px solid rgba(209,164,97,.34) !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.35) !important;
}

.fb-page-wrapper.dark-fb-embed iframe {
    filter: none !important;
    mix-blend-mode: normal !important;
}

/* LOCATION / PROCESS / GALLERY */
.city-link-btn,
.gallery-lightbox-trigger,
.process-number {
    background: linear-gradient(135deg, var(--gt-gold-light), var(--gt-gold-dark)) !important;
    color: #102016 !important;
    border-color: rgba(255,255,255,.22) !important;
}

.location-links-list li a,
.card-link-btn {
    color: #dce6df !important;
}

.location-links-list li a:hover,
.card-link-btn:hover {
    color: var(--gt-gold-light) !important;
}

.seo-service-card,
.process-step-card,
.seo-feature-box,
.seo-faq-item {
    background: rgba(17,48,32,.78) !important;
    border: 1px solid rgba(95,143,72,.28) !important;
}

.seo-service-card:hover {
    border-color: rgba(209,164,97,.65) !important;
    background: rgba(23,63,42,.90) !important;
}

/* FORMS */
.form-input,
input.form-input,
textarea.form-input,
select.form-input {
    background: rgba(255,255,255,.055) !important;
    border: 1px solid rgba(95,143,72,.34) !important;
    color: #ffffff !important;
}

.form-input:focus,
input.form-input:focus,
textarea.form-input:focus,
select.form-input:focus {
    border-color: var(--gt-gold) !important;
    box-shadow: 0 0 0 3px rgba(209,164,97,.12) !important;
}

/* MOBILE NAV — dark branded drawer */
@media (max-width: 991px) {
    html[data-theme="hyper-glass"] .main-navigation {
        background: #102f20 !important;
    }

    html[data-theme="hyper-glass"] .nav-menu {
        background: #0b2115 !important;
        border-top: 1px solid rgba(209,164,97,.35) !important;
        box-shadow: 0 18px 38px rgba(0,0,0,.45) !important;
    }

    html[data-theme="hyper-glass"] .nav-menu .nav-link,
    html[data-theme="hyper-glass"] .nav-menu a:not(.btn) {
        color: #ffffff !important;
    }

    html[data-theme="hyper-glass"] .dropdown-menu {
        background: #102f20 !important;
        border: 1px solid rgba(209,164,97,.22) !important;
    }

    html[data-theme="hyper-glass"] .main-navigation .brand-logo img {
        max-height: 62px !important;
    }
}

/* ==========================================================================
   GOODBYE TREES
   FINAL PREMIUM NAVIGATION
   ========================================================================== */


/* --------------------------------------------------------------------------
   NAVIGATION SHELL
   -------------------------------------------------------------------------- */

html[data-theme="hyper-glass"] .main-navigation {

    background:
        linear-gradient(
            90deg,
            #082b1d 0%,
            #0d3b29 48%,
            #082b1d 100%
        ) !important;

    border-bottom:
        2px solid #d1a461 !important;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.28) !important;

    padding:
        14px 0 !important;

}


/* --------------------------------------------------------------------------
   NAV CONTAINER
   -------------------------------------------------------------------------- */

.main-navigation .nav-container {

    display:
        flex !important;

    align-items:
        center !important;

    justify-content:
        space-between !important;

    gap:
        25px !important;

}


/* ==========================================================================
   NAVIGATION LOGO
   ========================================================================== */

/*
 * Kill the old white logo card / plaque completely.
 */

.main-navigation .brand-logo {

    background:
        transparent !important;

    border:
        none !important;

    border-radius:
        0 !important;

    box-shadow:
        none !important;

    padding:
        0 !important;

    margin:
        0 !important;

    display:
        flex !important;

    align-items:
        center !important;

    flex-shrink:
        0 !important;

}


/*
 * Transparent horizontal Goodbye Trees logo.
 */

html[data-theme="hyper-glass"]
.main-navigation
.brand-logo img {

    width:
        auto !important;

    height:
        auto !important;

    max-height:
        105px !important;

    max-width:
        365px !important;

    object-fit:
        contain !important;

    display:
        block !important;

    filter:
        drop-shadow(
            0 4px 7px rgba(0, 0, 0, 0.28)
        ) !important;

}


/* ==========================================================================
   MAIN MENU
   ========================================================================== */

.main-navigation .nav-menu {

    margin-left:
        auto !important;

    margin-right:
        22px !important;

    gap:
        15px !important;

    align-items:
        center !important;

}


/*
 * Navigation typography.
 */

html[data-theme="hyper-glass"]
.main-navigation
.nav-menu
.nav-link,

html[data-theme="hyper-glass"]
.main-navigation
a:not(.btn) {

    color:
        #f8faf8 !important;

    font-size:
        1.06rem !important;

    font-weight:
        700 !important;

    letter-spacing:
        0.01em !important;

    padding:
        10px 7px !important;

    position:
        relative !important;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.18) !important;

}


/* --------------------------------------------------------------------------
   NAV HOVER
   -------------------------------------------------------------------------- */

html[data-theme="hyper-glass"]
.main-navigation
.nav-menu
.nav-link:hover,

html[data-theme="hyper-glass"]
.main-navigation
a:not(.btn):hover {

    color:
        #f0cd86 !important;

}


/* --------------------------------------------------------------------------
   ACTIVE NAV ITEM
   -------------------------------------------------------------------------- */

html[data-theme="hyper-glass"]
.main-navigation
.nav-menu
.nav-link.active,

html[data-theme="hyper-glass"]
.main-navigation
a.active {

    color:
        #f0cd86 !important;

}


/*
 * Elegant gold underline instead of simply changing text color.
 */

html[data-theme="hyper-glass"]
.main-navigation
.nav-menu
.nav-link.active::after,

html[data-theme="hyper-glass"]
.main-navigation
a.active::after {

    content:
        "";

    position:
        absolute;

    left:
        7px;

    right:
        7px;

    bottom:
        0;

    height:
        2px;

    border-radius:
        10px;

    background:
        linear-gradient(
            90deg,
            #b77c28,
            #f0cd86,
            #b77c28
        );

    box-shadow:
        0 1px 8px rgba(209, 164, 97, 0.45);

}


/* ==========================================================================
   DROPDOWN ARROWS
   ========================================================================== */

html[data-theme="hyper-glass"]
.main-navigation
.dropdown-arrow {

    color:
        #f8faf8 !important;

}


/* ==========================================================================
   PREMIUM REQUEST ESTIMATE BUTTON
   ========================================================================== */

.call-now-btn,

.main-navigation
.btn.call-now-btn {

    background:
        linear-gradient(
            135deg,
            #f4d58f 0%,
            #e0af55 42%,
            #c58a31 100%
        ) !important;

    color:
        #0a2d1f !important;

    border:
        2px solid #f3d17c !important;

    border-radius:
        22px !important;

    padding:
        15px 27px !important;

    min-height:
        56px !important;

    font-size:
        1.04rem !important;

    font-weight:
        900 !important;

    letter-spacing:
        0.01em !important;

    white-space:
        nowrap !important;

    text-shadow:
        none !important;

    box-shadow:

        0 8px 25px rgba(209, 164, 97, 0.30),

        0 0 0 1px rgba(255, 226, 159, 0.24),

        inset 0 2px 0 rgba(255, 255, 255, 0.48),

        inset 0 -2px 0 rgba(104, 65, 16, 0.18)

        !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease

        !important;

}


/*
 * Make every element inside the CTA green too,
 * including the icon.
 */

.call-now-btn *,
.main-navigation .btn.call-now-btn * {

    color:
        #0a2d1f !important;

}


/* --------------------------------------------------------------------------
   CTA HOVER
   -------------------------------------------------------------------------- */

.call-now-btn:hover,

.main-navigation
.btn.call-now-btn:hover {

    background:
        linear-gradient(
            135deg,
            #ffe5a7 0%,
            #edbd61 45%,
            #d39638 100%
        ) !important;

    color:
        #071e15 !important;

    border-color:
        #ffe7a4 !important;

    transform:
        translateY(-3px) !important;

    box-shadow:

        0 12px 34px rgba(209, 164, 97, 0.46),

        0 0 20px rgba(240, 205, 134, 0.16),

        inset 0 2px 0 rgba(255, 255, 255, 0.58)

        !important;

}


/* ==========================================================================
   SUBTLE LOGO-SIDE GLOW
   ========================================================================== */

.main-navigation .brand-logo {

    position:
        relative !important;

}


.main-navigation .brand-logo::after {

    content:
        "";

    position:
        absolute;

    width:
        280px;

    height:
        80px;

    left:
        15px;

    top:
        50%;

    transform:
        translateY(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(209, 164, 97, 0.07) 0%,
            transparent 70%
        );

    pointer-events:
        none;

    z-index:
        -1;

}


/* ==========================================================================
   NAVIGATION DIVIDER
   ========================================================================== */

.main-navigation::after {

    content:
        "";

    position:
        absolute;

    bottom:
        -2px;

    left:
        0;

    width:
        100%;

    height:
        2px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            #a9712b 10%,
            #e8bd69 50%,
            #a9712b 90%,
            transparent 100%
        );

}


/* ==========================================================================
   DESKTOP LOGO / NAV BALANCE
   ========================================================================== */

@media (min-width: 1200px) {

    html[data-theme="hyper-glass"]
    .main-navigation
    .brand-logo img {

        max-height:
            108px !important;

        max-width:
            370px !important;

    }

}


/* ==========================================================================
   MEDIUM DESKTOP / LAPTOP
   ========================================================================== */

@media (min-width: 992px) and (max-width: 1250px) {

    html[data-theme="hyper-glass"]
    .main-navigation
    .brand-logo img {

        max-height:
            86px !important;

        max-width:
            285px !important;

    }


    .main-navigation .nav-menu {

        gap:
            7px !important;

        margin-right:
            10px !important;

    }


    html[data-theme="hyper-glass"]
    .main-navigation
    .nav-menu
    .nav-link {

        font-size:
            0.94rem !important;

        padding:
            8px 5px !important;

    }


    .call-now-btn,
    .main-navigation .btn.call-now-btn {

        padding:
            12px 18px !important;

        font-size:
            0.92rem !important;

    }

}


/* ==========================================================================
   MOBILE / TABLET
   ========================================================================== */

@media (max-width: 991px) {

    html[data-theme="hyper-glass"]
    .main-navigation
    .brand-logo img {

        max-height:
            72px !important;

        max-width:
            240px !important;

    }


    .main-navigation {

        padding:
            10px 0 !important;

    }


    /*
     * Keep hamburger visible against dark-green navigation.
     */

    html[data-theme="hyper-glass"]
    .hamburger,

    html[data-theme="hyper-glass"]
    .hamburger::before,

    html[data-theme="hyper-glass"]
    .hamburger::after {

        background:
            #ffffff !important;

    }

}


/* ==========================================================================
   VERY SMALL MOBILE
   ========================================================================== */

@media (max-width: 575px) {

    html[data-theme="hyper-glass"]
    .main-navigation
    .brand-logo img {

        max-height:
            58px !important;

        max-width:
            190px !important;

    }

}
/* ================================================================
   GOODBYE TREES — TRANSPARENT NAV LOGO FIX
================================================================ */

html[data-theme="hyper-glass"] .main-navigation .brand-logo,
html[data-theme="hyper-glass"] .main-navigation a.brand-logo,
html[data-theme="hyper-glass"] .brand-logo,
.main-navigation .brand-logo,
.main-navigation .brand-logo:link,
.main-navigation .brand-logo:visited,
.main-navigation .brand-logo:hover,
.main-navigation .brand-logo:focus {

    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;

    border: 0 !important;
    outline: 0 !important;

    border-radius: 0 !important;

    padding: 0 !important;

    box-shadow: none !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}


/* Remove any generated plaque/background */

.main-navigation .brand-logo::before,
.main-navigation .brand-logo::after {

    content: none !important;
    display: none !important;
}


/* TRANSPARENT LOGO IMAGE */

html[data-theme="hyper-glass"]
.main-navigation
.brand-logo img {

    display: block !important;

    width: 330px !important;
    max-width: 330px !important;

    height: auto !important;
    max-height: 110px !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    object-fit: contain !important;

    filter:
        drop-shadow(0 4px 5px rgba(0,0,0,.30))
        !important;
}


/* DESKTOP NAV HEIGHT */

@media (min-width: 1200px) {

    .main-navigation .nav-container {
        min-height: 116px !important;
    }

}


/* LAPTOP */

@media (min-width: 992px) and (max-width: 1199px) {

    html[data-theme="hyper-glass"]
    .main-navigation
    .brand-logo img {

        width: 285px !important;
        max-width: 285px !important;
        max-height: 94px !important;
    }

}


/* MOBILE */

@media (max-width: 991px) {

    html[data-theme="hyper-glass"]
    .main-navigation
    .brand-logo img {

        width: 235px !important;
        max-width: 235px !important;
        max-height: 78px !important;
    }

}
/* ==========================================================================
   GOODBYE TREES — FINAL METALLIC GOLD COLOR SYSTEM
   Match site accents to navigation logo
   ========================================================================== */

:root {

    /* Primary metallic gold */
    --gt-gold: #d9a32b;

    /* Bright highlight */
    --gt-gold-light: #f3cf68;

    /* Brightest metallic highlight */
    --gt-gold-highlight: #ffe394;

    /* Deep gold / bronze */
    --gt-gold-dark: #a96f16;

    /* Shadow bronze */
    --gt-gold-shadow: #74480d;

    /* Replace framework accent */
    --secondary-color: var(--gt-gold);
    --secondary-dark: var(--gt-gold-dark);
}


/* ==========================================================================
   GENERAL GOLD TEXT / ACCENTS
   ========================================================================== */

.section-eyebrow,
.accreditation-label,
.review-stars,
.trust-icon,
.review-location,
.location-links-list li a:hover,
.card-link-btn {

    color: var(--gt-gold-light) !important;
}


/* ==========================================================================
   NAV ACTIVE / HOVER
   ========================================================================== */

html[data-theme="hyper-glass"]
.main-navigation
a:not(.btn):hover,

html[data-theme="hyper-glass"]
.main-navigation
.nav-link:hover,

html[data-theme="hyper-glass"]
.main-navigation
a.active,

html[data-theme="hyper-glass"]
.main-navigation
.nav-link.active {

    color: var(--gt-gold-light) !important;
}


/* Active underline */

html[data-theme="hyper-glass"]
.main-navigation
a.active::after,

html[data-theme="hyper-glass"]
.main-navigation
.nav-link.active::after {

    background: linear-gradient(
        90deg,
        var(--gt-gold-dark) 0%,
        var(--gt-gold-highlight) 50%,
        var(--gt-gold-dark) 100%
    ) !important;

    box-shadow:
        0 2px 10px rgba(217,163,43,.55) !important;
}


/* ==========================================================================
   MAIN GOLD BUTTONS
   ========================================================================== */

.btn-primary,
.btn-emergency-call,
.city-link-btn,
.gallery-lightbox-trigger {

    background: linear-gradient(
        180deg,
        var(--gt-gold-highlight) 0%,
        var(--gt-gold-light) 20%,
        var(--gt-gold) 58%,
        var(--gt-gold-dark) 100%
    ) !important;

    color: #08291c !important;

    border:
        1px solid var(--gt-gold-highlight) !important;

    box-shadow:
        0 7px 20px rgba(217,163,43,.28),
        inset 0 1px 0 rgba(255,255,255,.55),
        inset 0 -2px 0 rgba(90,50,5,.22)
        !important;

    text-shadow:
        none !important;
}


.btn-primary:hover,
.btn-emergency-call:hover,
.city-link-btn:hover,
.gallery-lightbox-trigger:hover {

    background: linear-gradient(
        180deg,
        #fff0b0 0%,
        #f7d979 22%,
        #e4ae35 60%,
        #bb7a18 100%
    ) !important;

    color:
        #061e14 !important;

    border-color:
        #ffe89e !important;

    box-shadow:
        0 11px 30px rgba(217,163,43,.45),
        inset 0 2px 0 rgba(255,255,255,.62)
        !important;
}


/* ==========================================================================
   OUTLINE / SECONDARY GOLD BUTTONS
   ========================================================================== */

.btn-secondary {

    background:
        rgba(8, 42, 28, .76) !important;

    color:
        var(--gt-gold-light) !important;

    border:
        1.5px solid var(--gt-gold) !important;

    box-shadow:
        inset 0 0 0 1px rgba(255,227,148,.05),
        0 5px 18px rgba(0,0,0,.22)
        !important;
}


.btn-secondary:hover {

    background: linear-gradient(
        180deg,
        var(--gt-gold-highlight) 0%,
        var(--gt-gold-light) 22%,
        var(--gt-gold) 65%,
        var(--gt-gold-dark) 100%
    ) !important;

    color:
        #08291c !important;

    border-color:
        var(--gt-gold-highlight) !important;

    box-shadow:
        0 9px 25px rgba(217,163,43,.38)
        !important;
}


/* ==========================================================================
   GREEN BUTTON WITH METALLIC GOLD EDGE
   ========================================================================== */

.btn-primary-green {

    background:
        linear-gradient(
            135deg,
            #17613d 0%,
            #0d482e 100%
        ) !important;

    color:
        #ffffff !important;

    border:
        1.5px solid var(--gt-gold) !important;

    box-shadow:
        0 7px 20px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.08)
        !important;
}


.btn-primary-green:hover {

    background:
        linear-gradient(
            135deg,
            #20734a 0%,
            #115638 100%
        ) !important;

    border-color:
        var(--gt-gold-light) !important;

    box-shadow:
        0 10px 28px rgba(0,0,0,.34),
        0 0 12px rgba(217,163,43,.15)
        !important;
}


/* ==========================================================================
   HEADER ESTIMATE CTA
   ========================================================================== */

.call-now-btn,
.main-navigation .btn.call-now-btn {

    background: linear-gradient(
        180deg,
        #ffe699 0%,
        #f4ca63 18%,
        #dda52c 56%,
        #b87516 100%
    ) !important;

    color:
        #062719 !important;

    border:
        2px solid #f6d572 !important;

    box-shadow:
        0 9px 27px rgba(217,163,43,.40),
        inset 0 2px 0 rgba(255,255,255,.62),
        inset 0 -2px 0 rgba(83,47,5,.28)
        !important;
}


.call-now-btn:hover,
.main-navigation .btn.call-now-btn:hover {

    background: linear-gradient(
        180deg,
        #fff1b4 0%,
        #f9d877 20%,
        #e7b63d 58%,
        #c7831c 100%
    ) !important;

    border-color:
        #ffe99f !important;

    box-shadow:
        0 12px 34px rgba(217,163,43,.55),
        0 0 20px rgba(243,207,104,.17),
        inset 0 2px 0 rgba(255,255,255,.70)
        !important;
}


/* ==========================================================================
   HERO BADGES / PILLS
   ========================================================================== */

.hero-badge,
.hero-badge-pill,
.trust-pill {

    background:
        rgba(217,163,43,.10) !important;

    border:
        1px solid rgba(243,207,104,.72) !important;

    color:
        var(--gt-gold-light) !important;
}


/* ==========================================================================
   CARD / PANEL GOLD EDGES
   ========================================================================== */

.service-card,
.review-card,
.theme-panel,
.faq-item,
.fb-feed-glass-card,
.video-glass-card {

    border-color:
        rgba(217,163,43,.27) !important;
}


.service-card:hover,
.review-card:hover,
.theme-panel:hover {

    border-color:
        rgba(243,207,104,.66) !important;
}


/* ==========================================================================
   SERVICE IMAGE GOLD EDGE
   ========================================================================== */

.service-card-image {

    border-color:
        rgba(217,163,43,.46) !important;
}


/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-badge-item {

    border-color:
        rgba(217,163,43,.42) !important;
}


/* ==========================================================================
   SLIDER CONTROLS
   ========================================================================== */

.hero-swiper-section .swiper-button-next,
.hero-swiper-section .swiper-button-prev {

    color:
        var(--gt-gold-light) !important;

    border-color:
        rgba(217,163,43,.55) !important;
}


.hero-swiper-section .swiper-button-next:hover,
.hero-swiper-section .swiper-button-prev:hover {

    background:
        var(--gt-gold) !important;

    color:
        #08291c !important;

    border-color:
        var(--gt-gold-highlight) !important;
}


/* ==========================================================================
   SWIPER DOTS
   ========================================================================== */

.hero-swiper-section
.swiper-pagination-bullet-active {

    background:
        var(--gt-gold-light) !important;
}


/* ==========================================================================
   GOLD DIVIDERS / BORDERS
   ========================================================================== */

.main-navigation,
.trust-bar-enhanced,
.site-footer {

    border-color:
        var(--gt-gold) !important;
}


/* ==========================================================================
   ABOUT / IMAGE BADGES
   ========================================================================== */

.about-image-badge {

    border-color:
        var(--gt-gold) !important;

    color:
        var(--gt-gold-light) !important;
}
/* ==========================================================================
   GOODBYE TREES — UNIVERSAL METALLIC GOLD ACTION SYSTEM
   One consistent gold style across the entire website
   ========================================================================== */

:root {
    --gt-gold-top:       #fff0a9;
    --gt-gold-highlight: #f9d872;
    --gt-gold-main:      #e4ae2f;
    --gt-gold-mid:       #cf921d;
    --gt-gold-deep:      #a86a0d;

    --gt-gold-border:    #ffe58e;
    --gt-gold-text:      #08291c;

    --gt-gold-shadow:
        rgba(207, 146, 29, 0.42);

    --secondary-color:
        var(--gt-gold-main);

    --secondary-dark:
        var(--gt-gold-deep);
}


/* ==========================================================================
   MASTER GOLD BUTTON
   ========================================================================== */

/*
 * These are ALL treated as primary gold action buttons.
 */

.btn-primary,

.btn-emergency-call,

.call-now-btn,

.main-navigation .btn.call-now-btn,

.city-link-btn,

.gallery-lightbox-trigger,

.top-bar-call-btn,

a[href*="contact.php"].btn,

a[href*="tel:"].btn-primary,

a[href*="tel:"].btn-emergency-call {

    background:
        linear-gradient(
            180deg,
            var(--gt-gold-top) 0%,
            var(--gt-gold-highlight) 18%,
            var(--gt-gold-main) 52%,
            var(--gt-gold-mid) 76%,
            var(--gt-gold-deep) 100%
        ) !important;

    color:
        var(--gt-gold-text) !important;

    border:
        1.5px solid var(--gt-gold-border) !important;

    border-radius:
        999px !important;

    font-weight:
        800 !important;

    text-shadow:
        none !important;

    box-shadow:
        0 7px 20px var(--gt-gold-shadow),
        0 0 0 1px rgba(255, 225, 130, 0.12),
        inset 0 2px 0 rgba(255,255,255,0.58),
        inset 0 -2px 0 rgba(96,54,4,0.28)
        !important;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease,
        border-color .22s ease
        !important;
}


/*
 * Force icons/spans inside buttons to use the same dark green.
 */

.btn-primary *,
.btn-emergency-call *,
.call-now-btn *,
.main-navigation .btn.call-now-btn *,
.city-link-btn *,
.gallery-lightbox-trigger *,
.top-bar-call-btn *,
a[href*="contact.php"].btn * {

    color:
        var(--gt-gold-text) !important;
}


/* ==========================================================================
   GOLD BUTTON HOVER
   ========================================================================== */

.btn-primary:hover,

.btn-emergency-call:hover,

.call-now-btn:hover,

.main-navigation .btn.call-now-btn:hover,

.city-link-btn:hover,

.gallery-lightbox-trigger:hover,

.top-bar-call-btn:hover,

a[href*="contact.php"].btn:hover,

a[href*="tel:"].btn-primary:hover,

a[href*="tel:"].btn-emergency-call:hover {

    background:
        linear-gradient(
            180deg,
            #fff6c2 0%,
            #ffe389 18%,
            #efbf45 52%,
            #dc9d25 76%,
            #b97611 100%
        ) !important;

    color:
        #061f15 !important;

    border-color:
        #fff0a8 !important;

    transform:
        translateY(-2px) !important;

    box-shadow:
        0 11px 30px rgba(207,146,29,0.55),
        0 0 18px rgba(249,216,114,0.18),
        inset 0 2px 0 rgba(255,255,255,0.68),
        inset 0 -2px 0 rgba(96,54,4,0.20)
        !important;
}


/* ==========================================================================
   REQUEST ESTIMATE BUTTONS
   Force ALL contact/estimate CTAs into the premium gold family
   ========================================================================== */

a[href*="contact.php"].btn,
a[href*="contact.php"].btn-primary,
a[href*="contact.php"].btn-secondary,
a[href*="contact.php"].btn-large,
.video-card-body a[href*="contact.php"],
.hero-btn-group a[href*="contact.php"] {

    background:
        linear-gradient(
            180deg,
            var(--gt-gold-top) 0%,
            var(--gt-gold-highlight) 18%,
            var(--gt-gold-main) 52%,
            var(--gt-gold-mid) 76%,
            var(--gt-gold-deep) 100%
        ) !important;

    color:
        var(--gt-gold-text) !important;

    border:
        1.5px solid var(--gt-gold-border) !important;

    border-radius:
        999px !important;

    box-shadow:
        0 7px 20px var(--gt-gold-shadow),
        inset 0 2px 0 rgba(255,255,255,0.58),
        inset 0 -2px 0 rgba(96,54,4,0.28)
        !important;

    text-shadow:
        none !important;
}


a[href*="contact.php"].btn:hover,
a[href*="contact.php"].btn-primary:hover,
a[href*="contact.php"].btn-secondary:hover,
a[href*="contact.php"].btn-large:hover,
.video-card-body a[href*="contact.php"]:hover,
.hero-btn-group a[href*="contact.php"]:hover {

    background:
        linear-gradient(
            180deg,
            #fff6c2 0%,
            #ffe389 18%,
            #efbf45 52%,
            #dc9d25 76%,
            #b97611 100%
        ) !important;

    color:
        #061f15 !important;

    border-color:
        #fff0a8 !important;

    transform:
        translateY(-2px) !important;

    box-shadow:
        0 11px 30px rgba(207,146,29,0.55),
        inset 0 2px 0 rgba(255,255,255,0.68)
        !important;
}


/* ==========================================================================
   SECONDARY / OUTLINE BUTTONS
   These remain green, but use the SAME gold family for borders/text.
   ========================================================================== */

.btn-secondary:not([href*="contact.php"]),
.hero-btn-group .btn-secondary:not([href*="contact.php"]) {

    background:
        linear-gradient(
            135deg,
            rgba(11, 55, 37, 0.96) 0%,
            rgba(5, 34, 22, 0.98) 100%
        ) !important;

    color:
        var(--gt-gold-highlight) !important;

    border:
        1.5px solid var(--gt-gold-main) !important;

    border-radius:
        999px !important;

    box-shadow:
        0 6px 18px rgba(0,0,0,.26),
        inset 0 1px 0 rgba(255,255,255,.05)
        !important;

    text-shadow:
        none !important;
}


.btn-secondary:not([href*="contact.php"]):hover,
.hero-btn-group .btn-secondary:not([href*="contact.php"]):hover {

    background:
        linear-gradient(
            180deg,
            var(--gt-gold-top) 0%,
            var(--gt-gold-highlight) 18%,
            var(--gt-gold-main) 55%,
            var(--gt-gold-deep) 100%
        ) !important;

    color:
        var(--gt-gold-text) !important;

    border-color:
        var(--gt-gold-border) !important;

    box-shadow:
        0 9px 25px rgba(207,146,29,.40)
        !important;
}


/* ==========================================================================
   GREEN BUTTON
   Same gold edge as the rest of the site.
   ========================================================================== */

.btn-primary-green {

    background:
        linear-gradient(
            135deg,
            #237047 0%,
            #155737 52%,
            #0d3c28 100%
        ) !important;

    color:
        #ffffff !important;

    border:
        1.5px solid var(--gt-gold-main) !important;

    border-radius:
        999px !important;

    box-shadow:
        0 7px 20px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.09)
        !important;
}


.btn-primary-green:hover {

    background:
        linear-gradient(
            135deg,
            #2c8254 0%,
            #1a6540 55%,
            #104830 100%
        ) !important;

    border-color:
        var(--gt-gold-highlight) !important;

    box-shadow:
        0 10px 28px rgba(0,0,0,.36),
        0 0 13px rgba(228,174,47,.15)
        !important;
}


/* ==========================================================================
   GLOBAL GOLD TEXT / ICONS / HIGHLIGHTS
   ========================================================================== */

.section-eyebrow,
.accreditation-label,
.review-stars,
.review-location,
.trust-icon,
.location-links-list li a:hover,
.card-link-btn,
.hero-badge,
.hero-badge-pill,
.lightning-glow,
.faq-question::after {

    color:
        var(--gt-gold-highlight) !important;
}


/* ==========================================================================
   HERO / TRUST PILLS
   ========================================================================== */

.hero-badge,
.hero-badge-pill,
.trust-pill {

    background:
        rgba(228,174,47,.10) !important;

    border-color:
        rgba(249,216,114,.70) !important;
}


/* ==========================================================================
   GOLD BORDERS
   ========================================================================== */

.service-card,
.review-card,
.theme-panel,
.faq-item,
.fb-feed-glass-card,
.video-glass-card,
.emergency-banner-card {

    border-color:
        rgba(228,174,47,.26) !important;
}


.service-card:hover,
.review-card:hover,
.theme-panel:hover,
.faq-item[open] {

    border-color:
        rgba(249,216,114,.68) !important;
}


/* ==========================================================================
   IMAGE / CARD ACCENTS
   ========================================================================== */

.service-card-image,
.about-image-badge {

    border-color:
        rgba(228,174,47,.52) !important;
}


/* ==========================================================================
   SLIDER ARROWS
   ========================================================================== */

.hero-swiper-section .swiper-button-next,
.hero-swiper-section .swiper-button-prev {

    color:
        var(--gt-gold-highlight) !important;

    border-color:
        rgba(228,174,47,.62) !important;
}


.hero-swiper-section .swiper-button-next:hover,
.hero-swiper-section .swiper-button-prev:hover {

    background:
        linear-gradient(
            180deg,
            var(--gt-gold-highlight) 0%,
            var(--gt-gold-main) 60%,
            var(--gt-gold-deep) 100%
        ) !important;

    color:
        var(--gt-gold-text) !important;

    border-color:
        var(--gt-gold-border) !important;
}


/* ==========================================================================
   ACTIVE NAV UNDERLINE
   ========================================================================== */

html[data-theme="hyper-glass"]
.main-navigation
a.active::after,

html[data-theme="hyper-glass"]
.main-navigation
.nav-link.active::after {

    background:
        linear-gradient(
            90deg,
            var(--gt-gold-deep) 0%,
            var(--gt-gold-highlight) 50%,
            var(--gt-gold-deep) 100%
        ) !important;
}


/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */

#scroll-to-top-btn {

    border-color:
        var(--gt-gold-main) !important;

    box-shadow:
        0 6px 20px rgba(0,0,0,.65),
        0 0 8px rgba(228,174,47,.12)
        !important;
}


#scroll-to-top-btn svg {

    stroke:
        var(--gt-gold-highlight) !important;
}
/* ==========================================================================
   GOODBYE TREES — BRIGHT LOGO-GOLD FINAL LOCK
   ========================================================================== */

:root {

    --gt-gold-brightest: #fff3b0;
    --gt-gold-light:     #ffda68;
    --gt-gold:           #f0b52c;
    --gt-gold-rich:      #d99210;
    --gt-gold-deep:      #b66f08;

    --gt-gold-text:      #06291b;

    --secondary-color:   #f0b52c;
    --secondary-dark:    #d99210;
}


/* ==========================================================================
   UNIVERSAL PREMIUM GOLD BUTTON
   ========================================================================== */

.btn-primary,
.btn-emergency-call,
.call-now-btn,
.main-navigation .btn.call-now-btn,
.city-link-btn,
.gallery-lightbox-trigger,
.top-bar-call-btn,

a[href*="contact.php"].btn,
a[href*="contact.php"].btn-primary,
a[href*="contact.php"].btn-secondary,
a[href*="contact.php"].btn-large {

    background:
        linear-gradient(
            180deg,
            #fff3b0 0%,
            #ffda68 18%,
            #f0b52c 50%,
            #d99210 78%,
            #c47d09 100%
        ) !important;

    color:
        #06291b !important;

    border:
        1.5px solid #ffe58b !important;

    border-radius:
        999px !important;

    font-weight:
        800 !important;

    text-shadow:
        none !important;

    box-shadow:
        0 8px 22px rgba(240,181,44,.38),
        0 0 14px rgba(255,218,104,.10),
        inset 0 2px 0 rgba(255,255,255,.72),
        inset 0 -2px 0 rgba(116,65,0,.18)
        !important;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease
        !important;
}


/* Dark green text/icons inside gold buttons */

.btn-primary *,
.btn-emergency-call *,
.call-now-btn *,
.main-navigation .btn.call-now-btn *,
.city-link-btn *,
.gallery-lightbox-trigger *,
.top-bar-call-btn *,
a[href*="contact.php"].btn * {

    color:
        #06291b !important;
}


/* ==========================================================================
   GOLD BUTTON HOVER
   ========================================================================== */

.btn-primary:hover,
.btn-emergency-call:hover,
.call-now-btn:hover,
.main-navigation .btn.call-now-btn:hover,
.city-link-btn:hover,
.gallery-lightbox-trigger:hover,
.top-bar-call-btn:hover,

a[href*="contact.php"].btn:hover,
a[href*="contact.php"].btn-primary:hover,
a[href*="contact.php"].btn-secondary:hover,
a[href*="contact.php"].btn-large:hover {

    background:
        linear-gradient(
            180deg,
            #fff9d1 0%,
            #ffe583 18%,
            #f7c23a 50%,
            #e4a019 78%,
            #ca810b 100%
        ) !important;

    color:
        #041f15 !important;

    border-color:
        #fff0ae !important;

    transform:
        translateY(-2px) !important;

    box-shadow:
        0 12px 32px rgba(240,181,44,.52),
        0 0 20px rgba(255,218,104,.16),
        inset 0 2px 0 rgba(255,255,255,.80)
        !important;
}


/* ==========================================================================
   GREEN / GOLD OUTLINE SECONDARY BUTTONS
   Keep these green — just use the SAME bright gold family.
   ========================================================================== */

.btn-secondary:not([href*="contact.php"]),
.hero-btn-group .btn-secondary:not([href*="contact.php"]) {

    background:
        linear-gradient(
            135deg,
            #0b3c29 0%,
            #072d1e 100%
        ) !important;

    color:
        #ffda68 !important;

    border:
        1.5px solid #f0b52c !important;

    box-shadow:
        0 6px 18px rgba(0,0,0,.28)
        !important;
}


.btn-secondary:not([href*="contact.php"]):hover,
.hero-btn-group .btn-secondary:not([href*="contact.php"]):hover {

    background:
        linear-gradient(
            180deg,
            #fff3b0 0%,
            #ffda68 20%,
            #f0b52c 58%,
            #d99210 100%
        ) !important;

    color:
        #06291b !important;

    border-color:
        #ffe58b !important;

    box-shadow:
        0 9px 26px rgba(240,181,44,.40)
        !important;
}


/* ==========================================================================
   GREEN BUTTONS
   ========================================================================== */

.btn-primary-green {

    background:
        linear-gradient(
            135deg,
            #24764b 0%,
            #145b39 55%,
            #0b402a 100%
        ) !important;

    color:
        #ffffff !important;

    border:
        1.5px solid #f0b52c !important;

    box-shadow:
        0 7px 20px rgba(0,0,0,.30)
        !important;
}


.btn-primary-green:hover {

    background:
        linear-gradient(
            135deg,
            #2d8957 0%,
            #196945 55%,
            #0e4b31 100%
        ) !important;

    border-color:
        #ffda68 !important;
}


/* ==========================================================================
   ALL SMALL GOLD DETAILS
   ========================================================================== */

.section-eyebrow,
.accreditation-label,
.review-stars,
.review-location,
.trust-icon,
.location-links-list li a:hover,
.card-link-btn,
.hero-badge,
.hero-badge-pill,
.lightning-glow,
.faq-question::after {

    color:
        #ffca48 !important;
}


/* Badge borders */

.hero-badge,
.hero-badge-pill,
.trust-pill {

    background:
        rgba(240,181,44,.08) !important;

    border-color:
        rgba(255,218,104,.70) !important;
}


/* ==========================================================================
   GOLD PANEL BORDERS
   ========================================================================== */

.service-card,
.review-card,
.theme-panel,
.faq-item,
.fb-feed-glass-card,
.video-glass-card,
.emergency-banner-card {

    border-color:
        rgba(240,181,44,.28) !important;
}


.service-card:hover,
.review-card:hover,
.theme-panel:hover,
.faq-item[open] {

    border-color:
        rgba(255,218,104,.68) !important;
}


/* ==========================================================================
   NAVIGATION GOLD
   ========================================================================== */

html[data-theme="hyper-glass"]
.main-navigation
a:not(.btn):hover,

html[data-theme="hyper-glass"]
.main-navigation
.nav-link:hover,

html[data-theme="hyper-glass"]
.main-navigation
a.active,

html[data-theme="hyper-glass"]
.main-navigation
.nav-link.active {

    color:
        #ffca48 !important;
}


html[data-theme="hyper-glass"]
.main-navigation
a.active::after,

html[data-theme="hyper-glass"]
.main-navigation
.nav-link.active::after {

    background:
        linear-gradient(
            90deg,
            #d99210 0%,
            #ffda68 50%,
            #d99210 100%
        ) !important;

    box-shadow:
        0 2px 10px rgba(240,181,44,.50) !important;
}


/* ==========================================================================
   SLIDER + SCROLL CONTROLS
   ========================================================================== */

.hero-swiper-section .swiper-button-next,
.hero-swiper-section .swiper-button-prev {

    color:
        #ffda68 !important;

    border-color:
        rgba(240,181,44,.65) !important;
}


#scroll-to-top-btn {

    border-color:
        #f0b52c !important;
}


#scroll-to-top-btn svg {

    stroke:
        #ffda68 !important;
}