html,
body {
    margin: 0;
    padding: 0;
}

body {
 
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden !important;
    max-width: 100% !important;
}



:root {
    --teal: #4a7c7c;
    --font-main: 'Poppins', sans-serif;
}

/* === HEADER === */
.site-header {
    width: 100%;
    background-color: #ffffff;
    position: sticky;      
    top: 0;                
    z-index: 999;          
    overflow: visible !important; 
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px 0 0;
    height: 100px;
    display: flex;
    align-items: center;
    gap: 90px;
}


/* === LOGO AREA === */
.logo-wrapper {
    position: relative;
    width: 210px;
    height: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.bg-yellow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 40% 40%,
        #fbe68b 0%,
        #fff1b9 55%,
        #ffffff 90%
    );
    border-radius: 50%;
    bottom: -200px;
    left: -260px;
    z-index: 0;
    opacity: 0.96;
}


.bg-blue {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 40% 40%,
        rgba(142, 178, 182, 0.96) 0%,
        rgba(212, 225, 226, 0.92) 60%,
        rgba(255, 255, 255, 1) 100%
    );
    border-radius: 50%;
    top: -20px;
    left: 90px;
    z-index: 1;
    opacity: 0.98;
}

/* === LOGO === */
.logo {
    height: 50px;
    margin-left: 10px;
    margin-top: 10px;
    z-index: 2;
}
/****************************************************
 * NAVIGATION DESKTOP
 ****************************************************/
.header-nav > ul {
    display: flex;
    align-items: center;
    gap: 34px;
}

.header-nav ul li { list-style: none; }

.header-nav ul li a {
    font-size: 16px;
    font-weight: 600;
    color: #3e6c6c;
    text-decoration: none;
}

.header-nav ul li a.active {
    color: #fbe68b !important;
}

/****************************************************
 * SUBMENU
 ****************************************************/
.has-submenu {
    position: relative;
}

.has-submenu::after {
    content: "";
    position: absolute;
    top: 100%;
    width: 100%;
    height: 12px;
}


.submenu {
    width: max-content !important;
    min-width: 260px !important;
    max-width: 260px !important;
    box-sizing: border-box !important;  
    overflow: hidden !important;
}


.submenu li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


.submenu li a {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px !important;
    box-sizing: border-box !important;
}


.submenu li:hover a {
    background-color: #3e6c6c !important;
    color: #ffffff !important;
}

/****************************************************
 * HAMBURGER
 ****************************************************/
.hamburger {
    display: none;
    cursor: pointer;
    width: 32px;
}
.hamburger span {
    display: block;
    height: 3px;
    margin: 6px 0;
    background: #3e6c6c;
    transition: .3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/****************************************************
 * MOBILE MENU SLIDE + ACCORDION SUBMENU
 ****************************************************/
@media (max-width: 992px) {

    .hamburger { display: block; }

    .header-nav {
        position: fixed;
        right: -100%;
        top: 0;
        width: 300px;
        height: 100vh;
        background: #fff;
        padding: 120px 30px;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        transition: .4s;
    }

    .header-nav.open {
        right: 0;
    }

    .header-nav > ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .submenu {
        position: static !important;
        padding: 0 !important;
        margin-top: 10px;
        background: transparent !important;
        box-shadow: none !important;
        display: none !important;
    }

    .submenu.open {
        display: block !important;
    }

    .submenu li a {
        padding: 10px 15px;
        border-radius: 4px;
    }

    .has-submenu > a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .has-submenu.open > a i {
        transform: rotate(180deg);
    }
}



.page-hero {
    width: 100%;
    padding: 120px 0;
    background: #3e6c6c;
    text-align: center;
    margin-top: 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.hero-title span {
    color: #ffde59;
}

.hero-breadcrumb {
    margin-top: 12px;
    font-size: 16px;
    color: #d9d9d9;
}

.hero-breadcrumb a {
    color: #ffde59;
    font-weight: 600;
    text-decoration: none;
}

.hero-breadcrumb span {
    margin: 0 8px;
    color: #ffde59;
}

.header-bottom-mask {
    width: 100%;
    height: 120px; 
    background: #ffffff; 
    position: absolute;
    bottom: -120px;
    left: 0;
    z-index: 10;
}


.page-hero {
    width: 100%;
    padding: 120px 0;
    background: #3e6c6c;
    text-align: center;
    margin-top: 0;
     background-image: none !important;
}

.page-hero::before,
.page-hero::after {
    background: none !important;
    content: none !important;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.hero-title span {
    color: #ffde59;
}

.hero-breadcrumb {
    margin-top: 12px;
    font-size: 16px;
    color: #d9d9d9;
}

.hero-breadcrumb a {
    color: #ffde59;
    font-weight: 600;
    text-decoration: none;
}

.hero-breadcrumb span {
    margin: 0 8px;
    color: #ffde59;
}

.header-bottom-mask {
    width: 100%;
    height: 120px; 
    background: #ffffff; 
    position: absolute;
    bottom: -120px;
    left: 0;
    z-index: 10;
}

/* ========================
   HAMBURGER BUTTON
======================== */
.hamburger {
    display: none;
    width: 32px;
    cursor: pointer;
    z-index: 9999;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    margin: 6px 0;
    background: #3e6c6c;
    transition: 0.3s;
}

/* ========================
   MOBILE NAVIGATION
======================== */
@media (max-width: 992px) {

    .header-container {
        justify-content: space-between;
        padding-right: 20px;
        gap: 20px;
    }

    /* Tampilkan hamburger */
    .hamburger {
        display: block;
    }

   
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        padding: 120px 30px 40px;
        transition: 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        z-index: 9998;
    }

    .header-nav.open {
        right: 0;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 25px;
    }

    /* Submenu mobile */
    .submenu {
        display: none;
        padding-left: 18px;
        flex-direction: column;
        gap: 12px;
    }

    .submenu.open {
        display: flex;
    }

    .has-submenu > a i {
        margin-left: 8px;
        transition: 0.3s;
    }

    .has-submenu.open > a i {
        transform: rotate(180deg);
    }
}

/* ========================
   SUBMENU DESKTOP
======================== */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 50px;
    left: 0;
    width: 200px;
    background: white;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 50;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    padding: 8px 20px;
}

.submenu li a {
    color: #3e6c6c;
    font-weight: 600;
    text-decoration: none;
}

.submenu li a:hover {
    color: #254f4f;
}


/* =========================
   HERO WRAPPER
========================= */
.hero {
    position: relative;
    height: 74vh;
    overflow: visible;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center !important;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center !important;
    filter: brightness(0.55);
    z-index: 1;
}

/* =========================
   HERO CONTENT
========================= */
.hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    
}

.hero-landing-title {
    font-size: 60px;
    font-weight: 800;
    max-width: 1000px;
    line-height: 1.1;
    color: white;
    margin-bottom: 10px;
    margin-top: 60px;
}

.hero-desc {
    font-size: 18px;
    color: white;
    opacity: .9;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 35px;
}

/* =========================
   BUTTONS
========================= */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}



.btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffde59 ;
    color: black;
    padding: 13px 26px;
    border-radius: 45px;
    font-weight: 600;
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    transform: translateY(-2px);
    background: #3e6c6c;
    color: white;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white ;
    color: black;
    padding: 13px 26px;
    border-radius: 45px;
    font-weight: 600;
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white:hover{

    transform: translateY(-2px);
    background: #3e6c6c;
    color: white;
}

