:root {
    /* Core Palette - Exact Colors */
    --bg-primary: #3b3f2a;
    --bg-primary-alt: #4a4f32;
    --bg-secondary: #1f2326;
    
    /* Accent Colors - Worn & Aged */
    --accent-gold: #b59b5a;
    --accent-gold-dark: #9a8250;
    --accent-olive: #6b7b3a;
    --accent-olive-worn: #5a6a32;
    --accent-olive-dark: #3b3f2a;
    --mud-brown: #4a4538;
    
    /* Text Colors */
    --text-primary: #e8e4d8;
    --text-secondary: #c6b98b;
    
    /* Legacy mappings */
    --text-heading: #e8e4d8;
    --text-body: #c6b98b;
    --white: #e8e4d8;
    --black: #1f2326;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-primary);
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(181, 155, 90, 0.03) 98px,
            rgba(181, 155, 90, 0.03) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(181, 155, 90, 0.03) 98px,
            rgba(181, 155, 90, 0.03) 100px
        );
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-secondary);
    z-index: 1000;
    padding: 8px 0;
    border-bottom: 1px solid var(--accent-gold);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0.7;
}

.top-bar-content span:not(.divider) {
    color: var(--accent-gold);
    opacity: 0.9;
}

.divider {
    color: rgba(181, 155, 90, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 32px;
    width: 100%;
    background: var(--bg-secondary);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 63, 42, 0.8) 0%, transparent 25%),
        radial-gradient(circle at 60% 70%, rgba(74, 79, 50, 0.7) 0%, transparent 25%),
        radial-gradient(circle at 80% 40%, rgba(31, 35, 38, 0.9) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(59, 63, 42, 0.75) 0%, transparent 25%),
        radial-gradient(circle at 10% 60%, rgba(74, 79, 50, 0.65) 0%, transparent 25%),
        radial-gradient(circle at 90% 20%, rgba(31, 35, 38, 0.85) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(59, 63, 42, 0.7) 0%, transparent 30%),
        radial-gradient(circle at 30% 10%, rgba(74, 79, 50, 0.8) 0%, transparent 25%),
        radial-gradient(circle at 70% 90%, rgba(31, 35, 38, 0.9) 0%, transparent 25%);
    background-size: 200% 200%;
    background-position: 0% 0%;
    z-index: 1002;
    padding: 16px 0;
    transition: none;
    border-bottom: 1px solid var(--accent-gold);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.nav-brand {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    transition: opacity 0.3s ease;
    overflow: visible;
    z-index: 1002;
    flex: 0 1 auto;
    min-width: 0;
    margin-left: 100px;
}

.nav-brand:hover {
    opacity: 0.8;
}

.nav-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: -40px;
    position: relative;
    z-index: 1002;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active::after {
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-olive);
    color: var(--text-primary);
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 12px;
    transition: none;
    border: 2px solid var(--accent-olive-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-cta:hover {
    background: var(--accent-olive);
    border-color: var(--accent-olive-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1003;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
    border-bottom: 3px solid var(--accent-gold);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}


.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(30%) brightness(0.75) contrast(1.1) saturate(0.85);
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: var(--text-primary);
    max-width: 640px;
    margin: 0 auto;
    padding: 32px 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(27, 31, 38, 0.4);
    border: 1px solid rgba(181, 155, 90, 0.6);
    padding: 5px 14px;
    border-radius: 0;
    margin-bottom: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-primary);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 9vw, 108px);
    font-weight: 500;
    line-height: 0.9;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-line-1 {
    display: block;
    color: #e8e4d8;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

.title-line-2 {
    display: block;
    color: #e8e4d8;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

.title-line-2.white-text {
    color: #e8e4d8;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    background: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    margin-top: 10px !important;
    margin-bottom: 14px !important;
    max-width: 75%;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    text-align: center;
}

.hero-subtitle * {
    background: none !important;
    box-shadow: none !important;
}

.hero-subtitle-blur {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(25, 30, 22, 0.30);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #e8e4d8;
    font-weight: 500;
    line-height: 1.35;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.9);
    border-radius: 2px;
    font-size: clamp(14px, 1.7vw, 17px);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-phone-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: none;
    text-decoration: underline;
    text-decoration-color: var(--accent-gold);
    text-underline-offset: 3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-phone-link:hover {
    color: #ffffff;
}

.btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: none;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-olive-worn);
    color: var(--text-primary);
    border-color: var(--accent-olive-dark);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5);
    border-radius: 0;
    border-width: 1px;
}

