/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #ffffff;
    color: #082b50;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =====================================================
   VARIABLES
===================================================== */

:root {
    --navy: #082b50;
    --dark-navy: #041a30;
    --blue: #124d82;

    --gold: #c99a32;
    --light-gold: #e5c56a;

    --white: #ffffff;
    --light: #f6f8fb;
    --gray: #667085;

    --container: 1380px;
}


/* =====================================================
   GLOBAL CONTAINER
===================================================== */

.container {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 86px;

    z-index: 1000;

    display: flex;
    align-items: center;

    background: rgba(4, 26, 48, 0.18);

    backdrop-filter: blur(7px);

    transition:
        background 0.3s ease,
        height 0.3s ease,
        box-shadow 0.3s ease;
}

.navbar.scrolled {
    height: 70px;

    background: rgba(4, 26, 48, 0.97);

    backdrop-filter: blur(15px);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.20);
}


/* =====================================================
   NAVBAR CONTAINER
===================================================== */

.navbar-container {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* =====================================================
   ROUND LOGO
===================================================== */

.logo {
    width: 64px;
    height: 64px;

    min-width: 64px;

    border-radius: 50%;

    border: 2px solid var(--gold);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: var(--dark-navy);

    flex-shrink: 0;

    transition:
        transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* =====================================================
   NAVIGATION
===================================================== */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 42px;

    margin-left: auto;
}

.nav-link {
    position: relative;

    color: rgba(255, 255, 255, 0.94);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.3px;

    text-transform: uppercase;

    padding: 32px 0;

    white-space: nowrap;

    transition:
        color 0.3s ease;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 21px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition:
        width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* =====================================================
   CONTACT BUTTON
===================================================== */

.nav-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 48px;

    padding: 0 25px;

    border: 1px solid var(--gold);

    background: transparent;

    color: var(--light-gold);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.nav-button:hover {
    background: var(--gold);

    color: var(--dark-navy);

    transform: translateY(-2px);
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    background: transparent;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: #ffffff;

    transition:
        transform 0.3s ease;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    position: fixed;

    top: 86px;
    right: -100%;

    width: 280px;

    background: var(--dark-navy);

    z-index: 999;

    padding: 25px;

    display: flex;
    flex-direction: column;

    gap: 5px;

    box-shadow:
        -10px 20px 40px
        rgba(0, 0, 0, 0.25);

    transition:
        right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: #ffffff;

    padding: 15px 10px;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 820px;
    height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        url("../assets/hero.jpg");

    background-size: cover;

    background-position: center center;

    color: #ffffff;
}


/* =====================================================
   HERO OVERLAY
===================================================== */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 26, 48, 0.96) 0%,
            rgba(4, 26, 48, 0.88) 25%,
            rgba(4, 26, 48, 0.58) 48%,
            rgba(4, 26, 48, 0.18) 78%,
            rgba(4, 26, 48, 0.08) 100%
        );
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

    padding-top: 80px;
}

