@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');

/**
 * Modern Base CSS Reset & Foundation
 */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    /* 1rem = 10px */
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    /* 1.6 senior standard */
    color: var(--neutral-800);
    background-color: #fff;
    margin: 0;
    overflow-x: hidden;
}

/* -------------------------------------------------------------------------- */
/* TYPOGRAPHY SCALE                                                           */
/* -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: var(--fw-bold);
    color: var(--neutral-900);
    line-height: var(--lh-tight);
    margin-bottom: 0;
}

h1 {
    font-size: var(--fs-5xl);
}

h2 {
    font-size: var(--fs-4xl);
}

h3 {
    font-size: var(--fs-3xl);
}

h4 {
    font-size: var(--fs-2xl);
}

h5 {
    font-size: var(--fs-xl);
}

h6 {
    font-size: var(--fs-lg);
}

p {
    margin-bottom: 0;
}

/* -------------------------------------------------------------------------- */
/* LUXURY LAYOUT SYSTEM                                                       */
/* -------------------------------------------------------------------------- */

section {
    padding: var(--spacing-section) 0;
    /* 120px Luxury Whitespace */
    position: relative;
    overflow: hidden;
}

.container-custom {
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-container);
    padding-right: var(--spacing-container);
}

/* -------------------------------------------------------------------------- */
/* MODULAR BUTTON SYSTEM (Premium)                                            */
/* -------------------------------------------------------------------------- */

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    font-size: 1.5rem;
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    border: 0.25rem solid transparent;
    /* Thickened border */
    cursor: pointer;
    gap: 1.0rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

/* Primary Variant */
.btn-premium.btn-primary {
    background-color: var(--primary-500);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Neutral shadow */
}

.btn-premium.btn-primary:hover {
    background-color: var(--primary-600);
    transform: translateY(-0.3rem);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    /* Neutral shadow */
    color: #fff;
}

/* Secondary/Solid (Distinct from Primary) */
.btn-premium.btn-solid {
    background-color: var(--neutral-900);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-premium.btn-solid:hover {
    background-color: #000;
    transform: translateY(-0.3rem);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
}

/* Ghost Variant (White/Light for Dark Backgrounds) */
.btn-premium.btn-ghost {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    /* Thickened & more visible */
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-premium.btn-ghost:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--primary-600);
    transform: translateY(-0.3rem);
}

/* Ghost Dark Variant (For Light Backgrounds) */
.btn-premium.btn-ghost-dark {
    background-color: transparent;
    border-color: var(--neutral-400);
    /* Thickened & more visible */
    color: var(--neutral-800);
}

.btn-premium.btn-ghost-dark:hover {
    background-color: var(--neutral-800);
    border-color: var(--neutral-800);
    color: #fff;
    transform: translateY(-0.3rem);
}

/* White Variant (For Dark Backgrounds) */
.btn-premium.btn-white {
    background-color: #fff;
    color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.btn-premium.btn-white:hover {
    background-color: var(--neutral-100);
    transform: translateY(-0.3rem);
    box-shadow: var(--shadow-lg);
    color: var(--primary-700);
}

/* Transparent / Outline Dark */
.btn-premium.btn-outline-dark {
    background-color: transparent;
    border-color: var(--neutral-800);
    color: var(--neutral-800);
}

.btn-premium.btn-outline-dark:hover {
    background-color: var(--neutral-800);
    color: #fff;
    transform: translateY(-0.3rem);
}

/* Compatibility Classes (Old naming) */
.btn-premium-primary {
    background-color: var(--primary-500);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 102, 232, 0.2);
}

.btn-premium-primary:hover {
    background-color: var(--primary-600);
    transform: translateY(-0.3rem);
    box-shadow: 0 8px 25px rgba(0, 102, 232, 0.3);
    color: #fff;
}

.btn-premium-outline {
    background-color: transparent;
    border-color: var(--primary-500);
    color: var(--primary-500);
}

.btn-premium-outline:hover {
    background-color: var(--primary-500);
    color: #fff;
    transform: translateY(-0.3rem);
}

/* Primary Outline */
.btn-premium.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-500);
    color: var(--primary-500);
}

.btn-premium.btn-outline-primary:hover {
    background-color: var(--primary-500);
    color: #fff;
    transform: translateY(-0.3rem);
}

/* Small Button Modifier */
.btn-premium.btn-sm {
    padding: 0.8rem 2.0rem;
    font-size: 1.3rem;
}

.btn-premium.btn-xs {
    padding: 0.5rem 1.2rem;
    font-size: 1.2rem;
}

/* Large Button Modifier */
.btn-premium.btn-lg {
    padding: 1.6rem 3.6rem;
    font-size: 1.7rem;
}

/* Icon Support */
.btn-premium i {
    font-size: 0.9em;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-premium:hover i {
    transform: translateX(5px);
}

/* Icon on left logic (if user puts icon first) */
.btn-premium i:first-child {
    order: -1;
}

.btn-premium:hover i:first-child {
    transform: translateX(-5px);
}

/* -------------------------------------------------------------------------- */
/* BUILDER UTILITIES (Pixel-Perfect 10px Unit)                                */
/* -------------------------------------------------------------------------- */

.gap-10px {
    gap: 1.0rem !important;
}

.gap-20px {
    gap: 2.0rem !important;
}

.gap-30px {
    gap: 3.0rem !important;
}

/* Dynamic Marginal & Padding Helpers */
.mt-10px {
    margin-top: 1.0rem !important;
}

.mt-20px {
    margin-top: 2.0rem !important;
}

.mt-30px {
    margin-top: 3.0rem !important;
}

.mt-50px {
    margin-top: 5.0rem !important;
}

.mt-100px {
    margin-top: 10.0rem !important;
}

.mb-10px {
    margin-bottom: 1.0rem !important;
}

.mb-20px {
    margin-bottom: 2.0rem !important;
}

.mb-30px {
    margin-bottom: 3.0rem !important;
}

.mb-50px {
    margin-bottom: 5.0rem !important;
}

.mb-4rem {
    margin-bottom: 4.0rem !important;
}

.mb-8rem {
    margin-bottom: 8.0rem !important;
}

.mb-10rem {
    margin-bottom: 10.0rem !important;
}

.mb-12rem {
    margin-bottom: 12.0rem !important;
}

.mb-80px {
    margin-bottom: 80px !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-10px {
    padding-top: 1.0rem !important;
}

.pt-20px {
    padding-top: 2.0rem !important;
}

.pt-40px {
    padding-top: 4.0rem !important;
}

.pt-50px {
    padding-top: 5.0rem !important;
}

.pt-90px {
    padding-top: 9.0rem !important;
}

.pt-80px {
    padding-top: 8.0rem !important;
}

.pt-100px {
    padding-top: 10.0rem !important;
}

.pb-10px {
    padding-bottom: 1.0rem !important;
}

.pb-20px {
    padding-bottom: 2.0rem !important;
}

.pb-50px {
    padding-bottom: 5.0rem !important;
}

.pb-90px {
    padding-bottom: 9.0rem !important;
}

.pb-100px {
    padding-bottom: 10.0rem !important;
}

.mb-40px {
    margin-bottom: 4.0rem;
}

/* Additional Helpers */
.text-lead {
    font-size: var(--fs-lg);
    line-height: var(--lh-relaxed);
    color: var(--neutral-600);
}

/* --- Global Color Utilities --- */
.primary-color {
    color: var(--primary) !important;
}

.secondary-color {
    color: var(--secondary) !important;
}

.white-color {
    color: #FFFFFF !important;
}

.font-primary {
    font-family: var(--font-primary) !important;
}

.font-secondary {
    font-family: var(--font-secondary) !important;
}

.background-dark {
    background-color: var(--secondary-900);
}

.bg-primary-color {
    background-color: var(--primary-400);
}

.background-light {
    background-color: var(--primary-50);
}

.background-secondary-light {
    background-color: var(--secondary-50);
}

/* --- Aspect Ratio --- */
.ratio-4-3 {
    aspect-ratio: 4 / 3;
}

.ratio-3-4 {
    aspect-ratio: 3 / 4;
}

.ratio-1-1 {
    aspect-ratio: 1 / 1;
}

.ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.ratio-9-16 {
    aspect-ratio: 9 / 16;
}

.ratio-4-5 {
    aspect-ratio: 4 / 5;
}

.ratio-5-4 {
    aspect-ratio: 5 / 4;
}

.ratio-2-1 {
    aspect-ratio: 2 / 1;
}

.ratio-1-2 {
    aspect-ratio: 1 / 2;
}

.ratio-1-1 {
    aspect-ratio: 1 / 1;
}

/* -------------------------------------------------------------------------- */
/* PREMIUM NAVIGATION COMPONENTS                                              */
/* -------------------------------------------------------------------------- */

.main-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    background: #fff;
    transition: transform var(--transition-base), background var(--transition-base), padding var(--transition-base);
}

/* Nav Transparent State (Utility Class 2.2.6) */
.main-header.nav-transparent {
    position: absolute;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient Overlay - Ensures high contrast for white text over any hero image */
.main-header.nav-transparent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

/* Hide gradient when sticky mode triggers */
.main-header.nav-transparent.is-sticky::before {
    opacity: 0;
}

/* Invert text/icons to white when transparent (Desktop) */


/* Invert text/icons/hamburger to white when transparent (Mobile) */


/* Sticky: Hide when scrolling down, Show when scrolling up */
.main-header.is-sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-md);
    transform: translateY(0);
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.main-header.header-hidden {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
}

.navbar-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* Anchoring megamenu */
}

