/* Hero Section Module */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-primary-dark);
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero::before {
        background-position: center top;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.8) 0%, rgba(45, 55, 72, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: white;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
    }
    
    .hero-stats {
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }
}

/* Interior Page Hero */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    background: var(--color-primary-dark);
    padding: clamp(80px, 12vw, 140px) var(--spacing-md);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1523419400524-220b7d00e8f3?w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.75);
    transform: scale(1.02);
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.82) 0%, rgba(45, 55, 72, 0.72) 100%);
    z-index: 2;
}

.page-hero .section-container {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    width: 100%;
}

.page-hero h1 {
    color: white;
    font-size: clamp(2.4rem, 3vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-md);
    line-height: 1.15;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 420px;
        text-align: center;
        padding: clamp(64px, 18vw, 96px) var(--spacing-md);
    }

    .page-hero h1 {
        font-size: clamp(2rem, 8vw, 2.4rem);
    }

    .page-hero-subtitle {
        font-size: 1.05rem;
        margin: 0 auto;
    }
}