.hero-label {
    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--light-gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.hero-label span {
    display: block;

    width: 45px;
    height: 2px;

    background: var(--gold);
}


/* =====================================================
   HERO TITLE
===================================================== */

.hero h1 {
    max-width: 760px;

    font-size:
        clamp(
            55px,
            6.5vw,
            88px
        );

    line-height: 0.98;

    font-weight: 800;

    letter-spacing: -3px;

    text-transform: uppercase;
}

.hero h1 span {
    color: var(--gold);
}


/* =====================================================
   HERO DESCRIPTION
===================================================== */

.hero p {
    max-width: 560px;

    margin-top: 32px;

    font-size: 16px;

    line-height: 1.8;

    color:
        rgba(255, 255, 255, 0.85);
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 18px;
}

.hero::after {
    display: none;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 22px;

    min-height: 58px;

    padding: 0 28px;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    transition:
        all 0.3s ease;
}

.btn-primary {
    background: var(--gold);

    color: var(--dark-navy);
}

.btn-primary:hover {
    background: var(--light-gold);

    transform: translateY(-3px);
}

.btn-arrow {
    font-size: 20px;

    line-height: 1;
}

.btn-outline {
    border:
        1px solid
        rgba(255, 255, 255, 0.55);

    color: #ffffff;

    background:
        rgba(4, 26, 48, 0.15);
}

.btn-outline:hover {
    background: #ffffff;

    color: var(--dark-navy);
}


/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scroll-indicator {
    position: absolute;

    left: 95px;
    bottom: 45px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 8px;
}

.scroll-indicator span {
    position: relative;

    display: block;

    width: 26px;
    height: 42px;

    border: 2px solid var(--gold);

    border-radius: 20px;

    margin-top: 12px;
}

.scroll-indicator span::after {
    content: "";

    position: absolute;

    top: 7px;
    left: 50%;

    width: 4px;
    height: 8px;

    border-radius: 4px;

    background: var(--gold);

    transform:
        translateX(-50%);

    animation:
        scrollMove 1.8s
        ease-in-out
        infinite;
}

@keyframes scrollMove {

    0% {
        top: 7px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    70% {
        top: 24px;
        opacity: 1;
    }

    100% {
        top: 28px;
        opacity: 0;
    }
}

.scroll-indicator p {
    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2.5px;

    color:
        rgba(255, 255, 255, 0.85);
}


/* =====================================================
   HERO DIAGONAL
===================================================== */

.hero::after {
    content: "";

    position: absolute;

    z-index: 4;

    left: -2%;

    bottom: -1px;

    width: 104%;

    height: 100px;

    background: white;

    clip-path: polygon(
        0 65%,
        100% 0,
        100% 100%,
        0 100%
    );
}


/* =====================================================
   ABOUT
===================================================== */

.about-preview {
    position: relative;

    margin-top: 0;

    padding: 0 0 100px;

    background: #ffffff;

    overflow: hidden;

    z-index: 5;
}


/* =====================================================
   ABOUT WRAPPER
===================================================== */

.about-wrapper {
    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;
}


/* =====================================================
   ABOUT CONTENT
===================================================== */

.about-content {
    position: relative;

    z-index: 5;

    width: 58%;

    padding: 20px 0 30px;
}


/* =====================================================
   SECTION LABEL
===================================================== */

.about-content .section-label {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

    margin-top: 70px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.about-content .section-label span {
    display: block;

    width: 30px;
    height: 2px;

    background: var(--gold);
}


/* =====================================================
   ABOUT TITLE
===================================================== */

.about-content h2 {
    max-width: 720px;

    margin: 0;

    color: var(--dark-navy);

    font-size:
        clamp(
            42px,
            5vw,
            68px
        );

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -2.8px;
}

.about-content h2 span {
    color: var(--gold);
}


/* =====================================================
   ABOUT PARAGRAPH
===================================================== */

.about-content p {
    position: relative;

    z-index: 3;

    max-width: 620px;

    margin-top: 27px;

    color: var(--gray);

    font-size: 15px;

    font-weight: 400;

    line-height: 1.9;
}

.about-content p + p {
    margin-top: 18px;

    font-size: 14px;

    line-height: 1.85;

    color: #7a8491;
}


/* =====================================================
   TEXT LINK
===================================================== */

.about-content .text-link {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    margin-top: 32px;

    color: var(--navy);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    transition:
        color 0.3s ease;
}

.about-content .text-link span {
    color: var(--gold);

    font-size: 21px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}

.about-content .text-link:hover {
    color: var(--gold);
}

.about-content .text-link:hover span {
    transform:
        translateX(8px);
}


/* =====================================================
   ABOUT IMAGE
===================================================== */

.about-image {
    position: absolute;

    z-index: 6;

    top: -1px;

    right: -150px;

    width: 720px;

    height: 820px;

    overflow: hidden;

    pointer-events: none;
}


/* =====================================================
   ABOUT IMAGE ELEMENT
===================================================== */

.about-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
}


/* =====================================================
   ABOUT IMAGE FADE
===================================================== */

.about-image::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.96) 8%,
            rgba(255, 255, 255, 0.70) 18%,
            rgba(255, 255, 255, 0.25) 32%,
            rgba(255, 255, 255, 0) 48%
        );
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1200px) {

    .nav-menu {
        gap: 22px;
    }

    .nav-link {
        font-size: 10px;
    }

    .nav-button {
        padding: 0 18px;
    }
}


