.hero-section {
    position: relative;
    width: 100%;
    height: clamp(500px, 82vh, 700px);
    background-color: var(--lp-white);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.38);
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: var(--lp-container-padding);
    text-align: center;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--lp-white);
    line-height: 1.2;
}

.hero-title-ar {
    font-family: var(--lp-font-ar);
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 600;
}

.hero-title-en {
    font-family: var(--lp-font-brand);
    font-size: clamp(44px, 5.4vw, 74px);
    font-weight: 900;
    letter-spacing: 0.5px;
}

.accent-letter {
    color: var(--lp-accent);
}

@media (max-width: 768px) {
    .hero-section {
        height: clamp(360px, 58vh, 460px);
    }

    .hero-title {
        gap: 8px;
    }

    .hero-title-ar {
        font-size: clamp(18px, 4.5vw, 25px);
    }

    .hero-title-en {
        font-size: clamp(32px, 8vw, 46px);
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: clamp(320px, 54vh, 400px);
    }

    .hero-title-ar {
        font-size: 18px;
    }

    .hero-title-en {
        font-size: 32px;
    }
}