/* =========================
   HERO SECTION
========================= */
.hero-section {
    width: 100%;
    overflow: hidden;
    background: #f7f7f7;
    padding: 37px 0 86px 0 !important;
}

.hero-section .col-5, .hero-section .col-7 {
    padding-left: 0;
    padding-right: 0;
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
    padding: 80px 0;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px 10px 10px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 1px 2px 2px rgba(62, 58, 57, 0.25);
    border: 0.5px solid #e8e8e8;
    margin-bottom: 36px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #50c3cb;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 15px #e8e8e8;
}

.hero-badge-text {
    color: #1d4656;
    font-size: 16px;
    font-family: Lato, sans-serif;
    font-weight: 600;
}

.hero-subtitle {
    color: #717171;
    font-size: 30px;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    margin-bottom: 17px;
}

.hero-title {
    max-width: 520px;
    color: #3e3a39;
    font-size: 42px;
    line-height: 60px;
    letter-spacing: 0.84px;
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
    margin-bottom: 36px;
}

.hero-description {
    max-width: 520px;
    color: #151314;
    font-size: 20px;
    line-height: 32px;
    font-family: Lato, sans-serif;
    font-weight: 500;
    text-shadow: 1px 3px 4px rgba(255, 255, 255, 0.25);
}

/* =========================
   HERO CARDS
========================= */
.hero-gallery {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    flex-shrink: 0;
    transition: width 0.8s ease-in-out;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.hero-card-large {
    width: 416px;
    height: 521px;
}

.hero-card-small {
    width: 160px;
    height: 521px;
}

.hero-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 116px;
    background: linear-gradient(
        0deg,
        rgba(62, 58, 57, 0.85) 16%,
        rgba(62, 58, 57, 0) 100%
    );
}

.hero-card-year {
    position: absolute;
    bottom: -12px;
    right: -12px;
    left: auto;
    opacity: 0.35;
    mix-blend-mode: screen;
    color: #fff;
    font-size: 80px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
    transform: rotate(0deg);
    transform-origin: right bottom;
    transition: all 0.8s ease-in-out;
}

.hero-card-year-vertical {
    position: absolute;
    left: 191px;
    bottom: -5px;
    right: auto;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    opacity: 0.35;
    mix-blend-mode: screen;
    color: #fff;
    font-size: 80px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    letter-spacing: 4px;
    transition: all 0.8s ease-in-out;
}

.hero-card-caption {
    position: absolute;
    left: 24px;
    bottom: 24px;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    font-family: Lato, sans-serif;
    font-weight: 500;
    transition: all 0.8s ease-in-out;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.hero-card-caption.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0 33px 0 !important;
    }

    .row.container.big-container {
        flex-direction: column;
    }

    .hero-section .col-5,
    .hero-section .col-7 {
        max-width: 100%;
        width: 100%;
    }

    .hero-content {
        padding: 0;
    }

    .hero-badge {
        margin-bottom: 30px;
    }

    .hero-badge-text {
        font-size: 14px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 32px;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 22px;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .hero-gallery {
        justify-content: start;
        gap: 0;
        overflow-x: auto;
        scroll-behavior: smooth;
        max-width: 100%;
    }

    .hero-gallery::-webkit-scrollbar {
        display: none;
    }

    .hero-card {
        transition: width 0.8s ease-in-out, opacity 0.8s ease-in-out;
        flex-shrink: 0;
    }

    .hero-card-large,
    .hero-card-small {
        width: 100%;
        height: 358px;
        min-width: 100%;
    }

    .hero-card-year {
        bottom: -13px;
        right: -10px;
    }

    .hero-card-year-vertical {
        left: 101vw;
        bottom: -5px;
    }

    .hero-card-overlay {
        height: 100px;
    }

    .hero-card-caption {
        bottom: 22px;
    }
}

/* =========================
   PARTNERSHIP SECTION
========================= */
.partnership-section {
    padding: 40px 0;
}

/* =========================
   HEADER
========================= */
.partnership-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
}

