/* ===============================
   PREMIUM HOME – STRUCTURE + PREMIUM
   HERO IS PART OF PAGE (ZOOM SAFE)
   =============================== */

/* RESET SAFETY */
html, body {
    margin: 0;
    padding: 0;
}

/* WRAPPER */
.premium-home {
    background: #0b0f17;
    color: #e5e7eb;
    overflow-x: hidden;
}

/* ===============================
   HEADER (LAYOUT ONLY)
   =============================== */

header {
    background: linear-gradient(180deg, #05070c 0%, #070b14 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ===============================
   HERO – REAL PAGE SECTION
   =============================== */

.premium-home .hero.hero-bg {
    position: relative;
    width: 100%;
    min-height: 85vh;

    background-image:
        linear-gradient(
            180deg,
            rgba(6,10,18,0.65) 0%,
            rgba(6,10,18,0.85) 100%
        ),
        url("../media/heero22222 (1).png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

/* HERO CONTENT GRID */
.premium-home .hero-inner {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 120px 28px;

    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 80px;
    align-items: center;

    position: relative;
    z-index: 2;
}

/* HERO TEXT */
.premium-home .hero-copy h1 {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    margin-bottom: 18px;
}

.premium-home .hero-copy p {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 520px;
}

/* ===============================
   SEARCH BOX – PREMIUM
   =============================== */

.premium-home .search-box {
    background: linear-gradient(
        180deg,
        rgba(22, 30, 52, 0.98),
        rgba(12, 18, 34, 0.98)
    );
    border-radius: 28px;
    padding: 38px;
    box-shadow:
        0 60px 140px rgba(0,0,0,0.75),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

/* ===============================
   SECTIONS
   =============================== */

.premium-home .section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 28px;
}

.premium-home .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.premium-home .card {
    background: linear-gradient(180deg, #0f1524 0%, #0b1220 100%);
    border: 1px solid #1f2933;
    border-radius: 24px;
    padding: 34px;
}

.premium-home .card h3 {
    margin-bottom: 10px;
}

.premium-home .card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* ===============================
   BRAND SLIDER
   =============================== */

.premium-home .brand-section {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 28px;
    text-align: center;
}

.premium-home .brand-box {
    margin-top: 32px;
    background: #0f1524;
    border: 1px solid #1f2933;
    border-radius: 20px;
    overflow: hidden;
    height: 96px;
}

.premium-home .brand-track {
    display: flex;
    align-items: center;
    gap: 76px;
    height: 100%;
    min-width: 200%;
    animation: premium-scroll 36s linear infinite;
}

.premium-home .brand-track img {
    height: 44px;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.premium-home .brand-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes premium-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===============================
   MOBILE – TELEFON ONLY
   =============================== */

@media (max-width: 640px) {

    .premium-home .hero.hero-bg {
        min-height: auto;
        padding: 48px 0;
    }

    .premium-home .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 48px 20px;
    }

    .premium-home .search-box {
        padding: 26px;
        border-radius: 20px;
        box-shadow:
            0 30px 80px rgba(0,0,0,0.55);
    }

    .premium-home .section {
        margin: 56px auto;
        padding: 0 20px;
    }
}
