/*==================================
        GOOGLE FONT & VARIABLES
==================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-navy: #0B192C;        /* Dark Navy Mewah */
    --secondary-navy: #1E3E62;      /* Navy Medium */
    --accent-gold: #0B3C78;         /* Emas Premium */
    --accent-gold-hover: #0B3C78;   /* Emas Gelap saat Hover */
    --bg-light: #F8FAFC;            /* Background Off-White / Soft Gray */
    --bg-surface: #F1F5F9;          /* Surface Tint Modern */
    --text-dark: #1E293B;           /* Warna Teks Gelap Kontras */
    --text-muted: #64748B;          /* Warna Teks Sekunder */
}

/*==================================
            RESET & BODY
==================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x:hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/*==================================
        CONTAINER & GENERAL
==================================*/

.container{
    max-width:1200px;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

section{
    position:relative;
    padding:100px 0;
    opacity:1;
    transform:translateY(0);
    transition:1s;
}

.section-title{
    color: var(--accent-gold);
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-heading{
    font-size:42px;
    font-weight:700;
    color: var(--primary-navy);
    margin:20px 0;
}

.section-description{
    color: var(--text-muted);
    line-height:32px;
    max-width:700px;
    margin:auto;
}

.show-section{
    opacity:1;
    transform:translateY(0);
}

/*==================================
            BUTTONS
==================================*/

.btn-primary-custom{
    background: var(--primary-navy);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-navy);
    transition: .4s ease;
    display: inline-block;
}

.btn-primary-custom:hover{
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline-custom{
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 14px 36px;
    border-radius: 50px;
    margin-left: 15px;
    font-weight: 600;
    transition: .4s ease;
    background: transparent;
    display: inline-block;
}

.btn-outline-custom:hover{
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-3px);
}

.btn-light-custom{
    background: #fff;
    color: var(--primary-navy);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #fff;
    transition: .4s ease;
    display: inline-block;
}

.btn-light-custom:hover{
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #fff;
}

.btn-outline-light-custom{
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    margin-left: 15px;
    transition: .4s ease;
    display: inline-block;
}

.btn-outline-light-custom:hover{
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/*==================================
            NAVBAR
==================================*/

.navbar{
    padding:18px 0;
    transition:.4s;
    background:transparent;
}

.navbar.scrolled{
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    padding:12px 0;
}

.navbar-brand img{
    height:70px;
    transition:.4s;
}

.navbar.scrolled .navbar-brand img{
    height:58px;
}

.nav-link{
    color: #fff;
    font-weight:500;
    margin:0 12px;
    position:relative;
    transition:.3s;
}

.navbar.scrolled .nav-link{
    color: var(--primary-navy);
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background: var(--accent-gold);
    transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.nav-link:hover{
    color: var(--text-muted);
}

.btn-konsultasi{
    background: var(--accent-gold);
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    display: inline-block;
}

.btn-konsultasi:hover{
    background: var(--accent-gold-hover);
    color:#fff;
    transform:translateY(-3px);
}


/* Saat navbar di atas banner/gambar */
.navbar:not(.scrolled) .nav-link.active{
    color:#ffffff;
}

/* Saat navbar sudah putih */
.navbar.scrolled .nav-link.active{
    color:var(--primary-navy);
}

/*==================================
        HERO (Dark Luxury Theme)
==================================*/

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    position:relative;
    color: #ffffff;
    background: 
        linear-gradient(135deg, rgba(11, 25, 44, 0.92) 0%, rgba(6, 16, 30, 0.88) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat fixed;
}

.hero::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.18) 0%, rgba(0,0,0,0) 70%);
    border-radius:50%;
    top:-150px;
    right:-150px;
    pointer-events: none;
}

.hero::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background: radial-gradient(circle, rgba(30, 62, 98, 0.3) 0%, rgba(0,0,0,0) 70%);
    border-radius:50%;
    bottom:-120px;
    left:-120px;
    pointer-events: none;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-subtitle{
    display:inline-block;
    color: var(--text-muted);
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:60px;
    font-weight:700;
    line-height:1.2;
    color:#ffffff;
    margin-bottom:20px;
}

.hero-content h1 span{
    display:block;
    color: var(--text-muted);
    font-size:26px;
    margin-top:10px;
    font-weight: 400;
}

