/*
 * Escalante Cleaning - theme.css
 * Brand: Dark Red/Mahogany Gradient (#0F0505 → #2A0E0E)
 * Replaces green from CleanMax template
 */

/* ─── Root Variables ──────────────────────────────────────────────────────── */
:root {
    --brand-darkest:    #0F0505;   /* near-black red */
    --brand-dark:       #1A0808;
    --brand-mid:        #2A0E0E;   /* deep mahogany/burgundy */
    --brand-accent:     #8B1A1A;   /* warmer red for highlights */
    --brand-accent-lt:  #B22222;   /* firebrick - hover states */
    --brand-gold:       #C8963E;   /* warm gold accent */
    --brand-gold-lt:    #E5B455;

    --text-primary:     #1C1C1C;
    --text-muted:       #6B6B6B;
    --text-white:       #FFFFFF;
    --text-white-70:    rgba(255,255,255,0.75);
    --text-white-50:    rgba(255,255,255,0.5);

    --bg-light:         #F8F6F4;
    --bg-cream:         #F2EDE8;
    --bg-white:         #FFFFFF;

    --gradient-brand:   linear-gradient(135deg, var(--brand-darkest) 0%, var(--brand-mid) 50%, var(--brand-darkest) 100%);
    --gradient-brand-v: linear-gradient(180deg, var(--brand-darkest) 0%, var(--brand-mid) 100%);
    --gradient-accent:  linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-lt) 100%);

    --border-radius:    8px;
    --border-radius-lg: 16px;
    --box-shadow:       0 4px 24px rgba(15,5,5,0.12);
    --box-shadow-lg:    0 8px 48px rgba(15,5,5,0.18);

    --transition:       all 0.3s ease;
    --font-heading:     'Manrope', 'Helvetica Neue', sans-serif;
    --font-body:        'Manrope', 'Helvetica Neue', sans-serif;
}

/* ─── Google Fonts ────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ─── Base Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a { color: var(--brand-accent); transition: var(--transition); }
a:hover { color: var(--brand-accent-lt); }
img { max-width: 100%; height: auto; }

/* ─── Preloader ───────────────────────────────────────────────────────────── */
.preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--brand-darkest);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease;
}
.preloader.loaded { opacity: 0; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo img { width: 160px; margin-bottom: 24px; }
.preloader-spinner {
    width: 40px; height: 40px; margin: 0 auto;
    border: 3px solid var(--text-white-50);
    border-top-color: var(--brand-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Back to Top ─────────────────────────────────────────────────────────── */
#back-to-top {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    width: 44px; height: 44px;
    background: var(--gradient-brand);
    color: var(--text-white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-decoration: none;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); color: var(--text-white); }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--border-radius);
    padding: 12px 28px;
    font-size: 15px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.btn-primary {
    background: var(--gradient-brand);
    border: none;
    color: var(--text-white);
    box-shadow: 0 4px 16px rgba(42,14,14,0.35);
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--gradient-accent);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139,26,26,0.4);
}
.btn-outline-primary {
    border: 2px solid var(--brand-accent);
    color: var(--brand-accent);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--brand-accent);
    color: var(--text-white);
    border-color: var(--brand-accent);
}
.btn-light {
    background: var(--text-white);
    color: var(--brand-dark);
    border: none;
}
.btn-light:hover { background: var(--bg-cream); color: var(--brand-darkest); }
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--text-white);
    background: transparent;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--text-white);
    color: var(--text-white);
}
.btn-gold {
    background: var(--brand-gold);
    color: var(--brand-darkest);
    border: none;
    font-weight: 700;
}
.btn-gold:hover { background: var(--brand-gold-lt); color: var(--brand-darkest); transform: translateY(-2px); }

/* Arrow button style from template */
/* Find .primary_btn, .btn.primary_btn and REPLACE with: */
.primary_btn, .btn.primary_btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px;
    background: #ffffff !important;
    color: #1a0505 !important;
    border: none; border-radius: var(--border-radius);
    font-weight: 700; font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.primary_btn:hover {
    background: #f0f0f0 !important;
    color: #1a0505 !important;
    transform: translateY(-2px);
}
.primary_btn i { transition: transform 0.2s; }
.primary_btn:hover i { transform: translateX(4px); }

