/* ==========================
   CV ANUGRAH TEKHNIK UTAMA
   PREMIUM INDUSTRIAL STYLE
========================== */

:root{
    --primary:#0A2342;
    --secondary:#12355B;
    --accent:#00B4D8;
    --light:#F8FAFC;
    --dark:#111827;
    --gray:#6B7280;
    --white:#FFFFFF;
    --shadow:0 10px 30px rgba(0,0,0,.15);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#333;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.section{
    padding:100px 0;
}

/* ==================
   HEADER
================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:.4s;
    background:rgba(10,35,66,.92);
    backdrop-filter:blur(10px);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}




.logo{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
}

.logo-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--accent);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.logo h2{
    font-size:18px;
}

.logo span{
    font-size:12px;
    color:#ddd;
}


.navbar{
    display:flex;
    gap:25px;
}

.navbar a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover{
    color:var(--accent);
}

.menu-toggle{
    display:none;
    color:#fff;
    font-size:25px;
    cursor:pointer;
}

/* ==================
   HERO
================== */

.hero{
    height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1565008447742-97f6f38c985c?w=1800');
    background-size:cover;
    background-position:center;
}

.hero-content{
    color:#fff;
}

.badge{
    display:inline-block;
    padding:10px 20px;
    background:var(--accent);
    border-radius:50px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;
}