/* =====================================================
   ABOUT TABLET
===================================================== */

@media (max-width: 1100px) {

    .about-wrapper {
        min-height: 520px;
    }

    .about-content {
        width: 62%;
    }

    .about-content h2 {
        font-size:
            clamp(
                40px,
                5vw,
                58px
            );
    }

    .about-image {
        right: -250px;

        width: 650px;
        height: 500px;
    }
}


/* =====================================================
   MOBILE NAV
===================================================== */

@media (max-width: 900px) {

    .nav-menu {
        display: none;
    }

    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        top: 86px;
    }


    /* ABOUT */

    .about-preview {
        padding:
            60px 0 90px;
    }

    .about-wrapper {
        min-height: auto;

        display: block;
    }

    .about-content {
        width: 100%;

        padding: 0;
    }

    .about-content h2 {
        max-width: 700px;
    }

    .about-content p {
        max-width: 100%;
    }


    /* IMAGE BECOMES NORMAL BLOCK */

    .about-image {
        position: relative;

        top: auto;
        right: auto;

        width: 110%;
        height: 420px;

        margin-top: 60px;
        margin-left: -5%;

        transform: none;

        overflow: hidden;
    }

    .about-image::after {
        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.35),
                rgba(255, 255, 255, 0) 35%
            );
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .container {
        width:
            calc(100% - 40px);
    }


    /* NAVBAR */

    .navbar {
        height: 72px;
    }

    .navbar.scrolled {
        height: 66px;
    }

    .navbar-container {
        width:
            calc(100% - 40px);
    }

    .logo {
        width: 54px;
        height: 54px;

        min-width: 54px;
    }

    .mobile-menu {
        top: 72px;
    }


    /* HERO */

    .hero {
        min-height: 850px;

        height: 100svh;

        background-position:
            60% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 26, 48, 0.96),
                rgba(4, 26, 48, 0.65)
            );
    }

    .hero-content {
        width:
            calc(100% - 40px);

        padding-top: 70px;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .hero p {
        font-size: 14px;
    }


    /* BUTTONS */

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }

    .btn {
        width: 100%;
    }


    /* SCROLL */

    .scroll-indicator {
        left: 20px;

        bottom: 35px;
    }


    /* DIAGONAL */

    .hero::after {
        height: 60px;
    }


    /* ABOUT */

    .about-preview {
        padding:
            90px 0;
    }

    .about-content .section-label {
        margin-bottom: 20px;

        font-size: 10px;

        letter-spacing: 2px;
    }

    .about-content h2 {
        font-size: 42px;

        line-height: 1.04;

        letter-spacing: -2px;
    }

    .about-content p {
        margin-top: 22px;

        font-size: 14px;

        line-height: 1.8;
    }

    .about-content p + p {
        margin-top: 15px;

        font-size: 13px;

        line-height: 1.8;
    }

    .about-content .text-link {
        margin-top: 25px;
    }

    .about-image {
        width: 110%;

        height: auto;

        margin-bottom:  -80px;

        margin-left: -5%;
    }
}


/* =====================================================
   TEMPORARY SECTIONS
===================================================== */

.placeholder-section {
    min-height: 500px;

    display: flex;

    align-items: center;

    padding: 100px 0;

    background: #f6f8fb;
}

.placeholder-section .container {
    text-align: center;
}

.placeholder-section span {
    display: block;

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}

.placeholder-section h2 {
    max-width: 800px;

    margin: auto;

    color: var(--dark-navy);

    font-size:
        clamp(
            35px,
            5vw,
            65px
        );
}

.dark-section {
    background: var(--dark-navy);
}

.dark-section h2 {
    color: #ffffff;
}