.hero-content p{
    color: #CBD5E1;
    font-size:18px;
    line-height:34px;
    margin:30px 0;
}

.hero-license{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding:14px 24px;
    border-radius:50px;
    margin-bottom:35px;
    color: #E2E8F0;
    font-weight:500;
}

.hero-license i{
    font-size:22px;
    color: var(--accent-gold);
}

.hero-button,
.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-image-wrapper{
    position:relative;
    z-index:2;
}

.hero-image{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(197, 168, 128, 0.2);
    transition:.5s;
}

.hero-image:hover{
    transform:translateY(-10px);
}

.hero-image-wrapper::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background: var(--accent-gold);
    opacity:.15;
    border-radius:25px;
    right:-30px;
    bottom:-30px;
    z-index:-1;
}

/*==================================
   ABOUT PREVIEW (Modern Soft Pattern)
==================================*/

.about-preview{
    min-height:100vh;
    display:flex;
    align-items:center;
    background: 
        radial-gradient(circle at 10% 20%, rgba(197, 168, 128, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(11, 25, 44, 0.05) 0%, transparent 40%),
        #F1F5F9;
    position:relative;
}

.about-image{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(11, 25, 44, 0.12);
    transition:.5s;
}

.about-image:hover{
    transform:scale(1.03);
}

.about-preview h2{
    font-size:46px;
    font-weight:700;
    color: var(--primary-navy);
    margin:20px 0;
}

.about-preview p{
    color: var(--text-muted);
    font-size:17px;
    line-height:34px;
    margin-bottom:20px;
}

.about-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:35px;
}

.about-list div{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color: var(--primary-navy);
}

.about-list i{
    color: var(--accent-gold);
    font-size:22px;
}

.about-preview .btn{
    margin-top:35px;
}

/*==================================
        WHY CHOOSE US
==================================*/
.why-us {
    padding: 100px 0;
    position: relative;
    background: 
        linear-gradient(rgba(248, 250, 252, 0.94), rgba(248, 250, 252, 0.97)),
        url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat fixed;
}

.why-us .section-heading {
    margin-bottom: 20px;
}

.why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .4s;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 5px;
    background: #0B3C78;
    transition: .4s;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.why-card:hover::before {
    width: 100%;
}

.why-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 30px;
    background: #EEF5FF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
}

.why-icon i {
    font-size: 36px;
    color: #0B3C78;
}

.why-card:hover .why-icon {
    background: #0B3C78;
    transform: rotate(10deg);
}

.why-card:hover .why-icon i {
    color: #ffffff;
}

.why-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
}

.why-card p {
    color: #6B7280;
    line-height: 30px;
    margin: 0;
}



/*==================================
        JASA KAMI (SERVICES)
==================================*/
.service-preview {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    position: relative;
}

.service-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    transition: .4s;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    border: 1px solid transparent;
}

.service-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 55px;
    font-weight: 700;
    color: #EEF5FF;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #EEF5FF;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    transition: .4s;
}

.service-icon i {
    font-size: 35px;
    color: #0B3C78;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: #0B3C78;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .12);
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 5px;
    background: #0B3C78;
    transition: .4s;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover .service-icon {
    background: #0B3C78;
    transform: rotate(-8deg);
}

.service-card:hover .service-icon i {
    color: #ffffff;
}

.service-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-card p {
    color: #6B7280;
    line-height: 30px;
    margin-bottom: 0;
}

/*==================================
        PORTFOLIO
==================================*/

.portfolio-preview {
    padding: 100px 0; /* Sesuaikan padding-nya */
    background: 
        linear-gradient(rgba(248, 250, 252, 0.94), rgba(248, 250, 252, 0.97)),
        url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat fixed;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    transition: .4s;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .15);
}

.portfolio-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-category {
    display: inline-block;
    background: #EEF5FF;
    color: #0B3C78;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.portfolio-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
}

.portfolio-content p {
    color: #6B7280;
    line-height: 30px;
    margin-bottom: 25px;
}

.portfolio-content a {
    color: #0B3C78;
    font-weight: 600;
    transition: .3s;
}

.portfolio-content a i {
    transition: .3s;
}

.portfolio-content a:hover i {
    margin-left: 8px;
}

.konsultasi-title{
    color: var(--text-muted);
}

/*==================================
    PORTFOLIO CATEGORY PAGE
==================================*/

