/* ===============================
   GLOBAL STYLE
=================================*/

:root{
    --gold:#d4af37;
    --dark:#111111;
    --gray:#666666;
    --light:#f8f8f8;
    --white:#ffffff;
    }
    
    *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    }
    
    body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#111;
    line-height:1.7;
    }
    
    .container{
    width:90%;
    max-width:1200px;
    margin:auto;
    }
    
    section{
    padding:100px 0;
    }
    
    h1,h2,h3,h4{
    font-weight:600;
    }
    
    h2{
    font-size:36px;
    margin-bottom:30px;
    }
    
    p{
    color:#555;
    }
    
    
    /* ===============================
       NAVBAR
    =================================*/
    
    header{
    position:fixed;
    width:100%;
    top:0;
    background:white;
    z-index:1000;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
    }
    
    .navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 5%;
    }
    
    .logo img{
    height:55px;
    }
    
    .nav-menu{
    list-style:none;
    display:flex;
    gap:35px;
    }
    
    .nav-menu a{
    text-decoration:none;
    color:#111;
    font-weight:500;
    transition:0.3s;
    }
    
    .nav-menu a:hover{
    color:var(--gold);
    }
    
    .cta-btn{
    background:var(--gold);
    padding:10px 20px;
    border-radius:5px;
    text-decoration:none;
    color:white;
    font-weight:500;
    }
    
    
    /* ===============================
       HERO
    =================================*/
    
    #hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
    url("../images/header.png");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    }
    
    .hero-content{
    max-width:700px;
    }
    
    .hero-content h1{
    font-size:60px;
    margin-bottom:20px;
    }
    
    .hero-content p{
    font-size:18px;
    margin-bottom:30px;
    color:#eee;
    }
    
    .hero-btn{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
    }
    
    .btn-primary{
    background:var(--gold);
    padding:14px 28px;
    text-decoration:none;
    color:white;
    border-radius:6px;
    transition:0.3s;
    }
    
    .btn-primary:hover{
    background:#b8962d;
    }
    
    .btn-secondary{
    border:2px solid white;
    padding:12px 28px;
    color:white;
    text-decoration:none;
    border-radius:6px;
    }
    
    
    /* ===============================
       ABOUT
    =================================*/
    
    #about{
    background:var(--light);
    text-align:center;
    }
    
    #about p{
    max-width:750px;
    margin:auto;
    margin-bottom:20px;
    }
    
    
    /* ===============================
       SERVICES
    =================================*/
    
    #services{
        padding:100px 0;
        background:#f9f9f9;
        }
        
        .section-title{
        text-align:center;
        font-size:34px;
        margin-bottom:60px;
        }
        
        .section-title span{
        color:#d4af37;
        }
        
        .services-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
        gap:30px;
        }
        
        .service-card{
        background:white;
        padding:35px 25px;
        border-radius:10px;
        text-align:center;
        box-shadow:0 10px 25px rgba(0,0,0,0.05);
        transition:all .3s ease;
        border-top:4px solid transparent;
        }
        
        .service-card:hover{
        transform:translateY(-8px);
        border-top:4px solid #d4af37;
        box-shadow:0 15px 40px rgba(0,0,0,0.12);
        }
        
        .service-icon{
        font-size:34px;
        margin-bottom:15px;
        }
        
        .service-card h3{
        margin-bottom:10px;
        font-size:20px;
        }
        
        .service-card p{
        font-size:14px;
        color:#666;
        }
    
    /* ===============================
       PORTFOLIO
    =================================*/
    
    /* ================= PORTFOLIO ================= */

    /* ================= PORTFOLIO ================= */

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
    }
    
    .portfolio-item{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
    text-align:center;
    padding-bottom:10px;
    }
    
    .portfolio-item img{
    width:100%;
    height:auto;          /* penting agar tidak kepotong */
    display:block;
    transition:0.4s;
    }
    
    .portfolio-item:hover img{
    transform:scale(1.05);
    }
    
    .portfolio-item h4{
    font-size:14px;
    padding:10px;
    color:#333;
    }
    
    /* HOVER EFFECT */
    
    .portfolio-item:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    }
    
    /* RESPONSIVE */
    
    @media(max-width:1100px){
    
    .portfolio-grid{
    grid-template-columns:repeat(3,1fr);
    }
    
    }
    
    @media(max-width:768px){
    
    .portfolio-grid{
    grid-template-columns:repeat(2,1fr);
    }
    
    }
    
    @media(max-width:480px){
    
    .portfolio-grid{
    grid-template-columns:1fr;
    }
    
    }
    
    
    /* ===============================
       CLIENTS
    =================================*/
    
    #clients{
        padding:90px 0;
        background:#f7f7f7;
        overflow:hidden;
        }
        
        .clients-marquee{
        position:relative;
        margin-top:50px;
        }
        
        .marquee-row{
        overflow:hidden;
        white-space:nowrap;
        margin-bottom:25px;
        }
        
        .marquee-track{
        display:inline-flex;
        gap:50px;
        animation:marquee 30s linear infinite;
        }
        
        .marquee-row.reverse .marquee-track{
        animation:marqueeReverse 30s linear infinite;
        }
        
        .marquee-track span{
        font-size:18px;
        font-weight:500;
        color:#333;
        background:white;
        padding:10px 22px;
        border-radius:6px;
        box-shadow:0 4px 15px rgba(0,0,0,0.05);
        }
        
        .marquee-row:hover .marquee-track{
        animation-play-state:paused;
        }
        
        @keyframes marquee{
        0%{
        transform:translateX(0);
        }
        100%{
        transform:translateX(-50%);
        }
        }
        
        @keyframes marqueeReverse{
        0%{
        transform:translateX(-50%);
        }
        100%{
        transform:translateX(0);
        }
        }
    
    
    /* ===============================
       CTA
    =================================*/
    
    #cta{
    background:#111;
    color:white;
    text-align:center;
    }
    
    #cta p{
    color:#ccc;
    margin-bottom:30px;
    }
    
    
    /* ===============================
       CONTACT
    =================================*/
    
    #contact{
        padding:100px 0;
        background:#f8f8f8;
        }
        
        .section-title{
        text-align:center;
        margin-bottom:60px;
        font-size:34px;
        }
        
        .section-title span{
        color:#d4af37;
        }
        
        .contact-wrapper{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:50px;
        align-items:center;
        }
        
        .contact-info{
        background:white;
        padding:40px;
        border-radius:10px;
        box-shadow:0 10px 30px rgba(0,0,0,0.08);
        }
        
        .contact-info h3{
        margin-bottom:25px;
        font-size:24px;
        }
        
        .contact-item{
        display:flex;
        align-items:flex-start;
        gap:12px;
        margin-bottom:20px;
        }
        
        .contact-icon{
        font-size:20px;
        }
        
        .contact-wa{
        display:inline-block;
        margin-top:20px;
        padding:12px 25px;
        background:#25D366;
        color:white;
        border-radius:6px;
        text-decoration:none;
        font-weight:600;
        }
        
        .contact-wa:hover{
        background:#1ebe5d;
        }
        
        .contact-map iframe{
        border-radius:10px;
        box-shadow:0 10px 30px rgba(0,0,0,0.08);
        }
        
        @media(max-width:768px){
        
        .contact-wrapper{
        grid-template-columns:1fr;
        }
        
        }
    
    
    /* ===============================
       FOOTER
    =================================*/
    
    footer{
    background:#111;
    color:white;
    text-align:center;
    padding:25px 0;
    margin-top:50px;
    }
    
    
    /* ===============================
       RESPONSIVE
    =================================*/
    
    @media(max-width:768px){
    
    .nav-menu{
    display:none;
    }
    
    .hero-content h1{
    font-size:40px;
    }
    
    h2{
    font-size:28px;
    }
    
    }

    #lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    }
    
    .lightbox-container{
    position:relative;
    max-width:90%;
    max-height:90%;
    }
    
    .lightbox-image{
    max-width:100%;
    max-height:80vh;
    border-radius:8px;
    }
    
    .lightbox-close{
    position:absolute;
    top:-40px;
    right:0;
    font-size:40px;
    color:white;
    cursor:pointer;
    }
    
    .lightbox-prev,
    .lightbox-next{
    position:absolute;
    top:50%;
    font-size:40px;
    color:white;
    cursor:pointer;
    padding:10px;
    }
    
    .lightbox-prev{
    left:-50px;
    }
    
    .lightbox-next{
    right:-50px;
    }