.btn-primary:hover {
    background: var(--accent-olive-worn);
    border-color: var(--accent-olive-dark);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-olive);
    border: 2px solid var(--accent-olive-dark);
    border-radius: 0;
}

.btn-secondary:hover {
    background: transparent;
}

.btn-full {
    width: 100%;
}

.hero-location {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    color: var(--text-secondary);
}

.location-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 16px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.3;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent-gold);
    opacity: 0.6;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 24px;
    font-weight: 300;
}

/* Services Section */
.services {
    background: var(--bg-secondary);
    padding: 80px 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(181, 155, 90, 0.3);
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: rgba(181, 155, 90, 0.2);
}

.services-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.services .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: left;
}

.services .section-title::after {
    display: none;
}

.services-intro {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 48px 0;
    font-weight: 400;
    max-width: 65ch;
    opacity: 0.85;
}

.services-bands {
    margin: 0;
    padding: 0 0 0 24px;
    width: 100%;
    position: relative;
}

.service-rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(181, 155, 90, 0.3);
    z-index: 1;
}

.service-band {
    display: flex;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    gap: 20px;
    position: relative;
}

.service-band::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: rgba(181, 155, 90, 0.3);
}

.service-band-header {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    min-width: 180px;
    flex-shrink: 0;
    opacity: 1;
}

.service-band-indent-items .service-band-items {
    padding-left: 24px;
}

.service-band-indent-header .service-band-header {
    padding-left: 24px;
}

.service-band-divider {
    width: 1px;
    height: 20px;
    background: rgba(181, 155, 90, 0.3);
    flex-shrink: 0;
}

.service-band-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    flex: 1;
}

.service-band-items span {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.75;
}

.service-item-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-check-icon {
    color: rgba(181, 155, 90, 0.5);
    flex-shrink: 0;
    opacity: 0.7;
}

.service-separator-vertical {
    width: 1px;
    height: 14px;
    background: rgba(181, 155, 90, 0.25);
    margin: 0 12px;
    flex-shrink: 0;
}

.service-band-divider-full {
    height: 1px;
    background: rgba(181, 155, 90, 0.15);
    width: 100%;
    margin: 0;
}

/* Operational Bar */
.operational-bar {
    width: 100%;
    padding: 60px 0;
    background-image: url('assets/junk-removal-services.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--accent-gold);
}

.operational-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 35, 38, 0.45);
    z-index: 1;
}

.operational-bar-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 100%;
    padding: 0 20px;
}

.operational-beat {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.operational-separator {
    width: 1px;
    height: 32px;
    background: rgba(181, 155, 90, 0.75);
    flex-shrink: 0;
}

/* Why Choose Us Section */
.why-choose {
    background: var(--bg-secondary);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 0;
    border-left: 3px solid var(--accent-gold);
    border-top: 1px solid var(--accent-gold);
    border-right: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    transition: none;
    position: relative;
    color: var(--text-secondary);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-gold);
    opacity: 0.6;
}

.feature-card:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.feature-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--accent-gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding: 0 8px;
    border-bottom: 1px solid var(--accent-gold);
    opacity: 0.25;
}

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* About Section */
.about {
    background: var(--bg-primary);
    color: var(--text-secondary);
    position: relative;
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    border-color: rgba(181, 155, 90, 0.2);
}

.about .section-title {
    color: var(--text-primary);
}

.about .section-title::after {
    background: var(--accent-gold);
}

.about .section-subtitle {
    color: var(--text-secondary);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-description p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.95;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 48px;
    flex-wrap: wrap;
    gap: 32px;
    position: relative;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.3;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    border: 1px solid var(--accent-gold);
    border-color: rgba(181, 155, 90, 0.2);
    min-width: 120px;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--accent-olive);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gold);
    opacity: 0.3;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.4);
    border-left: 2px solid var(--accent-gold);
    border-top: 1px solid var(--accent-gold);
    border-right: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    color: var(--text-secondary);
    position: relative;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--accent-gold);
    opacity: 0.5;
}