.portfolio-intro{
    padding:100px 0;
    background:var(--bg-light);
}

.portfolio-intro h2{
    font-size:46px;
    font-weight:700;
    color:var(--primary-navy);
    margin-top:20px;
    line-height:1.3;
}

.portfolio-intro p{
    color:var(--text-muted);
    font-size:17px;
    line-height:34px;
    margin:0;
}


/* SECTION CATEGORY */

.portfolio-category-section{
    padding:50px 0 120px;
    background:var(--bg-surface);
}


/* CARD */

.portfolio-category-card{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #E2E8F0;
    box-shadow:0 10px 30px rgba(11,25,44,.06);
    transition:.35s ease;
}

.portfolio-category-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(11,25,44,.12);
}


/* HEADER */

.portfolio-category-header{
    width:100%;
    border:none;
    background:#ffffff;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:28px 30px;

    cursor:pointer;
    text-align:left;

    transition:.3s ease;
}

.portfolio-category-header:hover{
    background:#F8FAFC;
}


/* BAGIAN KIRI */

.portfolio-category-left{
    display:flex;
    align-items:center;
    gap:20px;
}


/* ICON */

.portfolio-category-icon{
    width:62px;
    height:62px;

    flex-shrink:0;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:16px;

    background:#EEF5FF;

    transition:.35s ease;
}

.portfolio-category-icon i{
    font-size:28px;
    color:#0B3C78;

    transition:.35s ease;
}


/* JUDUL */

.portfolio-category-left h3{
    font-size:20px;
    font-weight:700;
    color:var(--primary-navy);

    margin:0 0 5px;
}


/* JUMLAH KLIEN */

.portfolio-category-left span{
    font-size:14px;
    color:var(--text-muted);
}


/* PANAH */

.portfolio-category-arrow{
    width:38px;
    height:38px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#F1F5F9;

    transition:.35s ease;
}

.portfolio-category-arrow i{
    font-size:18px;
    color:var(--primary-navy);

    transition:.35s ease;
}


/*==================================
        CONTENT / CLIENT LIST
==================================*/

.portfolio-category-content{
    max-height:0;
    overflow:hidden;

    transition:
        max-height .5s ease,
        padding .4s ease;

    padding:0 30px;
}


/* KETIKA DIBUKA */

.portfolio-category-card.active
.portfolio-category-content{

    max-height:1000px;

    padding:0 30px 30px;
}


/* GARIS PEMBATAS */

.portfolio-client-list{
    border-top:1px solid #E2E8F0;
    padding-top:18px;
}


/* PERUSAHAAN */

.portfolio-client{
    display:flex;
    align-items:center;

    gap:13px;

    padding:13px 15px;

    border-radius:10px;

    color:var(--text-dark);

    transition:.25s ease;
}

.portfolio-client:not(:last-child){
    margin-bottom:5px;
}


/* ICON PERUSAHAAN */

.portfolio-client i{
    color:#0B3C78;
    font-size:17px;
}


/* NAMA */

.portfolio-client span{
    font-size:15px;
    font-weight:500;
}


/* HOVER CLIENT */

.portfolio-client:hover{
    background:#F1F5F9;
    padding-left:20px;
}


/*==================================
        ACTIVE STATE
==================================*/

.portfolio-category-card.active{
    border-color:#0B3C78;

    box-shadow:
        0 18px 45px rgba(11,60,120,.12);
}


/* ICON BERUBAH */

.portfolio-category-card.active
.portfolio-category-icon{

    background:#0B3C78;
}

.portfolio-category-card.active
.portfolio-category-icon i{

    color:#ffffff;
}


/* PANAH BERPUTAR */

.portfolio-category-card.active
.portfolio-category-arrow{

    background:#0B3C78;
}

.portfolio-category-card.active
.portfolio-category-arrow i{

    color:#ffffff;
    transform:rotate(180deg);
}


/*==================================
        PORTFOLIO COUNTER
==================================*/

.portfolio-counter{
    padding:90px 0;

    background:var(--primary-navy);

    color:#ffffff;
}

.portfolio-counter h2{
    font-size:42px;
    font-weight:700;

    margin-bottom:10px;

    color:#ffffff;
}

.portfolio-counter p{
    margin:0;

    color:#CBD5E1;

    font-size:15px;
}


