/* ===== HERO SECTION (CINEMATIC) ===== */
.hero {
    background: url('/images/pexels-ketut-subiyanto-4246109.jpg') center/cover no-repeat;
    position: relative;
    height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,0,0,.75), rgba(0,0,0,.45));
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero h1 {
        font-size: 3.3rem;
        letter-spacing: -0.5px;
    }

        .hero h1 span {
            color: var(--primary-color);
        }

    .hero p {
        max-width: 720px;
        margin: 18px auto 0;
        font-size: 1.15rem;
        opacity: .9;
    }

    /* ===== HERO ANIMATION ===== */
    .hero h1,
    .hero p,
    .hero .btn {
        animation: heroReveal 1.2s cubic-bezier(.22,.61,.36,1) forwards;
    }

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

        .hero h1 {
            font-size: 2.1rem;
        }

        .hero p {
            font-size: 1rem;
        }
}

/* ========================================================== */
/* ================= PRODUCTS SECTION ======================= */
/* ========================================================== */

.products-section {
    background: linear-gradient(180deg, #faf7f5, #ffffff);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 45px;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 270px;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .45s cubic-bezier(.22,.61,.36,1);
}

    .product-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 22px 55px rgba(0,0,0,.16);
    }

    .product-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .product-card:hover img {
        transform: scale(1.1);
    }

/* ===== PRODUCT OVERLAY ===== */
.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(183,139,107,.95), rgba(140,94,60,.9));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: .45s ease;
    backdrop-filter: blur(4px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* ========================================================== */
/* ================= DRAG EXPERIENCE ======================== */
/* ========================================================== */

.drag-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.drag-item {
    width: 240px;
    background: #fff;
    border-radius: 22px;
    padding: 22px 18px;
    text-align: center;
    cursor: grab;
    border: 1px solid rgba(183,139,107,.35);
    transition: .45s cubic-bezier(.22,.61,.36,1);
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

    .drag-item:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 18px 45px rgba(0,0,0,.15);
    }

    .drag-item h3 {
        color: var(--primary-color);
        margin-top: 12px;
    }

    .drag-item p {
        font-size: .92rem;
        opacity: .8;
    }

.icon {
    width: 75px;
    opacity: .9;
}

/* ===== DROP ZONE ===== */
.drop-zone {
    margin: 65px auto;
    width: 60%;
    height: 160px;
    border: 3px dashed rgba(183,139,107,.6);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: .35s cubic-bezier(.22,.61,.36,1);
    background: linear-gradient(135deg, rgba(183,139,107,.06), rgba(255,255,255,.7));
}

    .drop-zone.drag-over {
        background: linear-gradient(135deg, rgba(183,139,107,.9), rgba(140,94,60,.95));
        color: #fff;
        border-color: transparent;
        transform: scale(1.03);
    }

/* ========================================================== */
/* ================= NAVBAR DROPDOWN ======================== */
/* ========================================================== */

.dropdown-menu {
    background: #fff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
    padding: 10px;
}

.dropdown-item {
    padding: 12px 18px;
    color: var(--text-color);
    font-weight: 500;
    border-radius: 12px;
    transition: .35s ease;
}

    .dropdown-item:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--rose-accent));
        color: #fff;
        transform: translateX(6px);
    }

/* Hover open (desktop) */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }

    .navbar .dropdown-toggle::after {
        transition: transform .35s;
    }

    .navbar .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* Navbar stacking fix */
.navbar,
.navbar-nav,
.dropdown-menu {
    z-index: 20000 !important;
}

/* ========================================================== */
/* ================= EDGE CONTACT BAR ======================= */
/* ========================================================== */

.edge-contact {
    position: fixed;
    top: 50%;
    right: -140px;
    transform: translateY(-50%);
    width: 185px;
    background: linear-gradient(135deg, rgba(183,139,107,.95), rgba(140,94,60,.95));
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: .45s cubic-bezier(.22,.61,.36,1);
    box-shadow: 0 12px 35px rgba(0,0,0,.25);
    z-index: 100000;
}

    .edge-contact:hover {
        right: 0;
    }

.edge-item {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    border-radius: 50%;
    transition: .35s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,.25);
}

    .edge-item:hover {
        transform: scale(1.12);
    }

.edge-back {
    background: #111;
}

.edge-whatsapp {
    background: #25D366;
}

.edge-email {
    background: #0078d7;
}

.edge-app {
    background: #6b4423;
}



/* ===== PARTNERS SECTION ===== */
.partners-section {
    background: linear-gradient(180deg, #fff, #f7f2ef);
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Card Design */
.partner-card {
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    padding: 16px 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    backdrop-filter: blur(6px);
    transition: all .4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .partner-card img {
        height: 60px;
        width: auto;
        filter: none;
        opacity: 1;
        transition: all .4s ease;
    }

    /* Hover Magic ? */
    .partner-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 30px 70px rgba(183,139,107,.35);
    }

        .partner-card:hover img {
            filter: saturate(1.2);
        }

/* Track spacing */
.partners-track {
    display: flex;
    gap: 32px;
    padding-bottom: 12px;
}


/* ========================================================== */
/* ================= 7PACK BUTTON ========================== */
/* ========================================================== */

.btn-7pack {
    background: linear-gradient(135deg, var(--primary-color), var(--rose-accent));
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(0,0,0,.2);
    transition: .35s cubic-bezier(.22,.61,.36,1);
}

    .btn-7pack:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 14px 35px rgba(0,0,0,.3);
    }