.hero h1{
    font-size:60px;
    max-width:800px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin-bottom:30px;
    color:#ddd;
    font-size:18px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

/* ==================
   BUTTON
================== */

.btn-primary{
    display:inline-block;
    background:var(--accent);
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    transition:.3s;
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
}

/* ==================
   SECTION TITLE
================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--accent);
    font-weight:700;
}

.section-title h2{
    font-size:40px;
    color:var(--primary);
}

/* ==================
   STATS
================== */

.stats{
    background:var(--primary);
    padding:60px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-card{
    text-align:center;
    color:#fff;
}

.stat-card h2{
    font-size:45px;
    color:var(--accent);
}

/* ==================
   ABOUT
================== */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

.about-content h3{
    font-size:35px;
    color:var(--primary);
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:20px;
}

.about-content ul li{
    margin-bottom:10px;
}

.about-content i{
    color:var(--accent);
    margin-right:10px;
}

/* ==================
   SERVICES
================== */

.services{
    background:#eef4f8;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:45px;
    color:var(--accent);
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
    color:var(--primary);
}



/* ==========================
   ORGANIZATION CHART
========================== */

.org-chart{
    text-align:center;
    margin-top:50px;
}

.org-level{
    display:flex;
    justify-content:center;
}

.org-card{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    min-width:250px;
    transition:.3s;
}

.org-card:hover{
    transform:translateY(-5px);
}

.org-card h3{
    color:#0A2342;
    margin-bottom:10px;
    font-size:16px;
}

.org-card p{
    color:#555;
    line-height:1.8;
}

.director{
    background:#0A2342;
    color:#fff;
}

.director h3,
.director p{
    color:#fff;
}

.manager{
    background:#00B4D8;
    color:#fff;
}

.manager h3,
.manager p{
    color:#fff;
}

.org-line{
    width:4px;
    height:40px;
    background:#00B4D8;
    margin:15px auto;
}

.org-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:20px;
}

@media(max-width:768px){

.org-grid{
    grid-template-columns:1fr;
}

}


.client-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.client-card{
    background:#fff;
    border-radius:15px;
    padding:25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.client-card:hover{
    transform:translateY(-8px);
}

.client-card img{
    width:140px;
    height:80px;
    object-fit:contain;
    margin:0 auto 20px;
    filter:grayscale(100%);
    transition:.4s;
}

.client-card:hover img{
    filter:none;
    transform:scale(1.05);
}

.client-card h4{
    color:#0A2342;
    font-size:15px;
}

/* ==================
   PORTFOLIO
================== */

.portfolio{
    background:#eef4f8;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.portfolio-grid img{
    height:300px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
}

.portfolio-grid img:hover{
    transform:scale(1.05);
}

/* ==================
   VIDEO
================== */

.video-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.video-grid iframe{
    width:100%;
    height:350px;
    border:none;
    border-radius:15px;
}

/* ==========================
   DATA PERUSAHAAN
========================== */

.company-profile{
    background:#f8fafc;
}

.company-table{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.company-table table{
    width:100%;
    border-collapse:collapse;
}

.company-table tr:nth-child(even){
    background:#f7f9fc;
}

.company-table td{
    padding:18px 25px;
    border-bottom:1px solid #e5e7eb;
    vertical-align:top;
}

.company-table td:first-child{
    width:280px;
    color:#0A2342;
    font-weight:600;
}

.company-table tr:hover{
    background:#eef8ff;
}

@media(max-width:768px){

.company-table{
    overflow-x:auto;
}

.company-table table{
    min-width:700px;
}

}

/* ==========================
   LEGALITAS GALLERY
========================== */

.legal-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.legal-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.legal-card:hover{
    transform:translateY(-8px);
}

.legal-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.legal-card h4{
    padding:15px;
    text-align:center;
    color:#0A2342;
}

/* ==================
   CONTACT
================== */

.contact{
    background:#eef4f8;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.contact-info{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.contact-info h3{
    margin-bottom:20px;
    color:var(--primary);
}

.contact-info p{
    margin-bottom:15px;
}

.contact-info i{
    color:var(--accent);
    margin-right:10px;
}

.map iframe{
    width:100%;
    height:100%;
    min-height:400px;
    border:none;
    border-radius:20px;
    box-shadow:var(--shadow);
}

/* ==================
   FOOTER
================== */

footer{
    background:var(--primary);
    color:#fff;
    padding:60px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

footer h3{
    margin-bottom:15px;
}

footer hr{
    margin:30px 0;
    border:none;
    height:1px;
    background:#355;
}

.copyright{
    text-align:center;
}

/* ==================
   WHATSAPP
================== */

.wa-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:35px;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.1);
    }
    100%{
        transform:scale(1);
    }
}

/* ==================
   ANIMATION
================== */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ==================
   RESPONSIVE
================== */

@media(max-width:991px){

.hero h1{
    font-size:45px;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.about-grid{
    grid-template-columns:1fr;
}

.contact-grid{
    grid-template-columns:1fr;
}

.portfolio-grid{
    grid-template-columns:repeat(2,1fr);
}

.org-grid{
    grid-template-columns:repeat(2,1fr);
}

.video-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.navbar{
    display:none;
}

.menu-toggle{
    display:block;
}

.hero{
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.hero h1{
    font-size:35px;
}

.section-title h2{
    font-size:30px;
}

.portfolio-grid{
    grid-template-columns:1fr;
}

.stats-grid{
    grid-template-columns:1fr;
}

.org-grid{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr;
}

}

/* ==========================
   MOBILE MENU
========================== */

.mobile-active{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#0A2342;
    display:flex !important;
    flex-direction:column;
    padding:20px;
    gap:15px;
}

/* ==========================
   ACTIVE MENU
========================== */

.navbar a.active{
    color:#00B4D8;
}

/* ==========================
   BACK TO TOP
========================== */

.back-to-top{
    position:fixed;
    left:25px;
    bottom:25px;
    width:55px;
    height:55px;
    background:#0A2342;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    cursor:pointer;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
}

/* ==========================
   LOADER
========================== */

.loader-screen{
    position:fixed;
    inset:0;
    background:#0A2342;
    z-index:99999;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.5s;
}

.loader-content{
    text-align:center;
    color:#fff;
}

.spinner{
    width:70px;
    height:70px;
    border:5px solid rgba(255,255,255,.2);
    border-top:5px solid #00B4D8;
    border-radius:50%;
    margin:auto;
    margin-bottom:20px;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

/* ==========================
   IMAGE ZOOM
========================== */

.image-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.image-overlay img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

/* ==================================
   HERO SLIDER PREMIUM
================================== */

.hero-slider{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;

    background-size:cover;
    background-position:center;

    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

.slide.active{
    opacity:1;
}

.slide:nth-child(1){
    background-image:url('https://images.unsplash.com/photo-1565008447742-97f6f38c985c?w=1800');
}

.slide:nth-child(2){
    background-image:url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?w=1800');
}

.slide:nth-child(3){
    background-image:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800');
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;

    height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;

    color:#fff;
}

.hero-content h1{
    font-size:60px;
    max-width:850px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content p{
    max-width:700px;
    font-size:18px;
    margin-bottom:30px;
}

@media(max-width:768px){

.hero-content h1{
    font-size:35px;
}

}

/* =====================================
   CLIENT LOGO SLIDER
===================================== */

.client-logo-section{
    background:#fff;
    padding:80px 0;
    overflow:hidden;
}

.logo-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.logo-track{
    display:flex;
    align-items:center;
    width:calc(250px * 12);
    animation:scrollLogo 30s linear infinite;
}

.logo-track img{
    width:180px;
    height:90px;
    object-fit:contain;
    margin:0 35px;
    filter:grayscale(100%);
    transition:.4s;
}

.logo-track img:hover{
    filter:none;
    transform:scale(1.1);
}

@keyframes scrollLogo{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* ==========================
   DOWNLOAD COMPANY PROFILE
========================== */

.btn-download{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:15px 30px;

    background:#e63946;
    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.btn-download:hover{
    transform:translateY(-5px);

    background:#c1121f;
}

.btn-download i{
    font-size:20px;
}

.service-list{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.service-list li{
    margin-bottom:15px;
    font-size:16px;
    line-height:1.8;
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.service-list i{
    color:#00B4D8;
    margin-top:4px;
}

.map-container{
    width:100%;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.map-container iframe{
    width:100%;
    height:450px;
    border:0;
}