/* Multilevel Menu System */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Menu Center Variant Logic */


/* Logo Center Variant Logic */


.nav-item {
    position: relative;
    padding: 1.0rem 0;
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: 1.5rem;
    font-weight: var(--fw-medium);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--primary-500);
}

.nav-item:hover>.nav-link>.chevron-icon {
    transform: rotate(-180deg);
}

/* -------------------------------------------------------------------------- */
/* MEGAMENU LEVEL 2 SYSTEM                                                    */
/* -------------------------------------------------------------------------- */

.nav-item.has-megamenu {
    position: static;
}

.megamenu-panel {
    position: absolute;
    top: 100%;
    right: 0;
    /* Align to right */
    width: 75%;
    /* 3/4 width of container */
    background: #fff;
    padding: 3.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.5rem);
    transition: var(--transition-base);
    z-index: 100;
    display: flex;
    gap: 4rem;
}

.nav-item.has-megamenu:hover>.megamenu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-col {
    flex: 1;
}

.megamenu-title {
    font-size: 1.6rem;
    font-weight: var(--fw-bold);
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--neutral-200);
}

.megamenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-subtitle {
    font-size: 1.4rem;
    font-weight: var(--fw-semibold);
    color: var(--primary-500);
    margin: 1.5rem 0 1rem 0;
}

.megamenu-list li {
    margin-bottom: 2rem;
    /* Increased margin bottom as requested */
}

.megamenu-list a {
    text-decoration: none;
    color: var(--neutral-700);
    font-size: 1.4rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.megamenu-list a:hover {
    color: var(--primary-500);
    transform: translateX(0.5rem);
}

.megamenu-promo {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    padding: 2.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Dropdown Levels Core */
.dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.5rem);
    transition: var(--transition-base);
    z-index: 100;
}

.nav-item:hover>.dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item:hover>.dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    /* Fix for Level 3 on desktop */
}

/* Nested Levels (2, 3, 4) */
.dropdown-menu-list .dropdown-menu-list {
    top: 0;
    left: 100%;
    margin-top: -1.5rem;
    transform: translateY(0) translateX(1rem);
}

.dropdown-item {
    position: relative;
    padding: 0.5rem 1.0rem;
}

.dropdown-link {
    text-decoration: none;
    color: var(--neutral-700);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.dropdown-link:hover {
    color: var(--primary-500);
    padding-left: 0.5rem;
}

.chevron-icon {
    font-size: 1rem;
    opacity: 0.6;
    transition: var(--transition-base);
}

.dropdown-item:hover>.dropdown-link>.chevron-icon {
    transform: rotate(-90deg);
}

/* Language Picker (Premium) */
.lang-picker {
    position: relative;
    cursor: pointer;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: var(--fw-semibold);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--neutral-200);
    transition: var(--transition-base);
}

.lang-picker:hover .lang-current {
    background: var(--neutral-100);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 1rem;
    background: #fff;
    min-width: 140px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: var(--transition-base);
    z-index: 110;
}

.lang-picker:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    color: var(--neutral-700);
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.lang-dropdown li a:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

/* -------------------------------------------------------------------------- */
/* NAV SEARCH COMPONENT (Standalone)                                          */
/* -------------------------------------------------------------------------- */
.nav-search {
    position: relative;
    z-index: 120;
}

.search-toggle {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: var(--radius-full);
    border: 1px solid var(--neutral-200);
    color: var(--neutral-800);
    font-size: 1.6rem;
    transition: var(--transition-base);
    background: transparent;
}

.search-toggle:hover,
.nav-search.active .search-toggle {
    background: rgb(255 255 255 / 70%);
    border-color: var(--primary-500);
    color: var(--primary-500);
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 2rem);
    right: 0;
    width: 30rem;
    background: #fff;
    padding: 0.8rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.5rem);
    transition: var(--transition-base);
}

.nav-search.active .search-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.8rem 4rem 0.8rem 1.5rem;
    font-size: 1.2rem;
    font-family: var(--font-primary);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    outline: none;
    transition: var(--transition-base);
    color: var(--neutral-800);
}

.search-input:focus {
    border-color: var(--primary-500);
}

.search-submit {
    position: absolute;
    right: 1.2rem;
    background: transparent;
    border: none;
    color: var(--neutral-500);
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    color: var(--primary-500);
}

/* Nav Transparent Compatibility */


/* Mobile Adjustments */


/* Premium Hamburger (Animated X) */
.nav-toggle {
    width: 3.5rem;
    height: 3.5rem;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1100;
}

.toggle-bar {
    width: 3rem;
    height: 0.3rem;
    background-color: var(--primary-500);
    transition: var(--transition-slow);
    border-radius: 0.2rem;
}

.toggle-bar:nth-child(1) {
    width: 1.5rem;
    align-self: flex-start;
}

.nav-toggle.active .toggle-bar {
    background-color: var(--neutral-50);
}

.nav-toggle.active .toggle-bar:nth-child(1) {
    width: 3rem;
    transform: translateY(0.9rem) rotate(45deg);
}

.nav-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-1rem);
}

.nav-toggle.active .toggle-bar:nth-child(3) {
    transform: translateY(-0.9rem) rotate(-45deg);
}

/* Offcanvas Overlay Close */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 900;
    /* below header to not cover it */
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}



/* -------------------------------------------------------------------------- */
/* PREMIUM COMPONENT EXTRACTIONS (FOOTER & NAV)                               */
/* -------------------------------------------------------------------------- */

.nav-logo img {
    max-height: 40px;
    width: auto;
}

.nav-logo .logo-transparent {
    display: none;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--neutral-600);
    transition: var(--transition-fast);
    font-size: 1.5rem;
}

.footer-links a:hover {
    color: var(--primary-500);
    padding-left: 0.5rem;
}

.social-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-full);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-800);
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}

.social-icon:hover {
    background: var(--primary-500);
    color: #fff;
    transform: translateY(-0.5rem);
}

.logo-symbol {
    width: 40px;
    height: 40px;
    background: var(--primary-500);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
}

.footer-desc-text {
    font-size: 1.5rem;
}

.footer-copy-text {
    font-size: 1.4rem;
    color: var(--neutral-500);
}

hr {
    color: transparent;
}

/* -------------------------------------------------------------------------- */
/* HEROS COMPONENT - Varian 1                                                 */
/* -------------------------------------------------------------------------- */

.hero-section-1 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--navbar-height);
    /* Offset for typical nav if not transparent */
}