/* =========================
   HIGHLIGHT BOX 
========================= */
.hero-highlight {
    position: absolute;
     right: 0 !important;
    max-width: 350px !important;  
    bottom: -90px; 
    width: 400px;  
    background: #356d6f;
    padding: 20px 25px 30px 25px;
    border-radius: 20px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.2);
    color: white;
    z-index: 5;
}

.hero-highlight h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-highlight p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: .95;
}

.highlight-btn  {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffde59 ;
    color: black;
    padding: 13px 26px;
    border-radius: 45px;
    font-weight: 600;
    font-size: 17px;
    margin-top: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.highlight-btn:hover {
    transform: translateY(-2px);
    background: white;
    color: black;
}

.highlight-icon {
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 150px;
    opacity: .12;
    pointer-events: none;
}

/* =========================
   CONTACT SECTION
========================= */
.hero-contact {
    background: #f6fbfb;
    padding-top: 25px; 
    padding-bottom: 60px;
}

.hero-contact-inner {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    padding-left: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
     width: 30px;              
    height: 30px;            
    background: radial-gradient(circle at 30% 30%, #fbe68b, #4a7c7c);
    border-radius: 50%;  
    background: #356d6f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 50%;
    font-size: 25px;
}

.contact-label{font-weight: bold;}


/* ============================
   OUR PARTNER LANDING PAGE
============================ */


.partner-container-landing{
   background: #4a7c7c;
    padding: 60px 100px 80px 100px;  
    position: relative;
    overflow: hidden;
}

.partner-logo-grid-landing {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}



.partner-logo-item-landing {
    width: 150px !important;        
    height: 110px !important;      
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 10px !important;       
    margin: 0 auto;
}

/* Ukuran logo di dalam kotak */
.partner-logo-item-landing img {
    max-height: 90px !important;
    max-width: 150px !important;
    object-fit: contain;
}

.partner-title-large-landing {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: white;
}


.partner-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 100px;
}

.partner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    gap: 20px;
}


.partner-btn-all {
    background: #ffde59; 
    color: #000;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .28s ease;
    
    text-decoration: none;
}

.partner-btn-all:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}


.partner-btn-all i {
    font-size: 16px;
}




/* ============================
   FOCUS AREA LANDING PAGE
============================ */

.container-about-us{
    
    background: #f4f6fb;

}

/* ===== CORE VALUES SECTION ===== */

.core-values-section {
    padding: 60px 0 100px;
    background: #f6fbfb;
}

.core-values-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */
.core-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.core-values-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a0a5b5;
    margin-bottom: 12px;
}

.core-values-title {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 12px;
}

.core-values-subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: #788095;
    font-size: 15px;
    line-height: 1.6;
}


.core-values-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}


.core-values-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.core-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 25px 25px 25px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}


.core-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffde59;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.core-card-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}


.core-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.core-card-desc {
    font-size: 14px;
    color: #7a8190;
    line-height: 1.6;
}


.core-center-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
    min-height: 380px;
}

.core-center-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.core-center-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 28px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .core-values-grid {
        grid-template-columns: 1fr;
    }

    .core-center-card {
        order: -1;      
        min-height: 260px;
    }
}





/* ============================
   ABOUT SECTION 
============================ */
.about-section {
   padding: 30px 0 40px 0 !important; 
    background-color: #f6fbfb;
    

}

/* ===== ABOUT SECTION GRID LAYOUT ===== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 0.8fr; 
    align-items: flex-start;
    gap: 30px;
    margin-top: 60px;

    position: relative;
}

/* ===== LEFT AREA ===== */
.about-left {
    max-width: 520px;
}

.about-breadcrumb {
    font-size: 20px;
    font-weight: 600;
    color: #ffde59 ;
   
}

.about-breadcrumb-green {
    font-size: 20px;
    font-weight: 600;
    color: #3e6c6c ;
   
}


.about-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1,5;
    color: black;
    margin-bottom: 15px;
}

.about-title span {
    color: black;;
}

.about-description {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.55;
    margin-bottom: 28px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffde59 ;
    color: black;
    padding: 13px 26px;
    border-radius: 45px;
    font-weight: 600;
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-2px);
    background: #3e6c6c;
    color: white;
}

/* ===== HAPPY CLIENT FLOAT BOX ===== */
.about-stat-card {
    position: absolute;
    top: -55px;            
    left: -50px;
    width: 220px;          
    background: white;   
    border-radius: 20px;
    text-align: center;
    padding: 8px 0 12px 0; 
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    z-index: 10;
}

.about-stat-card h3 {
    font-size: 42px;      
    font-weight: 700;
    margin: 0;
    color:#3e6c6c ;
;
}

.about-stat-card p {
    font-size: 17px;
    margin: 4px 0 0 0;    
    color: #3e6c6c;
    font-weight: 500;
}


@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

/* ===== IMAGE CENTER ===== */
.about-center {
    position: relative;
}

.about-image {
    width: 100%;
    height: 580px; 
    object-fit: cover;
    border-radius: 22px;
}

/* ===== RIGHT SIDE CARDS (MISSION / VISION) ===== */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 350px;
    align-self: flex-start;
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* ===== ICON BULAT ===== */
.icon-circle {
    width: 60px;
    height: 60px;
    background: #3e6c6c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* ===== TITLE MISSION VISION ===== */
.about-card h4 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    font-weight: 700;
    color: #3e6c6c;
    margin-bottom: 12px;
}

/* ===== TEXT ===== */
.about-card p,
.about-card ul li {
    font-size: 14px; 
    line-height: 1.45;
    color: #333;
}

.about-list {
    padding-left: 18px;
}



/* ============================
   FIX PADDING CONTACT SECTION DI MOBILE
============================ */
@media (max-width: 480px) {

    .contact-section {
        padding: 20px 0 0px 0 !important;   
    }

    .contact-wrapper {
        gap: 20px !important;
    }

    .contact-title-section h1 {
        font-size: 1.9rem !important;
        line-height: 1.3;
    }

    .contact-title-section h3 {
        font-size: 0.95rem !important;
    }

    .contact-wrapper {
        grid-template-columns: 1fr !important;
    }

    .info-box {
        padding: 25px 20px !important;
    }

}


/* ===== SUBSIDIARIES SECTION ===== */

/* SECTION BACKGROUND */
.subsidiaries-wrapper {
    width: 100%;
    padding: 50px 0 80px;
    margin-top: 40px;
    background: #3e6c6c; 
    color: white;
    
}

.subsidiaries-header {
    text-align: center;
    margin-bottom: 60px;
}



.sub-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
}

.sub-description {
    max-width: 650px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
}


.subsidiaries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}


.subsidiary-card {
    position: relative;
    display: block;
    height: 500px;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
}


.subsidiary-image {
    width: 100%;
    height: 100%;
}

.subsidiary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}


.subsidiary-card:hover .subsidiary-image img {
    transform: scale(1.05);
}


.subsidiary-floating-box {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;

    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
    color: #212121;
}

.subsidiary-floating-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #3e6c6c;
    margin-bottom: 6px;
}

.subsidiary-floating-box p {
    font-size: 14px;
    margin-bottom: 4px;
    opacity: 0.85;
}

.view-project {
    font-size: 14px;
    font-weight: 600;
    color: #3e6c6c;
}

.view-project:hover{

    text-decoration: underline;
}
/* ===== DETAIL ANAK PERUSAHAAN  ===== */

.subs-section {
    position: relative;
    width: 100%;
    min-height: 650px;
    padding: 100px 0;
    background: #f6fbfb;
    overflow: hidden;
}