/*==================================
        PORTFOLIO SEARCH
==================================*/

.portfolio-search{
    padding:35px 0 55px;
    background:var(--bg-surface);
}

.portfolio-search-box{
    max-width:750px;
    margin:auto;

    display:flex;
    align-items:center;

    background:#ffffff;

    border:1px solid #E2E8F0;
    border-radius:50px;

    padding:0 25px;

    box-shadow:0 10px 30px rgba(11,25,44,.07);

    transition:.3s ease;
}

.portfolio-search-box:focus-within{
    border-color:#0B3C78;

    box-shadow:
        0 12px 35px rgba(11,60,120,.12);
}

.portfolio-search-box i{
    font-size:20px;
    color:#64748B;

    margin-right:15px;
}

.portfolio-search-box input{
    width:100%;

    border:none;
    outline:none;

    padding:18px 0;

    background:transparent;

    font-family:'Poppins',sans-serif;
    font-size:15px;

    color:var(--text-dark);
}

.portfolio-search-box input::placeholder{
    color:#94A3B8;
}


/* PESAN TIDAK DITEMUKAN */

#portfolioSearchEmpty{
    display:none;

    text-align:center;

    margin:30px 0 0;

    color:var(--text-muted);

    font-size:15px;
}

/*==================================
   GALLERY (Soft Modern Tint)
==================================*/

.gallery-preview{
    min-height:100vh;
    display:flex;
    align-items:center;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-surface) 100%);
    position:relative;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.45s ease;
}

.gallery-overlay i{
    font-size:45px;
    color:#fff;
    transform:scale(.5);
    transition:.4s;
}

.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(11, 25, 44, 0.15);
}

.gallery-item:hover img{
    transform:scale(1.06);
}

/*==================================
        CALL TO ACTION
==================================*/

.cta-section{
    padding:120px 0;
    background: var(--bg-light);
}

.cta-box{
    background: 
        linear-gradient(135deg, rgba(11, 25, 44, 0.92) 0%, rgba(17, 40, 70, 0.9) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    border-radius:30px;
    padding:80px;
    text-align:center;
    color:#fff;
    box-shadow:0 25px 60px rgba(11, 25, 44, 0.25);
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.cta-box h2{
    font-size:46px;
    font-weight:700;
    margin:25px 0;
    color: #ffffff;
}

.cta-box p{
    max-width:700px;
    margin:auto;
    line-height:34px;
    color:#CBD5E1;
    margin-bottom:40px;
}

/*==================================
            FOOTER
==================================*/

.footer{
    background: var(--primary-navy);
    color:#fff;
    padding:90px 0 30px;
    border-top: 3px solid var(--accent-gold);
}

.footer-logo{
    height:75px;
    margin-bottom:30px;
}

.footer h5{
    margin-bottom:25px;
    font-weight:600;
    color: var(--text-muted);
}

.footer-menu li{
    margin-bottom:12px;
}

.footer-menu a{
    color:#CBD5E1;
    transition:.3s;
}

.footer-menu a:hover{
    color: var(--accent-gold);
    margin-left:6px;
}

.footer p{
    color:#CBD5E1;
    line-height:30px;
}

.footer hr{
    border-color:rgba(255,255,255,.15);
    margin:50px 0 30px;
}

.footer-bottom{
    text-align:center;
    color: #94A3B8;
}

/*==================================
            BACK TO TOP
==================================*/

#backToTop{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background: var(--accent-gold);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

#backToTop.show{
    opacity:1;
    visibility:visible;
}

#backToTop:hover{
    transform:translateY(-5px);
    background: var(--primary-navy);
}

/*==================================
        PAGE BANNER
==================================*/

.page-banner{
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background: 
        linear-gradient(rgba(11, 25, 44, 0.88), rgba(11, 25, 44, 0.88)), 
        url("/admin/gambar/5.jpg") center/cover no-repeat;
    color:#fff;
}

.page-banner .section-title{
    color: #64748B;
}

.page-banner h1{
    font-size:56px;
    font-weight:700;
    margin:20px 0;
}

.page-banner p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:34px;
    color:#E5E7EB;
}

/*==================================
        ABOUT COMPANY
==================================*/

.about-company{
    min-height:100vh;
    display:flex;
    align-items:center;
    background: var(--bg-surface);
}

