/* =========================
   PREMIUM SUPPORT SYSTEM
========================= */

.support {
    background: #ffffff;
}

/* =========================
   LAYOUT
========================= */

.support-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;

    margin-top: 50px;
}

/* =========================
   LEFT MENU (PREMIUM LOOK)
========================= */

.support-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;

    position: sticky;
    top: 90px;

    padding-left: 10px;
}

/* LEFT MENU ITEM */
.support-item {
    text-align: left;

    padding: 16px 18px;

    border-radius: 14px;

    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.9);

    font-size: 0.95rem;
    font-weight: 600;

    color: #0f172a;

    cursor: pointer;

    line-height: 1.4;

    transition: all 0.25s ease;

    position: relative;
    overflow: hidden;
}

/* hover */
.support-item:hover {
    transform: translateX(6px);
    background: #ffffff;
    border-color: rgba(20, 184, 166, 0.35);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

/* active state */
.support-item.active {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

/* subtle active glow */
.support-item.active::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left, rgba(255,255,255,0.15), transparent 60%);
}

/* =========================
   ACTIVE SIDE BAR (YOUR ORIGINAL FEATURE, FIXED)
========================= */

.support-menu::before {
    content: "";
    position: absolute;
    left: 0;

    width: 3px;
    height: 60px;

    background: linear-gradient(180deg, #14b8a6, #0f172a);
    border-radius: 10px;

    transform: translateY(0px);
    transition: transform 0.35s ease;
}

/* JS controlled states */
.support-menu[data-active="turnovers"]::before { transform: translateY(0px); }
.support-menu[data-active="bookings"]::before { transform: translateY(72px); }
.support-menu[data-active="consistency"]::before { transform: translateY(144px); }
.support-menu[data-active="staging"]::before { transform: translateY(216px); }
.support-menu[data-active="supplies"]::before { transform: translateY(288px); }

/* =========================
   RIGHT CONTENT AREA
========================= */

.support-content {
    position: relative;
}

/* PANEL BASE */
.support-panel {
    display: none;

    opacity: 0;
    transform: translateY(10px);

    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* ACTIVE PANEL */
.support-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   H3 (NOW GREEN BRAND CONSISTENT)
========================= */

.support-panel h3 {
    font-size: 1.6rem;
    font-weight: 700;

    letter-spacing: -0.02em;

    color: #0f766e;

    margin-bottom: 18px;

    position: relative;
    display: inline-block;
}

/* underline accent */
.support-panel h3::after {
    content: "";
    display: block;

    width: 60px;
    height: 2px;

    margin-top: 8px;

    background: linear-gradient(90deg, #14b8a6, transparent);
    opacity: 0.7;
}

/* =========================
   MINI GRID
========================= */

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

/* =========================
   MINI CARDS
========================= */

.mini-card {
    padding: 18px;

    border-radius: 16px;

    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid rgba(226, 232, 240, 0.9);

    transition: all 0.25s ease;

    position: relative;
    overflow: hidden;
}

/* top glow line */
.mini-card::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.6), transparent);

    opacity: 0;
    transition: opacity 0.25s ease;
}

/* hover effect */
.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.mini-card:hover::before {
    opacity: 1;
}

/* text */
.mini-card h4 {
    font-size: 1rem;
    font-weight: 650;

    color: #0f172a;

    margin-bottom: 6px;
}

.mini-card p {
    font-size: 0.92rem;
    line-height: 1.6;

    color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .support-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .support-menu {
        position: relative;
        top: auto;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }
}