.secondary_btn {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.7) !important;
    box-shadow: none !important;
    color: #fff !important;
}
.secondary_btn:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: var(--text-white) !important;
    color: #fff;
}

/* ─── Top Bar ─────────────────────────────────────────────────────────────── */
.top-bar-con {
    background: var(--gradient-brand);
    padding: 9px 0;
    font-size: 13px;
    height: 64px;
}
.top-bar-con .info {
    display: inline-flex; align-items: center; gap: 0px;
    color: var(--e-global-color-white);
    font-size: 14px;
}
.top-bar-con .info i { color: var(--brand-gold); font-size: 12px; }
.top-bar-con a { color: var(--text-white-70); text-decoration: none; }
.top-bar-con a:hover { color: var(--text-white); }
.social-networks { color: var(--text-white-70); font-size: 13px; transition: var(--transition); }
.social-networks:hover { color: var(--brand-gold); }

/* ─── Header ──────────────────────────────────────────────────────────────── */
.site-header {
    background: #ffffff;
    padding: 0;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}
/* Ensure dropdowns appear above page content */
.site-header .dropdown-menu { z-index: 1001; }
.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* Navbar: logo left, links centered, button right */
.site-header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    min-height: 72px;
}

.navbar-brand .logo img {
    height: 150px;
    width: auto;
    display: block;
}
.site-header.scrolled .navbar-brand .logo img { height: 48px; }

/* Nav list — centered, no ms-auto stretch */
.site-header .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin: 0 !important;
}
@media (max-width: 991.98px) {
    .site-header .navbar-nav {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100%;
    }
}

/* Nav links */
.site-header .nav-link {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 14px !important;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
/* .site-header .nav-link::after {
    content: '';
    position: absolute; bottom: 4px; left: 50%; right: 50%;
    height: 2px;
    background: var(--brand-accent);
    transition: all 0.3s ease;
} */
.site-header .nav-link:hover,
.site-header .nav-item.active .nav-link {
    color: #8B1A1A !important;
}
.site-header .navbar-nav .nav-link:hover {
    color: #8B1A1A !important;
    background: none !important;
}

.site-header {
    border-bottom: 1.5px solid #f0f0f0;
}
.site-header .nav-link:hover,
.site-header .nav-item.active .nav-link,
.site-header .navbar-nav .nav-link:hover {
    color: #8B1A1A !important;
}
/* .site-header .nav-link:hover::after,
.site-header .nav-item.active .nav-link::after {
    left: 14px; right: 14px;
} */

figure {
    margin: 5px 20px 0rem 0;
}

/* Dropdown */
.dropdown-menu {
    background: #ffffff;
    border: none;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
    padding: 12px;
    min-width: 240px;
    margin-top: 0 !important;
    top: 100%;
}
.dropdown-item {
    color: #222222;
    font-size: 13.5px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
    display: block;
    border-left: none;
}
.dropdown-item::before { display: none; }
.dropdown-item:hover,
.dropdown-item:focus {
    background: #f7f0f0 !important;
    color: #8B1A1A !important;
    border-radius: 8px !important;
}
.dropdown-item.fw-bold:hover,
.dropdown-item.fw-bold:focus {
    background: #8B1A1A !important;
    color: #ffffff !important;
    border-radius: 8px !important;
}
.dropdown-divider { display: none; }
.dropdown-menu-locations { columns: 2; min-width: 300px; }

/* Quote button — full size, never shrink */
.nav-cta { flex-shrink: 0; }
.nav-quote-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 11px 22px !important;
    background: #8B1A1A !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
    border: none !important;
    box-shadow: none !important;
}
.nav-quote-btn:hover {
    background: #6e1515 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Nav phone */
.phone-link { color: var(--brand-accent) !important; font-weight: 700; font-size: 14px; }
.phone-link:hover { color: var(--brand-accent-lt) !important; }

/* Mobile toggler */
.toggler-line {
    display: block; width: 24px; height: 2px;
    background: var(--text-primary); margin: 5px 0;
    transition: var(--transition);
}

/* ─── Section Labels ──────────────────────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 12px;
}
.section-label::before {
    content: '—';
    margin-right: 8px;
    color: var(--brand-gold);
}

/* ─── Hero / Banner ───────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    background: var(--gradient-brand);
    min-height: 580px;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.18;
}
.hero-overlay-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(ellipse at 20% 50%, rgba(139,26,26,0.3) 0%, transparent 70%),
                      radial-gradient(ellipse at 80% 50%, rgba(200,150,62,0.1) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; }
.hero-tagline {
    font-size: 13px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 16px;
    display: block;
}
.hero-heading {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-subheading {
    font-size: 18px; font-family: var(--font-body);
    color: var(--text-white-70);
    margin-bottom: 36px;
    max-width: 560px;
}
.hero-badges {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: 36px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    font-size: 13px; color: var(--text-white-70);
    backdrop-filter: blur(4px);
}
.hero-badge i { color: var(--brand-gold); }

/* ─── Service Cards ───────────────────────────────────────────────────────── */
.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--box-shadow-lg); }
.service-card-img { overflow: hidden; aspect-ratio: 16/10; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 24px; }
.service-card-icon {
    width: 52px; height: 52px;
    background: var(--gradient-brand);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-size: 22px; color: var(--text-white);
    box-shadow: 0 4px 12px rgba(42,14,14,0.3);
}
.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
}
.service-card .read-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--brand-accent);
    font-weight: 600; font-size: 14px;
    text-decoration: none;
}
.service-card .read-more i { transition: transform 0.2s; }
.service-card .read-more:hover { color: var(--brand-accent-lt); }
.service-card .read-more:hover i { transform: translateX(4px); }