.about-company h2{
    font-size:46px;
    font-weight:700;
    margin:20px 0;
    color: var(--primary-navy);
}

.about-company p{
    color: var(--text-muted);
    line-height:34px;
    margin-bottom:20px;
}

/*==================================
            LEADER
==================================*/

.leader{
    min-height:100vh;
    display:flex;
    align-items:center;
    background: var(--bg-light);
}

.leader-image{
    width:320px;
    height:320px;
    object-fit:cover;
    border-radius:50%;
    border:8px solid #fff;
    box-shadow:0 20px 50px rgba(11, 25, 44, 0.15);
}

.leader h2{
    font-size:42px;
    font-weight:700;
    color: var(--primary-navy);
    margin-top:20px;
}

.leader h5{
    color: var(--accent-gold);
    margin-bottom:25px;
    font-weight: 600;
}

.leader p{
    color: var(--text-muted);
    line-height:34px;
}

.leader-list{
    margin-top:25px;
}

.leader-list li{
    margin-bottom:18px;
    padding-left:28px;
    position:relative;
    color: var(--text-muted);
    line-height:30px;
}

.leader-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    color: var(--accent-gold);
    font-weight:700;
}

/*==================================
            VISION
==================================*/

.vision{
    padding:120px 0;
    background: var(--bg-surface);
}

.vision-box{
    /* Tambahkan url(...) gambar dan ganti gradient ke warna navy transparan */
    background: 
        linear-gradient(135deg, rgba(11, 25, 44, 0.92) 0%, rgba(17, 40, 70, 0.90) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    padding:80px;
    border-radius:30px;
    color:#fff;
    text-align:center;
    box-shadow:0 25px 60px rgba(11, 25, 44, 0.2);
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.vision-box h2{
    font-size:44px;
    font-weight:700;
    margin:25px 0;
}

.vision-box p{
    max-width:750px;
    margin:auto;
    line-height:34px;
    color:#E5E7EB;
    margin-bottom:40px;
}

.vision-box .section-title{
    color: #64748B;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:600;
}

/*==================================
        SERVICE INTRO
==================================*/

.service-intro{
    padding:100px 0;
    background: var(--bg-light);
}

.service-intro h2{
    font-size:46px;
    font-weight:700;
    color: var(--primary-navy);
    line-height:1.3;
    margin-top:20px;
}

.service-intro p{
    font-size:17px;
    line-height:34px;
    color: var(--text-muted);
    margin:0;
}

/*==================================
        SERVICE PAGE
==================================*/

/*==================================
        SERVICE PAGE
==================================*/

.service-page {
    padding: 120px 0;
    background: #ffffff;
}

.service-page .service-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    border: 1px solid transparent;
}

.service-page .service-card:hover {
    transform: translateY(-12px);
    border-color: #0B3C78;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .12);
}

.service-page .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: #0B3C78; /* Menggantikan --accent-gold ke Navy */
    transition: .4s;
}

.service-page .service-card:hover::before {
    width: 100%;
}

.service-page .service-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 55px;
    font-weight: 700;
    color: #EEF5FF; /* Warna nomor background abu/biru muda halus */
}

.service-page .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #EEF5FF;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    transition: .4s;
}

.service-page .service-icon i {
    font-size: 35px;
    color: #0B3C78;
}

.service-page .service-card:hover .service-icon {
    background: #0B3C78;
    transform: rotate(-8deg); /* Efek rotasi ikon saat hover */
}

.service-page .service-card:hover .service-icon i {
    color: #fff;
}

.service-page h4 {
    font-size: 24px;
    font-weight: 600;
    color: #0B3C78;
    margin-bottom: 20px;
}

.service-page p {
    color: #6B7280;
    line-height: 30px;
    margin-bottom: 0;
}

/*==================================
WORK PROCESS (Subtle Modern Image)
==================================*/