/* Half Hero Variant */
.hero-section-half {
    position: relative;
    min-height: 65vh;
    /* Atur tinggi banner di sini (vh/dvh) */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: calc(var(--spacing-section) / 2 + var(--navbar-height) + 50px);
    /* Tambah 80px */
    padding-bottom: calc(var(--spacing-section) / 2);
}

/* Background Image as HTML Tag */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay gradient (Left to Right) for text readability using Theme Variables */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, color-mix(in srgb, var(--secondary-900) 90%, transparent) 0%, color-mix(in srgb, var(--secondary-900) 70%, transparent) 40%, transparent 100%);
    z-index: 1;
}

.hero-section-1.misc .hero-overlay {
    background: var(--secondary-900);
    opacity: .85;
}

.hero-section-1.misc {
    mix-blend-mode: multiply;
}

.hero-section-1.misc img {
    filter: grayscale(1);
}

/* Specific Overlay for Half Section (80% width, black to transparent) */
.hero-section-half .hero-overlay {
    width: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.85) 40%,
            rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to right,
            color-mix(in srgb, var(--secondary-900) 100%, transparent) 0%,
            rgba(0, 0, 0, 0.5) 60%);
    ;
}

/* Variants overlays */
.hero-overlay.overlay-center {
    background: linear-gradient(to bottom, color-mix(in srgb, var(--secondary-900) 40%, transparent) 0%, color-mix(in srgb, var(--secondary-900) 80%, transparent) 100%);
}

.hero-overlay.overlay-bottom {
    background: linear-gradient(to top, color-mix(in srgb, var(--secondary-900) 95%, transparent) 0%, transparent 80%);
}

/* Hero Content Relative Positioning */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.4rem;
    font-weight: var(--fw-medium);
}

.breadcrumb-nav a {
    color: var(--primary-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-nav a:hover {
    color: var(--primary-500);
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.breadcrumb-nav .current {
    color: var(--neutral-400);
    /* Color primary as requested */
}

.hero-content .hero.intro {
    font-size: clamp(3.2rem, 3.8vw, 4.5rem);
    font-weight: var(--fw-semibold);
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

/* Hero Typography */
h1.hero,
h2.hero {
    position: relative;
    z-index: 10;
    /* Pastikan di atas overlay */
    font-size: clamp(3.6rem, 5vw, 6.0rem);
    font-weight: var(--fw-semibold);
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--fw-regular);
    margin-bottom: 4rem;
    max-width: 90%;
}

.misc-page .wyswyg {
    color: white;
    font-size: var(--fs-md);
}

/* Base button defaults for hero */
.hero-content .btn-premium {
    min-width: 12rem;
    text-align: center;
    border-width: 1px;
}

/* Theme Button: Primary */
.btn-primary {
    background: var(--primary-500);
    color: #ffffff;
    border-color: var(--primary-500);
}

.btn-primary:hover {
    background: var(--primary-600);
    color: #ffffff;
    transform: translateY(-0.3rem);
    box-shadow: 0 10px 20px color-mix(in srgb, var(--primary-500) 30%, transparent);
}

/* Theme Button: Ghost */
.btn-ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-ghost:hover {
    background: #ffffff;
    color: var(--secondary-900);
    transform: translateY(-0.3rem);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* Theme Button: White */
.btn-white {
    background: #ffffff;
    color: var(--neutral-900);
    border-color: #ffffff;
}

.btn-white:hover {
    background: var(--neutral-100);
    color: var(--primary-600);
    transform: translateY(-0.3rem);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Video Play Pulse Button */
.btn-play-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-play {
    position: relative;
    width: 5.5rem;
    height: 5.5rem;
    background: var(--danger);
    /* Premium Red */
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    z-index: 1;
    transition: var(--transition-bounce);
}

.btn-play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--danger);
    border-radius: var(--radius-full);
    z-index: -1;
    animation: heroPulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-play-wrapper:hover .btn-play {
    transform: scale(1.1);
    background: #dc2626;
}

.btn-play-text {
    font-size: 1.6rem;
    font-weight: var(--fw-semibold);
    color: #ffffff;
    transition: var(--transition-fast);
}

.btn-play-wrapper:hover .btn-play-text {
    color: var(--danger);
}

@keyframes heroPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* -------------------------------------------------------------------------- */
/* VIDEO MODAL COMPONENT                                                      */
/* -------------------------------------------------------------------------- */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-container {
    width: 90%;
    max-width: 1000px;
    position: relative;
    transform: scale(0.95);
    transition: var(--transition-bounce);
}

.video-modal-overlay.active .video-modal-container {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -4rem;
    right: -4rem;
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-full);
    background: #ffffff;
    border: none;
    font-size: 2rem;
    color: var(--neutral-900);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.video-modal-close:hover {
    background: var(--primary-500);
    color: #ffffff;
    transform: rotate(90deg);
}



/* -------------------------------------------------------------------------- */
/* DEMO PREVIEW CLASSES (For @tmp_dev only)                                   */
/* -------------------------------------------------------------------------- */

.demo-hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--neutral-800);
}

.demo-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
}

.demo-hero-content {
    position: relative;
    z-index: 10;
}

.demo-spacer {
    height: 150vh;
    background: var(--neutral-50);
}

.demo-spacer-solid {
    height: 200vh;
    background: linear-gradient(to bottom, var(--neutral-100), var(--neutral-50));
}

/* -------------------------------------------------------------------------- */
/* TOPBAR & NAVIGATION WITH TOPBAR                                           */
/* -------------------------------------------------------------------------- */
.topbar {
    background-color: var(--primary-500);
    padding: 1rem 0;
    font-size: 1.3rem;
}

.topbar-link,
.topbar-social-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-fast);
}

.topbar-link:hover,
.topbar-social-link:hover {
    color: #fff;
}



/* --- Navbar Topbar Variant --- */
.header-with-topbar {
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    top: 0 !important;
    border-bottom: none !important;
}

.header-with-topbar.is-sticky {
    padding: 0 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
}

.header-with-topbar.is-sticky .topbar,
.header-with-topbar.is-sticky .container:first-of-type {
    display: none !important;
}

.header-with-topbar.is-sticky .navbar-custom {
    background: transparent !important;
    box-shadow: none !important;
    padding: 1.5rem 0 !important;
    border-radius: 0 !important;
}

.nav-logo.border-end {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.fs-xs {
    font-size: 1.3rem !important;
}

.fs-2xs {
    font-size: 1.0rem !important;
}

.hover-opacity-100:hover {
    opacity: 1 !important;
}


/* --- Utilities & Refinements --- */
.topbar-bg-dark {
    background-color: var(--neutral-900) !important;
}

.navbar-floating-radius {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
}

.logo-nav-standard {
    max-height: 42px !important;
}

.btn-primary-contact {
    background-color: var(--primary-400) !important;
    border: none !important;
}

.btn-megamenu-promo {
    padding: 1.2rem !important;
    border: none !important;
}

/* Force standard colors for lang-picker even in transparent headers */
.lang-picker-standard .lang-current,
.lang-picker-standard .lang-current .fas {
    color: var(--neutral-800) !important;
    border-color: var(--neutral-200) !important;
}

.lang-picker-standard:hover .lang-current {
    border-color: var(--primary-500) !important;
    color: var(--primary-600) !important;
    background: var(--primary-50) !important;
}

.lang-picker-standard:hover .lang-current .fas {
    color: var(--primary-600) !important;
}

/* --- Responsive Topbar & Header --- */



/* --- Nav Absolute (Floating without color override) --- */
.main-header.nav-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-base);
}

/* Fix for navbar-topbar nav-menu layout */
.header-with-topbar .nav-menu {
    margin-right: auto;
    gap: 3rem;
}



/* Dropdown Premium Refinement for Topbar Nav (Desktop Only) */


/* Force primary color for hamburger menu even in transparent headers (Topbar Variant) */
.nav-toggle-topbar .toggle-bar {
    background-color: var(--primary-500) !important;
}

.nav-toggle-topbar.active .toggle-bar {
    background-color: #ffffff !important;
    /* Must be white when active to contrast with the primary-500 offcanvas background */
}

