/* =========================================
   LUCKY HAULING & JUNK REMOVAL YEG
   Brand Colors: Deep Navy #0D1B2A, Forest Green #2D7A3A, White
   ========================================= */

:root {
    --navy:       #0D1B2A;
    --navy-mid:   #142233;
    --navy-light: #1E3148;
    --green:      #2D7A3A;
    --green-hover:#236130;
    --green-light:#3a9e4a;
    --white:      #FFFFFF;
    --off-white:  #F4F6F9;
    --text-muted: #8A9BB8;
    --border:     rgba(255,255,255,0.08);

    --font-head: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 6%; }
.accent { color: var(--green-light); }

/* BUTTONS */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green); color: var(--white);
    padding: 14px 32px; border-radius: 6px;
    font-family: var(--font-head); font-size: 1rem; font-weight: 600;
    letter-spacing: 0.5px; border: none; cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { background: var(--green-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,122,58,0.35); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    padding: 13px 32px; border-radius: 6px;
    font-family: var(--font-head); font-size: 1rem; font-weight: 600;
    letter-spacing: 0.5px; border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer; transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.w-full { width: 100%; justify-content: center; }

/* SECTION LABELS */
.section-label {
    display: inline-block; background: rgba(45,122,58,0.2); border: 1px solid rgba(45,122,58,0.5);
    color: var(--green-light); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05; font-weight: 700; margin-bottom: 16px;
}
.section-sub {
    font-size: 1.05rem; color: var(--text-muted); max-width: 620px; line-height: 1.7; margin-bottom: 50px;
}

/* =========================================
   PRELOADER
   ========================================= */
#preloader {
    position: fixed; inset: 0; background: var(--navy);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 9999; transition: opacity 0.6s ease;
}
.preloader-logo { width: 120px; height: 120px; object-fit: contain; border-radius: 4px; margin-bottom: 30px; }
.preloader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
#preloader-fill { width: 0%; height: 100%; background: var(--green); border-radius: 2px; transition: width 0.15s ease; }
#preloader p { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 3px; color: var(--text-muted); margin-top: 16px; text-transform: uppercase; }

/* =========================================
   HEADER
   ========================================= */
#site-header {
    position: absolute; top: auto; left: 0; width: 100%; z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 20, 30, 0.45);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(45,122,58,0.15);
    transition: all var(--transition);
}
#site-header.scrolled {
    position: fixed; top: 0;
    background: rgba(10, 20, 30, 0.92);
    border-bottom-color: rgba(45,122,58,0.3);
    padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* LOGO */
.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-wrap {
    width: 60px; height: 60px; border-radius: 4px; overflow: hidden;
    background: transparent; flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    display: flex; align-items: center; justify-content: center;
}
.logo-img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; line-height: 1.25; }
.logo-text small { font-size: 0.7rem; font-weight: 400; color: var(--text-muted); display: block; }

.nav { display: flex; gap: 32px; }
.nav a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; color: rgba(255,255,255,0.8); transition: color var(--transition); }
.nav a:hover { color: var(--green-light); }