.work-process{
    padding:120px 0;
    background: 
        linear-gradient(rgba(248, 250, 252, 0.94), rgba(248, 250, 252, 0.97)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat fixed;
}

.process-card{
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding:45px 25px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
    transition:.4s;
    height:100%;
    border: 1px solid #E2E8F0;
}

.process-card:hover{
    transform:translateY(-10px);
    border-color: var(--accent-gold);
    background: #ffffff;
}

.process-card h1{
    font-size:60px;
    color: var(--accent-gold);
    font-weight:700;
    margin-bottom:20px;
}

.process-card h4{
    font-size:22px;
    color: var(--primary-navy);
    margin-bottom:15px;
}

.process-card p{
    color: var(--text-muted);
    line-height:28px;
}

/*==================================
        DATATABLE
==================================*/

.dataTables_wrapper{
    margin-top:20px;
}

.dataTables_filter input{
    border-radius:12px;
    border:1px solid #ddd;
    padding:8px 15px;
}

.dataTables_length select{
    border-radius:10px;
}

.table{
    border-radius:15px;
    overflow:hidden;
}

.table thead{
    background: var(--primary-navy);
    color:#fff;
}

.table thead th{
    border:none;
    padding:18px;
    font-weight:600;
}

.table tbody tr{
    transition:.3s;
}

.table tbody tr:hover{
    background: rgba(197, 168, 128, 0.08);
}

.table td{
    padding:18px;
    vertical-align:middle;
}

.dataTables_paginate .paginate_button{
    border-radius:10px !important;
}

/*==================================
        GALLERY INTRO & PAGE
==================================*/

.gallery-intro{
    padding:100px 0;
    background: var(--bg-light);
}

.gallery-intro h2{
    font-size:46px;
    font-weight:700;
    color: var(--primary-navy);
    margin-top:20px;
    line-height:1.3;
}

.gallery-intro p{
    color: var(--text-muted);
    line-height:34px;
    font-size:17px;
}

.gallery-page{
    padding:120px 0;
    background: var(--bg-light);
}

.gallery-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 55px rgba(11, 25, 44, 0.16);
}

.gallery-image{
    position:relative;
    overflow:hidden;
}

.gallery-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.gallery-card:hover .gallery-image img{
    transform:scale(1.06);
}

.gallery-content{
    padding:25px;
}

.gallery-content h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:10px;
    color: var(--primary-navy);
}

.gallery-content p{
    color: var(--text-muted);
    line-height:30px;
    margin:0;
}

/*==================================
        WHATSAPP FLOAT
==================================*/

.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 95px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    transition: .3s;
    z-index: 999;
}

.whatsapp-float:hover{
    background: #1EBE57;
    color: #fff;
    transform: scale(1.1);
}

/*==================================
        LOGIN
==================================*/

.login-page{
    min-height:100vh;
    background: var(--bg-light);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.login-card{
    width:100%;
    max-width:450px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border-top: 4px solid var(--accent-gold);
}

.login-logo{
    width:90px;
    display:block;
    margin:0 auto 25px;
}

.login-card h2{
    text-align:center;
    font-weight:700;
    color: var(--primary-navy);
    margin-bottom:10px;
}

.login-card p{
    text-align:center;
    color: var(--text-muted);
    margin-bottom:30px;
}

.login-card .btn-primary-custom{
    background:#0B3C78 !important;
    color:#ffffff !important;

    border:none !important;
    border-radius:10px;

    padding:14px 20px;

    font-size:16px;
    font-weight:600;

    transition:.3s ease;
}

.login-card .btn-primary-custom:hover{
    background:#082f5f !important;
    color:#ffffff !important;

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(11,60,120,.25);
}

/*==================================
        ADMIN DASHBOARD
==================================*/

.admin-wrapper{
    display:flex;
    min-height:100vh;
    background: var(--bg-light);
}

.sidebar{
    width:260px;
    background: var(--primary-navy);
    color:#fff;
    padding:30px 20px;
    border-right: 1px solid rgba(197, 168, 128, 0.2);
}

.sidebar-logo{
    text-align:center;
    margin-bottom:40px;
}

.sidebar-logo h4{
    color:#fff;
    font-weight:700;
}

.sidebar-logo p{
    color: var(--accent-gold);
    font-size:14px;
}

.sidebar ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar li{
    margin-bottom:12px;
}

.sidebar a{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    text-decoration:none;
    padding:12px 15px;
    border-radius:10px;
    transition:.3s;
}

.sidebar a:hover{
    background: rgba(197, 168, 128, 0.2);
    color: var(--accent-gold);
}

.main-content{
    flex:1;
    padding:40px;
}

.main-content h2{
    color: var(--primary-navy);
    font-weight:700;
}

.dashboard-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.dashboard-card{
    background:#fff;
    border:none;
    border-radius:15px;
    padding:25px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
    cursor:pointer;
    height:100%;
    position: relative;
}

.dashboard-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(11, 25, 44, 0.12);
}