/* ===================================================== OUR BUSINESS SECTION ===================================================== */
.business-section {
    padding: 100px 0;
    position: relative;
    color: #e2e8f0;
    /* Background menggunakan gambar lokal Anda dengan lapisan kaca transparan yang pas (65% - 85%) */
    background-image: linear-gradient(135deg, rgba(2, 13, 24, 0.65) 0%, rgba(5, 29, 54, 0.85) 100%), 
                      url('../assets/images/image_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.business-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.business-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin: 15px 0;
}

.business-header h2 span {
    color: #ffd700; /* Warna aksen emas untuk menonjolkan esensi mineral */
}

.section-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Grid System */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Base Card Styling */
.business-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Mencegah cahaya bocor keluar dari sudut melengkung kartu */
}

/* Efek angkat kartu saat kursor masuk */
.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.3); /* Sentuhan border emas tipis saat di-hover */
}

/* KUNCI EFEK CAHAYA PINDAH-PINDAH (Radial Gradient) */
.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Mengikuti variabel --mouse-x dan --mouse-y dari JavaScript */
    background: radial-gradient(350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 215, 0, 0.12), transparent 60%);
    z-index: 1;
    pointer-events: none; /* Agar kursor tetap bisa mendeteksi teks di dalamnya */
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Tampilkan cahaya hanya saat kartu disentuh mouse */
.business-card:hover::before {
    opacity: 1;
}

/* Pastikan semua konten berada di atas lapisan cahaya agar tidak tertimbun */
.card-icon, 
.business-card h3, 
.business-card p, 
.card-bullets, 
.card-badge {
    position: relative;
    z-index: 2;
}

/* Highlighting Pillar 2 (Tailing Project) */
.business-card.highlighted {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.04), rgba(5, 29, 54, 0.7));
    border: 1px solid #ffd700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.business-card.highlighted:hover {
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

/* Tingkatkan kepekatan cahaya khusus untuk kartu Highlighted agar lebih menyala */
.business-card.highlighted::before {
    background: radial-gradient(350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 215, 0, 0.18), transparent 60%);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffd700;
    color: #020d18;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Elements Inside Cards */
.card-icon {
    width: 50px;
    height: 50px;
    color: #ffd700;
    margin-bottom: 25px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.business-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.business-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Custom Bullet List */
.card-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-bullets li {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.card-bullets li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 0.8rem;
    top: -1px;
}

/* Metrics Banner Style */
.business-metrics {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.02);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding: 30px 20px;
    border-radius: 4px;
    flex-wrap: wrap;
    gap: 20px;
}

.metric-box {
    text-align: center;
}

.metric-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.metric-lbl {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 1px;
}

/* Responsive Fixing */
@media (max-width: 768px) {
    .business-header h2 {
        font-size: 2rem;
    }
    .business-metrics {
        flex-direction: column;
        align-items: center;
    }
}


/* ===================================================== PROJECTS SECTION ===================================================== */
.projects-section {
    padding: 100px 0;
    background-color: #0a1016; /* Background arang gelap solid, kontras dengan section business */
    color: #e2e8f0;
}

.projects-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.projects-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin: 15px 0;
}

.projects-header h2 span {
    color: #ffd700; /* Warna aksen emas */
}

/* Grid System untuk 3 Kolom Proyek */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Base Project Card Styling */
.project-card {
    background: #111a24;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* WAJIB ADA: Agar efek cahaya kuning tidak bocor keluar kartu */
}

/* Efek angkat kartu dan border menyala emas saat kursor masuk */
.project-card:hover {
    transform: translateY(-8px);
    
    /* 1. KUNCI GARIS KUNING EMAS SAAT DI-HOVER */
    border-color: #ffd700 !important; 
    
    /* 2. EFEK BONUS: Pendaran cahaya kuning tipis di sekeliling garis agar kartu terlihat hidup */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 15px rgba(255, 215, 0, 0.2); 
}

/* KUNCI EFEK CAHAYA KUNING TERANG IKUTI MOUSE KHUSUS KARTU PROYEK */
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Alpha disetel ke 0.35 agar pendaran cahayanya terlihat sangat jelas dan terang di sekeliling kursor */
    background: radial-gradient(350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 215, 0, 0.35), transparent 60%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Munculkan cahaya ketika kartu disentuh kursor */