.partnership-title-wrap {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.partnership-subtitle {
    color: #717171;
    font-size: 30px;
    line-height: 50px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
}

.partnership-title-indent {
    padding-left: 68px;
}

.partnership-title {
    color: #0a8091;
    font-size: 30px;
    line-height: 50px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
}

.partnership-description {
    max-width: 565px;
    color: #3e3a39;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.36px;
    font-family: Lato, sans-serif;
    font-weight: 500;
    text-align: left;
}

/* =========================
   VIDEO
========================= */
.partnership-video-wrap {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

.partnership-video-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: transform 0.3s ease;
    min-height: 458px;
    object-fit: cover;
}

.partnership-video-wrap:hover .partnership-video-image {
    transform: scale(1.02);
}

.partnership-video-wrap .video-js {
    width: 100%;
    height: auto;
    border-radius: 24px;
    min-height: 458px;
}

.video-background-text {
  	width: 379px;
  	position: relative;
  	font-size: 36px;
  	line-height: 50px;
  	display: inline-block;
  	font-weight: 700;
  	font-family: Montserrat;
  	background: linear-gradient(180deg, rgba(113, 113, 113, 0.11), rgba(62, 58, 57, 0.15) 51.14%, rgba(113, 113, 113, 0.11));
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
  	text-align: right;
  	mix-blend-mode: multiply;
    flex: 1;
}

/* =========================
   PLAY BUTTON
========================= */
.partnership-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: rgba(62, 58, 57, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 10;
}

.partnership-play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(62, 58, 57, 0.7);
}

.partnership-play-icon {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid #fff;
}

/* =========================
   PLAY BUTTON
========================= */
.partnership-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: rgba(62, 58, 57, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.partnership-play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(62, 58, 57, 0.7);
}

.partnership-play-icon {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .partnership-section {
        padding: 30px 0;
    }

    .partnership-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 36px;
    }

    .partnership-subtitle,
    .partnership-title {
        font-size: 24px;
        line-height: 32px;
    }

    .partnership-description {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.32px;
        font-weight: 400;
        max-width: 100%;
    }

    .partnership-video-wrap {
        margin-bottom: 17px;
    }

    .video-background-text {
        width: 100%;
        font-size: 30px;
    }
}

/* ========================================
   PARTNER ECOSYSTEM SECTION
======================================== */
.partner-ecosystem-section {
    padding: 70px 0 64px 0;
    overflow: hidden;
    background: #F7F7F7;
}

/* ========================================
   HEADER
======================================== */
.partner-ecosystem-header {
    margin-bottom: 80px;
    text-align: left;
}

.partner-ecosystem-title {
    color: #3E3A39;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 50px;
    margin: 0;
}

.partner-ecosystem-description {
    color: #717171;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.36px;
    margin: 0;
}

/* ========================================
   GALLERY
======================================== */
.partner-ecosystem-gallery-wrap {
    display: flex;
    justify-content: center;
}

.partner-ecosystem-gallery {
    width: 440px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    justify-items: start;
    align-items: start;
}

.partner-ecosystem-gallery-small,
.partner-ecosystem-gallery-large {
    overflow: hidden;
}

.partner-ecosystem-gallery-small img,
.partner-ecosystem-gallery-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.partner-ecosystem-gallery-small {
    width: 173px;
    height: 173px;
}

.partner-ecosystem-gallery-small:first-child {
    align-self: end;
    justify-self: end;
}

.partner-ecosystem-gallery-large {
    width: 212px;
    height: 212px;
}

.margin-custom-1 {
    margin-right: -25px;
}

.margin-custom-2 {
    margin-left: -25px;
}

/* ========================================
   FEATURE LISTS
======================================== */
.partner-ecosystem-left-list,
.partner-ecosystem-right-list {
    display: flex;
    flex-direction: column;
    gap: 90px;
    text-align: left;
}

.partner-ecosystem-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.partner-ecosystem-feature-left {
    justify-content: flex-end;
    text-align: right;
}

.partner-ecosystem-feature-text {
    color: #151314;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.36px;
    max-width: 320px;
}

