:root {
    --ll-gold: #cb9832;
    --ll-gold-hover: #b98526;
    --ll-blue: #313265;
    --ll-navy: #081f3b;
    --ll-navy-dark: #04172c;
    --ll-navy-light: #0d2a4c;
    --ll-white: #ffffff;
    --ll-light: #f7f8fa;
    --ll-text: #172033;
    --ll-muted: #6d7480;
    --ll-border: rgba(255, 255, 255, 0.14);
    --ll-transition: 0.25s ease;
}


/* ======================================================
   BASE
====================================================== */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ll-text);
    background: var(--ll-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

main {
    min-height: 70vh;
}


/* ======================================================
   HEADER
====================================================== */

.ll-header {
    position: relative;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #ececec;
}

    .ll-header .navbar {
        min-height: 88px;
    }

.ll-logo {
    display: block;
    width: 168px;
    height: auto;
}

.ll-header .navbar-nav {
    gap: 16px;
}

.ll-header .nav-link {
    position: relative;
    padding: 32px 14px 28px !important;
    color: #0c1831;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--ll-transition);
}

    .ll-header .nav-link:hover {
        color: var(--ll-gold);
    }

    .ll-header .nav-link::after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 20px;
        height: 2px;
        background: var(--ll-gold);
        transform: scaleX(0);
        transition: transform var(--ll-transition);
    }

    .ll-header .nav-link:hover::after,
    .ll-header .nav-link.active::after {
        transform: scaleX(1);
    }

    .ll-header .nav-link.active {
        color: var(--ll-gold);
    }


/* ======================================================
   BUTTONS
====================================================== */

.ll-btn-gold {
    padding: 12px 24px;
    color: #ffffff;
    background: var(--ll-gold);
    border: 1px solid var(--ll-gold);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background var(--ll-transition), border-color var(--ll-transition), transform var(--ll-transition);
}

    .ll-btn-gold:hover {
        color: #ffffff;
        background: var(--ll-gold-hover);
        border-color: var(--ll-gold-hover);
        transform: translateY(-1px);
    }


/* ======================================================
   COMMON
====================================================== */

.ll-section {
    padding: 90px 0;
}

.ll-section-title {
    position: relative;
    margin-bottom: 42px;
    color: var(--ll-navy);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
}

    .ll-section-title::after {
        content: "";
        display: block;
        width: 52px;
        height: 3px;
        margin-top: 12px;
        background: var(--ll-gold);
    }

.ll-gold-text {
    color: var(--ll-gold);
}


/* ======================================================
   PAGE HERO
====================================================== */

.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 260px;
    color: #ffffff;
    overflow: hidden;
    background: linear-gradient( 90deg, rgba(5, 24, 46, 0.98), rgba(8, 38, 70, 0.92) );
}

    .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.13;
        background-image: linear-gradient( 30deg, transparent 49%, rgba(203, 152, 50, 0.45) 50%, transparent 51% );
        background-size: 120px 120px;
    }

    .page-hero .container {
        position: relative;
        z-index: 2;
    }

.page-hero-content h1 {
    margin-bottom: 15px;
    font-size: 46px;
    font-weight: 800;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

    .page-breadcrumb a {
        color: rgba(255, 255, 255, 0.72);
        transition: color var(--ll-transition);
    }

        .page-breadcrumb a:hover {
            color: var(--ll-gold);
        }

    .page-breadcrumb i {
        color: var(--ll-gold);
        font-size: 9px;
    }


/* ======================================================
   COMMON SECTION HEADING
====================================================== */

.section-heading {
    margin-bottom: 38px;
}

    .section-heading.compact {
        margin-bottom: 30px;
    }

.section-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--ll-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    color: var(--ll-navy);
    font-size: 32px;
    font-weight: 800;
}

.section-heading-line {
    width: 48px;
    height: 3px;
    margin-top: 12px;
    background: var(--ll-gold);
}


/* ======================================================
   HOME - HERO
====================================================== */