/* --- Dedicated Mobile Offcanvas Styles for Topbar Variant --- */


/* --- Dedicated Desktop Styles for Topbar Variant --- */


/* -------------------------------------------------------------------------- */
/* HERO SLIDER SECTION                                                      */
/* -------------------------------------------------------------------------- */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slider .swiper-slide {
    height: 100%;
    position: relative;
}

.hero-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

/* -------------------------------------------------------------------------- */
/* HERO SLIDER SECTION (Scoped)                                               */
/* -------------------------------------------------------------------------- */
.hero-slider-wrapper .hero-content {
    position: absolute;
    bottom: 4%;
    left: 0;
    width: 100%;
    z-index: 10;
    color: #fff;
    padding-bottom: 5rem;
}

.hero-slider-wrapper h1.hero-slide-title,
.hero-slider-wrapper h2.hero-slide-title {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    margin-bottom: 2.5rem;
    color: inherit;
}

.hero-slider-wrapper .hero-slide-desc {
    font-size: var(--fs-base);
    max-width: 600px;
    opacity: 0.9;
    margin-bottom: 4rem;
}

/* Navigation Arrows */
.hero-slider-wrapper .hero-swiper-prev,
.hero-slider-wrapper .hero-swiper-next {
    width: 6rem !important;
    height: 6rem !important;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition-base);
    z-index: 20;
}

.hero-slider-wrapper .hero-swiper-prev i,
.hero-slider-wrapper .hero-swiper-next i {
    font-size: 2rem;
    font-weight: 600;
    opacity: 0.8;
}

.hero-slider-wrapper .swiper-button-prev::after,
.hero-slider-wrapper .swiper-button-next::after {
    display: none !important;
    content: none !important;
}

.hero-slider-wrapper .hero-swiper-prev {
    left: 3rem !important;
}

.hero-slider-wrapper .hero-swiper-next {
    right: 3rem !important;
}

.hero-slider-wrapper .hero-swiper-prev:hover,
.hero-slider-wrapper .hero-swiper-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Pagination Lines */
.hero-slider-wrapper .hero-pagination-wrapper {
    position: absolute;
    bottom: 3rem;
    left: 0;
    width: 100%;
    z-index: 20;
    pointer-events: none;
}

.hero-slider-wrapper .hero-swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
    width: auto !important;
    display: flex;
    gap: 1rem;
    pointer-events: auto;
}

.hero-slider-wrapper .hero-swiper-pagination .swiper-pagination-bullet {
    width: 4rem;
    height: 0.4rem;
    background: #fff !important;
    border-radius: 0;
    opacity: 0.3;
    margin: 0 !important;
    transition: var(--transition-base);
}

.hero-slider-wrapper .hero-swiper-pagination .swiper-pagination-bullet-active {
    width: 8rem;
    opacity: 1;
    background: var(--primary-500) !important;
}

/* Floating Contact Card */
.hero-slider-wrapper .hero-contact-card {
    position: absolute;
    bottom: 0;
    right: 10%;
    z-index: 30;
    width: 380px;
    max-width: 90%;
}

.hero-slider-wrapper .hero-contact-inner {
    background: var(--primary-500);
    padding: 2rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    color: #fff;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.hero-slider-wrapper .hero-contact-text {
    flex: 1;
    min-width: 0;
    display: block;
    color: inherit;
    transition: var(--transition-base);
}

.hero-slider-wrapper .hero-contact-text:hover {
    opacity: 0.8;
}

.hero-slider-wrapper .hero-contact-title {
    color: inherit;
    font-size: 1.8rem;
    font-weight: var(--fw-bold);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-slider-wrapper .hero-contact-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-slider-wrapper .hero-contact-img img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* --- Hero Slider Keyframe Animations --- */
@keyframes sliderRevealUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider .swiper-slide .hero-slide-title,
.hero-slider .swiper-slide .hero-slide-desc,
.hero-slider .swiper-slide .hero-slide-actions,
.hero-slider .swiper-slide .hero-contact-card {
    opacity: 0;
    transform: translateY(50px);
    transition: none;
}

.hero-slider .swiper-slide .hero-contact-card {
    transform: translateY(100%);
}

.hero-slider .swiper-slide-active .hero-slide-title {
    animation: sliderRevealUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.2s;
}

.hero-slider .swiper-slide-active .hero-slide-desc {
    animation: sliderRevealUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.4s;
}

.hero-slider .swiper-slide-active .hero-slide-actions {
    animation: sliderRevealUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.6s;
}

.hero-slider .swiper-slide-active .hero-contact-card {
    animation: sliderRevealUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.8s;
}

/* -------------------------------------------------------------------------- */
/* ABOUT + SERVICES SECTION                                                   */
/* -------------------------------------------------------------------------- */
.about-services-section {
    background-color: var(--secondary-900);
    position: relative;
    overflow: hidden;
    padding: 13rem 0 0;
}

/* Mesh decorations */
.as-mesh-bg {
    position: absolute;
    top: 8rem;
    right: -3rem;
    width: 40%;
    height: 40%;
    background-image: url('../images/mesh.png');
    background-size: cover;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.as-mesh-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/mesh2.webp');
    background-size: cover;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.about-services-section .container {
    position: relative;
    z-index: 1;
}

/* About Row */
.as-about-row {
    margin-bottom: 8rem;
}

/* Image side */
.as-image-wrapper {
    position: relative;
}

.as-main-img {
    width: 100%;
    border-radius: var(--radius-xl);
    display: block;
    object-fit: cover;
    max-height: 700px;
    aspect-ratio: 1/1;
    filter: grayscale(0.9);
}

.as-logo-float {
    position: absolute;
    left: -8rem;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff00;
    padding: 1.6rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 17rem;
    height: 17rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.as-logo-img {
    width: 100%;
    object-fit: contain;
}

/* Text side */
.as-heading,
h1.as-heading,
h2.as-heading {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: #fff;
    line-height: var(--lh-tight);
    margin-bottom: 2rem;
}

.as-desc {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.7);
    line-height: var(--lh-relaxed);
    margin-bottom: 3.5rem;
    max-width: 540px;
}

.as-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

/* Services Block */
.as-services-block {
    background: none;
    border: none;
    padding: 1rem 0 8rem;
}

.as-services-heading {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: #fff;
    margin-bottom: 1rem;
}

.as-services-desc {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.6);
    line-height: var(--lh-relaxed);
    margin-bottom: 3rem;
}

/* Swiper inline nav */
.as-swiper-nav,
.as-embla-nav {
    align-items: center;
    padding-bottom: 0.5rem;
}

.as-swiper-prev,
.as-swiper-next,
.as-embla-prev,
.as-embla-next {
    position: static !important;
    width: 4.8rem !important;
    height: 4.8rem !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    transition: var(--transition-base);
    cursor: pointer;
}

.as-swiper-prev:hover,
.as-swiper-next:hover,
.as-embla-prev:hover,
.as-embla-next:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
}

.as-swiper-prev i,
.as-swiper-next i {
    font-size: 1.6rem;
}

/* Service Cards */
.as-services-swiper {
    overflow: visible;
    padding: 2rem 0 3rem;
}

.as-service-card {
    background: var(--secondary-900);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition-base);
    height: auto !important;
}

.as-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    border-color: #ffffff60;
    color: #fff;
}

.as-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

/* Dark overlay on card image */
.as-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
    transition: background var(--transition-base);
}

.as-service-card:hover .as-card-img::after {
    background: rgba(0, 0, 0, 0.2);
}

.as-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.8);
    transition: transform 0.5s ease, filter 0.5s ease;
    display: block;
}

.as-service-card:hover .as-card-img img {
    transform: scale(1.05);
    filter: grayscale(0.3);
}

.as-card-body {
    padding: 3rem 2rem 4rem;
    flex: 1;
    background: var(--secondary-900);
    text-align: center;
}

.as-card-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 113, 10, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    display: none;
}

.as-card-icon i {
    font-size: 1.8rem;
    color: var(--primary-400);
}

.as-card-title {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: var(--lh-snug);
}