.btn-call {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green); color: var(--white);
    padding: 10px 22px; border-radius: 6px;
    font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px;
    white-space: nowrap; transition: all var(--transition);
}
.btn-call:hover { background: var(--green-hover); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

.mobile-nav {
    display: none; flex-direction: column;
    padding: 16px 6% 24px;
    border-top: 1px solid var(--border);
    background: var(--navy);
}
.mobile-nav a { padding: 12px 0; font-size: 1rem; border-bottom: 1px solid var(--border); color: rgba(255,255,255,0.8); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-call { background: var(--green); text-align: center; padding: 14px !important; border-radius: 6px; border: none !important; font-family: var(--font-head); font-weight: 600; margin-top: 12px; }

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding-top: 100px; overflow: hidden;
}
.hero-slides {
    position: absolute; inset: 0; z-index: 0;
}
.hero-slides img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0;
    transition: opacity 1.5s ease;
}
.hero-slides img.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(13,27,42,0.96) 0%,
        rgba(13,27,42,0.78) 55%,
        rgba(13,27,42,0.45) 100%
    );
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 60px 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(45,122,58,0.15); border: 1px solid rgba(45,122,58,0.5);
    color: var(--green-light); padding: 7px 16px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 24px;
}
.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--green-light);
    box-shadow: 0 0 0 0 rgba(58,158,74,0.4);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(58,158,74,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(58,158,74,0); }
    100% { box-shadow: 0 0 0 0 rgba(58,158,74,0); }
}
.hero-title {
    font-family: var(--font-head); font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 1.1; font-weight: 700; margin-bottom: 24px; letter-spacing: 0.5px;
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-title.revealed { opacity: 1; transform: translateY(0); }
.hero-sub {
    font-size: 1.15rem; color: rgba(255,255,255,0.75); line-height: 1.65;
    max-width: 680px; margin-bottom: 36px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.hero-sub.revealed { opacity: 1; transform: translateY(0); }
.hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}
.hero-actions.revealed { opacity: 1; transform: translateY(0); }
.hero-stats {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    opacity: 0; transition: opacity 0.8s ease 0.6s;
}
.hero-stats.revealed { opacity: 1; }
.stat strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--green-light); }
.stat span { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.5px; }
.stat-div { width: 1px; height: 36px; background: var(--border); }
.hero-scroll-cue {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 2; color: rgba(255,255,255,0.3); animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* =========================================
   MARQUEE STRIP
   ========================================= */
.marquee-strip { overflow: hidden; padding: 0; background: var(--navy-mid); }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: marqueeScroll 50s linear infinite; padding: 12px 0; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-track img { width: 260px; height: 180px; object-fit: cover; border-radius: 6px; flex-shrink: 0; transition: transform var(--transition); }
.marquee-track img:hover { transform: scale(1.05); cursor: pointer; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar { background: var(--navy-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    padding: 20px 4%;
    max-width: 1300px;
    margin: 0 auto;
}
.trust-item {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.85rem;
}
.trust-item svg { color: var(--green-light); flex-shrink: 0; width: 20px; height: 20px; }

@media(max-width: 1024px) {
    .trust-inner { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media(max-width: 768px) {
    .trust-inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px; padding: 20px 5%;
    }
    .trust-item {
        font-size: 0.8rem; justify-content: flex-start;
    }
    .trust-item svg { width: 18px; height: 18px; }
}

/* =========================================
   SERVICES
   ========================================= */
.services-section { padding: 100px 0; background: var(--navy); }
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.service-card {
    background: var(--navy-mid); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: border-color var(--transition), transform var(--transition);
    grid-column: span 4;
}
.service-card:hover { border-color: rgba(45,122,58,0.5); transform: translateY(-4px); }
.service-card.featured { grid-column: span 8; display: flex; }
.service-card.featured .svc-photo-wrap { flex: 0 0 55%; }

.svc-photo-wrap { height: 220px; overflow: hidden; background: var(--navy-light); }
.service-card.featured .svc-photo-wrap { height: auto; }
.svc-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .svc-photo { transform: scale(1.06); }

.svc-body { padding: 28px; }
.svc-num { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: rgba(45,122,58,0.2); line-height: 1; margin-bottom: 10px; }
.svc-body h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 12px; }
.svc-body p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.svc-list { list-style: none; margin-bottom: 20px; }
.svc-list li { font-size: 0.88rem; color: rgba(255,255,255,0.7); padding: 4px 0; padding-left: 18px; position: relative; }
.svc-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-light); }
.svc-cta { font-family: var(--font-head); font-size: 0.9rem; color: var(--green-light); font-weight: 600; transition: color var(--transition); }
.svc-cta:hover { color: var(--white); }

/* =========================================
   GALLERY MASONRY
   ========================================= */
.gallery-section { padding: 10px 0 100px; background: var(--navy); }
.gallery-masonry {
    columns: 4; column-gap: 14px;
    padding: 40px 6%;
}
.gallery-masonry img {
    width: 100%; margin-bottom: 14px;
    border-radius: 8px; break-inside: avoid;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: zoom-in;
}
.gallery-masonry img:hover { transform: scale(1.03); box-shadow: 0 12px 32px rgba(0,0,0,0.5); }
.gallery-cta-wrap { text-align: center; padding-top: 20px; }

/* =========================================
   REVIEWS
   ========================================= */
.reviews-section { padding: 10px 0 100px; background: var(--navy); }
.reviews-feature-img {
    margin-bottom: 32px; border-radius: var(--radius); overflow: hidden;
    background: var(--navy-mid);
}
.reviews-feature-img img {
    width: 100%; height: auto; object-fit: contain; object-position: center top;
    display: block; max-height: 80vh;
}
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; margin-top: 0; }
.review-card {
    background: var(--navy-mid); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 30px;
    transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover { border-color: rgba(45,122,58,0.4); transform: translateY(-3px); }
.review-stars { color: #F5C518; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.82); font-style: italic; margin-bottom: 20px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--green); display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.9rem; }
.reviewer-info span { font-size: 0.78rem; color: var(--text-muted); }

.reviews-total {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
    margin-top: 50px; padding: 30px; background: var(--navy-light); border-radius: var(--radius);
    border: 1px solid var(--border);
}
.total-score { display: flex; align-items: center; gap: 20px; }
.score-number { font-family: var(--font-head); font-size: 4rem; font-weight: 700; color: var(--green-light); line-height: 1; }
.score-stars { color: #F5C518; font-size: 1.4rem; margin-bottom: 4px; }
.score-stars + p { font-size: 0.85rem; color: var(--text-muted); }

/* =========================================
   WHY US
   ========================================= */
.why-section { padding: 100px 0; background: var(--navy-mid); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-photo-stack { position: relative; }
.why-photo { width: 100%; border-radius: var(--radius); }
.wp-main { object-fit: cover; height: 520px; }
.wp-float {
    position: absolute; bottom: -30px; right: -30px;
    width: 55%; height: 280px; object-fit: cover;
    border: 4px solid var(--navy-mid);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.why-text-col > p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.why-points { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
    width: 32px; height: 32px; border-radius: 50%; background: rgba(45,122,58,0.2);
    border: 1px solid rgba(45,122,58,0.5); color: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem; flex-shrink: 0; margin-top: 2px;
}
.why-point strong { display: block; margin-bottom: 4px; font-size: 0.97rem; }
.why-point p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

/* =========================================
   CONTACT
   ========================================= */
.contact-section { padding: 100px 0; background: var(--navy); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-text > p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-line {
    display: flex; align-items: center; gap: 12px;
    font-size: 1rem; color: rgba(255,255,255,0.8);
    transition: color var(--transition);
}
.contact-line:hover { color: var(--green-light); }
.contact-line svg { color: var(--green-light); flex-shrink: 0; }

.quote-card {
    background: var(--navy-light); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px;
}
.quote-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 28px; }
.quote-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--navy); border: 1px solid var(--border);
    color: var(--white); padding: 12px 16px; border-radius: 6px;
    font-family: var(--font-body); font-size: 0.95rem;
    transition: border-color var(--transition);
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45,122,58,0.2);
}
.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer { background: var(--navy-mid); padding: 70px 0 0; border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 50px; }
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; max-width: 300px; }
.footer-logo-wrap { width: 64px; height: 64px; border-radius: 50%; background: var(--white); padding: 6px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); text-align: center; }

