/* Theme Name: Gone Today Junk Removal | Version: 4.0 */
:root {
    --primary-blue: #0057B8; --deep-blue: #003A82; --charcoal: #111111; --steel-grey: #88888C; --sky-blue: #DCEAF4;
    --font-heading: 'Poppins', sans-serif; --font-body: 'Liberation Sans', Arial, sans-serif;
}

/* HIDE THE WP TITLE VIRUS */
.page-content > h1:first-child, .entry-title, .post-title, h1.text-center { display: none !important; }

body { font-family: var(--font-body); color: var(--charcoal); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* NAV STYLES */
.site-header { background: #fff; padding: 20px 0; border-bottom: 1px solid var(--sky-blue); position: sticky; top: 0; z-index: 100; }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.nav-menu { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-menu a { text-decoration: none; color: var(--charcoal); font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.nav-menu li:last-child a { background: var(--charcoal); color: #fff; padding: 12px 24px; }

/* ECHO HERO GRID */
.hero-wrapper { max-width: 1400px; margin: 80px auto; padding: 0 40px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-title { font-size: 90px; line-height: 0.9; text-transform: uppercase; letter-spacing: -3px; margin-bottom: 30px; }
.text-blue { color: var(--primary-blue); }
.hero-copy { font-size: 22px; color: var(--steel-grey); margin-bottom: 40px; }

/* TRUST CARDS */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--sky-blue); }
.stat-box { padding: 40px 20px; text-align: center; border: 1px solid var(--sky-blue); background: #fff; }
.stat-box.dark { background: var(--charcoal); color: #fff; border-color: var(--charcoal); grid-column: 1 / -1; }
.stat-box h3 { font-size: 48px; line-height: 1; margin-bottom: 10px; }

/* BUTTONS */
.btn { background: var(--primary-blue); color: #fff; padding: 18px 40px; text-decoration: none; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; display: inline-block; }

/* CALCULATOR */
.calc-item { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid var(--sky-blue); align-items: center; }
.item-controls button { background: var(--sky-blue); border: none; width: 30px; height: 30px; cursor: pointer; font-weight: bold; }
.item-controls input { width: 40px; text-align: center; border: none; font-weight: bold; background: transparent; }

@media (max-width: 1024px) { .hero-wrapper { grid-template-columns: 1fr; } .hero-title { font-size: 60px; } }