.contact-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-link {
    color: var(--accent-olive);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    transition: none;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.contact-link:hover {
    color: var(--accent-olive);
}

.contact-item p {
    color: var(--text-secondary);
    margin: 4px 0;
    font-size: 15px;
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--accent-gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid var(--accent-gold);
    border-radius: 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: none;
    background: #ffffff;
    color: #1f2326;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(31, 35, 38, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-olive);
    background: #ffffff;
    box-shadow: 0 0 0 1px var(--accent-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: var(--text-secondary);
    padding: 60px 0 24px;
    border-top: 3px solid var(--accent-gold);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(181, 155, 90, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.1;
    opacity: 1;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent-gold);
    margin-top: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    max-width: 500px;
}

.footer-cta {
    margin-top: 16px;
}

.footer-phone {
    display: block;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 6px;
    transition: none;
}

.footer-phone:hover {
    color: var(--accent-gold);
}

.footer-cta-note {
    color: var(--text-secondary);
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-column:first-child,
.footer-column:nth-child(2) {
    margin-top: 8px;
}

.footer-column h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: none;
    font-size: 14px;
    opacity: 0.8;
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
}

.footer-info ul li {
    color: var(--text-secondary);
    font-size: 14px;
    opacity: 0.9;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 2px solid var(--accent-gold);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(181, 155, 90, 0.3), transparent);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 12px;
    opacity: 0.75;
    margin: 0;
}

.footer-veteran-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 9px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.45;
    padding: 4px 12px;
    border: 1px solid rgba(181, 155, 90, 0.25);
}