/* =========================================
   STICKY MOBILE CTA
   ========================================= */
.sticky-cta {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    z-index: 900; display: none;
}
.sticky-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green); color: var(--white);
    padding: 14px 32px; border-radius: 50px;
    font-family: var(--font-head); font-weight: 700; font-size: 1rem;
    box-shadow: 0 8px 32px rgba(45,122,58,0.5);
    transition: all var(--transition);
}
.sticky-btn:hover { background: var(--green-hover); transform: translateY(-2px); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .service-card { grid-column: span 1 !important; }
    .service-card.featured { flex-direction: column; }
    .service-card.featured .svc-photo-wrap { height: 260px; flex: none; }
    .why-inner { grid-template-columns: 1fr; }
    .wp-float { right: 0; }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .gallery-masonry { columns: 3; }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .btn-call { display: none; }
    .hamburger { display: flex; }
    .mobile-nav.open { display: flex; }
    .trust-inner { gap: 0; }
    .trust-item { flex: 0 0 50%; padding: 14px 16px; font-size: 0.82rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 2; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .reviews-total { flex-direction: column; text-align: center; }
    .sticky-cta { display: block; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .trust-item { flex: 0 0 100%; }
    .gallery-masonry { columns: 2; }
}

/* =========================================
   PROMO BANNER
   ========================================= */
.promo-banner {
    background: #0d1b2a;
    color: var(--white); position: relative; z-index: 1001;
    display: flex; align-items: center; justify-content: center;
    gap: 18px; padding: 0 56px 0 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(45,122,58,0.3);
    overflow: hidden;
}
.promo-banner::before {
    content: ''; display: block; flex-shrink: 0;
    width: 4px; height: 100%; min-height: 44px;
    background: var(--green); align-self: stretch;
    margin-right: 4px;
}
.promo-icon { display: none; }
.promo-text { padding: 11px 0; line-height: 1.45; }
.promo-text strong { font-weight: 700; color: #7dda8a; }
.promo-cta {
    background: var(--green); color: var(--white);
    padding: 7px 20px; border-radius: 4px; font-weight: 700; font-size: 0.82rem;
    white-space: nowrap; transition: all var(--transition); flex-shrink: 0;
    letter-spacing: 0.02em;
}
.promo-cta:hover { background: var(--green-hover); transform: translateY(-1px); }
.promo-close {
    background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer;
    font-size: 0.9rem; transition: all var(--transition);
    position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
    width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.promo-close:hover { color: white; background: rgba(255,255,255,0.1); }
@media(max-width: 768px) {
    .promo-banner {
        flex-direction: column; text-align: center;
        padding: 0 40px 0 0; gap: 8px;
    }
    .promo-banner::before { width: 100%; height: 3px; min-height: 3px; margin-right: 0; }
    .promo-text { padding: 10px 12px 4px; }
    .promo-cta { margin-bottom: 12px; }
    .promo-close { top: 10px; transform: none; }
}

/* =========================================
   SMS BUTTON
   ========================================= */
.btn-sms {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    color: var(--white); padding: 14px 28px; border-radius: 6px;
    font-family: var(--font-head); font-size: 1rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3); transition: all var(--transition);
}
.btn-sms:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* =========================================
   BEFORE / AFTER SLIDER
   ========================================= */
.before-after-section { padding: 100px 0; background: var(--navy-mid); }
.ba-scroll-wrap {
    margin: 40px auto 0;
    width: 100%;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}
.ba-scroll-wrap::-webkit-scrollbar { height: 8px; }
.ba-scroll-wrap::-webkit-scrollbar-track { background: var(--navy); border-radius: 4px; }
.ba-scroll-wrap::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }

.ba-scroll-item {
    scroll-snap-align: center;
    flex: 0 0 90%;
    max-width: 900px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}
@media(min-width: 900px) {
    .ba-scroll-item { flex: 0 0 900px; }
}
.ba-scroll-img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section { padding: 100px 0; background: var(--navy); }
.pricing-toggle-wrap { display: flex; gap: 0; margin-bottom: 40px; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; width: fit-content; }
.pricing-toggle {
    padding: 12px 32px; background: transparent; color: var(--text-muted);
    border: none; cursor: pointer; font-family: var(--font-head); font-size: 1rem; font-weight: 600;
    transition: all var(--transition); letter-spacing: 0.5px;
}
.pricing-toggle.active { background: var(--green); color: var(--white); }

.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 50px; }
.price-card {
    background: var(--navy-mid); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px; text-align: center;
    position: relative; transition: all var(--transition);
}
.price-card:hover { border-color: rgba(45,122,58,0.5); transform: translateY(-4px); }
.price-card.popular { border-color: var(--green); box-shadow: 0 8px 30px rgba(45,122,58,0.2); }
.popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--green); color: var(--white); font-size: 0.72rem;
    font-weight: 700; letter-spacing: 1px; padding: 4px 12px; border-radius: 50px;
    white-space: nowrap; font-family: var(--font-head);
}
.truck-icon { font-size: 1.8rem; margin-bottom: 6px; }
.price-card h4 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 6px; }
.price-example { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.4; }
.price-val {
    font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
    color: var(--green-light); transition: all 0.3s;
}

