/* ============================================================
   Influsway.ae — UAE variant overrides
   Loaded AFTER landing-base.css
============================================================ */

/* ============================================================
   HERO — UAE
============================================================ */

.hero-section.hero-ae {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

/* background image */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* cinematic overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgb(0 0 0 / 5%) 28%, rgba(0, 0, 0, 0.14) 52%, rgba(0, 0, 0, 0) 72%);
}

/* content wrapper */
.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-copy {
    position: relative;
    z-index: 6;

    max-width: 620px; /* reduced width */
    padding-top: 40px;

    margin-left: 2vw; /* subtle editorial offset */
}

/* headline */
.hero-copy h1 {
    color: #fff;

    font-size: 70px;

    line-height: 0.98;
    font-weight: 600; /* reduced from 700 */

    letter-spacing: -2.2px;

    margin-bottom: 56px; /* more breathing room */

    max-width: 640px;
}

/* buttons */
.hero-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-buttons a {
    min-width: 250px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 30px;

    border-radius: 12px;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.2px;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}
.hero-section.hero-ae .btn-brands {

    background:
        linear-gradient(
            135deg,
            #FF4D8D 0%,
            #5B61FF 100%
        );

    color: #fff;

    border: 1px solid transparent;

    box-shadow:
        0 10px 30px rgba(91,97,255,0.25);
}

.hero-section.hero-ae .btn-brands:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(91,97,255,0.35);
}
/* creator button */
.hero-section.hero-ae .btn-creators {

    background: rgba(255,255,255,0.12);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    color: #fff;

    border: 1px solid rgba(255,255,255,0.24);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.18);
}

.hero-section.hero-ae .btn-creators:hover {

    background: rgba(255,255,255,0.22);

    border-color: rgba(255,255,255,0.42);

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.25);
}

/* majlis teaser */
.majlis-teaser-link {
    position: relative;
    z-index: 10;

    display: inline-block;
    margin-top: 38px;

    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;

    transition:
        transform .25s ease,
        color .25s ease,
        opacity .25s ease;
}

.majlis-teaser-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================================
   MARKETPLACE — UAE variant
============================================================ */

.market-place-section.market-ae {
    position: relative;
    overflow: hidden;
}

.market-place-section.market-ae::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.20),
            rgba(0,0,0,0.20)
        );

    pointer-events: none;
    z-index: 1;
}

.market-place-section.market-ae .landing-container {
    position: relative;
    z-index: 2;
}

/* ============================================================
   MOBILE / TABLET
============================================================ */

@media (max-width: 991px) {

    .hero-section.hero-ae {
        min-height: 82vh;
        padding: 120px 20px 80px;
        align-items: flex-start;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0.62) 0%,
                rgba(0,0,0,0.46) 38%,
                rgba(0,0,0,0.20) 70%,
                rgba(0,0,0,0.10) 100%
            );
    }

    .hero-copy {
        max-width: 100%;
        padding-top: 0;
    }

    .hero-copy h1 {
    font-size: clamp(40px, 11vw, 58px);
    line-height: 1.02;
    letter-spacing: -1.5px;
    margin-bottom: 42px;
}

   .hero-buttons {
    flex-direction: row;
    gap: 16px;
}

.hero-buttons a {
    min-width: unset;

    padding: 17px 22px;
}

    .majlis-teaser-link {
        margin-top: 34px;
        font-size: 14px;
    }
}

/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 576px) {

    .hero-section.hero-ae {
        padding: 110px 18px 70px;
    }

    .hero-copy h1 {
        font-size: 38px;
        line-height: 1.05;
    }

    .hero-buttons a {
        font-size: 15px;
        padding: 14px 48px;
    }
}