.as-card-desc {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.6);
    line-height: var(--lh-relaxed);
    margin: 0;
}

/* --- Embla Carousel (Bootstrap-native grid) --- */
.as-embla-viewport {
    overflow: hidden;
    /* Embla clips the scroll */
    padding: 2rem 0 3rem;
}

/* The Bootstrap 'row' becomes the Embla drag container */
.as-embla-row {
    /* flex-nowrap already applied via Bootstrap utility */
    /* Each col-* is a slide — Bootstrap controls width */
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.as-embla-row:active {
    cursor: grabbing;
}

/* Generic Embla System */
.embla {
    overflow: hidden;
}

.embla__viewport {
    overflow: hidden;
    width: 100%;
}

.embla__container {
    display: flex;
    user-select: none;
    -webkit-user-select: none;
    will-change: transform;
}

.embla__slide {
    flex: 0 0 auto;
    min-width: 0;
}

/* Staggered Pattern for Carousel Columns */
.as-embla-row>[class*="col-"]:nth-child(3n + 1) {
    padding-top: 3rem;
}

.as-embla-row>[class*="col-"]:nth-child(3n + 2) {
    padding-top: 7.0rem;
}

.as-embla-row>[class*="col-"]:nth-child(3n) {
    padding-top: 0;
}

/* Ensure card fills the col height */
.as-embla-row .as-service-card {
    height: 100%;
}

/* -------------------------------------------------------------------------- */
/* PROJECT SECTION                                                            */
/* -------------------------------------------------------------------------- */
.project-section {
    position: relative;
    padding: 7rem 0 4rem;
    overflow: initial;
    /* from py-0 */
}

.border-y-light {
    border-top: 1px solid var(--secondary-100);
    border-bottom: 1px solid var(--secondary-100);
}

.project-img-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 108%;
    z-index: 0;
    pointer-events: none;
}

.project-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}



.project-content-col {
    padding-top: 3.6rem;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.exp-badge {
    width: 60px;
    height: 60px;
    font-size: 2.7rem;
    border: 2px solid var(--secondary);
    /* using primary color */
    font-weight: 700;
    font-family: var(--font-primary);
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.exp-text {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary-900);
    padding-bottom: 2px;
}

/* Project Embla Carousel */
.project-embla-viewport {
    overflow: hidden;
    padding: 10px;
    margin: -10px;
}

.project-embla-prev,
.project-embla-next {
    position: static !important;
    width: 4.8rem !important;
    height: 4.8rem !important;
    background: var(--neutral-100);
    border: 1px solid var(--neutral-200);
    border-radius: 50%;
    color: var(--neutral-800) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    transition: var(--transition-base);
    cursor: pointer;
    z-index: 2;
    pointer-events: auto;
}

.project-embla-prev:hover,
.project-embla-next:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: #fff !important;
}

.project-embla-row {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.project-embla-row:active {
    cursor: grabbing;
}

.project-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--secondary-100);
    border-radius: var(--radius-lg);
    padding: 15px 20px 30px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--neutral-800);
    transition: var(--transition-base);
}

.project-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.project-card-img {
    aspect-ratio: 4 / 2;
    margin-bottom: 15px;
    overflow: hidden;
    /* Memastikan border-radius bekerja jika ada overflow */
    display: block;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Penting agar tidak ada whitespace di bawah image */
    border-radius: 8px 8px 0 0;
}

.project-card-body {
    padding: 0 0 10px;
}

.project-card-icon {
    color: var(--neutral-600);
    font-size: 1.2rem;
    margin-top: 4px;
}

.project-title {
    font-size: 1.6rem;
    font-weight: var(--fw-medium);
    margin-bottom: 5px;
    line-height: var(--lh-base);
    color: var(--neutral-900);
}

.project-client {
    font-size: 1.2rem;
    color: var(--neutral-500);
    margin: 0;
    text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/* LATEST NEWS SECTION                                                        */
/* -------------------------------------------------------------------------- */
.latest-news-section {
    background-color: var(--secondary-900);
    padding: 12rem 0 12rem;
}

.news-desc {
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
    color: rgba(255, 255, 255, 0.7);
}

.news-embla-viewport {
    overflow: hidden;
}

.news-embla-row {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.news-embla-row:active {
    cursor: grabbing;
}

.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--secondary-800);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition-base);
    margin-bottom: 40px;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: #ffffff60;
}

.news-img-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.news-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: filter var(--transition-base);
    pointer-events: none;
}

.news-card:hover .news-img-wrapper::after {
    background: rgba(0, 0, 0, 0.1);
    filter: grayscale(1);
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(.9);
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.news-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-meta,
.news-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.news-category {
    color: var(--primary-500);
}

.news-separator {
    color: rgba(255, 255, 255, 0.3);
}

.news-date {
    color: rgba(255, 255, 255, 0.6);
}

.news-label {
    font-weight: var(--fw-bold);
}

.news-label .news-separator,
.news-label .news-date {
    color: var(--secondary);
}

.news-title {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: #fff;
    line-height: var(--lh-base);
    margin: 0;
}

/* ============ NEWS CARD LISTING inherite report card ================= */
h3.news-card-title {
    font-size: 1.6rem;
    font-weight: var(--fw-regular);
    color: var(--secondary-800);
    margin-bottom: 16px;
    line-height: 1.6;
    transition: var(--transition-fast);
}

.news-label .news-category {
    color: var(--primary-600);
}

.report-card:hover .btn-premium.btn-xs {
    background-color: transparent;
    color: var(--primary-600);
}

.report-card:hover .report-card-img.media-listing img {
    filter: none;
}

.report-card-img.media-listing img {
    filter: brightness(0.7);
}

/* --------- End NEWS CARD LISTING inherite report card ------------------ */

.hiring-banner-link {
    display: block;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.hiring-banner-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: #ffffff60;
}

.hiring-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* -------------------------------------------------------------------------- */
/* Card 1                                                            */
/* -------------------------------------------------------------------------- */
.card1 img.service-icon {
    width: 32px;
    margin-bottom: 8px;
}

.card1 i {
    color: #ffa036;
}

.card1 .news-card {
    border-color: rgba(255, 255, 255, 0.1);
}

.card1 .news-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

/* -------------------------------------------------------------------------- */
/* Card 2                                                            */
/* -------------------------------------------------------------------------- */
.card2 .as-card-body .as-card-title {
    font-size: 2rem;
    line-height: var(--lh-sm);
    font-weight: var(--fw-semibold);
}

.card2 .as-card-body {
    text-align: left;
}

.card2 .as-card-body .as-card-desc.client {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--primary-400);
    font-weight: var(--fw-semibold);
}

.card2 .as-card-body .as-card-desc.sector {
    font-size: 1.6rem;
}

.card2 .as-card-body .as-card-title {
    line-height: var(--lh-base);
}

/* -------------------------------------------------------------------------- */
/* Project 3   -  Text Images                                                               */
/* -------------------------------------------------------------------------- */
.solid-h100px {
    height: 100px;
}

.project-img-wrapper-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.project-img-wrapper-top-right .project-main-img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-section .project-title {
    font-size: 2rem !important;
    font-weight: bold;
    text-transform: none;
    color: #cc0000;
}

.contact-section .project-client {
    font-size: 1.6rem !important;
    color: var(--secondary-900);
    text-transform: none;
}

/* mesh layer */
.bg-primary-color.multiply::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;

    /* subtle effect */
    opacity: 0.15;

    /* blend effect */
    mix-blend-mode: multiply;

    pointer-events: none;
    z-index: 0;
}

/* -------------------------------------------------------------------------- */
/* FOOTER LIGHT                                                               */
/* -------------------------------------------------------------------------- */
.footer-light {
    font-family: var(--font-primary);
    padding: 5rem 0 1rem;
    border-bottom: 1px solid var(--secondary-100);
}

.footer-logo>img {
    max-height: 56px;
}

.footer-nav-light {
    padding: 0;
    margin: 0;
}

.nav-link-light {
    text-decoration: none;
    color: var(--secondary-800);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    transition: var(--transition-fast);
}