.home-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient( 90deg, rgba(3, 20, 39, 0.97) 0%, rgba(4, 27, 51, 0.90) 32%, rgba(4, 27, 51, 0.58) 58%, rgba(4, 27, 51, 0.12) 100% ), url("/images/projects/taman-perindustrian-puchong.png") center center / cover no-repeat;
}

    .home-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.22) );
    }

    .home-hero .row {
        width: 100%;
    }

.home-hero-container {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.home-hero-content {
    width: 100%;
    max-width: 760px;
    padding: 70px 0;
}

    .home-hero-content h1 {
        margin: 0;
        max-width: 760px;
        color: #ffffff;
        font-size: clamp(48px, 4.2vw, 70px);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -2px;
        word-break: normal;
        overflow-wrap: normal;
    }

        .home-hero-content h1 span {
            color: var(--ll-gold);
        }

.home-title-line {
    width: 65px;
    height: 4px;
    margin: 28px 0;
    background: var(--ll-gold);
}

.home-hero-content p {
    max-width: 650px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.75;
}

.home-hero-btn {
    margin-top: 25px;
}


/* ======================================================
   HOME - ROADMAP
====================================================== */

.home-roadmap {
    position: relative;
    overflow: hidden;
    padding: 85px 0 95px;
    background: radial-gradient( circle at 85% 10%, rgba(49, 50, 101, 0.38), transparent 30% ), linear-gradient( 135deg, #061a31 0%, #08233f 50%, #06182d 100% );
}

    .home-roadmap::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0.08;
        background-image: linear-gradient( 30deg, transparent 49%, rgba(203, 152, 50, 0.45) 50%, transparent 51% );
        background-size: 120px 120px;
    }

    .home-roadmap .container {
        position: relative;
        z-index: 2;
    }

.roadmap-section-header {
    margin-bottom: 42px;
}

.roadmap-eyebrow {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.roadmap-section-header h2 {
    margin: 0;
    color: var(--ll-gold);
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
}

.roadmap-header-line {
    width: 58px;
    height: 3px;
    margin-top: 14px;
    background: var(--ll-gold);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.roadmap-project-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .roadmap-project-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.32);
    }

.roadmap-project-image {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: #dfe4e8;
}

    .roadmap-project-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.roadmap-project-card:hover .roadmap-project-image img {
    transform: scale(1.045);
}

.roadmap-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 45%, rgba(5, 24, 45, 0.55) 100% );
}

.roadmap-project-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #ffffff;
    background: var(--ll-gold);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.roadmap-project-content {
    position: relative;
    padding: 30px 28px 28px;
}

.roadmap-project-icon {
    position: absolute;
    top: -28px;
    left: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--ll-gold);
    background: #08213d;
    border: 2px solid var(--ll-gold);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

    .roadmap-project-icon i {
        font-size: 22px;
    }

.roadmap-project-content h3 {
    margin: 16px 0 12px;
    color: var(--ll-navy);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.roadmap-project-location {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-height: 42px;
    margin: 0 0 22px;
    color: #687180;
    font-size: 13px;
    line-height: 1.55;
}

    .roadmap-project-location i {
        margin-top: 3px;
        color: var(--ll-gold);
    }

.roadmap-project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 22px;
    padding: 15px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

    .roadmap-project-meta span {
        color: #7a8390;
        font-size: 12px;
    }

    .roadmap-project-meta strong {
        color: var(--ll-blue);
        font-size: 13px;
        font-weight: 700;
        text-align: right;
    }

.roadmap-project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ll-gold);
    font-size: 13px;
    font-weight: 700;
    transition: gap 0.25s ease, color 0.25s ease;
}

    .roadmap-project-link:hover {
        gap: 15px;
        color: var(--ll-gold-hover);
    }


/* ======================================================
   HOME - ROADMAP COMING SOON
====================================================== */

.roadmap-coming-card {
    min-height: 470px;
    color: #ffffff;
    background: radial-gradient( circle at 50% 0%, rgba(49, 50, 101, 0.48), transparent 50% ), linear-gradient( 145deg, #0a294a, #061a31 );
    border: 1px solid rgba(203, 152, 50, 0.25);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

    .roadmap-coming-card::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient( 135deg, transparent 40%, rgba(203, 152, 50, 0.04) );
    }

.roadmap-coming-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 45px 30px;
    text-align: center;
}

