/* Wholesale Page Styles */

:root {
    --wholesale-accent: #7f8565;
    --wholesale-text-light: #4b4b4b;
    --bg-primary: #faf8f5;
    --bg-secondary: #f5f2ed;
}

/* ===== 1️⃣ HERO / POSITIONING SECTION ===== */
.wholesale-hero {
    height: 85vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: calc(-1 * var(--nav-height));
    overflow: hidden;
}

.wholesale-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/8.jpg");
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    z-index: 1;
    animation: kenBurns 20s ease infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.wholesale-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.wholesale-hero-container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.wholesale-hero-content {
    color: #ffffff;
    max-width: 700px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-badge {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wholesale-hero-title {
    font-family: "Crimson Pro", serif;
    font-weight: 500;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.text-accent {
    color: #7f8565;
    font-weight: 600;
}

.wholesale-hero-subheadline {
    font-family: "Crimson Pro", serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.wholesale-hero-narrative {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

/* Simple Divider */
.wholesale-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 15;
    pointer-events: none;
}

.wholesale-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== 2️⃣ WHO IT'S FOR SECTION ===== */
.wholesale-audience {
    background-color: var(--bg-primary);
    padding: 5rem 0;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #7f8565;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: "Crimson Pro", serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: #2a211c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.audience-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(127, 133, 101, 0.1);
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(127, 133, 101, 0.2);
}

.audience-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #7f8565 0%, #6b7352 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.audience-title {
    font-family: "Crimson Pro", serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #2a211c;
    margin-bottom: 1rem;
}

.audience-description {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a524c;
}

/* ===== 3️⃣ WHAT WE OFFER SECTION ===== */
.wholesale-offer {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.offer-content {
    padding-right: 2rem;
}

.offer-list {
    list-style: none;
    margin-top: 2rem;
}

.offer-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    color: #2a211c;
}

.offer-list-item i {
    color: #7f8565;
    font-size: 1.2rem;
    min-width: 24px;
}

.offer-image {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.2);
}

.offer-image-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('images/7.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.offer-image:hover .offer-image-placeholder {
    transform: scale(1.05);
}

/* ===== 4️⃣ OUR APPROACH SECTION ===== */
.wholesale-approach {
    background-color: var(--bg-primary);
    padding: 6rem 0;
    text-align: center;
}

.approach-content {
    max-width: 700px;
    margin: 0 auto;
}

.approach-title {
    font-family: "Crimson Pro", serif;
    font-size: 3rem;
    font-weight: 300;
    color: #2a211c;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.approach-text {
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a524c;
}

/* ===== 5️⃣ HOW TO PARTNER SECTION ===== */
.wholesale-partner {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.partner-step {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(127, 133, 101, 0.1);
    transition: all 0.3s ease;
}

.partner-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(127, 133, 101, 0.15);
}

.step-number {
    font-family: "Crimson Pro", serif;
    font-size: 3rem;
    font-weight: 300;
    color: #7f8565;
    opacity: 0.3;
    margin-bottom: 1rem;
    line-height: 1;
}

.step-title {
    font-family: "Crimson Pro", serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #2a211c;
    margin-bottom: 1rem;
}

.step-description {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a524c;
}

.partner-cta {
    text-align: center;
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ===== 6️⃣ SOFT DIFFERENTIATION SECTION ===== */
.wholesale-differentiation {
    background-color: var(--bg-primary);
    padding: 6rem 0;
    text-align: center;
}

.differentiation-content {
    max-width: 700px;
    margin: 0 auto;
}

.differentiation-title {
    font-family: "Crimson Pro", serif;
    font-size: 3rem;
    font-weight: 300;
    color: #2a211c;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.differentiation-text {
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a524c;
}

/* ===== 7️⃣ FINAL CTA SECTION ===== */
.wholesale-final {
    background-color: var(--bg-primary);
    padding: 4rem 0 6rem;
}

.final-card {
    background: linear-gradient(135deg, #7f8565 0%, #6b7352 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 30px 50px -20px rgba(127, 133, 101, 0.5);
}

.final-title {
    font-family: "Crimson Pro", serif;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: white;
}

.final-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-btn {
    min-width: 220px;
    padding: 1rem 2rem !important;
}

.final-btn.btn-primary {
    background-color: white;
    color: #7f8565;
    border-color: white;
}

.final-btn.btn-primary:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px -10px rgba(0, 0, 0, 0.3);
}

.final-btn.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.final-btn.btn-secondary:hover {
    background-color: white;
    color: #7f8565;
    transform: translateY(-3px);
}

/* ===== 1️⃣ HERO / POSITIONING SECTION - MOBILE VERSION ===== */
@media only screen and (max-width: 768px) {
    .wholesale-hero {
        height: 100vh;
        min-height: 600px;
    }

    .wholesale-hero .container {
        padding: 0; /* Padding container 0 */
    }

    .wholesale-hero-content {
        max-width: 100%;
        padding: 0 1.5rem; /* Padding untuk teks */
        text-align: left;
    }

    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 2px;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.2rem;
    }

    .wholesale-hero-title {
        font-size: 2.5rem; /* Turun dari 3.5rem */
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }

    .wholesale-hero-subheadline {
        font-size: 1.2rem; /* Turun dari 1.5rem */
        margin-bottom: 1.2rem;
    }

    .wholesale-hero-narrative {
        font-size: 1rem; /* Turun dari 1.1rem */
        line-height: 1.5;
        max-width: 100%;
    }

    /* Divider */
    .wholesale-divider svg {
        height: 40px; /* Kurangi tinggi divider */
    }
}

/* ===== EXTRA SMALL (480px ke bawah) ===== */
@media only screen and (max-width: 480px) {
    .wholesale-hero {
        min-height: 550px;
    }

    .wholesale-hero-content {
        padding: 0 1.2rem;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 0.35rem 0.7rem;
        margin-bottom: 1rem;
    }

    .wholesale-hero-title {
        font-size: 2rem;
    }

    .wholesale-hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .wholesale-hero-narrative {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .wholesale-divider svg {
        height: 30px;
    }
}

/* ===== SMALL PHONES (375px ke bawah) ===== */
@media only screen and (max-width: 375px) {
    .wholesale-hero {
        min-height: 500px;
    }

    .wholesale-hero-content {
        padding: 0 1rem;
    }

    .hero-badge {
        font-size: 0.55rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.8rem;
    }

    .wholesale-hero-title {
        font-size: 1.8rem;
    }

    .wholesale-hero-subheadline {
        font-size: 1rem;
    }

    .wholesale-hero-narrative {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .wholesale-divider svg {
        height: 25px;
    }
}

/* ===== 2️⃣ WHO IT'S FOR SECTION - MOBILE VERSION ===== */
@media only screen and (max-width: 768px) {
    .wholesale-audience {
        padding: 3rem 0; /* Kurangi dari 5rem */
    }

    .wholesale-audience .container {
        padding: 0; /* Padding container 0 */
    }

    .section-header.centered {
        margin-bottom: 2.5rem;
        padding: 0 1.5rem; /* Padding untuk teks header */
    }

    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 2rem; /* Turun dari 2.8rem */
        margin-bottom: 0;
    }

    .audience-grid {
        display: grid;
        grid-template-columns: 1fr; /* 1 kolom di mobile */
        gap: 1rem;
        max-width: 400px; /* Batasi lebar */
        margin: 0 auto;
        padding: 0 1rem;
    }

    .audience-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        text-align: center; /* Tetap center seperti desktop */
        background: #ffffff;
        box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(127, 133, 101, 0.1);
        transition: all 0.3s ease;
        width: 100%;
    }

    .audience-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px -12px rgba(127, 133, 101, 0.2);
    }

    .audience-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.2rem; /* Tetap di tengah */
        font-size: 1.5rem;
    }

    .audience-title {
        font-size: 1.3rem; /* Turun dari 1.5rem */
        margin-bottom: 0.8rem;
    }

    .audience-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== EXTRA SMALL (480px ke bawah) ===== */
@media only screen and (max-width: 480px) {
    .wholesale-audience {
        padding: 2.5rem 0;
    }

    .section-header.centered {
        padding: 0 1.2rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .audience-grid {
        max-width: 350px;
        padding: 0 0.8rem;
        gap: 0.8rem;
    }

    .audience-card {
        padding: 1.5rem 1rem;
    }

    .audience-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .audience-title {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .audience-description {
        font-size: 0.9rem;
        max-width: 220px;
    }
}

/* ===== SMALL PHONES (375px ke bawah) ===== */
@media only screen and (max-width: 375px) {
    .wholesale-audience {
        padding: 2rem 0;
    }

    .section-header.centered {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .audience-grid {
        max-width: 300px;
        padding: 0 0.5rem;
    }

    .audience-card {
        padding: 1.2rem 0.8rem;
    }

    .audience-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .audience-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .audience-description {
        font-size: 0.85rem;
        max-width: 200px;
    }
}

/* ===== 3️⃣ WHAT WE OFFER SECTION - MOBILE VERSION ===== */
@media only screen and (max-width: 768px) {
    .wholesale-offer {
        padding: 3rem 0; /* Kurangi dari 5rem */
    }

    .wholesale-offer .container {
        padding: 0; /* Padding container 0 */
    }

    .offer-grid {
        grid-template-columns: 1fr; /* 1 kolom di mobile */
        gap: 2rem;
        max-width: 100%;
        padding: 0 1.5rem; /* Padding untuk konten */
        margin: 0;
    }

    .offer-content {
        padding-right: 0;
        order: 2; /* Teks di bawah gambar */
        text-align: left;
    }

    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 2rem; /* Turun dari 2.8rem */
        margin-bottom: 1.5rem;
    }

    .offer-list {
        margin-top: 1rem;
    }

    .offer-list-item {
        font-size: 1rem; /* Turun dari 1.1rem */
        margin-bottom: 1rem;
        gap: 0.8rem;
    }

    .offer-list-item i {
        font-size: 1.1rem;
        min-width: 20px;
    }

    .offer-image {
        order: 1; /* Gambar di atas teks */
        height: 280px; /* Lebih pendek */
        border-radius: 16px;
        max-width: 100%;
        margin: 0;
    }

    .offer-image-placeholder {
        border-radius: 16px;
    }

    .offer-image:hover .offer-image-placeholder {
        transform: scale(1.03); /* Efek hover lebih kecil */
    }
}

/* ===== EXTRA SMALL (480px ke bawah) ===== */
@media only screen and (max-width: 480px) {
    .wholesale-offer {
        padding: 2.5rem 0;
    }

    .offer-grid {
        padding: 0 1.2rem;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .offer-list-item {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        gap: 0.7rem;
    }

    .offer-list-item i {
        font-size: 1rem;
        min-width: 18px;
    }

    .offer-image {
        height: 240px;
    }
}

/* ===== SMALL PHONES (375px ke bawah) ===== */
@media only screen and (max-width: 375px) {
    .wholesale-offer {
        padding: 2rem 0;
    }

    .offer-grid {
        padding: 0 1rem;
        gap: 1.2rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .offer-list-item {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
        gap: 0.6rem;
    }

    .offer-list-item i {
        font-size: 0.95rem;
        min-width: 16px;
    }

    .offer-image {
        height: 200px;
        border-radius: 12px;
    }

    .offer-image-placeholder {
        border-radius: 12px;
    }
}

/* ===== 4️⃣ OUR APPROACH SECTION - MOBILE VERSION ===== */
@media only screen and (max-width: 768px) {
    .wholesale-approach {
        padding: 4rem 0; /* Kurangi dari 6rem */
    }

    .wholesale-approach .container {
        padding: 0; /* Padding container 0 */
    }

    .approach-content {
        max-width: 100%;
        padding: 0 1.5rem; /* Padding untuk teks */
        margin: 0 auto;
        text-align: center;
    }

    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .approach-title {
        font-size: 2.2rem; /* Turun dari 3rem */
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .approach-text {
        font-size: 1.1rem; /* Turun dari 1.2rem */
        line-height: 1.7;
        max-width: 100%;
        margin: 0 auto;
    }
}

/* ===== EXTRA SMALL (480px ke bawah) ===== */
@media only screen and (max-width: 480px) {
    .wholesale-approach {
        padding: 3rem 0;
    }

    .approach-content {
        padding: 0 1.2rem;
    }

    .approach-title {
        font-size: 1.9rem;
        margin-bottom: 1.2rem;
    }

    .approach-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* ===== SMALL PHONES (375px ke bawah) ===== */
@media only screen and (max-width: 375px) {
    .wholesale-approach {
        padding: 2.5rem 0;
    }

    .approach-content {
        padding: 0 1rem;
    }

    .approach-title {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .approach-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* ===== 5️⃣ HOW TO PARTNER SECTION - MOBILE VERSION ===== */
@media only screen and (max-width: 768px) {
    .wholesale-partner {
        padding: 3rem 0; /* Kurangi dari 5rem */
    }

    .wholesale-partner .container {
        padding: 0; /* Padding container 0 */
    }

    .section-header.centered {
        margin-bottom: 2.5rem;
        padding: 0 1.5rem; /* Padding untuk teks header */
    }

    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 2rem; /* Turun dari 2.8rem */
        margin-bottom: 0;
    }

    .partner-grid {
        grid-template-columns: 1fr; /* 1 kolom di mobile */
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto 3rem;
        padding: 0 1rem;
    }

    .partner-step {
        padding: 1.8rem 1.5rem;
        border-radius: 16px;
        text-align: center;
        background: #ffffff;
        box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(127, 133, 101, 0.1);
        transition: all 0.3s ease;
    }

    .partner-step:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px -12px rgba(127, 133, 101, 0.2);
    }

    .step-number {
        font-size: 2.5rem; /* Turun dari 3rem */
        margin-bottom: 0.8rem;
    }

    .step-title {
        font-size: 1.2rem; /* Turun dari 1.3rem */
        margin-bottom: 0.8rem;
    }

    .step-description {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 280px;
        margin: 0 auto;
    }

    .partner-cta {
        padding: 0 1.5rem; /* Padding untuk CTA */
        display: flex;
        justify-content: center; /* Tengahkan tombol */
    }

    .partner-btn {
        width: auto; /* Jangan full width */
        min-width: 280px; /* Lebar minimum */
        max-width: 320px; /* Batasi lebar maksimum */
        margin: 0 auto;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
        display: inline-flex; /* Ganti dari flex jadi inline-flex */
        white-space: nowrap; /* Cegah teks turun ke bawah */
    }
}

/* ===== EXTRA SMALL (480px ke bawah) ===== */
@media only screen and (max-width: 480px) {
    .wholesale-partner {
        padding: 2.5rem 0;
    }

    .section-header.centered {
        padding: 0 1.2rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .partner-grid {
        max-width: 350px;
        padding: 0 0.8rem;
        gap: 0.8rem;
        margin-bottom: 2.5rem;
    }

    .partner-step {
        padding: 1.5rem 1.2rem;
    }

    .step-number {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }

    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .step-description {
        font-size: 0.9rem;
        max-width: 250px;
    }

    .partner-cta {
        padding: 0 1.2rem;
    }

    .partner-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
        max-width: 350px;
    }
}

/* ===== SMALL PHONES (375px ke bawah) ===== */
@media only screen and (max-width: 375px) {
    .wholesale-partner {
        padding: 2rem 0;
    }

    .section-header.centered {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .partner-grid {
        max-width: 300px;
        padding: 0 0.5rem;
        gap: 0.7rem;
        margin-bottom: 2rem;
    }

    .partner-step {
        padding: 1.2rem 1rem;
    }

    .step-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .step-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .step-description {
        font-size: 0.85rem;
        max-width: 220px;
    }

    .partner-cta {
        padding: 0 1rem;
    }

    .partner-btn {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        max-width: 300px;
    }
}

/* ===== 6️⃣ SOFT DIFFERENTIATION SECTION - MOBILE VERSION ===== */
@media only screen and (max-width: 768px) {
    .wholesale-differentiation {
        padding: 4rem 0; /* Kurangi dari 6rem */
        background-color: var(--bg-primary);
    }

    .wholesale-differentiation .container {
        padding: 0; /* Padding container 0 */
    }

    .differentiation-content {
        max-width: 100%;
        padding: 0 1.5rem; /* Padding untuk teks */
        margin: 0 auto;
        text-align: center;
    }

    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
        display: block;
    }

    .differentiation-title {
        font-family: "Crimson Pro", serif;
        font-size: 2.2rem; /* Turun dari 3rem */
        font-weight: 300;
        color: #2a211c;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .differentiation-title .text-accent {
        color: #7f8565;
        font-weight: 500;
    }

    .differentiation-text {
        font-family: "Inter", sans-serif;
        font-size: 1.1rem; /* Turun dari 1.2rem */
        line-height: 1.7;
        color: #5a524c;
        max-width: 100%;
        margin: 0 auto;
    }
}

/* ===== EXTRA SMALL (480px ke bawah) ===== */
@media only screen and (max-width: 480px) {
    .wholesale-differentiation {
        padding: 3rem 0;
    }

    .differentiation-content {
        padding: 0 1.2rem;
    }

    .differentiation-title {
        font-size: 1.9rem;
        margin-bottom: 1.2rem;
    }

    .differentiation-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* ===== SMALL PHONES (375px ke bawah) ===== */
@media only screen and (max-width: 375px) {
    .wholesale-differentiation {
        padding: 2.5rem 0;
    }

    .differentiation-content {
        padding: 0 1rem;
    }

    .differentiation-title {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .differentiation-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* ===== 7️⃣ FINAL CTA SECTION - MOBILE VERSION ===== */
@media only screen and (max-width: 768px) {
    .wholesale-final {
        padding: 3rem 0 4rem; /* Kurangi padding */
        background-color: var(--bg-primary);
    }

    .wholesale-final .container {
        padding: 0; /* Padding container 0 */
    }

    .final-card {
        background: linear-gradient(135deg, #7f8565 0%, #6b7352 100%);
        border-radius: 0; /* Full width, kotak penuh */
        padding: 3rem 1.5rem;
        max-width: 100%;
        margin: 0;
        box-shadow: none; /* Hilangkan shadow di mobile */
        text-align: center;
        color: white;
    }

    .final-title {
        font-family: "Crimson Pro", serif;
        font-size: 2rem; /* Turun dari 2.8rem */
        font-weight: 300;
        margin-bottom: 2rem;
        line-height: 1.2;
        color: white;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .final-buttons {
        display: flex;
        flex-direction: column; /* Stack vertikal */
        gap: 1rem;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .final-btn {
        min-width: 260px; /* Lebar minimum */
        max-width: 300px; /* Batasi lebar maksimum */
        width: 100%;
        padding: 1rem 1.5rem !important;
        font-size: 0.95rem;
        margin: 0 auto;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        white-space: nowrap; /* Cegah teks turun */
    }

    .final-btn.btn-primary {
        background-color: white;
        color: #7f8565;
        border: 2px solid white;
    }

    .final-btn.btn-primary:hover {
        background-color: transparent;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 12px 25px -10px rgba(0, 0, 0, 0.3);
    }

    .final-btn.btn-secondary {
        background-color: transparent;
        color: white;
        border: 2px solid white;
    }

    .final-btn.btn-secondary:hover {
        background-color: white;
        color: #7f8565;
        transform: translateY(-3px);
    }

    .final-btn i {
        font-size: 1.1rem;
    }
}

/* ===== EXTRA SMALL (480px ke bawah) ===== */
@media only screen and (max-width: 480px) {
    .wholesale-final {
        padding: 2.5rem 0 3rem;
    }

    .final-card {
        padding: 2.5rem 1.2rem;
    }

    .final-title {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
        max-width: 350px;
    }

    .final-btn {
        min-width: 240px;
        max-width: 260px;
        padding: 0.9rem 1.2rem !important;
        font-size: 0.9rem;
    }

    .final-btn i {
        font-size: 1rem;
    }
}

/* ===== SMALL PHONES (375px ke bawah) ===== */
@media only screen and (max-width: 375px) {
    .wholesale-final {
        padding: 2rem 0 2.5rem;
    }

    .final-card {
        padding: 2rem 1rem;
    }

    .final-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        max-width: 280px;
    }

    .final-btn {
        min-width: 220px;
        max-width: 240px;
        padding: 0.8rem 1rem !important;
        font-size: 0.85rem;
        white-space: normal; /* Izinkan teks turun di HP sangat kecil */
    }

    .final-btn i {
        font-size: 0.95rem;
    }
}

/* ===== WHOLESALE PAGE - TABLET STYLES (769px - 1024px) ===== */
/* SAMA PERSIS DENGAN STORY PAGE TABLET STYLES */

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  
  /* ===== CONTAINER ADJUSTMENTS ===== */
  .container {
    padding: 0 2rem;
    max-width: 100%;
  }

  /* ===== NAVIGATION TABLET - HAMBURGER STYLE ===== */
  .navbar {
    padding: 1.2rem 0;
    height: 70px;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
  }

  .navbar.scrolled {
    background-color: #fff;
    padding: 0.8rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    height: 65px;
  }

  .logo-img {
    height: 36px;
  }

  .navbar.scrolled .logo-img {
    height: 32px;
  }

  /* Toggle button */
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    font-size: 1.3rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
  }

  .navbar.scrolled .nav-toggle {
    background: rgba(127, 133, 101, 0.1);
    border-color: rgba(127, 133, 101, 0.2);
    color: var(--accent);
  }

  .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .navbar.scrolled .nav-toggle:hover {
    background: rgba(127, 133, 101, 0.2);
    border-color: var(--accent);
  }

  /* Menu sidebar */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 60%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 1.5rem 2rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    overflow-y: auto;
    gap: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  /* Nav links */
  .nav-link {
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
  }

  .nav-link:hover {
    color: var(--accent);
    background-color: rgba(127, 133, 101, 0.03);
    padding-left: 10px;
    margin: 0 -10px;
    border-radius: 6px;
  }

  .nav-link.active {
    color: var(--accent);
    font-weight: 600;
  }

  /* Dropdown */
  .dropdown {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }

  .dropdown-toggle:hover {
    color: var(--accent);
    background-color: rgba(127, 133, 101, 0.03);
    padding-left: 10px;
    margin: 0 -10px;
    border-radius: 6px 6px 0 0;
  }

  .dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
  }

  .dropdown.active .dropdown-icon {
    transform: rotate(180deg);
    color: var(--accent);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(127, 133, 101, 0.02);
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0 0 8px 8px;
    border: none;
  }

  .dropdown.active .dropdown-menu {
    max-height: 300px;
    padding: 0.5rem 0;
    background-color: rgba(127, 133, 101, 0.03);
    border-radius: 0 0 8px 8px;
    border-top: 1px solid rgba(127, 133, 101, 0.1);
  }

  .dropdown-item {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
  }

  .dropdown-item:hover {
    background-color: rgba(127, 133, 101, 0.08);
    color: var(--accent);
    padding-left: 2rem;
  }

  .dropdown-item.active {
    color: var(--accent);
    font-weight: 500;
    background-color: rgba(127, 133, 101, 0.1);
  }

  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

  /* ===== WHOLESALE HERO TABLET ===== */
  .wholesale-hero {
    height: 85vh;
    min-height: 500px;
    max-height: 650px;
    margin-top: calc(-1 * var(--nav-height));
  }

  .wholesale-hero-container {
    padding: 0 2rem;
  }

  .wholesale-hero-content {
    max-width: 700px;
    padding: 0 1.5rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .wholesale-hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .wholesale-hero-subheadline {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .wholesale-hero-narrative {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 550px;
  }

  /* ===== AUDIENCE SECTION TABLET ===== */
  .wholesale-audience {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .audience-card {
    padding: 2rem 1.5rem;
  }

  .audience-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
  }

  .audience-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .audience-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* ===== WHAT WE OFFER SECTION TABLET - GAMBAR FULL SETINGGI KOLOM KIRI ===== */
  .wholesale-offer {
    padding: 4rem 0;
  }

  .offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch; /* MEMBUAT KOLOM KIRI DAN KANAN SAMA TINGGI */
  }

  .offer-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .offer-content .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .offer-list {
    margin-top: 1rem;
  }

  .offer-list-item {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    gap: 0.8rem;
  }

  .offer-list-item i {
    font-size: 1rem;
    width: 20px;
  }

  /* GAMBAR - FULL TINGGI MENGIKUTI KOLOM KIRI */
  .offer-image {
    display: flex;
    align-items: stretch; /* Membuat gambar setinggi parent */
    height: 100%;
  }

  .offer-image-placeholder {
    width: 100%;
    height: 100%; /* TINGGI MENGIKUTI KOLOM SEBELAH KIRI */
    min-height: 280px;
    object-fit: cover;
    border-radius: 12px;
  }

  /* ===== APPROACH SECTION TABLET ===== */
  .wholesale-approach {
    padding: 4rem 0;
  }

  .approach-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .approach-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }

  .approach-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* ===== PARTNER SECTION TABLET ===== */
  .wholesale-partner {
    padding: 4rem 0;
  }

  .partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .partner-step {
    padding: 1.8rem 1.3rem;
  }

  .step-number {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .step-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .step-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .partner-cta {
    margin-top: 2.5rem;
  }

  .partner-btn {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  /* ===== DIFFERENTIATION SECTION TABLET ===== */
  .wholesale-differentiation {
    padding: 4rem 0;
  }

  .differentiation-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .differentiation-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }

  .differentiation-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* ===== FINAL CTA TABLET ===== */
  .wholesale-final {
    padding: 4rem 0;
  }

  .final-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
  }

  .final-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .final-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .final-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    min-width: 200px;
  }

  /* ===== FOOTER TABLET ===== */
  .footer {
    padding: 3rem 0 0.5rem;
  }

  .footer .container {
    padding: 0 2rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-logo-section {
    min-width: 200px;
  }

  .footer-logo {
    height: 55px;
    width: auto;
  }

  .footer-brand {
    font-size: 1.5rem;
  }

  .footer-tagline {
    font-size: 0.85rem;
  }

  .footer-columns {
    gap: 1.5rem;
    min-width: 260px;
  }

  .footer-column {
    min-width: 160px;
  }

  .column-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-menu li {
    margin-bottom: 0.6rem;
  }

  .footer-menu-link {
    font-size: 0.85rem;
  }

  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .contact-item {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .contact-icon {
    width: 20px;
    margin-right: 10px;
  }

  .footer-divider {
    margin: 1rem 0 0.8rem;
  }

  .footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-copyright {
    text-align: center;
    font-size: 0.8rem;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .social-link {
    font-size: 1rem;
  }

  /* ===== WHATSAPP FLOAT TABLET ===== */
  .whatsapp-float {
    bottom: 25px;
    right: 25px;
  }

  .whatsapp-link {
    width: 55px;
    height: 55px;
  }

  .whatsapp-icon {
    font-size: 1.8rem;
  }

  .whatsapp-text {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

/* ===== PORTRAIT TABLET (769px - 900px) ===== */
@media only screen and (min-width: 769px) and (max-width: 900px) {
  
  .wholesale-hero-title {
    font-size: 2.4rem;
  }

  .wholesale-hero-subheadline {
    font-size: 1.1rem;
  }

  .audience-grid {
    gap: 1.2rem;
  }

  .audience-card {
    padding: 1.5rem 1.2rem;
  }

  .partner-grid {
    gap: 1.2rem;
  }

  .partner-step {
    padding: 1.5rem 1.2rem;
  }

  .final-title {
    font-size: 1.6rem;
  }

  .final-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .final-btn {
    width: 100%;
    max-width: 250px;
  }
}

/* ===== LANDSCAPE TABLET (1024px specific) ===== */
@media only screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: landscape) {
  .wholesale-hero {
    height: 80vh;
  }

  .wholesale-hero-title {
    font-size: 3rem;
  }
}