.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero image behaves like background */
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark overlay for contrast */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    /*background: rgba(0, 0, 0, 0.45);*/
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Pattern overlay (kept from your design) */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    z-index: 2;
    /*background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v6h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");*/
}

/* Content above everything */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

/* Typography */
.hero-title {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 1);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-normal);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* CTA */
.hero-cta {
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: white;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

    .hero-cta:hover {
        background: var(--color-accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(255, 107, 53, 0.3);
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: calc(100vh - var(--header-height));
    }

    .hero-title {
        margin-bottom: var(--spacing-sm);
    }

    .hero-subtitle {
        margin-bottom: var(--spacing-md);
        padding: 0 1rem;
    }

    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}