.roadmap-coming-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 25px;
    color: var(--ll-gold);
    border: 1.5px solid var(--ll-gold);
    border-radius: 50%;
}

    .roadmap-coming-icon i {
        font-size: 34px;
    }

.roadmap-coming-number {
    margin-bottom: 8px;
    color: rgba(203, 152, 50, 0.7);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.roadmap-coming-card h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}

.roadmap-coming-card p {
    max-width: 250px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.7;
}

.roadmap-coming-status {
    display: inline-flex;
    padding: 8px 18px;
    color: var(--ll-gold);
    border: 1px solid rgba(203, 152, 50, 0.65);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ======================================================
   HOME - VALUES
====================================================== */

.home-values {
    position: relative;
    overflow: hidden;
    padding: 65px 0 75px;
    color: #ffffff;
    background: radial-gradient( circle at 50% 20%, rgba(49, 50, 101, 0.42), transparent 42% ), linear-gradient( 135deg, var(--ll-navy), var(--ll-navy-dark) );
}

    .home-values::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.12;
        pointer-events: none;
        background-image: linear-gradient( 30deg, transparent 49%, rgba(203, 152, 50, 0.22) 50%, transparent 51% );
        background-size: 120px 120px;
    }

    .home-values .container {
        position: relative;
        z-index: 2;
    }

.home-values-header {
    text-align: center;
}

    .home-values-header h2 {
        margin-bottom: 8px;
        color: #ffffff;
        font-size: 30px;
        font-weight: 800;
        text-transform: uppercase;
    }

        .home-values-header h2 span {
            color: var(--ll-gold);
        }

.home-values-line {
    width: 55px;
    height: 3px;
    margin: 15px auto 45px;
    background: var(--ll-gold);
}


/* ======================================================
   VALUES - 4 + 3 LAYOUT
====================================================== */

.values-layout {
    max-width: 1180px;
    margin: 0 auto;
}

.values-row {
    display: grid;
    justify-content: center;
}

.values-row-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.values-row-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 900px;
    margin: 50px auto 0;
}

.value-item {
    min-height: 285px;
    padding: 0 35px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.values-row-four .value-item:last-child,
.values-row-three .value-item:last-child {
    border-right: 0;
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    margin: 0 auto 18px;
    color: var(--ll-gold);
    border: 1.5px solid var(--ll-gold);
    border-radius: 50%;
}

    .value-icon i {
        font-size: 31px;
    }

.value-number {
    color: var(--ll-gold);
    font-size: 20px;
    font-weight: 800;
}

.value-item h3 {
    margin: 5px 0 14px;
    color: var(--ll-gold);
    font-size: 15px;
    font-weight: 700;
}

.value-item p {
    max-width: 220px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.80);
    font-size: 13px;
    line-height: 1.75;
}

.home-follow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 45px;
}

    .home-follow > span {
        font-size: 14px;
        font-weight: 600;
    }

.home-follow-icons {
    display: flex;
    gap: 12px;
}

    .home-follow-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.65);
        border-radius: 50%;
        transition: color var(--ll-transition), background var(--ll-transition), border-color var(--ll-transition);
    }

        .home-follow-icons a:hover {
            color: var(--ll-navy);
            background: var(--ll-gold);
            border-color: var(--ll-gold);
        }


/* ======================================================
   ABOUT - BOARD
====================================================== */

.team-card {
    overflow: hidden;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e6e8eb;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(10, 31, 57, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(10, 31, 57, 0.14);
    }

.team-photo {
    height: 390px;
    overflow: hidden;
    background: #eef1f5;
}

    .team-photo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
    }

.team-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc4cd;
    background: linear-gradient( 145deg, #f2f4f7, #e8ebef );
}

    .team-photo-placeholder i {
        font-size: 85px;
    }