.project-card:hover::before {
    opacity: 1;
}

/* Pastikan semua elemen teks berada di atas lapisan cahaya agar tidak tertimbun */
.project-meta, 
.project-badge, 
.project-card h3, 
.project-card p, 
.project-tags {
    position: relative;
    z-index: 2;
}

.project-meta {
    font-size: 0.85rem;
    color: #ffd700; /* Label kategori warna emas kecil */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Perbaikan total pengaturan badge agar lurus berbaris ke bawah dan tidak melayang menimpa teks */
.project-badge {
    display: inline-block;     /* Membuat kotak hanya selebar teksnya saja */
    align-self: flex-start;    /* Memaksa kotak merapat lurus ke kiri kartu */
    font-size: 0.65rem;        
    font-weight: 700;
    padding: 4px 10px;         
    border-radius: 4px;        
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;       /* Jarak aman ke judul di bawahnya */
    white-space: nowrap;       
    position: static !important; /* Mematikan fungsi absolute lama agar tidak menimpa teks kuning */
}

.project-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 600;
    padding-right: 0;          
}

.project-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Styling Khusus untuk Teks Terjemahan Bahasa Indonesia */
.indonesian-text {
    display: block;
    color: #718096; /* Warna abu-abu redup agar mata fokus ke bahasa Inggris dulu */
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 6px;
}

/* Dinamis Badge Status Proyek */
.status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981; /* Hijau untuk operasional aktif */
}

.status-development {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6; /* Biru untuk tahap pembangunan */
}

.status-esg {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b; /* Amber/Oranye untuk fokus ESG */
}

/* Hashtag Tags di Bagian Bawah Kartu */
.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto; /* Memaksa tag selalu berada di paling bawah kartu */
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}

.project-tags span {
    font-size: 0.75rem;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Optimasi Tampilan Mobile */
@media (max-width: 768px) {
    .projects-header h2 {
        font-size: 2rem;
    }
    .project-card {
        padding: 30px 20px;
    }
    .project-card h3 {
        padding-right: 0;
        margin-top: 15px; 
    }
}


/* ===================================================== SUSTAINABILITY TEMA PUTIH + GAMBAR SETENGAH ===================================================== */
.sustainability-section {
    padding: 100px 0;
    background-color: #ffffff; 
    color: #334155;            
}

/* Kunci Pengaturan Pembagi Area Atas (Dua Kolom) */
.sustainability-hero-header {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    width: 100%;
}

/* Kolom Kiri: Wadah Gambar */
.sus-header-image-wrapper {
    flex: 1;                  /* Membagi area tepat setengah (50%) di kiri */
    position: relative;
    height: 380px;            /* Mengatur tinggi area gambar */
    border-radius: 16px;
    overflow: hidden;
}

.sus-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Mengunci rasio gambar agar tidak peyang/melar */
}

/* KUNCI EFEK GRADASI TRANSPARAN: Memudarkan sisi kanan gambar menuju warna putih latar belakang */
.sus-image-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

/* Kolom Kanan: Wadah Teks */
.sustainability-header-content {
    flex: 1;                  /* Membagi area tepat setengah (50%) di kanan */
    text-align: left;         /* Rata kiri agar proporsional dengan gambar */
}

.sustainability-header-content h2 {
    font-size: 2.8rem;        /* Sedikit diperbesar agar kokoh */
    color: #0f172a;            
    margin: 15px 0;
    line-height: 1.2;
}

.sustainability-header-content h2 span {
    color: #b45309;            
}