/* Responsive Design */
@media (max-width: 968px) {
    .top-bar-content {
        flex-direction: column;
        gap: 4px;
        font-size: 11px;
    }

    .divider {
        display: none;
    }

    .top-bar {
        padding: 6px 0;
    }

    .navbar {
        top: 50px;
        padding: 8px 0;
    }

    .nav-logo {
        height: 90px;
        margin-bottom: -30px;
        width: auto;
        object-fit: contain;
    }

    .navbar .container {
        position: relative;
        z-index: 1002;
        padding: 0 16px;
        gap: 16px;
        overflow: visible;
    }

    .nav-brand {
        flex: 0 0 auto;
        overflow: visible;
        margin-left: 75px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background: var(--bg-secondary);
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(59, 63, 42, 0.95) 0%, transparent 25%),
            radial-gradient(circle at 60% 70%, rgba(74, 79, 50, 0.95) 0%, transparent 25%),
            radial-gradient(circle at 80% 40%, rgba(31, 35, 38, 0.98) 0%, transparent 25%);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 120px 0 32px 0;
        gap: 0;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-menu li {
        width: 100%;
        padding: 16px 0;
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        font-size: 18px;
    }

    .hamburger {
        display: flex;
        z-index: 1003;
        position: relative;
        flex-shrink: 0;
        margin-left: auto;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-cta {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 5px 0;
    }

    .navbar {
        top: 48px;
        padding: 6px 0;
    }

    .nav-logo {
        height: 80px;
        margin-bottom: -25px;
        width: auto;
        object-fit: contain;
    }

    .navbar .container {
        padding: 0 12px;
        gap: 12px;
        overflow: visible;
    }

    .nav-brand {
        flex: 0 0 auto;
        overflow: visible;
        margin-left: 72px;
    }

    .hamburger {
        padding: 6px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-image {
        height: 100%;
        min-height: 100vh;
    }

    .hero-image img {
        object-fit: cover;
        object-position: center center;
        width: 100%;
        height: 100%;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .services-bands {
        padding-left: 20px;
    }
    
    .service-rail {
        width: 1px;
    }
    
    .service-band {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
    }
    
    .service-band::before {
        left: -20px;
        width: 6px;
    }
    
    .service-band-header {
        min-width: auto;
        font-size: 22px;
        padding-left: 0 !important;
    }
    
    .service-band-divider {
        display: none;
    }
    
    .service-band-items {
        width: 100%;
        gap: 0;
        padding-left: 0 !important;
    }
    
    .service-separator-vertical {
        margin: 0 8px;
    }
    
    .services .section-title {
        font-size: 42px;
    }
    
    .services-illustration-bg {
        width: 250px;
        height: 200px;
    }
    
    .operational-bar {
        padding: 40px 0;
    }
    
    .operational-bar-content {
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .operational-beat {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .operational-separator {
        height: 24px;
    }

    .about-stats {
        flex-direction: column;
    }
}

/* Service Detail Pages */
.service-detail-hero {
    background: var(--bg-secondary);
    padding: 200px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/commercial-junk-removal-truck.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: grayscale(30%) brightness(0.75) contrast(1.1) saturate(0.85);
    z-index: 0;
    object-fit: cover;
}

.service-residential-hero::after {
    background-image: url('assets/residential-junk-removal-hero.webp');
    background-position: center 35%;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-hauling-hero::after {
    background-image: url('assets/hauling-services-hero.webp');
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-disposal-hero::after {
    background-image: url('assets/disposal-services-hero.webp');
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.service-detail-hero .container {
    position: relative;
    z-index: 2;
}

.service-detail-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 9vw, 108px);
    font-weight: 500;
    color: #e8e4d8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
    line-height: 0.9;
}

.service-detail-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: #e8e4d8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

.service-detail-content {
    background: var(--bg-primary);
    padding: 80px 0;
}

.service-detail-section {
    max-width: 900px;
    margin: 0 auto 40px;
}

.service-detail-section:last-child {
    margin-bottom: 0;
}

/* Service Badge Bar */
.service-badge-bar {
    width: 100%;
    background: var(--bg-secondary);
    padding: 32px 0;
    margin: 0;
    border-top: 1px solid rgba(181, 155, 90, 0.2);
    border-bottom: 1px solid rgba(181, 155, 90, 0.2);
}

.service-badge-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.service-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.service-badge-icon {
    width: 48px;
    height: 48px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background: rgba(181, 155, 90, 0.1);
}

.service-badge-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-gold);
    fill: none;
}

.service-badge-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.service-detail-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(181, 155, 90, 0.2);
}

.service-detail-section p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-section ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.service-detail-section ul li {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 12px 0 12px 32px;
    position: relative;
}

.service-detail-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.service-detail-section ol {
    list-style: decimal;
    padding-left: 32px;
    margin: 24px 0;
}

.service-detail-section ol li {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 12px 0;
    margin-bottom: 16px;
}

.service-detail-section ol li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.service-detail-cta {
    background: var(--bg-secondary);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--accent-gold);
}

.cta-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-section-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-cta .btn {
    margin: 0 8px;
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 160px 0 60px;
    }
    
    .service-detail-content {
        padding: 60px 0;
    }
    
    .service-detail-section {
        margin-bottom: 40px;
    }
    
    .service-detail-cta {
        padding: 60px 0;
    }
    
    .service-detail-cta .btn {
        display: block;
        margin: 8px auto;
        width: 100%;
        max-width: 300px;
    }
    
    .service-badge-bar {
        padding: 24px 0;
        margin: 0;
    }
    
    .service-badge-bar-content {
        gap: 24px;
    }
    
    .service-badge-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-badge-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Services Grid Page */
.services-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.service-card-link:hover {
    transform: translateY(-4px);
}

.service-card-page {
    background: var(--bg-secondary);
    border: 1px solid rgba(181, 155, 90, 0.2);
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.service-card-link:hover .service-card-page {
    border-color: rgba(181, 155, 90, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-card-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.service-card-link:hover .service-card-page::before {
    opacity: 1;
}

.service-card-page h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(181, 155, 90, 0.2);
}

.service-card-page p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card-page ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-card-page ul li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 8px 0 8px 24px;
    position: relative;
}

.service-card-page ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.service-link-text {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    display: inline-block;
    transition: transform 0.2s ease;
}

.service-card-link:hover .service-link-text {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .services-grid-page {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card-page {
        padding: 32px 24px;
    }
}