.subs-image-side {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

.subs-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.subs-box {
    position: relative;
    z-index: 10;
    width: 55%;
    background: #fff;
    padding: 40px 40px 60px 60px;
    margin-left: 100px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ==== TEXT ==== */



.subs-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.subs-desc {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 45px;
   
    color: #333;
}

/* ==== CORE 1 BARIS ==== */
.subs-core-row {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}


.core-single {
    text-align: center;
}

.core-single .core-icon {
    width: 70px;
    margin-bottom: 8px;
}

.core-single .core-text {
    margin-top: 4px;
    line-height: 1.4;
}



/* ==== RESPONSIVE ==== */
@media (max-width: 1100px) {
    .subs-box {
        width: 90%;
        margin: auto;
    }
    .subs-image-side {
        display: none;
    }
    .subs-core-row {
        flex-wrap: wrap;
    }
    .core-single {
        width: 48%;
    }
}



/* ===============================
Download COMPANY PROFILE
   =============================== */
.company-intro-section {
    background: #3e6c6c ;
    padding: 20px 0;              
    color: #ffffff;
    overflow: hidden;
}

/* ===============================
   CONTAINER
   =============================== */
.company-intro-container {
    max-width: 900px;
    margin: auto;
    padding: 10px 40px;

    display: flex;
    flex-direction: column;        
    align-items: center;          
    justify-content: center;       
    text-align: center;            
    gap: 25px;
}


/* ===============================
   TEXT ELEMENTS
   =============================== */


.intro-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.intro-title span {
    color: #ffde59 ;
}

.intro-desc {
    max-width: 700px;
    font-size: 18px;
    opacity: .85;
    line-height: 1.6;
}


/* ===============================
   FEATURES (CHECK ICONS)
   =============================== */
.intro-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.intro-features span {
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.intro-features i {
    color: #ffde59 ;
}


/* ===============================
   DOWNLOAD BUTTON
   =============================== */
.subs-download-btn {
    display: inline-block;
    background: #ffde59;
    color: black ;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-decoration: none;
    transition: .3s;
}

.subs-download-btn:hover {
    background: #ffde59;
    transform: translateY(-3px);
}












/* ============================================================
   GLOBAL ANIMATION BASE
============================================================ */
.animate-fade-up,
.animate-fade-left,
.animate-fade-right,
.animate-zoom-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
}

.animate-fade-left {
    transform: translateX(-40px);
}

.animate-fade-right {
    transform: translateX(40px);
}

.animate-zoom-in {
    transform: scale(0.8);
}

.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}


.delay-1 { transition-delay: 0.15s }
.delay-2 { transition-delay: 0.3s }
.delay-3 { transition-delay: 0.45s }

/* ============================================================
   HERO ANIMATIONS
============================================================ */
.hero-left {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.hero-left.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-highlight {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s ease;
}

.hero-highlight.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-stat-card {
    transition: all 1s ease-out;
}

.about-center.animate-zoom-in {
    transform: scale(0.8);
    opacity: 0;
    transition: all 1.1s ease-out;
}
.about-center.is-visible {
    transform: scale(1);
    opacity: 1;
}

/* ============================================================
   PARTNER LOGO HOVER
============================================================ */

/* ============================================================
   OUR COLLABORATION ANIMATION
============================================================ */

/* Header Fade-up */
.partner-header.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}
.partner-header.animate-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Logo Fade-up + Stagger */
.partner-logo-item-landing {
    opacity: 0;
    transform: translateY(30px);
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}


.partner-logo-item-landing.logo-visible {
    opacity: 1;
    transform: translateY(0);
}


.partner-logo-item-landing:nth-child(1)  { transition-delay: 0.20s; }
.partner-logo-item-landing:nth-child(2)  { transition-delay: 0.30s; }
.partner-logo-item-landing:nth-child(3)  { transition-delay: 0.40s; }
.partner-logo-item-landing:nth-child(4)  { transition-delay: 0.50s; }
.partner-logo-item-landing:nth-child(5)  { transition-delay: 0.60s; }
.partner-logo-item-landing:nth-child(6)  { transition-delay: 0.70s; }
.partner-logo-item-landing:nth-child(7)  { transition-delay: 0.80s; }
.partner-logo-item-landing:nth-child(8)  { transition-delay: 0.90s; }
.partner-logo-item-landing:nth-child(9)  { transition-delay: 1.00s; }
.partner-logo-item-landing:nth-child(10) { transition-delay: 1.10s; }
.partner-logo-item-landing:nth-child(11) { transition-delay: 1.20s; }
.partner-logo-item-landing:nth-child(12) { transition-delay: 1.30s; }



.partner-logo-item-landing img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

/* === HOVER: efek sekotak === */
.partner-logo-item-landing:hover {
    background-color: #f7f7f7;
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    transform: translateY(-6px);
}

.partner-logo-item-landing:hover img {
    transform: scale(1.08);
}

/* ============================================================
   CORE VALUES ANIMATION
============================================================ */
.core-values-column.animate-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}
.core-values-column.animate-fade-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.core-values-column.animate-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}
.core-values-column.animate-fade-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* CENTER ZOOM */
.core-center-card.animate-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.1s cubic-bezier(0.23, 1, 0.32, 1);
}
.core-center-card.animate-zoom-in.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* INDIVIDUAL CARDS — FADE UP */
.core-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
}
.core-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delay */
.core-values-column .core-card:nth-child(1) { transition-delay: 0.15s; }
.core-values-column .core-card:nth-child(2) { transition-delay: 0.3s; }

/* ============================================================
   BLOG ITEMS
============================================================ */
.blog-item {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.blog-item:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.08);
}



/* ============================================================
   SUBSIDIARIES — HEADER FADE
============================================================ */
.subsidiaries-header.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}
.subsidiaries-header.animate-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.core-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.core-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effect tetap */
.core-single {
    text-align: center;
    transition: transform 0.3s ease;
}

.core-single:hover {
    transform: translateY(-6px);
}

.core-single:hover .core-icon {
    transform: scale(1.08);
}



/* ============================================================
   SUBSIDIARY CARD — FADE UP + HOVER
============================================================ */
.subsidiary-card {
    opacity: 0;
    transform: translateY(45px);
    transition: all 0.9s ease-out;
}
.subsidiary-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover movement */
.subsidiary-card:hover {
    transform: translateY(-6px);
}

/* IMAGE HOVER SLIGHT ZOOM */
.subsidiary-image img {
    transition: transform .5s ease;
}
.subsidiary-card:hover .subsidiary-image img {
    transform: scale(1.05);
}

/* Floating box hover */
.subsidiary-floating-box {
    transition: all .5s ease;
}
.subsidiary-card:hover .subsidiary-floating-box {
    transform: translateY(-4px);
}


/* ============================================================
   STAGGER — muncul satu per satu
============================================================ */
.subsidiary-card:nth-child(1) { transition-delay: .1s; }
.subsidiary-card:nth-child(2) { transition-delay: .2s; }
.subsidiary-card:nth-child(3) { transition-delay: .3s; }
.subsidiary-card:nth-child(4) { transition-delay: .4s; }
.subsidiary-card:nth-child(5) { transition-delay: .5s; }
.subsidiary-card:nth-child(6) { transition-delay: .6s; }
.subsidiary-card:nth-child(7) { transition-delay: .7s; }
.subsidiary-card:nth-child(8) { transition-delay: .8s; }


