/* Hide equipment section temporarily */
.equipment-section {
    display: none;
}

/* Reduce spacing between climate control and gallery */
.climate-section {
    padding-bottom: 2rem;
}

.project-gallery {
    padding-top: 2rem;
}

/* Remove white box around logo */
.logo-container {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0.5rem 1rem !important;
}

/* CONCEPT 4: Card Overlay Hero - More Transparent */
.hero {
    background: url(https://hcdne.com/wp-content/uploads/2026/03/HCDNEHero.jpg) center center/cover no-repeat !important;
    min-height: 600px !important;
    padding: 6rem 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
}

.hero::before {
    display: none !important;
}

/* HERO CONTENT BOX */
.hero-content {
    background: rgba(26, 29, 35, 0.75) !important;
    padding: 3rem 4rem !important;
    border-radius: 12px !important;
    border-left: 6px solid #dc2626 !important;
    max-width: 700px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
    backdrop-filter: blur(5px) !important;
    position: relative !important;
    z-index: 1 !important;
    text-align: center !important;
    display: block !important;
}

/* TWO-LINE HERO TITLE */
.hero h1 {
    display: block !important;
    max-width: 700px !important;
    margin: 0 auto 1.5rem !important;
    font-size: 0 !important;
    text-align: center !important;
    position: relative !important;
}

.hero h1::before {
    content: 'INDIRECT HEATING' !important;
    display: block !important;
    font-size: 4rem !important;
    color: white !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5) !important;
    text-align: center !important;
}

.hero h1::after {
    content: 'EXPERTS' !important;
    display: block !important;
    font-size: 4rem !important;
    color: white !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5) !important;
    margin-top: 0.2rem !important;
    text-align: center !important;
}

.hero-subtitle {
    font-size: 1.3rem !important;
    color: #ff6b35 !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5) !important;
    text-align: center !important;
    display: block !important;
}

/* Tagline section */
.tagline-section {
    background: #dc2626;
    color: white;
    text-align: center;
    padding: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* SEO Service Area */
.seo-service-area {
    background: #f9fafb;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 4px solid #ff6b35;
}

.seo-service-area h3 {
    font-size: 1.8rem;
    color: #1a1d23;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.seo-service-area .states-list {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5058;
}

.seo-service-area .states-list strong {
    color: #dc2626;
    font-weight: 700;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 500px !important;
        padding: 3rem 1rem !important;
    }
    
    .hero-content {
        padding: 2rem 1.5rem !important;
    }
    
    .hero h1::before,
    .hero h1::after {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .tagline-section {
        font-size: 1.2rem;
        padding: 1.5rem 1rem;
    }
    
    .seo-service-area .states-list {
        font-size: 1rem;
    }
}