/* =====================================================
   BENVORS SARANA UTAMA
   Corporate Energy Theme
===================================================== */

:root{
    --primary:#003B71;
    --secondary:#00A651;
    --accent:#00C8FF;
    --dark:#0D1B2A;
    --light:#F5F8FA;
    --white:#FFFFFF;
    --gray:#F1F4F7;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    color:var(--dark);
    background:var(--white);
    line-height:1.7;
    padding-top:90px;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* =====================================================
   HEADER
===================================================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,.98);
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:99999;
}

.header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
}

.logo img{
    height:55px;
}

/* =====================================================
   MAIN MENU
===================================================== */

.menu{
    display:flex;
    list-style:none;
    gap:30px;
}

.menu > li{
    position:relative;
}

.menu > li > a{
    color:var(--dark);
    font-weight:600;
    transition:.3s;
}

.menu > li > a:hover{
    color:var(--secondary);
}

/* =====================================================
   MEGA MENU
===================================================== */

.mega-menu{
display:none;
position:absolute;
top:100%;
left:0;
width:850px;
background:#fff;
padding:30px;
box-shadow:0 15px 40px rgba(0,0,0,.15);
grid-template-columns:repeat(3,1fr);
gap:30px;
z-index:9999;
}

.mega-menu-item:hover .mega-menu{
display:grid;
}

.mega-menu-column h3{
color:#003B71;
margin-bottom:15px;
}

.mega-menu-column ul{
list-style:none;
}

.mega-menu-column a{
display:block;
padding:8px 0;
color:#333;
text-decoration:none;
}

.mega-menu-column a:hover{
color:#00A651;
}
/* =====================================================
   LANGUAGE
===================================================== */

.lang-switch{
    display:flex;
    gap:10px;
}

.lang-switch a{
    color:var(--dark);
    font-weight:600;
}

.lang-switch a.active{
    color:var(--secondary);
}

/* =====================================================
   HERO
===================================================== */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,51,102,.65);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:90%;
    max-width:900px;
    z-index:2;
}

.hero-content h1{
    font-size:64px;
    margin-bottom:20px;
    line-height:1.2;
}

.hero-content p{
    font-size:22px;
}

/* =====================================================
   BUTTON
===================================================== */

.btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:30px;
    transition:.3s;
    margin-top:20px;
}

.btn-primary{
    background:var(--secondary);
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

/* =====================================================
   PAGE BANNER
===================================================== */

.page-banner{
    background:linear-gradient(135deg,#003B71,#00A651);
    color:#fff;
    padding:120px 0 80px;
    text-align:center;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    color:#003B71;
    margin-bottom:15px;
}

.bg-light{
    background:#f7f9fc;
}

.esg-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.esg-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
}

.esg-card i{
    font-size:45px;
    color:#00A651;
    margin-bottom:20px;
}

.cta-section{
    background:#003B71;
    color:#fff;
    text-align:center;
}

.cta-box{
    max-width:800px;
    margin:auto;
}

.cta-box h2{
    margin-bottom:20px;
}

/* =====================================================
   CONTENT
===================================================== */

.content-section,
.service-content{
    padding:80px 0;
}

.service-list{
    padding-left:20px;
    margin-top:15px;
}

.service-list li{
    margin-bottom:10px;
}

/* =====================================================
   FEATURES
===================================================== */

.features-section{
    padding:80px 0;
    background:var(--gray);
}

.feature-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box h4{
    color:var(--primary);
    margin-bottom:15px;
}

/* =====================================================
   ESG
===================================================== */

.esg-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.esg-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
}

.esg-card i{
    font-size:40px;
    color:var(--secondary);
    margin-bottom:15px;
}

/* =====================================================
   CONTACT
===================================================== */

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
    margin-bottom:15px;
}

/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:99999;
}

/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.mobile-menu-toggle span{
    width:30px;
    height:3px;
    background:var(--dark);
}

.mobile-menu{
    position:fixed;
    top:90px;
    left:-100%;
    width:100%;
    height:calc(100vh - 90px);
    background:#fff;
    transition:.4s;
    overflow-y:auto;
    z-index:9999;
}

.mobile-menu.active{
    left:0;
}

.mobile-menu ul{
    list-style:none;
    padding:20px;
}

.mobile-menu li{
    border-bottom:1px solid #eee;
}

.mobile-menu a{
    display:block;
    padding:15px 0;
    color:var(--dark);
}

.submenu{
    display:none;
    padding-left:15px;
}

.submenu.active{
    display:block;
}

/* =====================================================
   FOOTER
===================================================== */