/* ============================================================
   SUBSIDIARY FLOATING BOX (smooth fade-in)
============================================================ */
.subsidiary-floating-box {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .6s ease-out, transform .6s ease-out;
}

.subsidiary-card.is-visible .subsidiary-floating-box {
    opacity: 1;
    transform: translateY(0);
}


.subsidiaries-grid {
    overflow: visible !important;
}


/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px) {
    .intro-title {
        font-size: 32px;
    }

    .intro-desc {
        font-size: 16px;
    }

    .intro-download-btn {
        font-size: 16px;
        padding: 12px 28px;
    }
}


/* === PORTFOLIO SECTION === */
.portfolio-section {
    padding: 100px 20px 100px 20px;
     background: #f6fbfb;
}

.portfolio-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 80px;
}

/* LEFT SIDE */
.portfolio-left {
    position: sticky;
    top: 120px;
    height: fit-content;
}


.portfolio-title-left {
    font-size: 40px;
    font-weight: 700;
    margin: 20px 0 15px;
}

.portfolio-desc {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #555;
}


.portfolio-btn {
    display: inline-flex;
    align-items: center;

    background: #ffde59 ;
    color: black;
    padding: 13px 26px;
    border-radius: 45px;
    font-weight: 600;
    font-size: 17px;
    
    margin-bottom: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    transform: translateY(-2px);
    background: #3e6c6c;
    color: white;
}

/* === RIGHT SIDE ACCORDION === */
.portfolio-accordion-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.portfolio-item {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    transition: 0.3s ease;
}

.portfolio-item.active {
    background: #3e6c6c;
    border-color: #3e6c6c;
}

.portfolio-header {
    width: 100%;
    padding: 25px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;  
    cursor: pointer;
}

.portfolio-text {
    display: flex;
    flex-direction: column;
}

.portfolio-year {
    font-size: 13px;
    font-weight: 600;
    color: #3e6c6c;
}

.portfolio-item.active .portfolio-year {
    color: #ffffff;
}

.portfolio-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 4px;
    color: #222;
}

.portfolio-item.active .portfolio-title {
    color: #ffffff;
}

/* ICON DI POJOK KANAN */
.portfolio-accordion-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.portfolio-item {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    transition: 0.3s ease;
}

/* saat aktif */
.portfolio-item.active {
    background: #3e6c6c;
    border-color: #3e6c6c;
}

.portfolio-header {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    cursor: pointer;
}

/* WRAPPER TEKS RATA KIRI */
.portfolio-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;   
    text-align: left;         
}

/* Tahun */
.portfolio-year {
    font-size: 16px;
    font-weight: 700;
    color: #254f3e;
    margin-bottom: 4px;
}

/* Tahun saat aktif */
.portfolio-item.active .portfolio-year {
    color: #ffffff;
}

/* Judul / Nama Perusahaan */
.portfolio-title {
    font-size: 22px;
    font-weight: 700;
    color: #121212;
}

.portfolio-item.active .portfolio-title {
    color: #ffffff;
}

/* ICON AKORDION */
.portfolio-icon {
    width: 38px;
    height: 38px;
    background: #eef7ef;
    color: #254f3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.portfolio-item.active .portfolio-icon {
    background: #fff;
    transform: rotate(45deg);
}

/* CONTENT */
.portfolio-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.portfolio-content p {
    margin: 0;
    padding-top: 15px;
    padding-bottom: 20px;
    color: #333;
}

.portfolio-item.active .portfolio-content p {
    color: #f2f8f6;
}


/* about us collaboration section */

.collaboration-section {
    padding: 50px 0 20px 0;
    background: #f7fcfc;
}

.collab-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT SIDE */
.collab-left {
    flex: 1;
}


.collab-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.collab-description {
    font-size: 17px;
    opacity: 0.8;
    margin-top: 10px;
}

/* RIGHT SIDE */
.collab-right {
    flex: 2;
    overflow: hidden; 
}

/* SLIDER */
.collab-slider {
    width: 100%;
    overflow: hidden;
}

.collab-track {
    display: flex;
    gap: 50px;
    animation: slide-logos 18s linear infinite;
}

/* LOOP ANIMATION */
@keyframes slide-logos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* LOGO ITEM */
.collab-logo-item img {
    height: 100px; 
    max-width: 200px;
    object-fit: contain;
    opacity: 0.95;
    transition: 0.2s ease;
}

.collab-logo-item img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .collab-container {
        flex-direction: column;
        text-align: center;
    }
    .collab-right {
        width: 100%;
    }
}


/* ======================================
   RESPONSIVE FIX — OUR COLLABORATION
   ====================================== */
@media (max-width: 480px) {

    .collaboration-section {
        padding: 20px 0 40px !important;  
    }

    .collab-container {
        padding: 0 16px !important; 
        gap: 20px !important;       
    }

    .collab-title {
        font-size: 20px !important;
        text-align: center;
    }

    .collab-description {
        font-size: 14px !important;
        text-align: center;
    }

    .collab-right img {
        max-height: 60px !important;
    }
}

/* ========================================================
   FOOTER 
======================================================== */

.site-footer {
    background: #4f7c7f;
    color: white;
    padding: 40px 0 10px; 
    font-family: 'Poppins', sans-serif;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* GRID UTAMA  */
.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1.4fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 20px; 
}

/* ===================== LEFT COLUMN ===================== */

.footer-heading {
    color: #ffde59;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-address h4 {
    margin: 0 0 8px 0;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.footer-address p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
}

/* ============ CONTACT LIST ICON ============ */

.contact-list {
    margin: 0;
    padding: 0;
}

.contact-list li {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    margin-top: 15px;
}

.contact-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 12px;

    background: radial-gradient(circle at bottom left,#ffde59 30%,#49848c 100%);
    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow:
        inset 0px -2px 4px rgba(0,0,0,0.15),
        0px 3px 6px rgba(0,0,0,0.18);
}

.contact-icon-white {
    width: 18px;
    filter: brightness(0) invert(1);
}

.contact-list a {
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* ===================== CONNECT BUTTON ===================== */

.footer-connect {
    text-align: center;   
}

.btn-connect {
    display: inline-flex;
    align-items: center;
    position: relative;
margin-top: 15px;
    padding: 6px 40px 6px 20px;
    background: white;
    border-radius: 40px;
margin-left: -160px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #3f686b;
text-decoration: none;
    height: 34px;
}

.btn-connect:hover span {
    text-decoration: underline;
}



/* lingkaran gradient kanan */
.btn-connect::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;

    background: linear-gradient(135deg, #ffde59, #49848c);
    opacity: 0.7;
    border-radius: 50%;
    z-index: 1;

    box-shadow: 0 3px 10px rgba(0,0,0,0.22);
}

/* arrow icon */
.btn-arrow {
    width: 25px;
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
     filter: brightness(0) saturate(100%) invert(40%) sepia(18%) 
            saturate(606%) hue-rotate(131deg) brightness(92%) contrast(85%);
    transition: 0.3s ease;
}


.btn-connect:hover .btn-arrow {
   filter: brightness(0) saturate(100%) invert(41%) sepia(32%) 
            saturate(551%) hue-rotate(131deg) brightness(95%) contrast(90%)
            drop-shadow(0 0 4px rgba(62, 108, 108, 0.6));
}

/* ===================== FOLLOW US — POSISI KANAN BAWAH ===================== */
.footer-social .footer-heading {
    text-align: left !important;
    margin-left: 0;
}

.footer-social {
    text-align: right;
    align-self: end;
    justify-self: end;
    padding-right: 5px; 
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.social-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;

    background: linear-gradient(135deg, #ffde59, #49848c);
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 3px 6px rgba(0,0,0,0.18);
}

.social-icon-white {
    width: 18px;
    filter: brightness(0) invert(1);
}

.social-box:hover .social-icon-white {
    animation: footerIconPulse 1.2s infinite ease-in-out;
    transform: scale(1.15);
}

/* glow kuning lembut */
@keyframes footerIconPulse {
    0% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 0px rgba(255, 222, 89, 0.6));
    }
    50% {
        transform: scale(1.25);
        filter: drop-shadow(0 0 10px rgba(255, 222, 89, 0.9));
    }
    100% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 0px rgba(255, 222, 89, 0.6));
    }
}