.sustainability-header-content .section-subtitle {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Pengaturan Khusus Memperbesar Label Sesuai Permintaan Sebelumnya */
.sustainability-section .section-label {
    font-size: 1.1rem !important;       
    font-weight: 700 !important;        
    letter-spacing: 3px !important;     
    color: #b45309 !important;          
    margin-bottom: 15px;                
    display: flex;
    align-items: center;
}

.sustainability-section .section-label span {
    width: 20px !important;             
    height: 3px !important;             
    background-color: #ffd700 !important;
    display: inline-block;
    margin-right: 10px;
}

/* --- Pengaturan Kartu di Bawahnya Tetap Konsisten --- */
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.sus-card {
    background: #f8fafc;       
    border: 1px solid #e2e8f0; 
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05); 
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.sus-card:hover {
    transform: translateY(-8px);
    border-color: #ffd700 !important; 
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1), 0 0 15px rgba(255, 215, 0, 0.4); 
}

.sus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 215, 0, 0.45), transparent 60%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sus-card:hover::before {opacity: 1;}
.sus-icon, .sus-card h3, .sus-card p {position: relative; z-index: 2;}
.sus-icon {font-size: 2.2rem; margin-bottom: 20px;}
.sus-card h3 {font-size: 1.35rem; color: #0f172a; margin-bottom: 20px; font-weight: 600;}
.sus-card p {font-size: 0.95rem; color: #475569; margin-bottom: 15px; line-height: 1.6;}
.indonesian-text {display: block; color: #64748b; font-style: italic; font-size: 0.85rem; margin-top: 6px;}

/* Optimasi Layar Responsif Smartphone (Gambar otomatis pindah ke atas teks agar tidak sempit) */
@media (max-width: 900px) {
    .sustainability-hero-header {
        flex-direction: column;
        gap: 30px;
    }
    .sus-header-image-wrapper {
        width: 100%;
        height: 280px;
    }
    /* Mengubah arah gradasi pudar dari bawah ke atas khusus di layar handphone */
    .sus-image-fade-overlay {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
    }
    .sustainability-header-content {
        text-align: center;
    }
    .sustainability-section .section-label {
        justify-content: center;
    }
}


/* ===================================================== NEWS SECTION ===================================================== */
.news-section {
    padding: 100px 0;
    position: relative;
    color: #e2e8f0;
    
    /* 1. MENGGUNAKAN GAMBAR BACKGROUND LOKAL ANDA (image_6.jpg) */
    /* Kode ../ keluar dari folder 'css' terlebih dahulu, lalu masuk ke folder assets/images/ */
    background-image: linear-gradient(135deg, rgba(6, 11, 16, 0.70) 0%, rgba(13, 21, 28, 0.85) 100%), 
                      url('../assets/images/image_6.jpg');
    
    /* 2. PENGATURAN POSISI GAMBAR AGAR PROPORSIONAL & PARALLAX */
    background-size: cover;       /* Gambar otomatis menutup seluruh area secara proporsional */
    background-position: center;  /* Gambar terfokus tepat di tengah objek */
    background-repeat: no-repeat; /* Gambar tidak terulang-ulang */
    background-attachment: fixed; /* Efek paralaks mewah saat halaman di-scroll */
}

.news-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.news-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin: 15px 0;
}

.news-header h2 span {
    color: #ffd700; /* Aksen emas */
}

/* Grid System untuk 3 Kolom Berita */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Base News Card Styling */
.news-card {
    /* KUNCI UTAMA: Diturunkan drastis ke 0.25 (25% pekat) agar sangat tembus pandang */
    background-color: rgba(6, 15, 25, 0.10)!important;
    
    /* Efek Blur Kaca Belakang */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    
    /* Garis bingkai tipis transparan */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    padding: 40px 30px !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* EFEK HOVER: Kunci garis kuning menyala terang & pendaran luar bayangan */
.news-card:hover {
    transform: translateY(-8px) !important;
    border-color: #ffd700 !important; /* Bingkai menyala kuning emas */
    background-color: rgba(6, 15, 25, 0.45) !important; /* Sedikit menggelap agar teks tetap tajam */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 
                0 0 15px rgba(255, 215, 0, 0.3) !important;
}

/* EFEK HOVER: Semburat cahaya kuning terang yang mengikuti kursor mouse */
.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 215, 0, 0.28), transparent 60%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover::before {
    opacity: 1;
}

/* Memastikan konten teks berada di atas lapisan cahaya gradient */
.news-date, 
.news-tag, 
.news-card h3, 
.news-card p {
    position: relative;
    z-index: 2;
}

.news-date {
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 5px;
}

.news-tag {
    font-size: 0.75rem;
    color: #ffd700;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.news-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.news-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Styling Terjemahan Bahasa Indonesia */
.indonesian-text {
    display: block;
    color: #526071; /* Abu-abu redup profesional */
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 6px;
}

/* Optimasi Layar Smartphone */
@media (max-width: 768px) {
    .news-header h2 {
        font-size: 2rem;
    }
    .news-card {
        padding: 30px 20px;
    }
}

/* ===================================================== CAREERS & MANAGEMENT SECTION ===================================================== */
.careers-section {
    padding: 100px 0;
    position: relative;
    
    /* 1. MENGGUNAKAN GAMBAR BACKGROUND LOKAL ANDA (image_6.jpg) */
    /* Kode ../ berfungsi keluar dari folder css/ terlebih dahulu, lalu mengunci gambar */
    /* Lapisan putih disetel ke 94% sampai 96% agar gambar terlihat samar-samar (transparan) dan tulisan di atasnya tidak tenggelam */
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.56) 100%), 
                      url('../assets/images/image_6.jpg');
    
    /* 2. PENGATURAN POSISI GAMBAR AGAR PROPORSIONAL & PARALLAX */
    background-size: cover;       /* Gambar otomatis menutup seluruh area secara proporsional */
    background-position: center;  /* Gambar terfokus tepat di tengah objek */
    background-repeat: no-repeat; /* Gambar tidak terulang-ulang */
    background-attachment: fixed; /* Efek paralaks mewah saat halaman web di-scroll */
    
    color: #334155;            
}

.careers-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
}