.footer{
    background:var(--dark);
    color:#fff;
    padding:60px 0;
    text-align:center;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px){

    .main-nav,
    .lang-switch{
        display:none;
    }

    .mobile-menu-toggle{
        display:flex;
    }

    .hero-content h1{
        font-size:42px;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .mega-menu{
        display:none !important;
    }
}

/* =========================
   HEADER / NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

    background:rgba(0,32,64,.90);
    backdrop-filter:blur(12px);

    transition:all .3s ease;
}

.navbar.scrolled{
    background:#002040;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.navbar .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:80px;
}

.navbar .logo img{
    height:55px;
    transition:.3s;
}

.navbar.scrolled .logo img{
    height:48px;
}

/* =========================
   MENU
========================= */

.navbar .menu{
    display:flex;
    align-items:center;
    list-style:none;
    gap:35px;
}

.navbar .menu li{
    position:relative;
}

.navbar .menu a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    letter-spacing:.3px;
    transition:.3s;
    display:flex;
    align-items:center;
    gap:6px;
}

.navbar .menu a:hover{
    color:var(--secondary);
}

/* ACTIVE MENU */

.navbar .menu a.active{
    color:var(--secondary);
}

.navbar .menu a.active::after{
    content:'';
    position:absolute;
    bottom:-10px;
    left:0;
    width:100%;
    height:3px;
    background:var(--secondary);
}

/* =========================
   LANGUAGE SWITCH
========================= */

.lang-switch{
    display:flex;
    align-items:center;
    gap:10px;
}

.lang-switch a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.lang-switch a.active{
    color:var(--secondary);
}

/* =========================
   MEGA MENU
========================= */

.mega-menu{
    position:absolute;
    top:100%;
    left:0;

    width:900px;

    background:#fff;

    padding:35px;

    display:none;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    border-radius:0 0 12px 12px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.18);

    z-index:99999;
}

.mega-menu-item:hover .mega-menu{
    display:grid;
}

.mega-menu-column h3{
    color:#003B71;
    margin-bottom:15px;
    font-size:18px;
}

.mega-menu-column a{
    display:block;
    color:#333 !important;
    padding:8px 0;
    font-weight:500;
}

.mega-menu-column a:hover{
    color:#00A651 !important;
    padding-left:8px;
}

/* =========================
   MOBILE
========================= */

.mobile-menu-toggle{
    display:none;
}

@media(max-width:992px){

    .main-nav{
        display:none;
    }

    .lang-switch{
        display:none;
    }

    .mobile-menu-toggle{
        display:flex;
        flex-direction:column;
        gap:5px;
        cursor:pointer;
    }

    .mobile-menu-toggle span{
        width:30px;
        height:3px;
        background:#fff;
    }

}


/* ==========================
   HEADER
========================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

    background:rgba(0,32,64,.92);

    backdrop-filter:blur(10px);

    box-shadow:0 3px 15px rgba(0,0,0,.15);
}

.header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;
}

.logo img{
    height:55px;
}

/* ==========================
   MENU
========================== */

.menu{
    display:flex;
    list-style:none;
    gap:35px;
}

.menu li{
    position:relative;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.menu a:hover{
    color:#00A651;
}

/* ==========================
   SUBMENU
========================== */

.submenu{
    position:absolute;

    top:100%;
    left:0;

    min-width:300px;

    background:#fff;

    list-style:none;

    display:none;

    padding:15px 0;

    border-radius:10px;

    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.dropdown:hover .submenu{
    display:block;
}

.submenu li{
    width:100%;
}

.submenu a{
    display:block;
    padding:12px 20px;
    color:#222;
}

.submenu a:hover{
    background:#f5f5f5;
    color:#003B71;
}

/* ==========================
   LANGUAGE
========================== */

.lang-switch{
    display:flex;
    gap:10px;
}

.lang-switch a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

/* ==========================
   MOBILE
========================== */

.mobile-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.mobile-toggle span{
    width:28px;
    height:3px;
    background:#fff;
}

.mobile-menu{
    position:fixed;
    top:85px;
    left:-100%;

    width:100%;
    height:100vh;

    background:#002040;

    transition:.3s;

    z-index:9998;
}

.mobile-menu.active{
    left:0;
}

.mobile-menu ul{
    list-style:none;
    padding:30px;
}

.mobile-menu li{
    margin-bottom:20px;
}

.mobile-menu a{
    color:#fff;
    text-decoration:none;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

    .main-nav{
        display:none;
    }

    .lang-switch{
        display:none;
    }

    .mobile-toggle{
        display:flex;
    }

}