.team-content {
    min-height: 130px;
    padding: 22px;
    text-align: center;
    background: linear-gradient( 145deg, #092440, #061a31 );
}

    .team-content h3 {
        margin-bottom: 10px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.45;
    }

    .team-content span {
        color: var(--ll-gold);
        font-size: 12px;
        font-weight: 600;
    }


/* ======================================================
   ABOUT - MANAGEMENT
====================================================== */

.about-management {
    padding: 80px 0;
    background: #f6f7f9;
}

.management-card {
    height: 100%;
    padding: 35px 25px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e4e7eb;
    border-radius: 8px;
}

.management-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 214px;
    height: 214px;
    margin: 0 auto 22px;
    color: var(--ll-gold);
    background: var(--ll-navy);
    border: 2px solid var(--ll-gold);
    border-radius: 50%;
}

    .management-avatar i {
        font-size: 5rem;
    }

    .management-avatar img {
        width: 210px;
        height: 210px;
        margin: 0 auto;
        border-radius: 50%;
    }

    .management-card h3 {
        color: var(--ll-navy);
        font-size: 16px;
        font-weight: 800;
    }

.management-card span {
    display: block;
    margin-top: 10px;
    color: #747d89;
    font-size: 13px;
    line-height: 1.6;
}


/* ======================================================
   ABOUT - CORPORATE / VISION
====================================================== */

.about-corporate {
    background: #ffffff;
}

.about-panel {
    height: 100%;
    padding: 35px;
    border: 1px solid #e4e7eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(7, 29, 54, 0.06);
}


/* ======================================================
   ORG CHART
====================================================== */

.org-chart {
    padding-top: 20px;
}

.org-level {
    display: flex;
    justify-content: center;
}

.org-level-three {
    gap: 12px;
}

.org-box {
    min-width: 150px;
    padding: 14px 16px;
    color: #ffffff;
    background: var(--ll-navy);
    border-radius: 5px;
    text-align: center;
}

    .org-box strong {
        display: block;
        font-size: 12px;
    }

    .org-box span {
        display: block;
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.75);
        font-size: 10px;
    }

.org-main {
    min-width: 205px;
}

.org-gold {
    background: var(--ll-gold);
}

.org-line.vertical {
    width: 2px;
    height: 35px;
    margin: 0 auto;
    background: #b9c1ca;
}

.org-branch {
    position: relative;
    width: 70%;
    height: 25px;
    margin: auto;
    border-top: 2px solid #b9c1ca;
}

    .org-branch::before,
    .org-branch::after {
        content: "";
        position: absolute;
        top: 0;
        width: 2px;
        height: 25px;
        background: #b9c1ca;
    }

    .org-branch::before {
        left: 0;
    }

    .org-branch::after {
        right: 0;
    }


/* ======================================================
   ABOUT - VISION
====================================================== */

.vision-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.about-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: var(--ll-blue);
    background: rgba(203, 152, 50, 0.15);
    border-radius: 50%;
}

    .about-icon i {
        font-size: 23px;
    }

.vision-block h3 {
    margin-bottom: 8px;
    color: var(--ll-navy);
    font-size: 16px;
    font-weight: 800;
}

.vision-block p {
    margin: 0;
    color: #66707d;
    font-size: 13px;
    line-height: 1.75;
}


/* ======================================================
   ABOUT - MISSION
====================================================== */

.mission-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0 22px;
    padding-top: 28px;
    border-top: 1px solid #e4e7ea;
}

.mission-heading-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--ll-blue);
    background: rgba(203, 152, 50, 0.14);
    border-radius: 50%;
}

    .mission-heading-icon i {
        font-size: 20px;
    }