.careers-header h2 {
    font-size: 2.5rem;
    color: #0f172a;            /* Judul utama diubah menjadi hitam arang tebal */
    margin: 15px 0;
}

.careers-header h2 span {
    color: #b45309;            /* Warna aksen emas digelapkan sedikit (amber tua) agar lebih tajam di latar putih */
}

.careers-header p {
    font-size: 1.1rem;
    color: #0f172a;            /* Subjudul diubah menjadi abu-abu gelap agar terlihat jelas di latar putih */
    line-height: 1.6;
}

/* Management Grid 4 Kolom */
.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

/* Individual Board Card Layout - TEMA LIGHT MODE */
.management-card {
    background: #f8fafc;       
    border: 1px solid #e2e8f0; 
    border-radius: 12px;       /* Kelengkungan sudut kartu yang halus */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); 
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* EFEK HOVER: Kunci garis kuning menyala terang & pendaran luar bayangan */
.management-card:hover {
    transform: translateY(-6px);
    border-color: #ffd700 !important; /* Garis tepi menyala kuning emas saat di-hover */
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08), 
                0 0 15px rgba(255, 215, 0, 0.3);
}

.member-image-box {
    width: 100%;
    aspect-ratio: 3 / 4;       /* Mengunci perbandingan lebar dan tinggi foto agar seragam lurus */
    background-color: #f1f5f9; 
    overflow: hidden;
}

.member-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* Foto otomatis mengisi penuh kotak tanpa peyang */
    object-position: center top; /* Fokus potongan gambar tetap mengunci area wajah */
    transition: transform 0.5s ease;
}

.management-card:hover .member-image-box img {
    transform: scale(1.05); /* Efek zoom halus pada foto saat di-hover */
}

.member-info {
    padding: 20px 15px 25px 15px; /* Mengatur jarak teks atas-bawah agar pas sesuai contoh gambar */
    text-align: center;
    background-color: #f8fafc;
}

.member-title {
    display: block;
    font-size: 0.8rem;
    color: #b45309;            /* Warna amber tua/kuning gelap resmi */
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;     /* Jarak renggang huruf */
    margin-bottom: 8px;
}

.member-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;         /* Ukuran font nama yang dipertegas */
    color: #0f172a;            /* Warna hitam arang gelap */
    font-weight: 700;
    text-transform: uppercase; /* Memaksa huruf kapital semua seperti di contoh */
    margin: 0;
    line-height: 1.3;
}