/* ─── Trust / Stats Bar ───────────────────────────────────────────────────── */
.stats-bar {
    background: var(--gradient-brand);
    padding: 50px 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    display: block;
}
.stat-number span { color: var(--brand-gold); }
.stat-label {
    font-size: 14px; color: var(--text-white-70);
    margin-top: 6px; display: block;
    letter-spacing: 0.5px;
}
.stat-divider {
    width: 1px; background: rgba(255,255,255,0.15);
    margin: 0 auto;
}

/* ─── Why Choose Us ───────────────────────────────────────────────────────── */
.choose-us-section { background: var(--bg-light); }
.choose-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 12px rgba(15,5,5,0.06);
    transition: var(--transition);
    height: 100%;
}
.choose-us-section .row {
    row-gap: 24px;
}
.choose-item:hover { box-shadow: var(--box-shadow); transform: translateY(-3px); }
.choose-icon-wrap {
    flex-shrink: 0;
    width: 56px; height: 56px;
    background: var(--gradient-brand);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--text-white);
}
.choose-text h4 { font-size: 1.05rem; margin-bottom: 8px; }
.choose-text p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ─── Pricing ─────────────────────────────────────────────────────────────── */
.pricing-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: 2px solid transparent;
    padding: 36px 32px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--box-shadow-lg); }
.pricing-card.featured {
    background: var(--gradient-brand);
    border-color: var(--brand-gold);
    color: var(--text-white);
}
.pricing-card.featured h3,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-note,
.pricing-card.featured li,
.pricing-card.featured p { color: var(--text-white) !important; }
.pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--brand-gold);
    color: var(--brand-darkest);
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 16px; border-radius: 20px;
    white-space: nowrap;
}
.pricing-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: rgba(139,26,26,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--brand-accent);
}
.pricing-card.featured .pricing-icon {
    background: rgba(255,255,255,0.12);
    color: var(--brand-gold);
}
.pricing-price {
    font-family: var(--font-heading);
    font-size: 3rem; font-weight: 800;
    color: var(--brand-accent);
    line-height: 1;
    margin-bottom: 4px;
}
.pricing-note { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-features { list-style: none; padding: 0; text-align: left; margin-bottom: 28px; }
.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 14px;
    display: flex; align-items: center; gap: 10px;
}
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,0.1); }
.pricing-features li i { color: var(--brand-gold); font-size: 12px; flex-shrink: 0; }