.special-items { background: var(--navy-light); border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); margin-bottom: 36px; }
.special-items h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 24px; }
.special-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-bottom: 20px; }
.special-item {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--navy-mid); padding: 12px 16px; border-radius: 6px;
    border: 1px solid var(--border);
}
.special-item span { font-size: 0.9rem; }
.special-item strong { color: var(--green-light); font-family: var(--font-head); }
.pricing-note { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.pricing-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================
   FAQ
   ========================================= */
.faq-section { padding: 100px 0; background: var(--navy-mid); }
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; max-width: 800px; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-q {
    width: 100%; background: var(--navy-light); border: none; color: var(--white);
    padding: 20px 24px; text-align: left; font-family: var(--font-body); font-size: 1rem;
    font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    transition: background var(--transition);
}
.faq-q:hover { background: var(--navy); }
.faq-q span { font-size: 1.4rem; color: var(--green-light); transition: transform var(--transition); flex-shrink: 0; margin-left: 16px; }
.faq-q.open { color: var(--green-light); }
.faq-q.open span { transform: rotate(45deg); }
.faq-a { display: none; padding: 20px 24px; background: var(--navy-mid); }
.faq-a.open { display: block; }
.faq-a p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.faq-a a { color: var(--green-light); }

/* =========================================
   B2B SECTION
   ========================================= */
.b2b-section { padding: 100px 0; background: var(--navy-light); }
.b2b-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.b2b-text > p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.b2b-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; }
.b2b-list li { font-size: 0.95rem; color: rgba(255,255,255,0.8); padding-left: 4px; }
.b2b-photo img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