.nav-link-light:hover {
    color: var(--primary-600) !important;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}



.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    background: var(--secondary-50);
    color: var(--secondary-800);
    border-radius: 50%;
    font-size: 1.6rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary-500);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.sister-logos {
    padding-top: 3rem;
    border-top: none;
}

.sister-title {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-400);
    margin: 0;
    margin-right: 1rem;
}

.sister-logos img {
    height: 2.4rem;
    /* Ukuran sedikit lebih besar agar lebih jelas 
    filter: grayscale(1);*/
    width: auto;
    opacity: 0.9;
    transition: var(--transition-base);
    display: block;
}

.sister-logos a:hover img {
    opacity: 1;
}

.footer-light p a {
    color: inherit;
    text-decoration: underline;
    transition: var(--transition-fast);
}

.footer-light p a:hover {
    color: var(--primary-600) !important;
    text-decoration: none;
}

.text-primary-color {
    color: var(--primary-600);
}

/* -------------------------------------------------------------------------- */
/* VIDEO MODAL & PLAY BUTTON                                                 */
/* -------------------------------------------------------------------------- */

/* Play Button Wrapper */
.btn-play-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-play {
    width: 6rem;
    height: 6rem;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    transition: var(--transition-base);
}

.btn-play::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #ff0000;
    border-radius: 50%;
    animation: play-pulse 2s infinite;
    z-index: -1;
}

.btn-play-wrapper:hover .btn-play {
    transform: scale(1.1);
    background: #cc0000;
}

.btn-play-text {
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes play-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Video Modal Overlay */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-container {
    width: 90%;
    max-width: 1000px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-modal-content {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-close {
    position: absolute;
    top: -5rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 4rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.video-modal-close:hover {
    color: #ffffff90;
    transform: rotate(90deg);
}

.ls-1 {
    letter-spacing: 0.1rem;
}

/* --- Separator Marquee --- */
.separator-marquee-container {
    height: 70px;
    background-color: var(--neutral-50);
    border-bottom: 1px solid var(--neutral-200);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 !important;
    /* Override default section padding */
    position: relative;
    z-index: 10;
}


.marquee-wrapper {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    /* Smooth fade on sides */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}


.marquee-content {
    display: flex;
    animation: marquee-scroll 30s linear infinite;
    gap: 0;
}

.marquee-text {
    font-family: var(--font-secondary);
    font-weight: var(--fw-medium);
    font-size: 1.3rem;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding-left: 4rem;
}

.marquee-text::after {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--primary-500);
    border-radius: 50%;
    margin-left: 4rem;
    display: inline-block;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- About Text Content & Vision --- */
#about-text-content {
    background-color: #fff;
    padding: var(--spacing-section) 0;
}

.at-section-title {
    font-size: var(--fs-2xl);
    line-height: var(--lh-tight);
    color: var(--primary-500);
    font-weight: var(--fw-bold);
    font-family: var(--font-secondary);
    margin-bottom: 24px;
}

.at-lead {
    font-size: 2.0rem;
    line-height: 1.5;
    color: var(--neutral-900);
    font-weight: var(--fw-semibold);
}

.at-body-text {
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
    color: var(--neutral-600);
}

.at-video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.at-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.at-vision-mission {
    margin-top: 60px;
}

.at-vm-card {
    background: var(--primary-50);
    padding: 4rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-300);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.at-vm-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.at-vm-icon {
    width: 4.8rem;
    height: 4.8rem;
    background-color: transparent;
    color: var(--primary-600);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    transition: var(--transition-base);
}

.at-vm-card:hover .at-vm-icon {
    background-color: var(--primary-600);
    color: #fff;
    transform: scale(1.1);
}

.at-vm-title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--neutral-900);
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
    letter-spacing: -0.02em;
}

.at-vm-desc {
    font-size: var(--fs-md);
    color: var(--neutral-600);
    line-height: 1.7;
}

.at-vm-list {
    padding-left: 2rem;
    list-style-type: decimal;
    color: var(--neutral-600);
    margin-top: auto;
}

.at-vm-list li {
    margin-bottom: 1.2rem;
    padding-left: 0.5rem;
    font-size: var(--fs-md);
}

.at-vm-list li::marker {
    color: var(--primary-600);
    font-weight: var(--fw-bold);
}

/* --- WYSWYG Content (CMS Standard) --- */
.wyswyg {
    color: var(--neutral-800);
}

.wyswyg h1,
.wyswyg h2,
.wyswyg h3,
.wyswyg h4,
.wyswyg h5,
.wyswyg h6 {
    color: var(--neutral-900);
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
}

.wyswyg h1 {
    font-size: var(--fs-3xl);
}

.wyswyg h2 {
    font-size: var(--fs-2xl);
}

.wyswyg h3 {
    font-size: var(--fs-2xl);
}

.wyswyg h4 {
    font-size: var(--fs-xl);
}

.wyswyg h5 {
    font-size: var(--fs-lg);
}

.wyswyg h6 {
    font-size: var(--fs-base);
}

.wyswyg p {
    margin-bottom: 2rem;
    line-height: var(--lh-relaxed);
}

.wyswyg em,
.wyswyg i {
    font-style: italic;
}

.wyswyg strong,
.wyswyg b {
    font-weight: var(--fw-bold);
}

.wyswyg u {
    text-decoration: underline;
}

.wyswyg mark {
    background-color: var(--primary-100);
    color: var(--primary-900);
    padding: 0.2rem 0.4rem;
    border-radius: var(--radius-sm);
}

.wyswyg code {
    background-color: var(--neutral-100);
    color: var(--danger);
    padding: 0.2rem 0.4rem;
    border-radius: var(--radius-sm);
    font-family: monospace;
}

.wyswyg sub,
.wyswyg sup {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

.wyswyg sup {
    top: -0.5em;
}

.wyswyg sub {
    bottom: -0.25em;
}

.wyswyg del {
    text-decoration: line-through;
}

.wyswyg ins {
    text-decoration: underline;
}

.wyswyg a {
    color: var(--primary-600);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.wyswyg a:hover {
    color: var(--primary-800);
}

.wyswyg ul,
.wyswyg ol {
    margin-bottom: 2rem;
    padding-left: 2.5rem;
}

.wyswyg li {
    margin-bottom: 1rem;
}

/* Nested Lists 3 Levels */
.wyswyg ul ul,
.wyswyg ol ol,
.wyswyg ul ol,
.wyswyg ol ul {
    margin-top: 1rem;
    margin-bottom: 0;
}

.wyswyg blockquote {
    border-left: 4px solid var(--primary-500);
    padding: 2.5rem 3.5rem;
    margin: 3.5rem 0;
    background-color: var(--primary-50);
    font-style: italic;
    color: var(--neutral-700);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.wyswyg img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 2.5rem 0;
}

.wyswyg iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    margin: 3.5rem 0;
    box-shadow: var(--shadow-md);
}

.wyswyg table {
    width: 100%;
    border-collapse: collapse;
    margin: 3.5rem 0;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wyswyg table th,
.wyswyg table td {
    border: 1px solid var(--neutral-200);
    padding: 1.5rem;
    text-align: left;
    font-size: 14px;
}

.wyswyg table th {
    background-color: var(--neutral-100);
    font-weight: var(--fw-bold);
    color: var(--neutral-900);
}

/* --- Milestone Section (Company Journey) --- */
.milestone-section {
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-900);
}

.milestone-container {
    position: relative;
    padding-top: 20px;
}

/* The Connecting Journey Line */
.milestone-line {
    position: absolute;
    top: 70px;
    /* Aligned with milestone-point center (row padding 60px + point radius 10px) */
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, var(--primary-300) 50%, transparent 50%);
    background-size: 20px 100%;
    z-index: 1;
    opacity: 0.25;
}

.milestone-row {
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 2;
    padding-top: 60px;
    /* Important: Gives space for absolute years so they don't get cut by overflow-auto */
}

.milestone-row::-webkit-scrollbar {
    display: none;
}

.milestone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.milestone-point {
    width: 20px;
    height: 20px;
    background: var(--primary-500);
    border-radius: 50%;
    margin-bottom: 40px;
    position: relative;
    border: 3px solid var(--secondary-900);
    box-shadow: 0 0 0 4px rgba(255, 188, 112, 0.15);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.milestone-year {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.4rem;
    font-weight: var(--fw-bold);
    color: var(--primary-400);
    font-family: var(--font-secondary);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.milestone-item:hover .milestone-point {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(255, 113, 10, 0.5);
}

.milestone-item .as-service-card {
    width: 100%;
}

/* Milestone Embla Specifics */
#milestoneEmbla .embla__viewport {
    padding-top: 60px;
    padding-bottom: 20px;
}

#milestoneEmbla .embla__container {
    align-items: stretch;
    /* Ensure slides can stretch to same height */
    margin-left: -2.5rem;
}

#milestoneEmbla .embla__slide {
    padding-left: 2.5rem;
    display: flex;
}