/* Action Box & Secure Document Button - TEMA BIRU MALAM MUDA */
.compliance-action-box {
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid #e2e8f0; /* Pembatas garis abu-abu cerah */
    padding-top: 40px;
}

/* Mengubah tulisan di atas button menjadi warna biru malam muda */
.compliance-action-box p {
    font-size: 0.9rem;
    color: #1e293b;            /* Warna Biru Malam Muda yang tegas */
    font-weight: 500;
    margin-bottom: 15px;
}

/* Mengubah background button menjadi biru malam muda */
.secure-doc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1e293b; /* KUNCI: Latar belakang warna Biru Malam Muda */
    color: #ffffff;            /* Warna tulisan di dalam tombol menjadi putih bersih */
    border: 2px solid #1e293b;
    padding: 14px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Efek saat tombol disentuh kursor (Hover) */
.secure-doc-btn:hover {
    background-color: #334155; /* Biru malam yang sedikit lebih terang saat di-hover */
    border-color: #334155;
    color: #ffd700;            /* Tulisan di dalam tombol berubah menjadi kuning emas mewah */
    box-shadow: 0 10px 20px rgba(30, 41, 59, 0.2); /* Bayangan lembut bertema biru malam */
}

/* ===================================================== CONTACT US SECTION ===================================================== */
.contact-section {
    padding: 100px 0;
    background-color: #f8fafc; /* Latar belakang dasar netral yang bersih */
}

/* Kotak Induk Utama Pembagi Dua Kolom */
.contact-wrapper {
    display: flex;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(4, 26, 48, 0.08); /* Bayangan lembut biru malam */
    width: 100%;
    min-height: 650px;
}

/* ================== KOLOM KIRI: AREA GAMBAR LOGO ================== */
.contact-visual-side {
    flex: 1;
    position: relative;
    background-color: #ffffff; /* Memastikan latar belakang murni putih bersih */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    overflow: hidden;
}

.contact-brand-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    
    /* KUNCI UTAMA 1: Memotong ujung luar gambar logo secara melingkar (fading edges) */
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0) 95%);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0) 95%);
}

/* KUNCI GRADASI TRANSPARAN: Memudarkan tepi kanan gambar agar menyatu mulus ke kolom kanan */
.contact-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Mengunci pendaran luar putih */
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 1) 95%);
     z-index: 2;
    pointer-events: none;
}

/* ================== KOLOM KANAN: AREA BIRU MALAM MUDA ================== */
.contact-info-side {
    flex: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); /* Kombinasi warna Biru Malam Muda eksekutif */
    padding: 60px;
    color: #e2e8f0;
    display: flex;
    flex-direction: center;
    flex-direction: column;
    justify-content: center;
}

.contact-info-side h2 {
    font-size: 2.6rem;
    color: #ffffff;
    margin: 15px 0 20px 0;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.contact-info-side h2 span {
    color: #ffd700; /* Aksen judul warna kuning emas */
}

.contact-lead-text {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-id-text {
    display: block;
    color: #64748b; /* Teks Indonesia redup abu-abu biru */
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Jalur List Saluran Kontak */
.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.channel-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.channel-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffd700;
}

.channel-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.channel-details p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0;
}

.channel-id-sub {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    font-style: italic;
    margin-top: 2px;
}

/* Link Web dan Tombol Profile Internal */
.contact-web-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-web-link:hover {
    text-decoration: underline;
    color: #ffffff;
}

.contact-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-download-btn:hover {
    background-color: #ffd700;
    color: #0f172a;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* ================== OPTIMASI RESPONSIF (MOBILE LAYOUT) ================== */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-visual-side {
        padding: 60px 40px;
    }
    .contact-brand-img {
        width: 100%;
        height: auto;
    }
    /* Mengubah arah gradasi pudar dari bawah ke atas khusus di layar handphone */
    .contact-fade-overlay {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 100%);
    }
    .contact-info-side {
        padding: 40px 30px;
    }
    .contact-info-side h2 {
        font-size: 2rem;
    }
}