/* ========================================
   INDICATOR
======================================== */
.partner-ecosystem-indicator {
    font-size: 20px;
    color: #F57F20;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {

    .partner-ecosystem-section {
        padding: 30px 0;
    }

    .partner-ecosystem-header {
        margin-bottom: 30px;
    }

    .partner-ecosystem-header .offset-lg-1 {
        margin-top: 16px;
    }

    .partner-ecosystem-title {
        font-size: 24px;
        line-height: 32px;
    }

    .partner-ecosystem-feature-text {
        order: 2;
    }

    .partner-ecosystem-left-list,
    .partner-ecosystem-right-list {
        gap: 20px;
    }

    .partner-ecosystem-right-list:first-child {
        margin-top: 20px;
    }

    .margin-custom-1 {
        margin-right: 0;
    }

    .margin-custom-2 {
        margin-left: 0;
    }

    .partner-ecosystem-feature-left {
        justify-content: flex-start;
        text-align: left;
    }

    .partner-ecosystem-gallery {
        gap: 10px;
        margin-top: 30px;
    }

    .partner-ecosystem-gallery-small {
        width: 120px;
        height: 120px;
        margin-top: 0;
    }

    .partner-ecosystem-gallery-large {
        width: 150px;
        height: 150px;
    }

    .partner-ecosystem-gallery > :nth-child(3) {
        justify-self: end;
    }
}

/* =========================================
   FUTURE ESTATE SECTION
========================================= */
.future-estate-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 44px;
    background: #3E3A39;
}

/* =========================================
   BACKGROUND SHAPES
========================================= */
.future-estate-bg {
    position: absolute;
    width: 957px;
    height: 85%;
    opacity: 0.25;
    mix-blend-mode: multiply;
    background: #3E3A39;
    pointer-events: none;
    clip-path: polygon(50% 0, 100% 0, 55% 100%, 0 100%);
}

.future-estate-bg-right {
    top: 4px;
    right: -80px;
}

.future-estate-bg-left {
    left: -20%;
    bottom: -190px;
}

/* =========================================
   HERO
========================================= */
.future-estate-hero {
    margin-bottom: 70px;
    text-align: left;
}

