/* WRAPPER */
.about-hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* BACKGROUND PHOTO (LEFT) */
.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 110%;
    height: 110%;
    background-image: url("../img/eqp/studio/6.webp");
    background-size: cover;
    background-position: left center;
    will-change: transform;
    transition: transform 0.1s linear;
    z-index: 1;
}

/* OVERLAYS */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.65) 0%,
            rgba(255, 255, 255, 0.25) 35%,
            rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
    z-index: 2;
}

.about-hero-focus-layer {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(4px);
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(0, 0, 0, 0.2) 55%,
            rgba(0, 0, 0, 0.4) 90%);
    pointer-events: none;
    z-index: 3;
}

/* LAYOUT FLEX: LEFT (image) + RIGHT (text) */
.about-hero-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 7%;
}

/* Left kosong sebagai placeholder foto */
.about-hero-left {
    flex: 1;
}

/* Teks kanan */
.about-hero-right {
    flex: 1;
    max-width: 550px;
    text-align: left;
}

.about-hero-right h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--cream) !important;
}

.about-hero-right h1 strong {
    font-weight: 700;
}

.about-hero-right h1 em {
    font-style: italic;
}

.about-hero-right h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.about-hero-right p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .about-hero-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* ⬅ tengah secara vertical */
        align-items: center;
        /* ⬅ center horizontal */
        min-height: 100vh;
        /* ⬅ biar benar-benar full layar */
        padding: 20px;
        text-align: center !important;
    }

    .about-hero-left {
        display: none;
    }

    .about-hero-right {
        max-width: 90%;
        text-align: center !important;
        /* ⬅ teks center */
        color: #fff;
        /* pastikan terbaca di atas image */
        margin-top: 200px;
    }

    .about-hero-right h1,
    .about-hero-right h3,
    .about-hero-right p {
        text-align: center !important;
    }
}

.eqp-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #00adcc;
    background: radial-gradient(circle at top left, #00adcc, #2fb1a2);
    font-size: 0.8rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--eqp-accent);
}

.eqp-hero-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #fed7aa, #cbb18a);
    box-shadow: 0 0 0 5px rgba(203, 177, 138, 0.25);
}

.eqp-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 2rem;
}

.eqp-hero-meta-item {
    min-width: 120px;
}

.eqp-hero-meta-label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 0.35rem;
}

.eqp-hero-meta-value {
    font-size: 0.9rem;
    color: #fed7aa;
}


.eqp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.4rem;
}

.eqp-btn-primary,
.eqp-btn-ghost {
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background 0.18s ease-out, border-color 0.18s ease-out;
}

.eqp-btn-primary {
    background: radial-gradient(circle at top left, #f9ead5, #cbb18a);
    color: #23180e;
    box-shadow: var(--eqp-shadow-soft);
}

.eqp-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.6);
}

.eqp-btn-ghost {
    background: #00adcc;
    border-color: rgba(247, 243, 236, 0.25);
    color: #ffffff;
}

.eqp-btn-ghost:hover {
    background: #f9ead5;
    transform: translateY(-1px);
    color: #00adcc;
}

.eqp-arrow {
    font-size: 1.1rem;
    transform: translateY(1px);
}