/* ─── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-section { background: var(--bg-cream); }
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--box-shadow);
    position: relative;
    height: 100%;
}
.testimonial-quote {
    position: absolute; top: 20px; right: 24px;
    font-size: 64px; color: var(--brand-accent);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-stars { color: var(--brand-gold); font-size: 14px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--text-primary); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-white); font-weight: 700; font-size: 15px;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 15px; margin: 0; }
.testimonial-location { font-size: 13px; color: var(--text-muted); }

/* ─── Locations Grid — defined in pages.css ───────────────────────────────── */

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-section .accordion-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--border-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-section .accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    background: var(--bg-white);
    padding: 18px 24px;
}
.faq-section .accordion-button:not(.collapsed) {
    color: var(--brand-accent);
    background: var(--bg-light);
    box-shadow: none;
}
.faq-section .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B1A1A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-section .accordion-body {
    font-size: 14px; color: var(--text-muted); line-height: 1.7;
    padding: 16px 24px 20px;
}

/* ─── Quote Form ──────────────────────────────────────────────────────────── */
.quote-form-section {
    background: var(--gradient-brand);
    padding: 80px 0;
}
/* .quote-form-wrap background, field styles, and labels are defined in pages.css
   to avoid cascade conflicts. theme.css only provides structural padding. */
.quote-form-wrap {
    background: linear-gradient(160deg, #1a0808 0%, #300f0f 100%);
    border: 1px solid rgba(200,150,62,0.2);
    border-radius: var(--border-radius-lg);
    padding: 48px;
}
.quote-form-wrap .form-control,
.quote-form-wrap .form-select {
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #ffffff;
    border-radius: var(--border-radius);
    padding: 13px 16px;
    font-size: 14px;
    transition: var(--transition);
}
.quote-form-wrap .form-control::placeholder { color: rgba(255,255,255,0.40); }
.quote-form-wrap .form-select option { background: var(--brand-darkest); color: var(--text-white); }
.quote-form-wrap .form-control:focus,
.quote-form-wrap .form-select:focus {
    background: rgba(255,255,255,0.16);
    border-color: var(--brand-gold);
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(200,150,62,0.2);
}
.quote-form-wrap .form-label {
    color: rgba(255,255,255,0.72);
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

/* Standard form styling (light bg) */
.form-section .form-control,
.form-section .form-select {
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition);
}
.form-section .form-control:focus,
.form-section .form-select:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(139,26,26,0.12);
}
.form-section .form-label { font-weight: 600; font-size: 14px; margin-bottom: 6px; }

/* ─── CTA Band ────────────────────────────────────────────────────────────── */
.need-con, .cta-band {
    background: var(--gradient-brand);
    position: relative;
    overflow: hidden;
}
.need-con { padding: 80px 0; }
.need-con::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(200,150,62,0.08) 0%, transparent 60%);
}
.cta-band-heading { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--text-white); }
.cta-phone {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.8rem; font-weight: 700;
    font-family: var(--font-heading);
}
.cta-phone:hover { color: var(--brand-gold); }
.cta-phone i { font-size: 1.4rem; color: var(--brand-gold); }

/* ─── Hauling Cross-Promo ─────────────────────────────────────────────────── */
.hauling-promo {
    background: linear-gradient(135deg, #1a1008 0%, #2d1b0a 50%, #1a1008 100%);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}
.hauling-promo::before {
    content: '';
    position: absolute; top: -50px; right: -50px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(200,150,62,0.15), transparent 70%);
}
.hauling-promo-icon {
    font-size: 3.5rem; color: var(--brand-gold); margin-bottom: 20px;
}
.hauling-promo h3 { color: var(--text-white); font-size: 1.8rem; margin-bottom: 12px; }
.hauling-promo p { color: var(--text-white-70); font-size: 15px; line-height: 1.7; }
.hauling-link { color: var(--brand-gold); font-weight: 700; }

/* ─── Blog Card ───────────────────────────────────────────────────────────── */
.blog-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--box-shadow-lg); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-category {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--brand-accent);
    margin-bottom: 10px; display: block;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--text-primary); text-decoration: none; }