.future-estate-subtitle {
    color: #E8E8E8;
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.future-estate-title {
    color: #FFFFFF;
    font-size: 42px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    margin-left: 40px;
}

.future-estate-description {
    max-width: 542px;
    margin-left: 80px;
    margin-bottom: 0;
    color: #FFFFFF;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.36px;
}

/* =========================================
   CONTENT
========================================= */
.future-estate-content {
    position: relative;
}

/* =========================================
   CARDS
========================================= */
.future-estate-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.future-estate-card-right {
    align-items: flex-end;
    margin-top: 105px;
    margin-bottom: 64px;
    flex: 1;
}

.future-estate-logo img {
    width: 215px;
    max-width: 100%;
    display: block;
}

.future-estate-card-desc {
    max-width: 542px;
    padding: 0;
    text-align: left;
    color: #E8E8E8;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.32px;
}

.future-estate-card-desc-right {
    text-align: right;
    max-width: 487px;
}

/* =========================================
   GALLERY
========================================= */
.future-estate-gallery {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    justify-content: center;
}

.future-estate-gallery-large img {
    width: 436px;
    height: 250px;
    object-fit: cover;
    display: block;
}

.future-estate-gallery-small img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {

    .future-estate-section {
        padding: 30px 0 20px;
    }

    .future-estate-hero-wrap {
        flex-direction: column;
    }

    .future-estate-hero {
        margin-bottom: 30px;
    }

    .future-estate-subtitle {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .future-estate-title {
        font-size: 24px;
        margin-bottom: 12px;
        margin-left: 20px;
    }

    .future-estate-description {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.32px;
        font-weight: 400;
        margin-left: 40px;
    }

    .future-estate-card {
        gap: 12px;
    }

    .future-estate-card-right {
        margin-top: 0;
        margin-bottom: 42px;
        align-items: flex-start;
        padding-left: 30px;
    }

    .future-estate-card-desc-right,
    .future-estate-card-desc {
        text-align: left;
        max-width: 100%;
    }

    .future-estate-content {
        padding-left: 30px;
    }

    .future-estate-gallery {
        flex-direction: column-reverse;
    }

    .future-estate-gallery-small img {
        width: 180px;
        height: auto;
    }

    .future-estate-gallery-large img {
        width: 310px;
        height: auto;
    }

    .future-estate-bg {
        clip-path: polygon(50% 0, 100% 0, 25% 100%, 0 100%);
    }

    .future-estate-bg-right {
        top: 340px;
        right: 75px;
    }

    .future-estate-bg-left {
        left: 253px;
        bottom: 490px;
    }
}

/* ========================================
   ACADEMY AGENT SECTION
======================================== */
.academy-agent-section {
    padding: 40px 0;
    overflow: hidden;
}

/* ========================================
   WRAPPER - GRID LAYOUT
======================================== */
.academy-agent-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

/* ========================================
   HEADING
======================================== */
.academy-agent-heading {
    margin-bottom: 0;
    text-align: right;
    max-width: fit-content;
}

.academy-subtitle {
    color: #717171;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 14px;
}

.academy-title {
    color: #3E3A39;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   CARD LIST
======================================== */
.academy-agent-card-list {
    display: flex;
    gap: 24px;
    align-items: stretch;
    padding-bottom: 10px;
    justify-content: end;
}

/* ========================================
   CARD
======================================== */
.academy-agent-card {
    position: relative;
    border-radius: 24px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

/* ACTIVE CARD */
.academy-agent-card-active {
    width: 549px;
    height: 360px;
    box-shadow: 0px 20px 44px -4px rgba(0, 0, 0, 0.20);
}

.academy-agent-card-active .academy-agent-card-bg {
    background: radial-gradient(
        ellipse 50.00% 50.00% at 50.00% 50.00%, 
        rgba(255, 255, 255, 0.20) 0%, 
        rgba(232, 232, 232, 0.20) 100%
    );
    border-radius: 24px;
}

.academy-agent-card-active .academy-agent-card-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        /* Lapisan Atas: Mengatur area tengah atas-bawah agar ada abu-abu secara horizontal */
        linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #717171 50%, rgba(255, 255, 255, 0) 100%),
        /* Lapisan Bawah: Mengatur gradasi vertikal dari atas ke bawah (Putih ke Abu-abu) */
        linear-gradient(180deg, #FFFFFF 30%, #717171 70%);
        
    /* Teknik melubangi tengah agar isi kartu tidak tertutup */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
            
    padding: 1.5px; /* Tebal border gradasi */
    z-index: -1;  /* Lempar ke belakang agar tidak menutupi text/konten */
    pointer-events: none;
    border-radius: 24px;
}

/* SMALL CARD */
.academy-agent-card-secondary {
    width: 231px;
    height: 360px;
}

.academy-agent-card-secondary .academy-agent-card-bg {
    background: radial-gradient(
        ellipse 50.00% 50.00% at 50.00% 50.00%, 
        rgba(113, 113, 113, 0.15) 0%, 
        rgba(21, 19, 20, 0.15) 100%
    );
    border-radius: 24px;
}

.academy-agent-card-secondary .academy-card-title,
.academy-agent-card-secondary .academy-card-description {
    display: none;
}

.academy-agent-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.academy-agent-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

/* ========================================
   BACKGROUND
======================================== */
.academy-agent-card-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(62,58,57,0.05) 0%,
            rgba(62,58,57,0.70) 65%,
            rgba(62,58,57,0.95) 100%
        );
    z-index: 2;
}

/* ========================================
   IMAGE
======================================== */
.academy-agent-card-image {
    position: absolute;
    right: -36px;
    z-index: 5;
    bottom: -53px;
}

.academy-agent-card[data-card="CDM"] .academy-agent-card-image {
    bottom: -10px;
    right: -75px;
}

.academy-agent-card-image img {
    width: 189px;
    height: 336px;
    object-fit: cover;
    display: block;
}

.academy-agent-card[data-card="CDM"] .academy-agent-card-image img {
    width: 416px;
    height: 234px;
}

/* ========================================
   CODE TEXT
======================================== */
.academy-agent-card-code {
    position: absolute;
    bottom: 5px;
    right: 10px;
    z-index: 3;
    font-size: 80px;
    letter-spacing: 0.02em;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #fff, #717171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    display: inline-block;
    opacity: 0.35;
    mix-blend-mode: multiply;
}

/* ========================================
   CONTENT
======================================== */
.academy-agent-card-content {
    position: absolute;
    left: 36px;
    right: 153px;
    top: 15px;
    z-index: 4;
    text-align: left;
}

.academy-agent-card-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 28px;
}

.academy-agent-card-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.academy-agent-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.academy-card-title {
    color: #3E3A39;
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.40px;
    margin: 0;
}

.academy-card-description {
    color: #3E3A39;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.36px;
    margin: 0;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {

    .academy-agent-section {
        padding: 30px 0 45px;
    }

    .academy-agent-wrapper {
        gap: 16px;
        display: flex;
        flex-direction: column;
    }

    .academy-agent-swiper {
        max-width: 100%;
    }

    .academy-agent-swiper .swiper-slide {
        max-width: 100%;
    }

    .academy-subtitle {
        font-size: 20px;
    }

    .academy-title {
        font-size: 24px;
    }

    .academy-agent-heading {
        max-width: 100%;
        justify-content: space-between;
        width: 100%;
    }

    .academy-agent-card-active {
        min-height: 590px;
        max-width: 100%;
    }

    .academy-agent-card-secondary {
        width: 72vw;
        min-height: 590px;
    }

    .academy-agent-card-content {
        left: 16px;
        right: 16px;
        top: 16px;
    }

    .academy-agent-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 14px;
    }

    .academy-card-title {
        font-size: 20px;
        line-height: 28px;
    }

    .academy-agent-card-image {
        right: -10px;
        bottom: -45px;
    }

    .academy-agent-card[data-card="CDM"] .academy-agent-card-image {
        bottom: 30px;
        right: -64px;
    }
}

/* =========================================================
   ACADEMY OFFICE SECTION
========================================================= */

.academy-office-section {
    position: relative;
    padding: 40px 0 80px;
    overflow: hidden;
}

/* WRAPPER */

.academy-office-wrapper {
    align-items: center;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 102px;
}

/* =========================================================
   HEADING
========================================================= */

.academy-office-heading {
    text-align: left;
}

/* =========================================================
   CARD
========================================================= */

.academy-office-card {
    position: relative;
    border-radius: 24px;
    display: flex;
    align-items: stretch;
    height: 325px;
}

/* BG OVERLAY */

.academy-office-card-bg {
    position: absolute;
    border-radius: 24px;
    inset: 0;
    background: radial-gradient(
        ellipse 50.00% 50.00% at 50.00% 50.00%, 
        rgba(255, 255, 255, 0.20) 0%, 
        rgba(80, 195, 203, 0.20) 100%
    );
}

.academy-office-card-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        /* Lapisan Atas: Mengatur area tengah atas-bawah agar ada abu-abu secara horizontal */
        linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #50C3CB 50%, rgba(255, 255, 255, 0) 100%),
        /* Lapisan Bawah: Mengatur gradasi vertikal dari atas ke bawah (Putih ke Abu-abu) */
        linear-gradient(180deg, #FFFFFF 30%, #50C3CB 70%);
        
    /* Teknik melubangi tengah agar isi kartu tidak tertutup */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
            
    padding: 1.5px; /* Tebal border gradasi */
    z-index: -1;  /* Lempar ke belakang agar tidak menutupi text/konten */
    pointer-events: none;
    border-radius: 24px;
}

/* BIG CODE */

.academy-office-code {
    top: -15px;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 8px;
    position: absolute;
    right: -20px;
    z-index: 99;
    font-size: 110px;
    letter-spacing: 0.02em;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #fff, #717171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    display: inline-block;
    opacity: 0.2;
    mix-blend-mode: multiply;
}

/* =========================================================
   IMAGE
========================================================= */

.academy-office-image-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    right: -53px;
    z-index: 5;
    bottom: -53px;
}