/* =========================================
   REFERRAL SECTION
   ========================================= */
.referral-section {
    padding: 80px 20px; text-align: center;
    background: var(--navy);
}
.referral-inner { 
    display: flex; flex-direction: column; align-items: center; gap: 16px; 
    background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
    padding: 60px 40px; border-radius: var(--radius);
}
.referral-icon { font-size: 3rem; }
.referral-section .section-title { color: var(--white); }
.referral-section p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 520px; line-height: 1.6; }
.referral-section .btn-primary { background: var(--white); color: var(--green); }
.referral-section .btn-primary:hover { background: var(--off-white); }

/* =========================================
   SERVICE AREAS
   ========================================= */
.areas-section { padding: 100px 0; background: var(--navy); }
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 50px; }
.area-tag {
    background: var(--navy-mid); border: 1px solid var(--border);
    padding: 8px 20px; border-radius: 50px; font-size: 0.88rem;
    color: rgba(255,255,255,0.75); transition: all var(--transition);
}
.area-tag:hover { border-color: var(--green); color: var(--green-light); cursor: default; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* =========================================
   REVIEWS EXTRA
   ========================================= */
.reviews-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-leave-review {
    display: inline-flex; align-items: center; gap: 8px;
    background: #F5C518; color: #111; padding: 13px 28px; border-radius: 6px;
    font-family: var(--font-head); font-size: 0.95rem; font-weight: 700;
    transition: all var(--transition);
}
.btn-leave-review:hover { background: #d4a800; transform: translateY(-2px); }

/* =========================================
   FLOATING QUOTE WIDGET
   ========================================= */
.float-widget { position: fixed; bottom: 24px; right: 24px; z-index: 800; }
.float-trigger {
    display: flex; align-items: center; gap: 8px;
    background: var(--green); color: var(--white);
    padding: 14px 22px; border-radius: 50px; border: none; cursor: pointer;
    font-family: var(--font-head); font-size: 0.95rem; font-weight: 600;
    box-shadow: 0 8px 30px rgba(45,122,58,0.5);
    transition: all var(--transition);
}
.float-trigger:hover { background: var(--green-hover); transform: translateY(-2px); }
.float-panel {
    position: absolute; bottom: 64px; right: 0;
    width: 300px; background: var(--navy-light);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: none;
}
.float-panel.open { display: block; }
.float-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.float-panel-head h4 { font-family: var(--font-head); font-size: 1.1rem; }
.float-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.1rem; transition: color var(--transition); }
.float-close:hover { color: var(--white); }
.float-panel > p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }
.float-action-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 12px; border-radius: 6px; margin-bottom: 10px;
    font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
    background: var(--green); color: var(--white); transition: all var(--transition);
}
.float-action-btn:hover { background: var(--green-hover); }
.float-action-btn.float-sms { background: var(--navy); border: 1px solid var(--border); }
.float-action-btn.float-sms:hover { border-color: var(--green); }