.blog-card h3 a:hover { color: var(--brand-accent); }
.blog-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.blog-card-meta { font-size: 12px; color: var(--text-muted); }

/* ─── Breadcrumb — layout defined in pages.css ────────────────────────────── */
.breadcrumb-section {
    background: var(--gradient-brand);
    padding: 52px 0 44px;
    position: relative;
    overflow: hidden;
}
.breadcrumb-content { position: relative; z-index: 2; }
.breadcrumb-section h1 { color: var(--text-white); font-size: clamp(1.7rem, 3.5vw, 2.6rem); }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.footer-cta-band {
    background: var(--brand-accent);
    padding: 36px 0;
}
.footer-cta-heading { font-size: 1.5rem; }
.footer-cta-sub { opacity: 0.85; }

.site-footer {
    background: var(--gradient-brand);
    padding: 72px 0 0;
    color: var(--text-white-70);
}
.footer-logo { max-width: 180px; max-height: 120px; object-fit: contain; }
.footer-tagline { font-size: 14px; line-height: 1.7; color: var(--text-white-70); max-width: 320px; }
.footer-contact-link {
    color: var(--text-white-70); text-decoration: none;
    font-size: 14px; transition: var(--transition);
    display: inline-flex; align-items: center;
}
.footer-contact-link:hover { color: var(--brand-gold); }
.footer-contact-link i { color: var(--brand-gold); }
.footer-heading {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--text-white-70); text-decoration: none;
    font-size: 14px; transition: var(--transition);
}
.footer-links a:hover { color: var(--brand-gold); padding-left: 4px; }
.hauling-link { color: var(--brand-gold) !important; }
.footer-locations-cols { columns: 2; gap: 0; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-white-70); font-size: 13px;
    transition: var(--transition); text-decoration: none;
}
.social-btn:hover { background: var(--brand-gold); border-color: var(--brand-gold); color: var(--brand-darkest); }
.footer-bottom { padding-bottom: 28px; }
.footer-copy { font-size: 13px; color: var(--text-white-50); }
.border-top-subtle { border-color: rgba(255,255,255,0.08) !important; }
.text-white-70 { color: var(--text-white-70) !important; }

/* ─── Page Sections — inner page rhythm defined in pages.css ─────────────── */
.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 60px 0; }
/* section-heading, section-subheading, bg-light-custom defined in pages.css */

/* ─── Utility ─────────────────────────────────────────────────────────────── */
.text-brand { color: var(--brand-accent) !important; }
.text-gold { color: var(--brand-gold) !important; }
.bg-brand { background: var(--gradient-brand) !important; }
.bg-light-custom { background: var(--bg-light) !important; }
.rounded-custom { border-radius: var(--border-radius) !important; }
.shadow-custom { box-shadow: var(--box-shadow) !important; }
.divider-gold { width: 60px; height: 3px; background: var(--brand-gold); border-radius: 2px; }