.academy-office-image {
    width: 100%;
    max-width: 420px;
    object-fit: contain;
}

/* =========================================================
   CONTENT
========================================================= */

.academy-office-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 14px;
    padding-left: 32px;
    max-width: 500px;
    padding-top: 32px;
}

.academy-office-logo {
    width: 80px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 768px) {
    .academy-office-section {
        padding: 30px 0;
    }

    .academy-office-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: start;
    }

    .academy-office-card {
        order: 2;
        flex-direction: column;
        height: 91%;
    }

    .academy-office-code {
        top: 41%;
        right: 3%;
    }

    .academy-office-content {
        padding-left: 17.5px;
        padding-top: 21px;
        order: 1;
    }

    .academy-office-image-wrapper {
        position: relative;
        align-items: center;
        right: unset;
        bottom: unset;
        order: 2;
    }
}

/* ================================
   PARTNER MAP SECTION
================================ */
.partnermap-section {
    padding: 40px 0 !important;
}

.partnermap-section .heading-row {
    margin-bottom: 33px;
}

.partnermap-title {
    color: #3E3A39;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 12px;
}

.partnermap-desc {
    color: #717171;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

.mobile-property-nav,
.partnermap-nav {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    outline: 1px rgba(113, 113, 113, 0.15) solid;
    outline-offset: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-property-nav::after,
.partnermap-nav::after {
    font-size: 16px;
    color: #717171;
    font-weight: bold;
}

.mobile-property-nav.swiper-button-prev-custom,
.partnermap-nav.swiper-button-prev {
    left: -10px;
}

.mobile-property-nav.swiper-button-next-custom,
.partnermap-nav.swiper-button-next {
    right: -10px;
}

@media (max-width: 768px) {
    .partnermap-section {
        padding: 20px 0 !important;
    }

    .partnermap-title {
        line-height: 32px;
    }

    .partnermap-desc {
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: 0.32px;
    }
}

/* =========================================================
   TRUSTED LEADERS SECTION
========================================================= */

.trusted-leaders-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

/* =========================================================
   HEADER
========================================================= */

.trusted-leaders-header {
    margin-bottom: 43px;
}

.trusted-leaders-title {
    margin: 0;
    color: var(--Neutral-Grey-300, #3E3A39);
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-align: left;
}

/* =========================================================
   SLIDER
========================================================= */

.trusted-leaders-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 8px;

    scrollbar-width: none;
}

.trusted-leaders-slider::-webkit-scrollbar {
    display: none;
}

/* =========================================================
   VIDEO CARD
========================================================= */

.trusted-leaders-video-card {
    position: relative;
    flex: 0 0 250px;
    height: 445px;
    border-radius: 24px;
    overflow: hidden;
}

.trusted-leaders-video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY */

.trusted-leaders-video-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0) 0%,
            rgba(62,58,57,0.50) 51%,
            #3E3A39 100%
        );
}

