/*==============================
HEADER
==============================*/

.header{
    width:100%;
    height:85px;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 15px rgba(0,0,0,.06);
}

.navbar{
    max-width:1280px;
    height:85px;
    margin:auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    width:60px;
}

.logo-text h2{
    font-size:24px;
    font-weight:800;
    color:#0B2E6D;
    margin:0;
    line-height:1;
}

.logo-text span{
    display:block;
    color:#F7941D;
    font-size:14px;
    font-weight:700;
    margin-top:3px;
}

.menu{
    display:flex;
    list-style:none;
    gap:35px;
}

.menu li a{
    color:#0B2E6D;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.menu li a:hover,
.menu li a.active{
    color:#F7941D;
}

.btn-header{
    background:#0B2E6D;
    color:#fff;
    padding:12px 24px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-header:hover{
    background:#F7941D;
}/*==============================
HERO BANNER
==============================*/

.hero-banner{
    margin:0;
    padding:0;
    line-height:0;
}

.hero-banner img{
    width:100%;
    display:block;
    margin-top: -1px;
}

/*==================================
LAYANAN PREMIUM V3
==================================*/

.services{
    padding:100px 0;
    background:#f7f9fc;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/*==============================
SECTION TITLE
==============================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#F7941D;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:42px;
    color:#0B2E6D;
    margin:15px 0;
    font-weight:800;
}

.section-title p{
    max-width:720px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/*==============================
GRID
==============================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

}

/*==============================
CARD
==============================*/

.service-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(11,46,109,.18);

}

/*==============================
IMAGE
==============================*/

.service-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.4s;

}

.service-card:hover img{

    transform:scale(1.04);

}

/*==============================
CONTENT
==============================*/

.service-content{

    padding:25px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.service-content h3{

    font-size:24px;

    color:#0B2E6D;

    margin-bottom:12px;

    font-weight:700;

}

.service-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}
/*==============================
SERVICE TAG
==============================*/

.service-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:25px;

}

.service-tags span{

    background:#EEF4FF;

    color:#0B2E6D;

    padding:8px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    transition:.3s;

}

.service-tags span:hover{

    background:#0B2E6D;

    color:#fff;

}

/*==============================
ESTIMASI HARGA
==============================*/

.price-start{

    background:#F8F9FC;

    border-left:5px solid #F7941D;

    border-radius:12px;

    padding:16px 18px;

    margin-bottom:25px;

}

.price-start small{

    display:block;

    color:#777;

    font-size:13px;

    margin-bottom:6px;

}

.price-start h4{

    margin:0;

    color:#F7941D;

    font-size:28px;

    font-weight:800;

}

/*==============================
BUTTON
==============================*/

.btn-service{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-top:auto;

    padding:15px;

    background:#0B2E6D;

    color:#fff;

    text-decoration:none;

    border-radius:12px;

    font-weight:700;

    transition:.35s;

}

.btn-service:hover{

    background:#F7941D;

    transform:translateY(-3px);

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services{

padding:80px 0;

}

.section-title h2{

font-size:34px;

}

.services-grid{

grid-template-columns:1fr;

}

.service-card img{

height:220px;

}

.service-content{

padding:20px;

}

.service-content h3{

font-size:22px;

}

.service-content p{

font-size:15px;

}

.service-tags span{

font-size:12px;

padding:7px 12px;

}

.price-start h4{

font-size:24px;

}

.btn-service{

padding:14px;

font-size:15px;

}

}

/*=========================
WHY US
==========================*/