/* ─── Alerts / Notices ────────────────────────────────────────────────────── */
.alert-success { background: #f0fdf4; border-color: #86efac; color: #166534; }
.alert-danger  { background: #fef2f2; border-color: #fca5a5; color: #991b1b; }
.form-success-msg {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    color: var(--text-white);
}

/* ─── Container Width — 80% of viewport ──────────────────────────────────── */
.container,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 80% !important;
    width: 80% !important;
}
@media (max-width: 991.98px) {
    .container,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 94% !important;
        width: 94% !important;
    }
}
@media (max-width: 575.98px) {
    .container,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* ─── AOS overrides ───────────────────────────────────────────────────────── */
[data-aos] { backface-visibility: hidden; }

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .site-header { position: relative !important; }
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 2px solid #f0eded;
        border-radius: 0 0 12px 12px;
        padding: 16px 24px 24px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        z-index: 999;
    }
    .site-header .nav-item {
        width: 100%;
        border-bottom: 1px solid #f5f0f0;
        margin: 0 !important;
    }
    .site-header .nav-item:last-child { border-bottom: none; }
    .site-header .nav-link {
        padding: 14px 4px !important;
        font-size: 15px !important;
        font-weight: 600;
        color: #111 !important;
        width: 100%;
        display: block;
    }
    .dropdown-menu {
        position: static !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 0 8px 16px !important;
        border-radius: 0 !important;
        min-width: 0 !important;
    }
    .dropdown-menu-locations { columns: 1; }
    .dropdown-item {
        font-size: 14px !important;
        padding: 8px 0 !important;
        color: #555 !important;
        background: transparent !important;
        border-radius: 0 !important;
    }
    .dropdown-item:hover { color: #8B1A1A !important; background: transparent !important; }
    .nav-cta {
        padding-top: 16px !important;
        border-top: 1px solid #f0eded;
        width: 100%;
        margin-top: 8px;
    }
    .nav-quote-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex !important;
    }
    .nav-cta { padding: 12px 0 4px; border-top: 1px solid rgba(0,0,0,0.08); margin-top: 8px; }
    .quote-form-wrap { padding: 32px 20px; }
    .hauling-promo { padding: 32px 24px; }
    .footer-locations-cols { columns: 1; }
}

@media (max-width: 767.98px) {
    .hero-section { min-height: 480px; }
    .section-pad { padding: 60px 0; }
    .stats-bar .row > div:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; margin-bottom: 24px; }
}

/* ─── Service Areas Text Links ────────────────────────────────────────────── */
.service-areas-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.area-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}
.area-link i { color: var(--brand-accent); font-size: 12px; }
.area-link:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
}
.area-link:hover i { color: #fff; }

/* ─── Section label plain (no ::before dash) ─────────────────────────────── */
.section-label-plain {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 12px;
}

/* ─── Quote Form Grid (2-col matching original template style) ───────────── */
.contact5-con, .contact2-con {
    background: var(--bg-light);
    padding: 80px 0;
}
.contact_content {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.contact_content h6 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 10px;
}
.contact_content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 28px;
    color: var(--text-primary);
}
.quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.quote-form-grid .form-group {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.quote-form-grid .form-group.input1 { grid-column: 1; }
.quote-form-grid .form-group:not(.input1):not(.full-width) { grid-column: 2; }
.quote-form-grid .form-group.full-width {
    grid-column: 1 / -1;
}
@media (max-width: 767px) {
    .quote-form-grid {
        grid-template-columns: 1fr;
    }
    .quote-form-grid .form-group.input1,
    .quote-form-grid .form-group:not(.input1):not(.full-width) {
        grid-column: 1;
    }
}
.form_style {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    background: #f8f8f8;
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    display: block;
}
.form_style:focus {
    border-color: var(--brand-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
}
.form_style::placeholder { color: #aaa; }
select.form_style { cursor: pointer; }
textarea.form_style { resize: vertical; min-height: 100px; }
.submit_now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 32px;
    background: var(--gradient-brand);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}
.submit_now:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
}
.contact_wrapper { position: relative; padding-top: 40px; }
.contact-bgimage { position: absolute; top: 0; right: 0; left: 0; z-index: 0; }
.contact-bgimage img { width: 100%; }
.contact-image { position: relative; z-index: 1; }
.contact-image img { max-width: 100%; }

/* ─── FAQ accordion-card (original template style) ───────────────────────── */
.faq-con {
    background: var(--bg-light);
    padding: 80px 0;
}
.faq_content h6 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 10px;
    display: block;
}
.faq_content h2 { margin-bottom: 40px; }
.accordion-card {
    background: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}
