```css
/* ===============================
   ROOT
================================= */

:root{
    --bg:#0b0f19;
    --card:#121826;
    --orange:#ff7a00;
    --orange2:#ff9d42;
    --text:#ffffff;
    --muted:#aab0bc;
    --blue:#024d7c;
    --yellow:#E4B025;
}

/* ===============================
   RESET
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--text);
}

/* ===============================
   CONTAINER
================================= */

.container{
    width:95%;
    max-width:1600px;
    margin:0 auto;
}

/* ===============================
   HEADER
================================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:#024d7c;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
    transition:.3s;
}

header.scrolled{
    background:#013a5e;
    box-shadow:0 8px 25px rgba(0,0,0,.18);
}
/* ===============================
   NAVBAR
================================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;

    height:80px;
}

/* ===============================
   LOGO
================================= */

.logo{
    display:flex;
    align-items:center;
    gap:12px;

    text-decoration:none;
}

.logo img{
    width:58px;
    height:58px;
    object-fit:contain;
}

.logo-text{
    color:#fff;
    font-size:20px;
    font-weight:800;
    letter-spacing:.8px;
    text-transform:uppercase;
}

/* ===============================
   MENU
================================= */

nav{
    display:flex;
    align-items:center;
    gap:40px;
    margin-left:auto;
    margin-right:30px;
}

nav a{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;

    height:80px;       /* sesuaikan dengan tinggi navbar */
    padding:0;

    text-decoration:none;
    color:#fff;
    font-size:16px;
    font-weight:600;

    transition:.3s;
}

nav a:hover{
    color:#e4b025;
}

nav a.active{
    color:#e4b025;
}

nav a.active::after{
    content:"";
    position:absolute;

    left:0;
    right:0;
    margin:auto;

    bottom:8px;

    width:42px;
    height:3px;

    background:#e4b025;
    border-radius:100px;
}


/* ===============================
   BUTTON NAVBAR
================================= */

.nav-btn{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    height:48px;
    padding:0 28px;

    background:linear-gradient(
        135deg,
        #f7c84b,
        #e4b025
    );

    color:#fff;
    text-decoration:none;

    font-size:14px;
    font-weight:600;

    border-radius:10px;

    transition:.3s;
}

.nav-btn i{
    font-size:17px;
}

.nav-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 12px 25px rgba(228,176,37,.35);

}


/* ================= HERO ================= */

.hero{
    background:#fff;
    padding:140px 0 90px;
    overflow:hidden;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:90px;
}

.badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#eef4fb;
    color:#e4b025;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-text h1{
    margin:22px 0;
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    color:#08162f;
}

.hero-text h1 span{
    display:block;
    color:#e4b025;
}

.hero-text p{
    max-width:620px;
    font-size:18px;
    color:#666;
    line-height:1.9;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:45px;
}

.btn-wa{

    display:flex;
    align-items:center;
    gap:10px;

    padding:18px 34px;

    background:#22c55e;

    color:#fff;

    text-decoration:none;

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.btn-wa:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(34,197,94,.25);
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:16px 30px;

    border:2px solid #0b1831;
    border-radius:12px;

    color:#0b1831;
    background:#fff;

    text-decoration:none;
    font-weight:600;

    transition:.3s;
}

.btn-outline:hover{
    background:#0b1831;
    color:#fff;
}
/* ===========================
   HERO FEATURES
=========================== */

/* ==========================
   HERO FEATURES
========================== */

.hero-features{
    display:flex;
    justify-content:space-between;
    align-items:stretch;
    gap:35px;
    margin-top:45px;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:50px;
}

.feature{
    display:flex;
    align-items:center;
    gap:16px;
}

.feature-icon{
    width:60px;
    height:60px;
    flex-shrink:0;

    display:flex;
    justify-content:center;
    align-items:center;

    border:2px solid #e4b025;
    border-radius:50%;

    color:#e4b025;
    font-size:22px;
}

.feature-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.feature-content h4{
    display:block !important;
    margin:0 0 5px !important;
    font-size:18px !important;
    font-weight:700 !important;
    color:#0b1831 !important;
}

.feature-content p{
    margin:0 !important;
    font-size:15px !important;
    color:#666 !important;
    line-height:1.6;
}
/* Tablet */

@media(max-width:991px){

.hero-features{
    flex-wrap:wrap;
    gap:25px;
}

.feature{
    width:calc(50% - 15px);
    flex:none;
}

}

/* HP */

@media(max-width:768px){

.hero-features{
    flex-direction:column;
    gap:20px;
}

.feature{
    width:100%;
}

}
.hero-image{

    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{

    width:120%;
    max-width:1000px;

    filter:drop-shadow(0 35px 45px rgba(0,0,0,.18));

    animation:float 5s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}

/* Tombol WhatsApp */

.btn-wa{
display:flex;
align-items:center;
justify-content:center;
gap:12px;

padding:16px 32px;

background:linear-gradient(
135deg,
#25D366,
#1ebe5d
);

color:white;
text-decoration:none;
font-weight:600;

border-radius:14px;

transition:.3s;
}

.btn-wa i{
font-size:24px;
}

.btn-wa:hover{
transform:translateY(-4px);
box-shadow:0 15px 30px #e4b125d2;
}

/* Tombol Outline */

.btn-outline{
display:flex;
align-items:center;
justify-content:center;

padding:18px 35px;

border:2px solid rgba(255,255,255,.25);

color:rgba(0, 0, 0, 0.932);
text-decoration:none;

font-weight:600;

border-radius:12px;

transition:.3s;
}

.btn-outline:hover{
background:white;
color:black;
}

/* Feature Row */

.hero-features{
display:flex;
align-items: flex-start;
gap:60px;
flex-wrap:nowrap;
margin-top:40px;

}

.feature{
display:flex;
align-items:center;
gap:12px;
width:auto;
}

.feature-icon{
width:55px;
height:55px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

border:2px solid #e4b025;

font-size:22px;

color:#e4b025;
}

.feature h4{
color:white;
text-decoration:none;
font-weight:600;

border-radius:14px;

transition:.3s;
}

.feature p{
font-size:14px;
color:#aab0bc;
margin:0;
}

/* LAYANAN KAMI */
.services{
padding:100px 0;
background:#ffffff;
}

.services-grid{
display:grid;
grid-template-columns:400px 1fr;
gap:60px;
width:100%;

}

.subtitle{
display:block;
font-size:14px;
font-weight:700;
letter-spacing:2px;
color:#e4b025;
margin-bottom:15px;
}

.services-left h2{
font-size:48px;
line-height:1.2;
font-weight:800;
color:#111827;
margin-bottom:20px;
}

.services-left h2 span{
color:#e4b025;
}

.services-left p{
font-size:16px;
line-height:1.8;
color:#6b7280;
}

.services-right{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:22px;
}

.service-card{
background:#ffffff;
padding:35px 15px;
text-align:center;
border-radius:12px;

box-shadow:
0 2px 8px #024d7c;

transition:.3s;
}

.service-card:hover{
transform:translateY(-8px);

box-shadow:
0 15px 30px #024d7c;
}

.service-card i{
font-size:34px;
color:#e4b025;
margin-bottom:20px;
}

.service-card h3{
font-size:20px;
font-weight:700;
margin-bottom:10px;
color:#111827;
}

.service-card p{
font-size:14px;
line-height:1.6;
color:#6b7280;
}

.services-button{
text-align:center;
margin-top:40px;
}

.service-btn{
display:inline-flex;
align-items:center;
gap:12px;

padding:16px 40px;

background:#e4b025;
color:white;

text-decoration:none;
font-weight:600;

border-radius:8px;

transition:.3s;
}

.service-btn:hover{
transform:translateY(-3px);

box-shadow:
0 12px 25px #024d7c;;
}

@media(max-width:992px){

.services-grid{
grid-template-columns:1fr;
}

.services-right{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.services-left h2{
font-size:36px;
}

.services-right{
grid-template-columns:1fr;
}}

/* ========================= */
/* GALERI HASIL CETAK */
/* ========================= */

.portfolio-section{
padding:50px 0  100px;
background:linear-gradient(
135deg,
#024d7c 0%,
#024d7c 50%,
#024d7c 100%

);
border-radius:18px;

}

.portfolio-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:35px;
}

.portfolio-label{
font-size:12px;
font-weight:700;
letter-spacing:2px;
color:#e4b025;
display:block;
margin-bottom:8px;
}

.portfolio-top h2{
font-size:52px;
font-weight:800;
color:#fff;
margin-top:8px;
line-height:1.2;
}
.gallery-btn{
padding:14px 28px;
border:1px solid rgba(255,255,255,.2);
border-radius:10px;
text-decoration:none;
color:#fff;
font-weight:600;
transition:.3s;
}

.gallery-btn:hover{
background:#e4b025;
border-color:#e4b025;
}
.portfolio-gallery{
    display:flex;
    gap:16px;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-behavior:smooth;

    scrollbar-width:none;

    padding:0 30px;
}

.portfolio-gallery::-webkit-scrollbar{
    display:none;
}

.portfolio-item{
  min-width:240px;
    height:160px;
    flex-shrink:0;

    overflow:hidden;
    border-radius:12px;
    background:#fff;

    transition:.35s;
}
.portfolio-item:hover{
transform:translateY(-8px);
box-shadow:
0 20px 35px rgba(0,0,0,.25);
}

.portfolio-item img{
 width:100%;
    height:100%;
    object-fit:contain;
    background:#fff;
    padding:10px;
}

.portfolio-item:hover img{
transform:scale(1.08);
}

.portfolio-section .container{
max-width:1400px;
margin:auto;
padding:0 40px;
}


/* PANAH */

.portfolio-wrapper{
    position:relative;
}

.nav-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:48px;
    height:48px;

    border:none;
    border-radius:50%;

    background:#e4b025;
    color:#fff;

    font-size:20px;
    cursor:pointer;

    z-index:9999;
}

.left{
    left:-40px;
}

.right{
    right:-40px;
}

/* ========================= */
/* about rubu pack */
/* ========================= */
.about-company{
padding:90px 0;
background:#ffffff;
}

.about-grid{
display:grid;
grid-template-columns:1.1fr 1fr;
gap:50px;
align-items:center;
}

.about-image img{
width:100%;
height:420px;
object-fit:cover;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-label{
display:block;
font-size:13px;
font-weight:700;
letter-spacing:2px;
color:#e4b025;
margin-bottom:10px;
}

.about-content h2{
font-size:42px;
font-weight:800;
color:#111827;
margin-bottom:18px;
line-height:1.2;
}

.about-content h2 span{
color:#e4b025;
}

.about-content p{
font-size:15px;
line-height:1.9;
color:#6b7280;
margin-bottom:35px;
}

.about-stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.stat-item{
display:flex;
align-items:flex-start;
gap:12px;
}

.stat-item i{
font-size:28px;
color:#e4b025;
margin-top:4px;
}

.stat-item h4{
font-size:24px;
font-weight:700;
color:#111827;
margin-bottom:2px;
}

.stat-item span{
font-size:13px;
line-height:1.5;
color:#6b7280;
}

@media(max-width:991px){

.about-grid{
grid-template-columns:1fr;
}

.about-image img{
height:300px;
}

.about-stats{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.about-content h2{
font-size:32px;
}

.about-stats{
grid-template-columns:1fr;
}

}


.contact-section{
background:
linear-gradient(
135deg,
#024d7c,
#024d7c,
#024d7c
);

padding:80px 0;
}

.contact-grid{
display:grid;
grid-template-columns:
320px
1fr
420px;

gap:25px;
}

/* CARD */

.contact-card,
.map-card,
.order-card{
background:
rgba(0, 0, 0, 0.267);

border:
1px solid rgba(255,255,255,.05);

padding:25px;

border-radius:12px;
}

/* JUDUL */

.contact-card h3,
.map-card h3,
.order-card h3{
color:#e4b025;
font-size:22px;
margin-bottom:25px;
}

/* KONTAK */

.contact-item{
display:flex;
gap:15px;
margin-bottom:22px;
}

.contact-item i{
font-size:22px;
color:#e4b025;
margin-top:4px;
}

.contact-item strong{
display:block;
color:white;
font-size:18px;
}

.contact-item span,
.contact-item div{
color:#d5d5d5;
line-height:1.7;
}

/* MAPS */

.map-card iframe{
width:100%;
height:260px;
border:none;
border-radius:10px;
}
.map-btn{
    display:block;
    text-align:center;
    margin-top:15px;
    padding:12px;
    background:#e4b025;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.map-btn:hover{
    background:#c79a18;
}

/* FORM */

.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;
margin-bottom:12px;
}

.order-card input,
.order-card select,
.order-card textarea{

width:100%;

padding:14px;

border:none;

border-radius:8px;

background:white;

font-family:Poppins;
}

.order-card textarea{
resize:none;
margin-top:12px;
}

.order-card button{

width:100%;

margin-top:15px;

padding:15px;

border:none;

border-radius:8px;

background:#e4b025;

color:white;

font-size:15px;

font-weight:600;

cursor:pointer;

transition:.3s;
}

.order-card button:hover{
transform:translateY(-3px);
}

.order-card button i{
margin-right:8px;
}

/* RESPONSIVE */

@media(max-width:1200px){

.contact-grid{
grid-template-columns:1fr;
}

}

/* ===== FOOTER BAWAH ===== */

.bottom-footer{
    background:#08111d;
    border-top:1px solid rgba(255,255,255,.08);
    padding:18px 0;
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.footer-logo img{
    height:45px;
    width:auto;
}

.footer-copy{
    color:#d1d5db;
    font-size:14px;
}

.footer-social{
    display:flex;
    gap:18px;
}

.footer-social a{
    width:38px;
    height:38px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.15);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#e4b025;
    border-color:#e4b025;
    transform:translateY(-3px);
}

@media(max-width:768px){

.footer-bottom{
    flex-direction:column;
    gap:15px;
    text-align:center;
}

}
/* MENU AKTIF */

nav a{
    position:relative;
}

nav a.active{
    color:#e4b025;
}

nav a.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;

    width:100%;
    height:2px;

    background:#e4b025;
}