.why-us{
    padding:100px 0;
    background:#fff;
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.why-box{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.why-box:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.why-box i{

    width:80px;

    height:80px;

    line-height:80px;

    border-radius:50%;

    background:#0B2E6D;

    color:#fff;

    font-size:32px;

    margin-bottom:25px;

}

.why-box h3{

    color:#0B2E6D;

    margin-bottom:15px;

}

.why-box p{

    color:#666;

    line-height:1.8;

}
/*=========================================
PREMIUM ACHIEVEMENT
=========================================*/

.achievement{
    padding:90px 0;
    background:#fff;
}

.achievement-title{
    text-align:center;
    margin-bottom:60px;
}

.achievement-title span{
    color:#002080;
    font-size:42px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.achievement-title h2{
    color:#000309;
    font-size:15px;
    font-weight:800;
    margin:15px 0;
}

.achievement-title p{
    color:#130101d7;
    font-size:17px;
    max-width:750px;
    margin:auto;
    line-height:1.8;
}

.achievement-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.achievement-card{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.achievement-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#06047d;

}

.achievement-card:hover{

    transform:translateY(-15px);

    box-shadow:0 25px 55px rgba(11,46,109,.20);

}

.icon-circle{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#0B2E6D,#18489B);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    transition:.4s;

}

.achievement-card:hover .icon-circle{

    transform:rotate(360deg) scale(1.1);

    background:#F7941D;

}

.achievement-card h2{

    font-size:55px;

    color:#0B2E6D;

    font-weight:800;

    margin-bottom:10px;

}

.achievement-card h4{

    color:#F7941D;

    font-size:22px;

    margin-bottom:15px;

    font-weight:700;

}

.achievement-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1100px){

.achievement-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.achievement{

padding:70px 20px;

}

.achievement-title h2{

font-size:32px;

}

.achievement-grid{

grid-template-columns:1fr;

}

}/*==================================
BRAND PARTNER
==================================*/

.brand-section{

    padding:100px 0;

    background:#f8f9fc;

}

.brand-slider{

    overflow:hidden;

    position:relative;

    margin-top:50px;

}

.brand-track{

    display:flex;

    width:max-content;

    animation:brandSlide 35s linear infinite;

}

.brand-track img{

    width:170px;

    height:80px;

    object-fit:contain;

    background:#fff;

    margin:0 18px;

    padding:20px;

    border-radius:16px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.brand-track img:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

@keyframes brandSlide{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}
/*==================================
GALERI PROJECT
==================================*/

.gallery{

    padding:110px 0;

    background:#fff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    cursor:pointer;

}

.gallery-item img{

    width:95%;

    height:320px;

    object-fit:contain;

    background:#fff;

    padding:3px;

    display:block;

    transition:.4s;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(11,46,109,.92),rgba(11,46,109,.15));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    opacity:0;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.05);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay h3{

    color:#fff;

    font-size:28px;

    margin-bottom:8px;

}

.gallery-overlay p{

    color:#ddd;

    margin-bottom:20px;

}

.gallery-overlay a{

    display:inline-block;

    width:160px;

    text-align:center;

    padding:12px;

    background:#F7941D;

    color:#fff;

    border-radius:10px;

    text-decoration:none;

    transition:.3s;

}

.gallery-overlay a:hover{

    background:#fff;

    color:#0B2E6D;

}

@media(max-width:992px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.gallery-grid{

grid-template-columns:1fr;

}

}
/*==================================
TESTIMONIAL
==================================*/

.testimonial{

    padding:110px 0;

    background:#f8f9fc;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.stars{

    color:#F7941D;

    font-size:22px;

    margin-bottom:20px;

}

.review{

    color:#555;

    line-height:1.9;

    margin-bottom:30px;

    min-height:120px;

}

.customer{

    display:flex;

    align-items:center;

    gap:15px;

}

.customer img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.customer h4{

    color:#0B2E6D;

    margin-bottom:5px;

}

.customer span{

    color:#777;

    font-size:14px;

}

@media(max-width:992px){

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.testimonial-grid{

grid-template-columns:1fr;

}

}
/*==================================
CALL TO ACTION
==================================*/

.cta{

    background:linear-gradient(135deg,#0B2E6D,#18489B);

    padding:90px 20px;

    text-align:center;

    color:#fff;

}

.cta h2{

    font-size:44px;

    margin-bottom:20px;

    font-weight:800;

}

.cta p{

    max-width:850px;

    margin:auto;

    line-height:1.9;

    font-size:18px;

    margin-bottom:40px;

}

.cta-button{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-wa{

    background:#25D366;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.btn-wa:hover{

    transform:translateY(-5px);

    background:#1ebe5d;

}

.btn-service2{

    background:#F7941D;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.btn-service2:hover{

    transform:translateY(-5px);

    background:#fff;

    color:#0B2E6D;

}
/*==================================
FORM
==================================*/

.contact-form{

    padding:100px 0;

    background:#f8f9fc;

}

#waForm{

    max-width:900px;

    margin:auto;

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

#waForm input,
#waForm select,
#waForm textarea{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    margin-bottom:20px;

}

#waForm textarea{

    resize:none;

}

#waForm button{

    background:#25D366;

    color:#fff;

    border:none;

    padding:18px 45px;

    border-radius:50px;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

#waForm button:hover{

    background:#0B2E6D;

}

@media(max-width:768px){

.form-grid{

grid-template-columns:1fr;

}

}
/*==================================
FLOATING WHATSAPP PREMIUM
==================================*/

.wa-container{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:99999;

}

.wa-float{

    width:70px;

    height:70px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:42px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    animation:waPulse 2s infinite;

}

.wa-float:hover{

    background:#128C7E;

}

.wa-text{

    position:absolute;

    right:85px;

    bottom:5px;

    width:270px;

    background:#fff;

    border-radius:15px;

    padding:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

    opacity:0;

    visibility:hidden;

    transform:translateX(20px);

    transition:.35s;

}

.wa-container:hover .wa-text{

    opacity:1;

    visibility:visible;

    transform:translateX(0);

}

.wa-text h4{

    margin:0 0 12px;

    color:#0B2E6D;

    font-size:18px;

}

.wa-text a{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    color:#333;

    padding:10px 0;

    border-bottom:1px solid #eee;

    transition:.3s;

}

.wa-text a:last-child{

    border-bottom:none;

}

.wa-text a i{

    font-size:26px;

    color:#25D366;

    min-width:26px;

}

.wa-text a span{

    line-height:1.4;

}

.wa-text a:hover{

    color:#0B2E6D;

    transform:translateX(5px);

}

@keyframes waPulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

@media(max-width:768px){

    .wa-text{

        display:none;

    }

    .wa-float{

        width:60px;

        height:60px;

        font-size:34px;

    }

}


@keyframes waPulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.1);

}