.accordion-card .card-header {
    background: #fff;
    border: none;
    padding: 0;
}
.accordion-card .card-header .btn-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    text-decoration: none;
    color: var(--text-primary);
    text-align: left;
    border: none;
    background: none;
    transition: var(--transition);
}
.accordion-card .card-header .btn-link h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.4;
}
.accordion-card .card-header .btn-link::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--brand-accent);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.3s;
}
.accordion-card .card-header .btn-link:not(.collapsed) {
    color: var(--brand-accent);
    border-bottom: 1px solid #f0f0f0;
}
.accordion-card .card-header .btn-link:not(.collapsed)::after {
    content: '\f068';
}
.accordion-card .card-body {
    padding: 16px 22px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── Service section label ───────────────────────────────────────────────── */
.service2-con { padding: 80px 0; background: #fff; }
.service_content h6 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 10px;
    display: block;
}
.service_content h2 { margin-bottom: 12px; }
.service_content p { color: var(--text-muted); margin-bottom: 0; }

/* ─── Owl Carousel Services override ─────────────────────────────────────── */
.service-box .service-icon i {
    font-size: 2rem;
    color: var(--brand-accent);
}
.service-box .service-icon { margin-bottom: 12px; }

@media (max-width: 767.98px) {
    .quote-form-grid {
        grid-template-columns: 1fr;
    }
    .quote-form-grid .form-group.input1,
    .quote-form-grid .form-group:not(.input1):not(.full-width) {
        grid-column: 1;
    }
}

.service-box {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    height: 100%;
}
.service-box .service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.service-box .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-box .content {
    padding: 24px;
    text-align: center;
}
.service-box .content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-box .content p {
    font-size: 14px;
    color: #6B6B6B;
    margin-bottom: 16px;
}

.choose-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
}
.choose-item .choose-icon-wrap {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--brand-darkest);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}
.choose-item .choose-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.choose-item .choose-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* .fa-truck:before, .fa-envelope:before, .fa-phone:before, .fa-clock-four:before, .fa-clock:before {
    margin: 0 10px 0 0;
} */

/* ── Mobile hero overflow fix ────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .home2_banner_outer,
    .banner2-con {
        overflow: visible;
    }
    .banner-starimage,
    .banner-circleimage {
        display: none;
    }
    .banner_content h1 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        line-height: 1.2 !important;
    }
    .banner_content h6 {
        font-size: 13px !important;
        letter-spacing: 2px;
    }
    .banner_content .button {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .banner_content .button .primary_btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }

    .banner2-con .banner_content h6 {
        width: auto !important;
    }

    .banner2-con {
    padding: 50px 0 200px !important;
}
}

@media (max-width: 991.98px) {
    .banner_content h6 {
        font-size: 12px !important;
        letter-spacing: 2px;
        white-space: nowrap;
    }
    .banner_content h1 {
        font-size: clamp(2.2rem, 9vw, 3rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 28px !important;
    }
    .banner_content .button {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .banner_content .button .primary_btn {
        width: auto !important;
        min-width: 200px;
        max-width: 260px;
        padding: 14px 28px !important;
        font-size: 15px !important;
        border-radius: 8px !important;
    }
}

@media (max-width: 991.98px) {
    /* Fix carousel slide overlap */
    .banner2-con .owl-item {
        position: relative;
    }
    .banner2-con .owl-stage-outer {
        overflow: hidden;
    }
    
    /* Fix h6 tagline overflow */
    .banner_content h6 {
        font-size: 11px !important;
        letter-spacing: 1.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    /* Tighten h1 */
    .banner_content h1 {
        font-size: 2.2rem !important;
        line-height: 1.15 !important;
        margin-bottom: 24px !important;
        text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    }

    /* Size down buttons */
    .banner_content .button .primary_btn {
        padding: 13px 24px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
        width: auto !important;
        min-width: 180px;
        max-width: 240px;
    }

    /* Fix fadeOut animation overlap */
    .banner2-con .owl-carousel .animated {
        animation-duration: 0.4s;
    }
    .banner2-con .owl-carousel .owl-animated-out {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
}

/* ── Fix jumpy scroll — contain AOS repaints ─────────────────────────────── */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
}
[data-aos] {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* ── Fix sticky header scroll jump ───────────────────────────────────────── */
.site-header {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.top-bar-con {
    position: relative;
    z-index: 1041;
}