/* ===================== DIVIDER ===================== */

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.5);
    margin: 15px 0 8px;
}

/* ===================== COPYRIGHT ===================== */

.footer-bottom {
    text-align: center;
    padding-top: 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
}

.footer-bottom .copyright {
    color: #ffde59;
    font-weight: 700;
}


/* ========================================================
    OUR COLLABORATION 
======================================================== */

.partner-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 150px;
    
}


/* ===========================
   HEADER SECTION (TITLE + DESC)
=============================*/
.partner-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.partner-left {
    max-width: 60%;
}

.partner-title-large {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: black;
}

.partner-desc {
    font-size: 18px;
    color: white;
    line-height: 1.6;
}


/* ===========================
   GRID LOGO
=============================*/
.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .partner-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .partner-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

      .partner-header {
        display: flex;
        flex-direction: column; 
        align-items: flex-start;
        gap: 14px;
    }

    .partner-right {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        margin-top: 0 !important; 
    }

    .partner-btn-all {
        width: auto;
        margin-top: 4px; /
    }
}




/* ===========================
   LOGO CARD
=============================*/

.partner-logo-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;

    height: 130px; 
    display: flex;
    justify-content: center;
    align-items: center;

    transition: all 0.25s ease;
}

/* Logo size */
.partner-logo-item img {
max-height: 85px;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.25s ease;
}

/* Hover effect */
.partner-logo-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    border-color: #d5d5d5;
}

.partner-logo-item:hover img {
    transform: scale(1.04);
}

/* ------------- FORM STYLE ------------- */
/********************************************
    BOTTOM SECTION (LEFT BOX + FORM)
*********************************************/
.partner-bottom-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 50px;
}

/********************************************
    LEFT BOX
*********************************************/
.partner-left-box {
    background: #4a7c7c;
    padding: 60px 50px;
    border-radius: 14px;
}


.partner-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: white;
    margin-top: 15px;
    margin-bottom: 25px;
}

.need-help-box {
    margin-top: 35px;
}

.need-help-box h4 {
 color: white;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
}

.help-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #ffde59;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    margin-top: 10px;
}



.help-label {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.help-value {
    font-size: 17px;
    color: white;
}

/********************************************
    FORM RIGHT
*********************************************/
.partner-form {
   
    padding: 45px 50px;
    border-radius: 18px;
   
}

.row-2 {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 25px;
}

.partner-field label {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.partner-field input,
.partner-field select,
.partner-field textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    background: white;
    outline: none;
    margin-bottom: 15px;
    transition: 0.2s;
}

.partner-field input:focus,
.partner-field select:focus,
.partner-field textarea:focus {
    border-color: #3c6e71;
    background: #fff;
}

.partner-field textarea {
    height: 150px;
    resize: none;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 14px;
}

.partner-btn {
    background: #ffde59;
    padding: 15px 30px;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    color: black;
    cursor: pointer;
    transition: 0.3s;
}

.partner-btn:hover {
    background: #4a7c7c;
    color: white;
    transform: translateY(-3px);
}




/* ========================================================
    CONTACT PAGE 
======================================================== */

.contact-section .container {
    max-width: 1200px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.contact-section {
    width: 100%;
    padding: 100px 0 50px 0;
    background-color: #f6fbfb;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* HEADER */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header .line {
    display: block;
    width: 60px;
    height: 2px;
    background: #ffde59;
    margin: 0 auto 8px;
}

.contact-header p {
    margin: 0;
    font-size: 0.9rem;
    color: #4a7c7c;
}

.contact-header h2 {
    margin: 8px 0 0;
    font-size: 2rem;
    font-weight: 700;
    color: #4a7c7c;
}

.contact-header h3 {
    margin: 4px 0 0;
    font-size: 2rem;
    font-weight: 800;
    color: #ffde59;
}

/* TITLE SECTION DI CONTACT PAGE */

.contact-title-section {
    text-align: center;          
    margin-bottom: 40px;
    margin-top: 20px;
}

.contact-title-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: black;            
    margin-bottom: 8px;
    position: relative;
}

/* garis kecil seperti contoh */
.contact-title-section h3::before {
    content: "";
    width: 50px;
    height: 3px;
    background: #ffde59;        
    display: block;
    margin: 0 auto 10px;
    border-radius: 10px;
}

.contact-title-section h1 {
    font-size: 2.7rem;
    font-weight: 800;
    color: #263238;             
    margin: 10px 0;
}


/* GRID FORM + INFO */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ===================== FORM ===================== */

.contact-form {
    background: transparent !important;
    padding: 0;
}

.double-field {
    display: flex;
    gap: 30px;            
    margin-bottom: 20px;  
}


.double-field .field input {
    width: calc(100% - 15px);  
}

.field {
    flex: 1;
    margin-bottom: 20px;
    
}

.field label {
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #4a7c7c;
}

.field input,
.field textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1px solid #aac5c5; 
    font-size: 0.92rem;
    outline: none;
    background: #ffffff;
}

.field input:focus,
.field textarea:focus {
    border-color: #49848c;
    box-shadow: 0 0 0 3px rgba(73, 132, 140, 0.25);
}

.field textarea {
    resize: none;
    min-height: 150px;
}

/* BUTTON */
.btn-send {
     background: #ffde59;
    padding: 15px 30px;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    color: black;
    cursor: pointer;
    transition: 0.3s;
}

.btn-send:hover {
     background: #4a7c7c;
    color: white;
    transform: translateY(-3px);
}


/* ======================================================
   INFO BOX 
====================================================== */


.info-box {
    background: #4a7c7c;
    border-radius: 18px;
    padding: 35px 32px; 
    color: white;
}


.info-box h4 {
    margin: 0 0 14px 0;
    font-size: 1.55rem;   
    font-weight: 800;
    color: white;
}


.info-box p {
    margin: 0 0 30px 0;
    font-size: 1rem;   
    line-height: 1.55;   
}

.info-box a {
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}


.info-box .section {
    margin-bottom: 24px; 
}


.social-list-contact {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-icon-contact {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffde59);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);
}

.social-icon-contact img {
    width: 18px;
    height: 18px;
    filter: brightness(0); 
}

/* ===================== GOOGLE MAP ===================== */
.map-box {
    margin: 50px auto 50px;
    max-width: 1200px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}

.map-box iframe {
    width: 100%;
    height: 380px;
    border: 0;
}

/* ===========================================
   BLOG HEADER
=========================================== */

.blog-hero {
    padding:  0 15px;
    background: #f6fbfb;
}

.blog-hero h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #263238;
}

.blog-hero h2 span {
    color: #ffde59;
}

.breadcrumb {
    color: #4a7c7c;
    margin-bottom: 8px;
}