/* =========================================
   STICKY MOBILE CTA
   ========================================= */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; width: 100%;
    display: none; z-index: 900;
    background: var(--navy-mid); border-top: 1px solid var(--border);
    padding: 10px 16px; gap: 10px;
}
.sticky-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--green); color: var(--white);
    padding: 13px; border-radius: 6px;
    font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
    transition: all var(--transition);
}
.sticky-btn:hover { background: var(--green-hover); }
.sticky-sms { background: var(--navy-light); border: 1px solid var(--border); }
.sticky-sms:hover { background: var(--navy); border-color: var(--green); }

/* FOOTER CERT BADGES */
.footer-cert-badges { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.cert-badge {
    background: rgba(45,122,58,0.2); border: 1px solid rgba(45,122,58,0.4);
    color: var(--green-light); font-size: 0.78rem; font-weight: 600;
    padding: 4px 12px; border-radius: 50px;
}

/* TRUST VERIFIED */
.trust-verified { color: rgba(255,255,255,0.85); transition: color var(--transition); cursor: pointer; }
.trust-verified:hover { color: var(--white); }
.trust-verified svg { flex-shrink: 0; }

/* MOBILE SMS CTA in nav */
.mobile-sms {
    background: rgba(45,122,58,0.15) !important;
    border: 1px solid rgba(45,122,58,0.3) !important;
    color: var(--green-light) !important;
    border-radius: 6px; padding: 12px !important;
    margin-top: 6px !important; text-align: center;
}

/* PRICING RESPONSIVE */
@media(max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .b2b-inner { grid-template-columns: 1fr; }
}
@media(max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .pricing-cta-row { flex-direction: column; }
    .float-widget { display: none; }
    .sticky-cta { display: flex; }
    .reviews-actions { flex-direction: column; }
    .hero { min-height: auto; padding-top: 100px; padding-bottom: 50px; }
    .hero-content { text-align: center; align-items: center; display: flex; flex-direction: column; padding: 20px 0; }
    .hero-badge { align-self: center; margin-bottom: 16px; }
    .hero-title { text-align: center; }
    .hero-sub { text-align: center; max-width: 100%; margin-bottom: 24px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
}
@media(max-width: 480px) {
    .pricing-grid { grid-template-columns: 1fr; }
}
