/* ═══════════════════════════════════════════════════════
   INNER PAGE HERO — Premium Panoramic Design
   ═══════════════════════════════════════════════════════ */

.inner-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* ── Per-page backgrounds ── */
.inner-hero--about {
    background-image: none;
}



.inner-hero--portfolio {
    background-image: url('../../assets/try-image/banner.png');
}

.inner-hero--packages {
    background-image: url('../../assets/try-image/banner.png');
}

.inner-hero--combo {
    background-image: url('../../assets/try-image/banner.png');
}

.inner-hero--contact {
    background-image: url('../../assets/try-image/banner.png');
}

/* ── Subtle gradient overlay for text readability ── */
.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(123, 158, 255, 0.05) 0%,
            rgba(132, 163, 250, 0.15) 50%,
            rgba(100, 140, 255, 0.25) 100%);
    z-index: 1;
}

/* ═══ Hero Content Container ═══ */
.hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1550px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px 55px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* ── Left: Title ── */
.hero-left {
    flex-shrink: 0;
}

.hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: heroSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

/* ── Horizontal accent line ── */
.hero-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    min-width: 60px;
    opacity: 0;
    animation: heroLineGrow 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

/* ── Right: Tagline ── */
.hero-right {
    flex-shrink: 0;
    max-width: 400px;
}

.hero-tagline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(20px, 1.6vw, 24px);
    font-weight: 400;
    font-style: bold;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(16px);
    animation: heroSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

/* ═══ Animations ═══ */
@keyframes heroSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroLineGrow {
    from {
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left center;
    }

    to {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: left center;
    }
}

/* ═══════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    .inner-hero {
        height: 45vh;
        min-height: 340px;
    }

    .hero-inner {
        padding: 0 40px 45px;
        gap: 30px;
    }

    .hero-tagline {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .inner-hero {
        height: 40vh;
        min-height: 300px;
        align-items: flex-end;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 28px 40px;
        gap: 16px;
    }

    .hero-line {
        width: 80px;
        min-width: unset;
        flex: unset;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .hero-right {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .inner-hero {
        height: 38vh;
        min-height: 260px;
    }

    .hero-inner {
        padding: 0 20px 30px;
        gap: 12px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-tagline {
        font-size: 13px;
    }

    .hero-line {
        width: 60px;
    }
}

/* ── Video Background ── */
.inner-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    will-change: transform;
}