/* ===========================================
   BLOG LAYOUT (LIST PAGE)
=========================================== */

.blog-main {
    padding: 40px 0 20px;
    background: #f6fbfb;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* ===========================================
   BLOG CARD LIST
=========================================== */

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.blog-card-image img {
    width: 100%;
    border-radius: 14px;
}

.blog-badge {
    display: inline-block;
    background: #4a7c7c;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.blog-card-title {
    margin: 12px 0 6px;
}

.blog-card-title a {
    text-decoration: none;
    color: #263238;
    font-weight: 700;
    font-size: 1.25rem;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #4a7c7c;
    margin-bottom: 10px;
}

.blog-card-excerpt {
    color: #555;
    margin-bottom: 16px;
}

.blog-read-more {
    color: #4a7c7c;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
}

.blog-read-more:hover {
    text-decoration: underline;
}

/* ===========================================
   SIDEBAR (LIST PAGE)
=========================================== */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-box {
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.sidebar-box h4 {
    margin: 0 0 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #263238;
}

/* Search */
.sidebar-search-group {
    display: flex;
    gap: 10px;
}

.sidebar-search-group input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #bfcfcf;
}

.sidebar-search-group button {
    padding: 10px 14px;
    border-radius: 10px;
    background: #4a7c7c;
    border: none;
    color: white;
}

/* Popular category */
.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category-list li {
    margin-bottom: 10px;
}

.sidebar-category-list a {
    text-decoration: none;
    color: #263238;
    font-size: 0.95rem;
}

.sidebar-category-list a:hover {
    text-decoration: underline;
}

/* Recent post */
.sidebar-recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    text-decoration: none;
}

.sidebar-recent-post img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
}

.sidebar-recent-post p {
    margin: 0;
    font-weight: 600;
    color: #263238;
}

.sidebar-recent-post small {
    color: #4a7c7c;
}

/* =====================================================
   BLOG DETAIL 
===================================================== */



.contact-section .blog-detail-main {
    padding-top: 10 !important;
    margin-top: -60px !important; 
}

.blog-detail-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 80px 1fr 320px;
    gap: 50px;
    align-items: flex-start;
}


.blog-detail-image-wrapper {
    grid-column: 1 / 4;
}

.blog-detail-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}


.blog-social-share {
    position: sticky;
    top: 120px;    
    height: max-content;
}

.blog-social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fbe68b; 
  
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.blog-social-share a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.blog-social-share a img {
      width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
     margin-top: 15px;
    transform: translateY(1px);  
    opacity: 1;
}

.blog-social-share p {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: black
}


/* CONTENT */
.blog-detail-content {
    margin-top: 20px;
    padding: 0 10px;
}

/* CATEGORY BADGE */
.blog-detail-content .blog-badge {
    display: inline-block;
    margin: 0 auto !important;      
    padding: 10px 28px !important;  
    background: #4a7c7c !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    font-size: 1.05rem !important; 
    font-weight: 600 !important;
    text-align: center !important;
    display: table !important; 

}


/* TITLE */
.blog-detail-title {
    font-size: 2.35rem;
    font-weight: 800;
    text-align: center;
    color: #1c2e46;
    margin: 10px 0 14px;
}

/* META */
.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 28px;
    color: white;
    font-size: 0.92rem;
    margin-bottom: 28px;
}

/* BODY */
.blog-detail-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: black;
}

.blog-detail-body img {
    border-radius: 15px;
    width: 100% !important;
    margin: 30px 0;
}

/* SIDEBAR (DETAIL PAGE) */
.blog-detail-sidebar {
    position: sticky;
    top: 140px;
}

.blog-detail-sidebar .sidebar-box {
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.blog-detail-sidebar h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #1c2e46;
}

.blog-detail-sidebar .sidebar-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-detail-sidebar .sidebar-category-list li {
    margin-bottom: 10px;
}

.blog-detail-sidebar .sidebar-category-list a {
    color: #263238;
    text-decoration: none;
    font-size: 1rem;
}

.blog-detail-sidebar .sidebar-category-list a:hover {
    text-decoration: underline;
}




.related-posts-section {
    padding: 40px 0 80px;
    background: #ffffff;
}

.related-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1c2e46;
    margin-bottom: 40px;
}

.related-title span {
    color: #ffde59;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.related-card {
    background: #fff;
    border-radius: 18px;
    padding: 0 0 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0 0 12px 12px;
}

.related-badge {
    background: #4a7c7c;
    color: white;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    display: inline-block;
    margin: 14px 18px 0;
}

.related-body {
    padding: 0 20px;
}

.related-title-card {
    margin: 10px 0 6px;
    font-size: 1.2rem;
    font-weight: 700;
}

.related-title-card a {
    color: #1c2e46;
    text-decoration: none;
}

.related-title-card a:hover {
    text-decoration: underline;
}

.related-meta {
    color: #7b7b7b;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.related-read-more {
    color: #4a7c7c;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
}

.related-read-more:hover {
    text-decoration: underline;
}



/* ==========================================
   BEAUTIFY PAGINATION 
   
========================================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    list-style: none;
    gap: 8px;
    padding-left: 0;
}

.pagination li {
    list-style: none;
}

.pagination a,
.pagination span {
    display: flex;
    justify-content: center;
    align-items: center;

    min-width: 38px;
    height: 38px;

    padding: 0 14px;
    border-radius: 12px;

    background: white;
    color: #264653;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #e6e6e6;

    transition: 0.2s ease-in-out;
}

/* ACTIVE PAGE */
.pagination .active span {
    background: #4a7c7c;
    color: white;
    border-color: #4a7c7c;
}

/* HOVER EFFECT */
.pagination a:hover {
    background: #4a7c7c;
    color: white;
    border-color: #4a7c7c;
}

/* DISABLED BUTTON */
.pagination .disabled span {
    opacity: 0.4;
    cursor: not-allowed;
}

/* =====================================================
   BLOG LANDING PAGE
===================================================== */
.landing-blog-section {
    padding: 40px 0 80px;
    background: #f8fbff;
}

.container-blog {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.blog-subtitle {
    color: #ffde59;
    font-weight: 600;
    margin-bottom: 6px;
}

.blog-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f1736;
}
.blog-title span {
    color: #ffde59;
}

/* VIEW ALL BUTTON */
.btn-view-all  {
    background: #ffde59;
    color: black;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* GRID BLOG */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* BLOG CARD */
.blog-item {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform .25s ease;
}
.blog-item:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.blog-img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-bottom: none;
}

/* CATEGORY BADGE */
.blog-category {
    background: #4a7c7c;
    color: #fff;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 0 0 14px 14px;
    position: relative;
    top: -18px;
    margin-left: 20px;
}

/* CONTENT AREA */
.blog-content {
    padding: 10px 25px 28px;
}

.blog-date {
    font-size: 0.85rem;
    color: #6c7483;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.blog-title-sm a {
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 800;
    color: #10223c;
}

.blog-desc {
    font-size: 0.95rem;
    color: #465260;
    margin: 12px 0 20px;
    line-height: 1.55rem;
}

/* READ MORE */
.blog-read-more {
    text-decoration: none;
    font-weight: 700;
    color: #4a7c7c;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-read-more:hover {
    color: #ffde59;
}
.blog-read-more:hover i {
    transform: translateX(4px);
}



/* =============================
   RESPONSIVE
============================= */