100%{

transform:scale(1);

}

}

@keyframes slideWA{

from{

opacity:0;

transform:translateX(80px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@media(max-width:768px){

.wa-text{

display:none;

}

.wa-float{

width:60px;

height:60px;

font-size:34px;

}

}
/*==================================
LOKASI
==================================*/

.maps{

    padding:100px 0;

    background:#f8f9fc;

}

.maps-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:35px;

    align-items:stretch;

}

.maps-box{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.info-box{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.info-box h3{

    color:#0B2E6D;

    font-size:28px;

    margin-bottom:15px;

}

.info-box p{

    color:#666;

    line-height:1.8;

}

.info-box ul{

    list-style:none;

    padding:0;

    margin:30px 0;

}

.info-box li{

    margin-bottom:18px;

    color:#444;

    font-size:16px;

    line-height:1.7;

}

.info-box a{

    color:#0B2E6D;

    text-decoration:none;

    font-weight:600;

}

.info-box a:hover{

    color:#F7941D;

}

.btn-map{

    display:inline-block;

    margin-top:20px;

    background:#F7941D;

    color:#fff !important;

    padding:15px 30px;

    border-radius:10px;

    text-decoration:none;

    transition:.3s;

}

.btn-map:hover{

    background:#0B2E6D;

}

@media(max-width:900px){

.maps-grid{

grid-template-columns:1fr;

}

}

/*==================================
ABOUT
==================================*/

.about{

    padding:110px 0;

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{
    width:100%;
    max-height:580px;
    object-fit:contain;
    border-radius:22px;
}

.about-content span{

    color:#F7941D;

    font-weight:700;

    letter-spacing:2px;

    font-size:35px;

}

.about-content h2{

    color:#0B2E6D;

    font-size:42px;

    margin:15px 0;

}

.about-content p{

    color:#150101;

    line-height:1.9;

    margin-bottom:20px;

    text-align:justify;

}

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:35px 0;

}

.about-list div{

    font-weight:600;

    color:#333;

}

.about-list i{

    color:#25D366;

    margin-right:8px;

}

.about-btn{

    display:inline-block;

    padding:15px 38px;

    background:#F7941D;

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    transition:.3s;

    font-weight:700;

}

.about-btn:hover{

    background:#0B2E6D;

}

@media(max-width:992px){

.about-grid{

grid-template-columns:1fr;

}

.about-content{

text-align:center;

}

.about-list{

grid-template-columns:1fr;

}

}
/* =========================================
   FOOTER BLACK — 4 COLUMN
========================================= */

.footer {
    background: #002080;
    color: #fff;

    padding: 50px 0 0;

    border-top: 3px solid #F7941D;
}


/* =========================================
   HEADER LOGO
========================================= */

.footer-header {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 48px;
}


.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    text-decoration: none;

    margin-bottom: 17px;
}


.footer-logo img {
    width: 150px;
    height: 150px;

    object-fit: contain;
}


.footer-logo h2 {
    margin: 0;
    color: hsl(0, 0%, 100%);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 1px;

    display: inline-block;
    padding-bottom: 5px;

    border-bottom: 2px solid #F7941D;
}


.footer-logo span {
    display: block;

    margin-top: 4px;

    color: #F7941D;

    font-size: 20px;

    font-weight: 700;

    letter-spacing: 2px;
}


.footer-header p {
    max-width: 620px;

    margin: auto;

    color: #fbfdff;

    font-size: 25px;

    line-height: 1.8;
}


/* =========================================
   4 KOLOM
========================================= */

.footer-columns {
    display: grid;

    grid-template-columns:
        1.1fr
        1.2fr
        1fr
        1fr;

    gap: 25px;

    padding: 32px 0 38px;

    border-top: 1px solid #292c2f;

    border-bottom: 1px solid #292c2f;
}


/* =========================================
   KOLOM
========================================= */

.footer-column {
    padding: 0 22px;

    border-right: 1px solid #292c2f;
}


.footer-column:first-child {
    padding-left: 0;
}


.footer-column:last-child {
    border-right: none;

    padding-right: 0;
}


.footer-column h3 {
    margin: 0 0 20px;

    color: hsl(0, 0%, 100%);

    font-size: 14px;

    font-weight: 700;
}


.footer-column h3::after {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    margin-top: 8px;

    background: #F7941D;
}


/* =========================================
   LAYANAN
========================================= */

.footer-column > a:not(.footer-contact-item) {
    display: block;

    margin-bottom: 11px;

    color: lch(95.3% 2.47 256);

    text-decoration: none;

    font-size: 11px;

    transition: .2s;
}


.footer-column > a:not(.footer-contact-item)::before {
    content: "›";

    margin-right: 8px;

    color: #F7941D;
}


.footer-column > a:not(.footer-contact-item):hover {
    color: hsl(0, 0%, 100%);

    transform: translateX(3px);
}


/* =========================================
   KONTAK WHATSAPP
========================================= */

.footer-contact-item {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color: hsl(0, 0%, 100%);

    text-decoration: none;
}


.footer-contact-item i {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #25D366;

    color: hsl(0, 0%, 100%);

    font-size: 15px;
}


.footer-contact-item span {
    display: flex;

    flex-direction: column;

    color: hwb(210 96% 0%);

    font-size: 10px;

    line-height: 1.4;
}


.footer-contact-item small {
    color: hsl(187, 69%, 97%);

    font-size: 9px;

    margin-bottom: 2px;
}


/* =========================================
   AREA & JAM
========================================= */

.footer-detail {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 18px;

    color: hsl(210, 10%, 96%);

    font-size: 11px;

    line-height: 1.6;
}


.footer-detail i {
    width: 18px;

    color: #F7941D;

    margin-top: 2px;
}


.footer-detail strong {
    color: hsl(0, 0%, 100%);
}


/* =========================================
   KEUNGGULAN
========================================= */

.footer-feature {
    margin-bottom: 17px;
}


.footer-feature strong {
    display: block;

    color: #F7941D;

    font-size: 13px;

    font-weight: 700;
}


.footer-feature span {
    display: block;

    margin-top: 3px;

    color: hsl(204, 26%, 96%);

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================
   NAVIGASI
========================================= */

.footer-navigation {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 30px;

    padding: 24px 0 18px;
}


.footer-navigation a {
    color: hsl(210, 12%, 94%);

    text-decoration: none;

    font-size: 10px;

    transition: .2s;
}


.footer-navigation a:hover {
    color: #F7941D;
}


/* =========================================
   COPYRIGHT
========================================= */

.footer-copyright {
    padding-bottom: 22px;

    text-align: center;

    color: hwb(210 97% 2%);

    font-size: 9px;
}


.footer-copyright strong {
    color: hsl(210, 29%, 97%);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .footer-columns {
        grid-template-columns: 1fr 1fr;
    }

    .footer-column:nth-child(2) {
        border-right: none;
    }

    .footer-column:nth-child(3) {
        padding-left: 0;

        border-top: 1px solid #292c2f;

        padding-top: 25px;
    }

    .footer-column:nth-child(4) {
        border-top: 1px solid #292c2f;

        padding-top: 25px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .footer {
        padding: 45px 20px 0;
    }


    .footer-header {
        margin-bottom: 35px;
    }


    .footer-logo img {
        width: 60px;
        height: 60px;
    }


    .footer-logo h2 {
        font-size: 19px;
    }


    .footer-columns {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .footer-column,
    .footer-column:first-child,
    .footer-column:last-child {
        padding: 25px 0;

        border-right: none;

        border-bottom: 1px solid #292c2f;
    }


    .footer-column:last-child {
        border-bottom: none;
    }


    .footer-navigation {
        flex-wrap: wrap;

        gap: 13px 22px;

        padding-top: 25px;
    }

}

/*==================================
BACK TO TOP
==================================*/

#backTop{

    position:fixed;

    right:25px;

    bottom:110px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#0B2E6D;

    color:#fff;

    font-size:20px;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    transition:.35s;

    opacity:0;

    visibility:hidden;

    z-index:9999;

}

#backTop.show{

    opacity:1;

    visibility:visible;

}

#backTop:hover{

    background:#F7941D;

    transform:translateY(-6px);

}
/* =========================================
   MOBILE FIX - KAWAN IKHSAN MULTI TEKNIK
   ========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 18px;
    padding-right: 18px;
}

/* ================= NAVBAR ================= */

@media (max-width: 768px) {

    .navbar {
        width: 100%;
        padding: 12px 15px;
    }

    .logo {
        max-width: 75%;
    }

    .logo img {
        width: 42px;
        height: auto;
    }

    .logo-text h2 {
        font-size: 15px;
    }

    .logo-text span {
        font-size: 8px;
    }

    .menu {
        display: none;
    }

    /* ================= HERO ================= */

    .hero {
        width: 100%;
        min-height: 650px;
        background-position: center;
    }

    .hero-overlay {
        width: 100%;
        min-height: 650px;
        padding: 100px 18px 40px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* ================= SECTION ================= */

    section {
        width: 100%;
        max-width: 100%;
    }

    .section-title {
        padding-left: 10px;
        padding-right: 10px;
    }

    .section-title h2 {
        font-size: 27px;
        line-height: 1.2;
    }

    .section-title p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* ================= SERVICES ================= */

    .services {
        width: 100%;
        padding: 70px 0;
    }

    .services-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
    }

    .service-card img {
        width: 100%;
        height: 210px;
        object-fit: cover;
    }

    /* ================= ABOUT ================= */

    .about,
    .about-container,
    .about-content,
    .about-image {
        width: 100%;
        max-width: 100%;
    }

    /* ================= GALLERY ================= */

    .gallery-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* ================= FOOTER ================= */

    .footer {
        width: 100%;
    }

    .footer-overlay {
        width: 100%;
        padding: 45px 18px 25px;
    }
}
/* =========================================
   MOBILE RESPONSIVE - MAX 768px
========================================= */

@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .logo {
        max-width: 70%;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }

    .logo-text h2 {
        font-size: 15px;
        line-height: 1.1;
    }

    .logo-text span {
        font-size: 8px;
    }

    .menu {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        margin-top: 12px;
        padding: 0;
        flex-wrap: wrap;
    }

    .menu li {
        list-style: none;
    }

    .menu a {
        font-size: 12px;
        padding: 6px 2px;
    }


    /* HERO */
    .hero {
        min-height: 680px;
        background-position: center;
    }

    .hero-overlay {
        min-height: 680px;
        padding: 90px 18px 40px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.08;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }


    /* SECTION */
    section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-title h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .section-title p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* SERVICES */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

    .service-card img {
        width: 100%;
        height: 210px;
        object-fit: cover;
    }


    /* ABOUT */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-content {
        width: 100%;
    }


    /* ACHIEVEMENT */
    .achievement-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .achievement-card {
        width: 100%;
    }


    /* GALLERY */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-grid img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }


    /* CONTACT */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    /* FOOTER */
    .footer {
        width: 100%;
    }

    .footer-overlay {
        width: 100%;
        padding: 40px 18px 25px;
    }

} 
/* =====================================================
   ABOUT SECTION - PREMIUM DESKTOP
   ===================================================== */

.about {
    padding: 110px 0;
    background: #f8faff;
}

.about .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 25px;
}