/* PLAY BUTTON */

.trusted-leaders-play-button {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 62px;
    height: 62px;

    border: none;
    border-radius: 999px;

    background: rgba(62,58,57,0.50);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.trusted-leaders-play-icon {
    width: 0;
    height: 0;

    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #ffffff;

    margin-left: 4px;
}

/* AUTHOR */

.trusted-leaders-author {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;

    width: 100%;

    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 20px 14px 24px;
}

.trusted-leaders-author-image {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
}

.trusted-leaders-author-content {
    flex: 1;
}

.trusted-leaders-author-name {
    margin: 0 0 4px;

    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.trusted-leaders-author-office {
    margin: 0;

    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

/* =========================================================
   TEXT CARD
========================================================= */

.trusted-leaders-text-card {
    flex: 0 0 280px;
    height: 445px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 20px 16px;

    border-radius: 24px;
    border: 1px solid var(--Neutral-Grey-100, #E8E8E8);
    text-align: left;
}

/* CONTENT */

.trusted-leaders-text-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.trusted-leaders-testimonial {
    margin: 0;

    color: #000000;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.32px;
}

/* USER */

.trusted-leaders-divider {
    height: 1px;
    background: #E8E8E8;
    width: 100%;
    margin-bottom: 14px;
}

.trusted-leaders-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trusted-leaders-user-image {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    object-fit: cover;
}

.trusted-leaders-user-info {
    flex: 1;
}

.trusted-leaders-user-name {
    margin: 0 0 6px;

    color: #000000;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.trusted-leaders-user-office {
    margin: 0;

    color: var(--Neutral-Grey-200, #717171);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

/* =========================================================
   PROGRESS BAR
========================================================= */

.trusted-leaders-progress {
    position: relative;

    width: 100%;
    height: 6px;

    margin-top: 36px;

    background: var(--Neutral-Grey-100, #E8E8E8);
    border-radius: 999px;

    overflow: hidden;
}

.trusted-leaders-progress-active {
    width: 210px;
    height: 100%;

    background: var(--Tosca-Primary-Tosca-50, #77CCD1);
    border-radius: 999px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--Tosca-Primary-Tosca-50, #77CCD1);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 767px) {

    .trusted-leaders-section {
        padding: 30px 0;
    }

    .trusted-leaders-header {
        margin-bottom: 20px;
    }

    .trusted-leaders-title {
        font-size: 24px;
    }

    .trusted-leaders-video-card {
        flex: 0 0 220px;
        height: 400px;
    }

    .trusted-leaders-text-card {
        flex: 0 0 240px;
        height: 400px;
    }

    .trusted-leaders-slider {
        padding-bottom: 0;
    }

    .trusted-leaders-progress {
        margin-top: 20px;
    }
}

.future-partnership-section {
    padding: 40px 0;
}

.future-partnership-container {
    position: relative;
    overflow: hidden;
    border-radius: 48px;
    min-height: 363px;
    background:
        radial-gradient(
            ellipse 142.06% 1317.57% at 94.35% 6.34%,
            rgba(113, 113, 113, 0.50) 43%,
            #FFFFFF 100%
        );
    padding: 75px 78px 79px;
}

/* Glow Effect */
.future-partnership-glow {
    position: absolute;
    width: 279px;
    height: 464px;
    top: -260px;
    right: 40px;
    opacity: 0.5;
    mix-blend-mode: screen;
    border-radius: 999px;
    filter: blur(40px);
    background:
        linear-gradient(
            97deg,
            rgba(113, 113, 113, 0.50) 0%,
            rgba(113, 113, 113, 0.50) 30%,
            #E8E8E8 81%
        );
    box-shadow: 80px 80px 80px rgba(113, 113, 113, 0.50);
    transform: rotate(19deg);
}


/* Main Content */
.future-partnership-content {
    position: relative;
    z-index: 2;
    max-width: 852px;
    display: flex;
    flex-direction: column;
    gap: 42px;
    text-align: left;
}

.future-partnership-heading {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.future-partnership-title {
    margin: 0;
    color: #1D4656;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
}

.future-partnership-description {
    margin: 0;
    max-width: 760px;
    color: #3E3A39;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.36px;
}

/* Button */
.future-partnership-button {
    width: fit-content;
    padding: 16px 18px;
    border-radius: 24px;
    border: 1px solid transparent;
    background: radial-gradient(
        ellipse 143.59% 143.59% at 52.63% 123.08%, 
        white 0%, #50C3CB 30%, #00A4CA 84%
        ) padding-box, 
        radial-gradient(circle, #50C3CB 0%, white 40%, #00A4CA 100%) border-box;

    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
}

.future-partnership-button:hover {
    border: 1px solid transparent;
    background: radial-gradient(ellipse 143.59% 143.59% at 52.63% 123.08%, white 0%, #0A8091 36%, #00A4CA 100%) padding-box, radial-gradient(circle, #50C3CB 0%, white 20%, #00A4CA 100%) border-box;
}

/* Floating Card */
.future-partnership-card {
    position: absolute;
    right: 285px;
    bottom: 0;
    z-index: 3;
    background: #FFFFFF;
    border-radius: 24px 24px 0 0;
    padding: 18px 30px 3px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.future-partnership-avatars {
    display: flex;
    align-items: center;
}

.future-partnership-avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFFFFF;
    margin-left: -10px;
}

.future-partnership-avatars img:first-child {
    margin-left: 0;
}

.future-partnership-card-text {
    color: #3E3A39;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 27.9px;
}

/* Image */
.future-partnership-image {
    position: absolute;
    right: 40px;
    bottom: 0;
    z-index: 4;
}

.future-partnership-image img {
    width: 419px;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 576px) {

    .future-partnership-section {
        padding: 30px 0;
    }

    .future-partnership-container {
        padding: 45px 32px;
    }

    .future-partnership-title {
        font-size: 24px;
    }

    .future-partnership-description {
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
        letter-spacing: 0.32px;
    }

    .future-partnership-content {
        gap: 28px;
    }

    .future-partnership-button {
        padding: 10px 18px;
    }

    .future-partnership-card {
        padding: 18px 30px 30px 20px;
        align-items: center;
        text-align: center;
        position: relative;
        border-radius: 24px;
        margin-top: 34px;
        right: 0;
    }

    .future-partnership-avatars {
        align-self: end;
    }

    .future-partnership-image {
        position: relative;
        right: 0;
    }

    .future-partnership-image img {
        width: 100%;
        height: auto;
        margin-top: 10%;
        transform: translate(-10%, 10%) scale(1.5);
    }
}

/* =========================
   TRUSTED LEADERS VIDEO MODAL
========================= */
.trusted-leaders-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    flex-direction: column;
}

.trusted-leaders-video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.trusted-leaders-video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 60vh;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2001;
}

.trusted-leaders-video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 2002;
}

.trusted-leaders-video-modal-close:hover {
    background: #fff;
    transform: scale(1.1);
}

#trustedLeadersVideoPlayer {
    width: 100%;
    height: 100%;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .trusted-leaders-video-modal-content {
        width: 95%;
        height: 50vh;
    }

    .trusted-leaders-video-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}