@media (max-width: 992px) {
    .blog-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-social-share {
        position: static;
        flex-direction: row;
        justify-content: center;
    }

    .blog-detail-sidebar {
        position: static;
    }

    .blog-detail-image {
        height: 260px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-social {
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    .blog-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-social {
        margin-top: 20px;
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }
}

/* ==========================================================
   LANDING PAGE – RESPONSIVE + ANIMASI
   
========================================================== */


@keyframes fadeUpSoft {
    0% { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUpSoft .75s ease-out forwards;
}

/* kalau kamu pakai .animate-left */
.animate-left {
    opacity: 0;
    transform: translateX(-24px);
    animation: fadeUpSoft .75s ease-out forwards;
}

/* ----------------------------------------------------------
   HERO RESPONSIVE (hanya untuk tablet & mobile)
   
---------------------------------------------------------- */
/* ===========================
   TABLET (iPad)
=========================== */
@media (max-width: 992px) {

    .hero {
        height: auto;
        padding-bottom: 180px; 
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 40px;
    }

    .hero-highlight {
        position: absolute !important;
        width: 65% !important;
        right: 40px !important;
        bottom: -90px !important;
        padding: 28px !important;
        transform: none !important;
        max-width: none !important;
    }
}

/* ===========================
   MOBILE (≤768px)
=========================== */
@media (max-width: 768px) {

    .hero {
        height: auto !important;
        padding: 130px 0 50px !important;
    }

    .hero-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 0 20px !important;
    }

    .hero-highlight {
        position: static !important;    
        width: 100% !important;
        padding: 20px !important;
        margin-top: 20px !important;
        border-radius: 18px !important;
        transform: none !important;
    }

     .hero-contact-inner {
        flex-direction: column;
        gap: 25px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        font-size: 18px !important;
        padding: 10px !important;
    }

    .contact-label {
        font-size: 14px !important;
    }

    .contact-text {
        font-size: 14px !important;
        word-break: break-word;
    }

     /* ===== HERO CONTENT ===== */
    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-landing-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-top: 40px !important;
        max-width: 100% !important;
    }
}


.hero-highlight {
    animation: floatBox 4s ease-in-out infinite;
}

@keyframes floatBox {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* ----------------------------------------------------------
   ABOUT SECTION RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 40px;
    }

    .about-left {
        max-width: 100%;
    }

    .about-center {
        order: -1; 
    }

   .about-stat-card {
    padding: 22px 26px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 5px 30px rgba(0,0,0,.08);
    text-align: center;
    width: fit-content;
}



    .about-image {
        width: 100%;
        height: auto;
        max-height: 420px;
    }

    .about-right {
        max-width: 100%;
    }
}


/* mobile */
@media (max-width: 768px) {
    .about-stat-card {
        margin: 0 auto 20px auto;
        padding: 18px 20px;
    }
}

/* ----------------------------------------------------------
   PARTNER (OUR COLLABORATION) LANDING RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 1200px) {
    .partner-container-landing {
        padding-left: 20px;
        padding-right: 20px;
        height: auto;
    }
}

@media (max-width: 992px) {
    .partner-container-landing {
        padding: 60px 20px;
    }

    .partner-title-large-landing {
        font-size: 36px;
        line-height: 1.1;
    }

    .partner-logo-grid-landing {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .partner-title-large-landing {
        font-size: 28px;
    }

    .partner-logo-grid-landing {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    
    }

    .partner-logo-item-landing {
        width: 120px !important;
        height: 90px !important;
        padding: 8px !important;
    }

    .partner-logo-item-landing img {
          max-height: 55px !important;
        max-width: 90px !important;
    }
}

/* hover tetap cakep di desktop */
.partner-logo-item-landing {
    transition: transform .25s ease, box-shadow .25s ease;
}
.partner-logo-item-landing:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ----------------------------------------------------------
   CORE VALUES – RAPIKAN PADDING BAWAH
---------------------------------------------------------- */
.core-values-section {
    padding: 60px 0 70px;
}

/* di mobile grid jadi 1 kolom */
@media (max-width: 992px) {
    .core-values-grid {
        grid-template-columns: 1fr;
    }

    .core-center-card {
        order: -1;
        min-height: 260px;
    }
}

/* ----------------------------------------------------------
   BLOG LANDING – RESPONSIVE GRID
---------------------------------------------------------- */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================
   ANIMASI ABOUT US SECTION
========================================================== */