/* Isolated Milestone Item Styles */
.milestone-item .as-service-card {
    cursor: default;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.milestone-item .as-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.milestone-item .card2 .as-card-desc.sector {
    font-size: 1.4rem;
}

.milestone-item .as-card-title {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.milestone-item .as-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: var(--primary-400);
}



/* --- Management Cards --- */
.management-cards-section {
    background-color: var(--primary-50);
}

.mgmt-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    /* Simplified smooth transition */
    height: 100%;
    position: relative;
}

.mgmt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mgmt-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.mgmt-img {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: var(--neutral-100);
}

.mgmt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mgmt-card:hover .mgmt-img img {
    transform: scale(1.05);
}

.mgmt-info {
    padding: 2.5rem;
    text-align: center;
}

.mgmt-name {
    font-size: 2rem;
    font-weight: var(--fw-bold);
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.mgmt-pos {
    font-size: 1.3rem;
    color: var(--primary-500);
    font-weight: var(--fw-semibold);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bio Modal Styles */
.glightbox-container .gslide-media.gslide-inline {
    border-radius: 4rem;
    overflow: hidden;
    background: #fff;
    width: 95vw !important;
    /* Default for smaller screens */
    max-width: 95vw !important;
}


.gslide-inline .ginlined-content {
    padding: 15px;
}

.mgmt-bio-wrapper {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    overflow-y: auto;
    max-height: 80vh;
    /* Max height as requested */
    border-radius: 4rem;
}

/* Custom Thin Scrollbar for Bio */
.mgmt-bio-wrapper::-webkit-scrollbar {
    width: 6px;
}

.mgmt-bio-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.mgmt-bio-wrapper::-webkit-scrollbar-thumb {
    background: var(--neutral-200);
    border-radius: 10px;
}

.mgmt-bio-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--neutral-300);
}

/* .mgmt-bio-img {
    /* background-color: var(--neutral-100);
    height: 100%; 
    min-height: 500px;
} */

.mgmt-bio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: top;
}

.mgmt-bio-name {
    font-size: 3.2rem;
    font-weight: var(--fw-bold);
    color: var(--secondary-900);
}

.mgmt-bio-pos {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--fw-semibold);
    color: var(--primary-500);
}

.mgmt-bio-content {
    padding: 0 2rem 2rem !important;
}

.primary-color {
    color: var(--primary-500) !important;
}

/* -------------------------------------------------------------------------- */
/* REPORT LISTING SECTION                                                     */
/* -------------------------------------------------------------------------- */
.report-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
    margin-bottom: 3rem;
}

.report-card {
    background: transparent;
    border-radius: var(--radius-lg);
    /* overflow: hidden; */
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    border: none;
}

.report-card:hover {
    transform: translateY(-8px);
}

.report-card:hover .report-card-img {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 6px 10px;
}

.report-card-img {
    overflow: hidden;
    background: var(--neutral-50);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 4px;
    margin-bottom: 15px;
}

.report-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.report-card-body {
    padding: 0 0 1.5rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: transparent;
    align-items: flex-start;
}

.report-card-title {
    font-size: 2.2rem;
    font-weight: var(--fw-bold);
    color: var(--secondary-900);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.report-card:hover .report-card-title {
    color: var(--primary-500);
}

.report-card-icon {
    font-size: 2.2rem;
    color: var(--primary-600);
    margin-top: 5px;
}

/* Pagination Styling */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 6rem;
}

.pagination-custom {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-custom .page-item .page-link {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--neutral-200);
    color: var(--neutral-700);
    font-size: 1.4rem;
    font-weight: var(--fw-semibold);
    text-decoration: none;
    transition: var(--transition-base);
}

.pagination-custom .page-item.active .page-link {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 113, 10, 0.3);
}

.pagination-custom .page-item .page-link:hover:not(.active) {
    background: var(--primary-50);
    border-color: var(--primary-500);
    color: var(--primary-500);
}

/* -------------------------------------------------------------------------- */
/* CERTIFICATION LISTING SECTION                                              */
/* -------------------------------------------------------------------------- */
.cert-card-link {
    text-decoration: none;
    display: flex;
    height: 100%;
}

.cert-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.cert-card-img {
    overflow: hidden;
    background: var(--neutral-50);
    flex-shrink: 0;
    aspect-ratio: 16/9;
}

.cert-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px;
    object-position: top;
}

.cert-card-link:hover .cert-card-img img {
    transform: scale(1.02);
    filter: drop-shadow(rgb(102, 102, 102) 1px 4px 6px);
}

.cert-card-body {
    padding: 2rem 2rem 3.5rem;
    /* flex-grow: 1; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--secondary-50);
}

.cert-card-title {
    font-size: 1.6rem;
    font-weight: var(--fw-bold);
    color: var(--secondary-900);
    line-height: 1.4;
    margin-bottom: 0;
    transition: var(--transition-fast);
    flex-grow: 1;
}

.cert-card-link:hover .cert-card-title {
    color: var(--primary-500);
}

.cert-card-meta {
    font-size: 1.3rem;
    color: var(--neutral-700);
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.cert-card-meta i {
    color: var(--primary-600);
    font-size: 1.6rem;
    margin-top: 3px;
}

/* --- GLightbox Custom Popup Styling --- */
.glightbox-clean .gslide-image img {
    max-height: 70vh !important;
    width: auto !important;
    object-fit: contain;
}

.glightbox-clean .gslide-image {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.glightbox-clean .gslide-title {
    font-family: var(--font-primary);
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: var(--secondary-800) !important;
    margin-bottom: 10px !important;
    line-height: 1.2 !important;
}

.glightbox-clean .gslide-desc {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--secondary-800) !important;
    line-height: 1.5 !important;
}

/* -------------------------------------------------------------------------- */
/* INTRO PLAIN SECTION                                                       */
/* -------------------------------------------------------------------------- */
.intro-plain {
    position: relative;
    padding: 160px 0 100px;
    min-height: 500px;
    display: block;
    align-items: center;
    background-color: #000;
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
}

.intro-plain-sub {
    font-family: var(--font-secondary);
    font-size: var(--fs-md);
    color: var(--primary-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: var(--fw-bold);
    margin-bottom: 15px;
}

.intro-plain-title {
    font-family: var(--font-secondary);
    font-size: var(--fs-5xl);
    font-weight: var(--fw-bold);
    color: var(--neutral-50);
    line-height: 1.1;
    margin-bottom: 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.intro-plain-border {
    border-left: 2px solid var(--primary-500);
    padding-left: 40px;
}

.intro-plain-text {
    font-size: 1.8rem;
    line-height: 1.7;
    color: var(--neutral-200);
    margin-bottom: 0;
}

/* -------------------------------------------------------------------------- */
/* INTRO PLAIN SECTION                                                       */
/* -------------------------------------------------------------------------- */
.intro-plain {
    position: relative;
    padding: 220px 0 120px;
    background-color: var(--secondary-700);
    overflow: hidden;
    color: var(--neutral-50);
}

.intro-plain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/spcimg6.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0.6;
    mix-blend-mode: multiply;
    z-index: 0;
}

.intro-plain .container {
    position: relative;
    z-index: 1;
}

.intro-plain-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    aspect-ratio: 4/3;
}

.intro-plain-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.intro-plain-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.intro-plain-img-wrapper:hover img {
    transform: scale(1.1);
}

/* .intro-plain .hero.intro {
    font-size: clamp(3.2rem, 5vw, 5.6rem);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    color: var(--neutral-50);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
} */

.intro-plain .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: var(--fw-medium);
    margin-bottom: 2.5rem;
}