.mission-heading span {
    display: block;
    margin-bottom: 3px;
    color: var(--ll-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.mission-heading h3 {
    margin: 0;
    color: var(--ll-navy);
    font-size: 18px;
    font-weight: 800;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mission-item {
    display: flex;
    gap: 16px;
}

.mission-number {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #ffffff;
    background: var(--ll-gold);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.mission-item h4 {
    margin: 2px 0 5px;
    color: var(--ll-navy);
    font-size: 13px;
    font-weight: 800;
}

.mission-item p {
    margin: 0;
    color: #707987;
    font-size: 12px;
    line-height: 1.65;
}


/* ======================================================
   ABOUT - CERTIFICATION
====================================================== */

.certification-section {
    padding: 80px 0;
    background: #f6f7f9;
}

.certification-placeholder {
    padding: 55px 30px;
    text-align: center;
    border: 2px dashed #c9cfd7;
    border-radius: 8px;
    background: #ffffff;
}

.certification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    color: var(--ll-gold);
    background: rgba(203, 152, 50, 0.12);
    border-radius: 50%;
}

    .certification-icon i {
        font-size: 30px;
    }

.certification-placeholder h3 {
    color: var(--ll-navy);
    font-size: 18px;
    font-weight: 800;
}

.certification-placeholder p {
    margin: 8px 0 0;
    color: #7b8490;
    font-size: 13px;
}


/* ======================================================
   CLQ - PROJECTS
====================================================== */

.clq-projects {
    background: #f7f8fa;
}

.clq-project {
    overflow: hidden;
    margin-bottom: 42px;
    background: #ffffff;
    border: 1px solid #e3e6ea;
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(7, 28, 52, 0.08);
}

    .clq-project:last-child {
        margin-bottom: 0;
    }

.clq-project-image {
    position: relative;
    height: 100%;
    min-height: 460px;
    overflow: hidden;
    background: #dfe3e8;
}

    .clq-project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.clq-project:hover .clq-project-image img {
    transform: scale(1.035);
}

.clq-project-number {
    position: absolute;
    top: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: #ffffff;
    background: var(--ll-gold);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.clq-project-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.clq-status {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 15px;
    padding: 7px 13px;
    color: var(--ll-gold);
    background: rgba(203, 152, 50, 0.12);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.clq-project-content h2 {
    margin-bottom: 28px;
    color: var(--ll-navy);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
}

.clq-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 28px;
}

.clq-info-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    background: #f7f8fa;
    border: 1px solid #e6e8eb;
    border-radius: 6px;
}

    .clq-info-item > i {
        width: 30px;
        color: var(--ll-gold);
        font-size: 18px;
    }

    .clq-info-item span {
        display: block;
        margin-bottom: 3px;
        color: #89919c;
        font-size: 10px;
        text-transform: uppercase;
    }

    .clq-info-item strong {
        color: var(--ll-blue);
        font-size: 13px;
        font-weight: 800;
    }

.clq-address {
    display: flex;
    gap: 15px;
    padding-top: 22px;
    border-top: 1px solid #e4e7ea;
}

    .clq-address > i {
        margin-top: 3px;
        color: var(--ll-gold);
        font-size: 18px;
    }

    .clq-address span {
        display: block;
        margin-bottom: 6px;
        color: #8a929d;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .clq-address p {
        margin: 0;
        color: #616b78;
        font-size: 13px;
        line-height: 1.7;
    }


/* ======================================================
   CLQ - COMING SOON
====================================================== */

.clq-coming-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    color: #ffffff;
    background: radial-gradient( circle at 50% 0%, rgba(49, 50, 101, 0.45), transparent 45% ), linear-gradient( 135deg, #071d36, #041629 );
}

    .clq-coming-section::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.1;
        background-image: linear-gradient( 30deg, transparent 49%, rgba(203, 152, 50, 0.45) 50%, transparent 51% );
        background-size: 120px 120px;
    }

    .clq-coming-section .container {
        position: relative;
        z-index: 2;
    }

.clq-coming-heading h2 {
    color: #ffffff;
}

.clq-coming-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 25px;
    text-align: center;
    background: linear-gradient( 145deg, rgba(13, 48, 84, 0.85), rgba(7, 28, 52, 0.85) );
    border: 1px solid rgba(203, 152, 50, 0.24);
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .clq-coming-card:hover {
        transform: translateY(-6px);
        border-color: var(--ll-gold);
    }

.clq-coming-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 22px;
    color: var(--ll-gold);
    border: 1.5px solid var(--ll-gold);
    border-radius: 50%;
}

    .clq-coming-icon i {
        font-size: 33px;
    }

.clq-coming-card > span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.clq-coming-card h3 {
    margin: 10px 0 20px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}

.clq-coming-badge {
    padding: 7px 16px;
    color: var(--ll-gold);
    border: 1px solid var(--ll-gold);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}


/* ======================================================
   CLQ - CTA
====================================================== */

.clq-cta {
    padding: 65px 0;
    color: #ffffff;
    background: linear-gradient( 110deg, #0a2b4d, #071b32 );
}

    .clq-cta span {
        color: var(--ll-gold);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.4px;
        text-transform: uppercase;
    }

    .clq-cta h2 {
        margin: 5px 0 10px;
        color: #ffffff;
        font-size: 34px;
        font-weight: 800;
    }

    .clq-cta p {
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
    }

.clq-cta-btn {
    min-width: 160px;
}


/* ======================================================
   FOOTER
====================================================== */

.ll-footer {
    padding-top: 70px;
    color: #ffffff;
    background: linear-gradient( 135deg, var(--ll-navy-dark), var(--ll-navy) );
    border-top: 2px solid var(--ll-gold);
}

.ll-footer-logo {
    width: 175px;
    height: auto;
    margin-bottom: 24px;
}

.ll-footer-description {
    max-width: 240px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.8;
}

.ll-footer h5 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.ll-footer-links,
.ll-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .ll-footer-links li {
        margin-bottom: 11px;
    }

    .ll-footer-links a {
        color: rgba(255, 255, 255, 0.78);
        font-size: 14px;
        transition: color var(--ll-transition);
    }

        .ll-footer-links a:hover {
            color: var(--ll-gold);
        }

    .ll-contact-list li {
        display: flex;
        gap: 13px;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 14px;
        line-height: 1.6;
    }

    .ll-contact-list i {
        width: 17px;
        margin-top: 4px;
        color: var(--ll-gold);
    }

    .ll-contact-list span a {
        color: rgba(255, 255, 255, 0.78);
    }

    .ll-social-links {
        display: flex;
        gap: 12px;
    }

    .ll-social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 50%;
        transition: color var(--ll-transition), background var(--ll-transition), border-color var(--ll-transition);
    }

        .ll-social-links a:hover {
            color: var(--ll-navy);
            background: var(--ll-gold);
            border-color: var(--ll-gold);
        }

.ll-footer-bottom {
    margin-top: 60px;
    padding: 18px 0;
    color: #111111;
    background: var(--ll-gold);
    text-align: center;
}

    .ll-footer-bottom p {
        margin: 0;
        font-size: 13px;
    }


/* ======================================================
   RESPONSIVE - LAPTOP
====================================================== */

@media (max-width: 1199.98px) {

    .home-hero-content {
        max-width: 700px;
    }

        .home-hero-content h1 {
            max-width: 700px;
            font-size: 56px;
        }

    .roadmap-project-image {
        height: 215px;
    }

    .value-item {
        padding: 0 24px;
    }
}


/* ======================================================
   RESPONSIVE - TABLET
====================================================== */

@media (max-width: 991.98px) {

    .ll-header .navbar {
        min-height: 76px;
    }

    .ll-logo {
        width: 145px;
    }

    .ll-header .navbar-collapse {
        margin-top: 15px;
        padding: 15px 0 25px;
    }

    .ll-header .navbar-nav {
        gap: 0;
    }

    .ll-header .nav-link {
        padding: 12px 0 !important;
    }

        .ll-header .nav-link::after {
            display: none;
        }

    .ll-nav-social {
        margin-top: 15px;
    }

    .ll-section {
        padding: 65px 0;
    }


    /* Home Hero */

    .home-hero {
        min-height: 600px;
        background: linear-gradient( 90deg, rgba(3, 20, 39, 0.96), rgba(3, 20, 39, 0.72) ), url("/images/projects/taman-perindustrian-puchong.png") center center / cover no-repeat;
    }

    .home-hero-container {
        min-height: 600px;
    }

    .home-hero-content {
        max-width: 640px;
    }

        .home-hero-content h1 {
            max-width: 640px;
            font-size: 52px;
        }


    /* Roadmap */

    .home-roadmap {
        padding: 70px 0;
    }

    .roadmap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* Values */

    .values-row-four,
    .values-row-three {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
        gap: 40px 0;
    }

    .values-row-three {
        margin-top: 40px;
    }

    .value-item {
        min-height: 280px;
        border-right: 1px solid rgba(255, 255, 255, 0.13);
    }

        .value-item:nth-child(2n) {
            border-right: 0;
        }


    /* About */

    .team-photo {
        height: 420px;
    }

    .org-level-three {
        flex-direction: column;
    }

    .org-branch {
        display: none;
    }

    .org-level-three .org-box {
        margin: 8px auto;
    }


    /* CLQ */

    .clq-project-image {
        min-height: 390px;
    }

    .clq-project-content {
        padding: 40px;
    }
}


/* ======================================================
   RESPONSIVE - SMALL TABLET
====================================================== */

@media (max-width: 767.98px) {

    .home-hero {
        min-height: 620px;
    }

    .home-hero-container {
        min-height: 620px;
    }

    .home-hero-content {
        max-width: 100%;
        padding: 55px 0;
    }

        .home-hero-content h1 {
            max-width: 100%;
            font-size: 44px;
            letter-spacing: -1px;
        }

        .home-hero-content p {
            max-width: 570px;
            font-size: 14px;
        }


    /* Roadmap */

    .roadmap-section-header {
        text-align: center;
    }

    .roadmap-header-line {
        margin-left: auto;
        margin-right: auto;
    }

    .roadmap-section-header h2 {
        font-size: 32px;
    }

    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .roadmap-project-image {
        height: 260px;
    }

    .roadmap-coming-card,
    .roadmap-coming-inner {
        min-height: 360px;
    }


    /* Values */

    .home-values-header h2 {
        font-size: 27px;
    }

    .value-item {
        padding: 0 26px;
    }


    /* CLQ */

    .clq-project-image {
        min-height: 310px;
    }

    .clq-project-content {
        padding: 30px 24px;
    }

        .clq-project-content h2 {
            font-size: 25px;
        }

    .clq-info-grid {
        grid-template-columns: 1fr;
    }

    .clq-coming-section {
        padding: 65px 0;
    }
}


/* ======================================================
   RESPONSIVE - MOBILE
====================================================== */

@media (max-width: 575.98px) {

    .ll-logo {
        width: 135px;
    }

    .ll-section {
        padding: 50px 0;
    }

    .ll-section-title {
        font-size: 26px;
    }


    /* Page Hero */

    .page-hero {
        min-height: 210px;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }


    /* Home Hero */

    .home-hero {
        min-height: 620px;
    }

    .home-hero-container {
        min-height: 620px;
    }

    .home-hero-content {
        padding: 45px 0;
    }

        .home-hero-content h1 {
            font-size: 36px;
            line-height: 1.12;
        }

        .home-hero-content p {
            font-size: 14px;
            line-height: 1.7;
        }


    /* Roadmap */

    .home-roadmap {
        padding: 55px 0;
    }

    .roadmap-project-image {
        height: 220px;
    }

    .roadmap-project-content {
        padding-left: 22px;
        padding-right: 22px;
    }

    .roadmap-project-meta {
        align-items: flex-start;
        flex-direction: column;
    }

        .roadmap-project-meta strong {
            text-align: left;
        }

    .roadmap-coming-card,
    .roadmap-coming-inner {
        min-height: 330px;
    }


    /* Values */

    .home-values {
        padding: 55px 0;
    }

    .home-values-header h2 {
        font-size: 24px;
    }

    .values-row-four,
    .values-row-three {
        grid-template-columns: 1fr;
    }

    .values-row-three {
        margin-top: 35px;
    }

    .value-item {
        min-height: auto;
        padding: 0 20px 35px;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

        .value-item:last-child {
            border-bottom: 0;
        }

    .home-follow {
        flex-direction: column;
        gap: 15px;
    }


    /* About */

    .about-panel {
        padding: 25px 20px;
    }

    .team-photo {
        height: 440px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .vision-block {
        flex-direction: column;
    }


    /* CLQ */

    .clq-project-image {
        min-height: 250px;
    }

    .clq-project-number {
        width: 46px;
        height: 46px;
        top: 15px;
        left: 15px;
    }

    .clq-project-content {
        padding: 26px 20px;
    }

    .clq-cta {
        text-align: center;
    }

        .clq-cta h2 {
            font-size: 28px;
        }


    /* Footer */

    .ll-footer {
        padding-top: 50px;
    }

    .ll-footer-bottom {
        margin-top: 45px;
    }
}