.dashboard-icon{
    font-size:25px;
    color: var(--accent-gold);
    margin-bottom:15px;
}

.dashboard-card h5{
    font-size:17px;
    font-weight:600;
    color: var(--text-muted);
    margin-bottom:10px;
}

.dashboard-card h2{
    font-size:30px;
    font-weight:700;
    color: var(--primary-navy);
    margin:0;
}

.notification-dot{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 14px;
    height: 14px;
    background: #dc3545;
    border-radius: 50%;
    border: 3px solid #fff;
}

/*==================================
        GOOGLE MAP
==================================*/

.location{
    padding:90px 0;
    background: var(--bg-light);
}

.location-box{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.location-box h2{
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
    color: var(--primary-navy);
}

.location-box h2 i{
    margin-right:10px;
    color: var(--accent-gold);
}

.map-container{
    overflow:hidden;
    border-radius:18px;
}

.map-container iframe{
    width:100%;
    height:500px;
    border:0;
    display:block;
}

/*==================================
    RESPONSIVE MEDIA QUERIES
==================================*/

/* Tablet Responsive */
@media (max-width:991px){
    .navbar-collapse{
        background:#ffffff;
        padding:20px;
        border-radius:20px;
        margin-top:15px;
        box-shadow:0 15px 35px rgba(0,0,0,.08);
        z-index:9999;
    }

    section{
        padding:80px 0;
    }

    .section-heading{
        font-size:34px;
    }

    h1{
        font-size:42px !important;
    }

    h2{
        font-size:34px !important;
    }

    p{
        font-size:15px;
        line-height:28px;
    }

    /* Hero Responsive */
    .hero{
        min-height:auto;
        padding:140px 0 80px;
        text-align:center;
    }

    .hero .row{
        flex-direction:column-reverse;
    }

    .hero-content{
        margin-top:40px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content h1 span{
        font-size:20px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-image{
        margin-top:0;
        margin-bottom:50px;
    }

    .hero-button,
    .hero-buttons,
    .hero-license{
        justify-content:center;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:18px;
        margin-top:35px;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom{
        width:100%;
        max-width:420px;
        padding:16px 25px;
        margin-left:0;
    }

    /* About, Services, & Others Responsive */
    .about, .about-company, .about-preview, .leader, .service-intro{
        text-align:center;
    }

    .about img, .about-image{
        margin-top:40px;
        margin-bottom:50px;
    }

    .about-list{
        grid-template-columns:1fr;
    }

    .why-card, .service-card, .portfolio-card, .gallery-item, .process-card{
        margin-bottom:25px;
    }

    .about-preview, .why-us, .service-preview, .portfolio-preview, .gallery-preview, .service-page, .work-process{
        padding:80px 0;
    }

    .cta-box{
        padding:50px 30px;
    }

    .cta-box h2, .vision-box h2{
        font-size:34px !important;
    }

    .footer{
        text-align:center;
    }

    .footer-logo{
        margin-bottom:30px;
    }

    .footer-links{
        margin:30px 0;
    }

    .page-banner{
        padding:150px 0 90px;
        min-height:320px;
    }

    .page-banner h1{
        font-size:40px !important;
    }

    .leader-image{
        width:240px;
        height:240px;
        margin-bottom:40px;
    }

    .vision-box{
        padding:50px 30px;
    }

    .contact-info{
        margin-bottom:40px;
    }

    .contact-item{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .contact-item i{
        margin-bottom:15px;
    }
}

/* Admin Responsive */
@media(max-width:768px){
    .admin-wrapper{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }

    .main-content{
        padding:25px;
    }
}

/* Mobile Responsive */
@media (max-width:576px){
    h1{
        font-size:32px !important;
        line-height:1.3;
    }

    h2{
        font-size:28px !important;
    }

    p{
        font-size:15px;
    }

    .hero{
        padding-top:120px;
    }

    .btn-outline-custom,
    .btn-outline-light-custom{
        margin-left:0;
    }

    .hero-buttons{
        width:100%;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom{
        width:100%;
        max-width:none;
    }
}