/* ============================================
   TRADE PAGES PRODUCTION CSS
   Consolidated styling for all trade pages
   Matches homepage design exactly
   ============================================ */

/* ============================================
   1. WARNING BANNER
   ============================================ */
.industrial-notice {
    background: #ffd93d; /* Safety yellow */
    color: #1a1a1a;
    padding: 12px 0;
    position: relative;
    z-index: 100;
}

.industrial-notice .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.notice-content svg {
    flex-shrink: 0;
}

.notice-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* ============================================
   2. HERO SECTION - COMPACT LIKE HOMEPAGE
   ============================================ */
.trade-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px 0;
    margin: 0;
    min-height: auto;
    height: auto;
    position: relative;
    overflow: hidden;
}

.trade-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/public/images/construction-pattern.svg') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 800px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #ff6b35;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0 0 25px 0;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 0 0 30px 0;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffd93d;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-massive-industrial {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #ff6b35;
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 3px solid #ff6b35;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.btn-massive-industrial:hover {
    background: transparent;
    color: #ff6b35;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
}

/* CTA button styling for gradient backgrounds */
.industrial-cta-section .btn-massive-industrial {
    background: #1a1a1a;
    color: white;
    border: 3px solid #1a1a1a;
}

.industrial-cta-section .btn-massive-industrial:hover {
    background: white;
    color: #1a1a1a;
    border: 3px solid white;
}

/* Ensure SVG arrows display correctly */
.btn-massive-industrial svg {
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

/* Outline button variant */
.btn-massive-industrial-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: #1a1a1a;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 3px solid #1a1a1a;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.btn-massive-industrial-outline:hover {
    background: #1a1a1a;
    color: white;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
}

/* Outline button on gradient backgrounds */
.industrial-cta-section .btn-massive-industrial-outline {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.industrial-cta-section .btn-massive-industrial-outline:hover {
    background: white;
    color: #1a1a1a;
}

.btn-massive-industrial-outline svg {
    fill: currentColor;
}

/* ============================================
   3. CONTENT SECTIONS
   ============================================ */
section {
    padding: 60px 0;
    position: relative;
}

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

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin: 0 0 40px 0;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Pain Points Section */
.pain-points {
    background: #f5f5f5;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pain-card {
    background: #ffffff;
    padding: 30px;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pain-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

.pain-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    background: #ffffff;
}

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

.benefits-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0 0 30px 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Equipment Section */
.equipment-section {
    background: #f5f5f5;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.equipment-item {
    background: #ffffff;
    padding: 20px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.equipment-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ff6b35;
}

.equipment-item h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.equipment-item p {
    font-size: 0.9rem;
    color: #4a4a4a;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8f5a 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.3rem;
    margin: 0 0 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    display: inline-block;
    padding: 18px 40px;
    background: #ffffff;
    color: #ff6b35;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 3px solid #ffffff;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.btn-white:hover {
    background: transparent;
    color: #ffffff;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
}

/* ============================================
   4. FOOTER - MATCH HOMEPAGE EXACTLY
   ============================================ */
.industrial-footer {
    background: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Work Sans', sans-serif;
}

.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-badge {
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin: 0;
    color: #ffffff;
    letter-spacing: 2px;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    color: #808080;
}

.contact-quick .phone-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffd93d;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-quick .phone-big:hover {
    color: #ff6b35;
}

.open-hours {
    display: block;
    font-size: 0.9rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-section h3,
.footer-trust h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin: 0 0 20px 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links-section ul li a {
    color: #808080;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-section ul li a:hover {
    color: #ff6b35;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.trust-badge-item {
    text-align: center;
}

.badge-icon {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #ffd93d;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.8rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom {
    padding: 20px 0;
    background: #0d0d0d;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #808080;
}

.footer-legal {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-legal a {
    color: #808080;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff6b35;
}

.footer-legal span {
    color: #4a4a4a;
}

/* ============================================
   5. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .trade-hero {
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .btn-massive-industrial {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   6. REMOVE ANY CONFLICTING STYLES
   ============================================ */
/* Override any previous trade page fixes */
.trade-hero.plumber-hero,
.trade-hero.electrician-hero,
.trade-hero.builder-hero,
.trade-hero.carpenter-hero,
.trade-hero.heating-hero {
    /* Use base trade-hero styles */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Ensure no excessive heights */
.trade-hero,
.hero-content,
.hero-inner {
    min-height: unset !important;
    max-height: none !important;
    height: auto !important;
}

/* Ensure proper spacing between sections */
.trade-hero + section {
    margin-top: 0;
}

/* Remove any warning banner styles that might conflict */
.warning-banner {
    display: none !important; /* We'll use industrial-notice instead */
}