.intro-plain .breadcrumb-nav a {
    color: var(--primary-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

.intro-plain .breadcrumb-nav a:hover {
    color: var(--primary-200);
}

.intro-plain .breadcrumb-nav .separator {
    color: var(--neutral-500);
    font-size: 1rem;
}

.intro-plain .breadcrumb-nav .current {
    color: var(--neutral-400);
}

/* --- Text Kiri Kanan Zig-Zag --- */
.textKiriKanan .row {
    align-items: stretch;
    margin-bottom: 50px;
    transition: var(--transition-base);
}

.textKiriKanan .img,
.textKiriKanan .txtSide {
    background-color: var(--secondary-800);
    color: var(--neutral-50);
}

/* Individual Column Radius for Zig-Zag effect */
.textKiriKanan:nth-child(odd) .img {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.textKiriKanan:nth-child(odd) .txtSide {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.textKiriKanan:nth-child(even) .img {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.textKiriKanan:nth-child(even) .txtSide {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.textKiriKanan .img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.textKiriKanan .img img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.textKiriKanan .txtSide {
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.textKiriKanan .txtSide h1,
.textKiriKanan .txtSide h2,
.textKiriKanan .txtSide h3,
.textKiriKanan .txtSide h4,
.textKiriKanan .txtSide h5,
.textKiriKanan .txtSide h6 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-400);
}

.textKiriKanan:nth-child(odd) .txtSide h3 {
    color: var(--primary-400);
}

.textKiriKanan .txtSide p {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: inherit;
    opacity: 0.9;
}

.textKiriKanan ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.textKiriKanan ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: var(--fw-medium);
}

.textKiriKanan ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--neutral-50);
}

.textKiriKanan:nth-child(odd) ul li::before {
    color: var(--neutral-50);
}

/* Zig-Zag Order */
.textKiriKanan:nth-child(odd) .img {
    order: 1;
}

.textKiriKanan:nth-child(odd) .txtSide {
    order: 2;
}

.textKiriKanan:nth-child(even) .img {
    order: 2;
}

.textKiriKanan:nth-child(even) .txtSide {
    order: 1;
}

/* --- Card Gallery (cardImgText) --- */
.cardImgText .imageCard {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.cardImgText .imageCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.cardImgText .imageCard:hover img {
    transform: scale(1.05);
}

/* -------------------------------------------------------------------------- */
/* PROJECT LIST SECTION                                                        */
/* -------------------------------------------------------------------------- */

.project-list-section {
    padding: 8rem 0 10rem;
}

/* --- Header --- */
.pl-subtitle {
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--primary-500);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.2rem;
}

.pl-title {
    font-family: var(--font-secondary);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--neutral-900);
    line-height: 1.2;
    margin-bottom: 0;
}

/* --- Filter Tabs --- */
.pl-filter {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pl-filter__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2.2rem;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--secondary-600);
    background-color: var(--secondary-50);
    border: 1.5px solid var(--secondary-600);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition-base);
}

.pl-filter__btn:hover {
    color: #fff;
    border-color: var(--secondary-500);
    background-color: var(--secondary-700);
}

/* All = dark active */
.pl-filter__btn[data-filter="all"].active {
    color: #fff;
    background-color: var(--secondary-700);
    border-color: var(--secondary-500);
}

.pl-filter__btn[data-filter="all"].active i {
    color: #fff;
}

/* Ongoing = active orange */
.pl-filter__btn[data-filter="ongoing"].active {
    color: #fff;
    background-color: var(--secondary-800);
    border-color: var(--primary-500);
}

/* Completed = active green */
.pl-filter__btn[data-filter="completed"].active {
    color: #fff;
    background-color: var(--secondary-800);
    border-color: var(--success);
}

.pl-filter__btn[data-filter="all"] i {
    color: #000;
}

.pl-filter__btn[data-filter="ongoing"] i {
    color: var(--primary-500);
}

.pl-filter__btn[data-filter="completed"] i {
    color: var(--success);
}

.pl-filter__btn i {
    font-size: 1.2rem;
}

/* --- Project Card --- */
.pl-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
    border: 1px solid #ff710a14;
}

.pl-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.pl-card>a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Card Image */
.pl-card__img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.pl-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
    transition: var(--transition-base);
}

.pl-card:hover .pl-card__img::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.pl-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
    filter: grayscale(0.75);
}

.pl-card:hover .pl-card__img img {
    transform: scale(1.06);
    filter: grayscale(0);
}

/* Progress Bar (tepat di bawah gambar) */
.pl-card__progress {
    width: 100%;
    height: 0.4rem;
    background-color: var(--neutral-200);
}

.pl-card__progress-bar {
    height: 100%;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    transition: width 0.6s ease;
}

.pl-card--ongoing .pl-card__progress-bar {
    width: 50%;
    background-color: var(--primary-500);
}

.pl-card--completed .pl-card__progress-bar {
    width: 100%;
    background-color: var(--success);
}

/* Card Body */
.pl-card__body {
    padding: 2rem 2rem 3rem;
}

.pl-card__title {
    font-family: var(--font-secondary);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--neutral-900);
    line-height: 1.4;
    margin-bottom: 1.4rem;
}

/* Card Meta */
.pl-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pl-card__meta span {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: var(--fs-sm);
    color: var(--neutral-600);
    line-height: 1.5;
    margin-bottom: 4px;
}

.pl-card__meta span i {
    color: var(--primary-500);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Card Badge */
.pl-card__badge {
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.pl-card__badge--ongoing {
    background-color: rgba(255, 113, 10, 0.9);
    color: #fff;
}

.pl-card__badge--completed {
    background-color: rgba(16, 185, 129, 0.9);
    color: #fff;
}

/* --- Pagination --- */
.pl-pagination {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pl-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--neutral-200);
    background: #fff;
    color: var(--neutral-600);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    text-decoration: none;
    transition: var(--transition-base);
}

.pl-pagination__btn:hover {
    border-color: var(--primary-500);
    color: var(--primary-500);
    background-color: var(--primary-50);
}

.pl-pagination__btn.active {
    background-color: var(--primary-500);
    border-color: var(--primary-500);
    color: #fff;
}

.pl-pagination__btn i {
    font-size: 1.2rem;
}

/* -------------------------------------------------------------------------- */
/* PROJECT DETAIL STATS SECTION                                                */
/* -------------------------------------------------------------------------- */

.pd-stat-card {
    background: #ffffffb6;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-200);
    height: 100%;
    transition: var(--transition-base);
}

.pd-stat-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
    transform: translateY(-2px);
    background-color: #ffffff;
}

.pd-stat-card span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--neutral-500);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pd-stat-card span i {
    color: var(--primary-500);
    font-size: 1rem;
}

.pd-stat-card p {
    font-family: var(--font-secondary);
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    color: var(--neutral-900);
    margin: 0;
    line-height: 1.6;
}

.pd-img-container {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.pd-img-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* --- Leaflet Popup Customization --- */
.leaflet-popup-content-wrapper {
    border-radius: var(--radius-md);
    padding: 5px;
    max-width: 240px;
}

.leaflet-popup-content {
    font-family: var(--font-primary);
    font-size: 1.4rem !important;
    /* ~15px if base is 16px, or follows project standard */
    line-height: 1.5;
    color: var(--secondary-900);
    font-weight: 600;
    margin: 12px 15px;
}

.leaflet-popup-content b {
    color: var(--primary-700);
    display: block;
    margin-bottom: 4px;
    font-size: 1.6rem !important;
}

/* --- Contact Section --- */
.contact-social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
}