/* Fade Up */
@keyframes fadeUpSoft2 {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Fade Right */
@keyframes fadeRightSoft {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Fade Left */
@keyframes fadeLeftSoft {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* === Trigger Class === */
.animate-fade-up {
    opacity: 0;
    animation: fadeUpSoft2 .8s ease-out forwards;
}

.animate-left {
    opacity: 0;
    animation: fadeLeftSoft .85s ease-out forwards;
}

.animate-right {
    opacity: 0;
    animation: fadeRightSoft .85s ease-out forwards;
}


.about-right .about-card:nth-child(1) { animation-delay: .2s; }
.about-right .about-card:nth-child(2) { animation-delay: .35s; }


.about-stat-card {
    animation: floatStat 4s ease-in-out infinite;
}

@keyframes floatStat {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* =============================================
   RESPONSIVE FINISHING 
============================================= */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-left {
        order: 1;
    }

    .about-center {
        order: 2;
    }

    .about-right {
        order: 3;
        max-width: 100%;
        align-items: center;
    }

}

@media (max-width: 768px) {
    .about-title {
        font-size: 38px;
        
    }

    .about-description {
        font-size: 15px;
    }

    .about-image {
        height: auto !important;
        max-height: 340px;
    }

    .about-right .about-card {
        width: 100%;
    }
}



/* DESKTOP – Overlap image */
@media (min-width: 992px) {
    .about-center {
        position: relative;
    }

    .about-stat-card {
        position: absolute !important;
        top: -45px !important;      
        left: -30px !important;    
        z-index: 30 !important;
        transform: none !important;
    }
}
/* =======================================================
   PERFECT MOBILE POSITION — FOLLOW DESKTOP ALIGNMENT
======================================================= */
@media (max-width: 768px) {

    .about-center {
        position: relative !important;
    }

    .about-stat-card {
        position: absolute !important;

       
        top: -25px !important;        
        left: -10px !important;      

        transform: none !important;
        z-index: 50 !important;

        /* SIZE MOBILE */
        width: 180px !important;
        padding: 18px 0 !important;
        border-radius: 20px !important;
    }

    .about-stat-card h3 {
        font-size: 30px !important;
    }

    .about-stat-card p {
        font-size: 15px !important;
    }
}



/* =======================================
   SUBSIDIARIES RESPONSIVE FIX FOR MOBILE
======================================= */
@media (max-width: 992px) {
    .subsidiaries-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    .subsidiary-card {
        height: 340px !important;
    }
}

@media (max-width: 600px) {
    .subsidiaries-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .subsidiary-card {
        height: 360px !important;
    }
}



/* ===============================
   BLOG CARD IMPROVED
=============================== */
.blog-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 32px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* IMAGE STYLE */
.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

/* MOBILE */
@media(max-width: 768px){
    .blog-layout {
        grid-template-columns: 1fr !important;
    }

    .blog-card-image img {
        height: 180px;
    }

    .blog-card {
        padding: 18px;
    }
}


@media(max-width: 992px){
    .blog-sidebar {
        order: -1;  
    }
}


/* ==========================================
   RESPONSIVE FIX — PARTNER FORM
========================================== */

/* Tablet */
@media (max-width: 992px) {

    .partner-bottom-wrapper {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .partner-left-box {
        margin-bottom: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    
    .responsive-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .partner-form {
        padding: 30px 25px !important;
    }

    .partner-field input,
    .partner-field textarea {
        width: 100% !important;
    }

    .partner-btn {
        width: 100%;
        text-align: center;
    }
}




@media (max-width: 1100px) {

  
    .subs-image-side {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: 260px !important;
        margin-bottom: 25px !important;
        top: 0;
        right: 0;
    }

    .subs-image-side img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 18px;
    }

   
    .subs-box {
        position: relative !important;
        width: 92% !important;
        margin: 0 auto !important;
        padding: 40px 28px !important;
        top: 0 !important;
    }

    
    .subs-core-row {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 25px !important;
    }

    .core-single {
        width: 45% !important;
    }
}



@media (max-width: 600px) {

    .subs-image-side {
        height: 220px !important;
    }

    .subs-title {
        font-size: 32px !important;
    }

    .subs-desc {
        line-height: 1.7;
    margin-bottom: 20px;
    white-space: normal;
    }

    .subs-desc br {
    margin-bottom: 12px;
    display: block;
    content: "";
}

    .core-single {
        width: 48% !important;
    }
}


@media (max-width: 768px) {
    .company-intro-container {
        padding: 20px;
        gap: 20px;
    }

    .intro-title {
        font-size: 28px !important;
    }

    .intro-desc {
        font-size: 15px;
    }

    .subs-download-btn {
        width: 100%;
        display: block; 
        box-sizing: border-box;
        margin-top: 20px;
    }

    
    .company-intro-container {
        flex-direction: column;
        gap: 20px;
    }
}



/* Tablet */
@media (max-width: 992px) {
    .portfolio-container {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 40px;
    }

    .portfolio-left {
        position: static !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .portfolio-header {
        padding: 18px 22px;
    }

    .portfolio-title {
        font-size: 18px;
    }

    .portfolio-year {
        font-size: 14px;
    }

    .portfolio-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .portfolio-content p {
        font-size: 15px;
    }
}



/******************************
 * PERBAIKAN SUBMENU LEBAR
 ******************************/
.submenu {
    min-width: 260px !important;
    width: max-content !important;
    white-space: nowrap !important;
    box-sizing: border-box;
}

.submenu li,
.submenu li a {
    display: block;
    width: 100%;
}

/******************************
 * PERBAIKAN HAMBURGER
 ******************************/
.hamburger {
    z-index: 99999 !important;
}

.header-nav {
    z-index: 99998 !important;
}

.header-nav.open {
    right: 0 !important;
}



/* ========================
   ANIMATIONS
======================== */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-fade.visible {
    opacity: 1;
}

/* ========================
   BLOG DETAIL WRAPPER
======================== */
.blog-detail-main {
    padding: 60px 0;
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 60px 1fr 300px;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* FULL IMAGE */
.blog-detail-image-wrapper {
    grid-column: 1 / 4;
}

.blog-detail-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

/* SHARE ICON LEFT */
.blog-social-share p {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-social-share a img {
    width: 22px;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: 0.3s ease;
}

.blog-social-share a img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* CONTENT AREA */
.blog-detail-title {
    font-size: 36px;
    font-weight: 800;
    margin: 15px 0 10px;
    line-height: 1.3;
}

.blog-detail-meta {
    margin-bottom: 25px;
    color: #777;
    font-size: 14px;
    display: flex;
    gap: 20px;
}

.blog-detail-body {
    font-size: 17px;
    line-height: 1.7;
    color: black;
}

/* SIDEBAR */
.blog-detail-sidebar .sidebar-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.sidebar-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sidebar-category-list li {
    list-style: none;
    margin-bottom: 10px;
}

.sidebar-recent-post {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.sidebar-recent-post img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

/* ========================
   RELATED POSTS
======================== */
.related-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.related-card:hover {
    transform: translateY(-6px);
}

.related-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-body {
    padding: 20px;
}

/* ========================
   RESPONSIVE
======================== */

/* TABLET */
@media (max-width: 992px) {
    .blog-detail-wrapper {
        grid-template-columns: 50px 1fr;
    }

    .blog-detail-sidebar {
        grid-column: 1 / 3;
        margin-top: 40px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-detail-image {
        height: 350px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .blog-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-social-share {
        display: flex;
        gap: 15px;
        align-items: center;
        margin-bottom: 20px;
    }

    .blog-detail-image {
        height: 260px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-title {
        font-size: 28px;
    }
}


/* ================================================
   TABLET (<= 992px) – NON STICKY
=================================================== */
@media (max-width: 992px) {

    .blog-social-share {
        position: static !important; 
        top: auto !important;
        flex-direction: row;        
        justify-content: flex-start;
        margin-bottom: 20px;
        gap: 16px;
    }

    .blog-social-share p {
        margin-bottom: 0;
    }

    .blog-social-share a {
        width: 46px;
        height: 46px;
    }

    .blog-social-share a img {
        width: 22px;
        height: 22px;
        transform: translateY(0);
    }
}


/* ================================================
   MOBILE (<= 768px) – NON STICKY + FULL RESPONSIVE
=================================================== */
@media (max-width: 768px) {

    .blog-social-share {
        flex-wrap: wrap;
        row-gap: 12px;
        column-gap: 16px;
        padding: 10px 0;
    }

    .blog-social-share p {
        font-size: 13px;
        width: 100%;
    }

    .blog-social-share a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
    }

    .blog-social-share a img {
        width: 20px;
        height: 20px;
        transform: translateY(0);
    }
}


/* ================================================
   EXTRA SMALL MOBILE (<= 480px)
=================================================== */
@media (max-width: 480px) {

    .blog-social-share {
        gap: 12px;
    }

    .blog-social-share a {
        width: 40px;
        height: 40px;
    }

    .blog-social-share a img {
        width: 18px;
        height: 18px;
    }
}


/* =====================================================
   FOOTER RESPONSIVE FIX — FINAL
===================================================== */

/* ---------- TABLET (max-width: 992px) ---------- */
@media (max-width: 992px) {
    .site-footer .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .site-footer .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        text-align: left !important;
    }

    
    .footer-social,
    .footer-connect {
        justify-self: start !important;
    }

      .footer-connect {
        justify-self: start !important; 
        text-align: left !important;
    }

    .btn-connect {
        margin-left: 0 !important;      
        padding: 8px 24px 8px 18px !important;
    }

    .btn-connect::after {
        right: -6px !important; 
        width: 32px !important;
        height: 32px !important;
    }

    .btn-arrow {
        right: -2px !important;
        width: 20px !important;
    }

}

@media (max-width: 480px) {
    .bg-yellow {
        width: 150px !important;
        height: 150px !important;
        top: -70px !important;
        left: -70px !important;
    }

    .bg-blue {
        width: 110px !important;
        height: 110px !important;
        top: -40px !important;
        left: 10px !important;
    }
}

@media (max-width: 480px) {

    
    .site-header {
        overflow: hidden !important;
        height: 100px;
    }

    .bg-yellow {
        width: 170px !important;
        height: 170px !important;
        top: -40px !important;
        left: -70px !important;
        
    }

    .bg-blue {
        width: 70px !important;
        height: 70px !important;
        top: -35px !important;
        left: 40px !important;
    }

    .logo-wrapper img {
        width: 90px !important;
    }
}

/* 
@media (max-width: 480px) {
     .page-hero {
        padding: 0 20px !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    .container {
        padding: 0 20px !important;
        max-width: 100vw !important;
    }
} */

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
}