/* GRID */

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 70px;
}


/* FOTO */

.about-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(11, 46, 109, .18);
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 28px;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}


/* CONTENT */

.about-content > span {
    display: inline-block;
    margin-bottom: 12px;

    color: #F7941D;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.about-content h2 {
    margin: 0 0 22px;

    color: #0B2E6D;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
}

.about-content p {
    margin: 0 0 18px;

    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.about-content strong {
    color: #173c76;
}


/* LIST KEUNGGULAN */

.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;

    margin-top: 28px;
    margin-bottom: 30px;
}

.about-list div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.about-list i {
    color: #20c878;
    font-size: 17px;
}


/* BUTTON */

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 25px;

    color: #fff;
    background: #0B2E6D;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 8px 20px rgba(11,46,109,.2);

    transition: .3s ease;
}

.about-btn:hover {
    background: #F7941D;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(247,148,29,.25);
}


/* =====================================================
   ABOUT - TABLET
   ===================================================== */

@media (max-width: 900px) {

    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-content h2 {
        font-size: 34px;
    }

}


/* =====================================================
   ABOUT - MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .about {
        padding: 65px 0;
    }

    .about .container {
        padding: 0 20px;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .about-image {
        width: 100%;
        border-radius: 20px;
    }

    .about-image img {
        width: 100%;
    }

    .about-content > span {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .about-content h2 {
        font-size: 29px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.75;
        text-align: left;
    }

    .about-list {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 25px;
    }

    .about-list div {
        font-size: 14px;
    }

    .about-btn {
        width: 100%;
        padding: 14px;
    }

}
