* {  
    margin: 0;  
    padding: 0;  
    box-sizing: border-box;  
}  
 
body {  
    font-family: Arial, sans-serif;  
    overflow-x: hidden;
}


/* =========================
    NAVBAR
========================= */

.navbar { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 45px; 
    z-index: 10; 
} 
 
.nav-left { 
    display: flex; 
    gap: 28px; 
} 
 
.nav-left a { 
    color: white; 
    text-decoration: none; 
    padding: 16px 24px; 
    border: 1px solid rgba(255,255,255,0.5); 
    border-radius: 40px; 
    font-size: 20px; 
} 
 
.nav-left a.active { 
    background: #607c6e; 
    border-color: #607c6e; 
}


/* =========================
    LANGUAGE
========================= */

.language { 
    background: #607c6e; 
    color: white; 
    padding: 18px 25px; 
    width: 215px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 24px; 
}


/* =========================
    HERO
========================= */

.hero { 
    height: 100vh; 
    background-image: 
        linear-gradient( 
            rgba(35, 34, 45, 0.65), 
            rgba(35, 34, 45, 0.65) 
        ), 
        url("../assets/hero.jpg"); 

    background-size: cover; 
    background-position: center; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    color: white; 
    padding: 0 20px;
} 
 
.hero-content h1 { 
    font-size: 100px; 
    font-weight: 400; 
    margin-bottom: 40px; 
} 
 
.hero-content p { 
    font-size: 28px; 
    margin-bottom: 50px; 
} 
 
.btn { 
    display: inline-block; 
    color: white; 
    text-decoration: none; 
    border: 1px solid white; 
    border-radius: 40px; 
    padding: 12px 35px; 
    font-size: 22px; 
}


/* =========================
    SECTION TENTANG
========================= */

.about {   
    background: white;   
    padding: 35px 50px;   
    color: #292633;   
}   
  
.about-header {  
    display: flex;  
    justify-content: space-between;  
    gap: 60px;  
    margin-bottom: 20px;  
}  
  
.about-header h2 {  
    width: 60%;  
    font-size: 58px;  
    font-weight: 400;  
    line-height: 1.15;  
}  
  
.about-header h2 span {  
    color: #607c6e;  
    font-style: italic;  
}  
  
.about-header p {  
    width: 35%;  
    font-size: 22px;  
    line-height: 1.5;  
    color: #666;  
}  
  
.about-image {  
    width: 60%;  
    height: 500px;  
    margin: 0 auto;  
    overflow: hidden;  
    border-radius: 40px;  
    transform: scale(0.8);  
    will-change: width, transform;  
}  
  
.about-image img {  
    width: 100%;  
    height: 100%;  
    object-fit: cover;  
    display: block;  
}


/* =========================
    WHATSAPP
========================= */

.whatsapp { 
    position: fixed; 
    right: 35px; 
    bottom: 30px; 
    width: 70px; 
    height: 70px; 
    background: #16c784; 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    font-size: 30px; 
    z-index: 999; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2); 
    transition: 0.3s ease; 
} 
 
.whatsapp:hover { 
    transform: scale(1.1); 
}


/* =========================
    SECTION LAYANAN
========================= */

.services {   
    background: white;   
    padding: 35px 45px 30px;   
    color: #292633;   
}   
  
.services-title {  
    text-align: center;  
    margin-bottom: 30px;  
}  
  
.services-title h2 {  
    font-size: 60px;  
    line-height: 1.15;  
    font-weight: 400;  
    margin: 0;  
}  
  
.services-title span {  
    color: #607c6e;  
    font-style: italic;  
}  
 
.services-container {   
    display: grid;   
    grid-template-columns: repeat(4, 1fr);   
    gap: 25px;   
    max-width: 1800px;   
    margin: 0 auto;   
}   
 
.service-card {   
    min-width: 0;   
}  
 
.service-image {   
    width: 100%;   
    height: 340px;   
    overflow: hidden;   
    border-radius: 22px;   
    margin-bottom: 15px;   
}   
  
.service-image img {   
    width: 100%;   
    height: 100%;   
    object-fit: cover;   
    display: block;   
}   
 
.service-card h3 {   
    font-size: 25px;   
    line-height: 1.3;   
    font-weight: 600;   
    margin: 0;   
}  
 
.services-button {   
    display: flex;   
    justify-content: center;   
    margin-top: 25px;   
}   
  
.services-button a {   
    display: inline-block;   
    background: #607c6e;   
    color: white;   
    text-decoration: none;   
    text-align: center;   
    font-size: 20px;   
    line-height: 1.3;   
    padding: 12px 45px;   
    border-radius: 40px;   
}


/* =========================
    JARINGAN GLOBAL
========================= */

.global-network {   
    background: #ffffff;   
    padding: 35px 30px 30px;   
    color: #292633;   
}   
  
.global-header {  
    max-width: 1800px;  
    margin: 0 auto 30px;  
}   
  
.global-header h2 {   
    font-size: 75px;   
    font-weight: 400;   
    margin: 0 0 5px;   
}   
  
.global-header h2 span {  
    color: #607c6e;  
    font-style: italic;  
}   
  
.global-header p {  
    max-width: 950px;  
    font-size: 25px;  
    line-height: 1.5;  
    color: #666;  
    margin: 0;  
}   
 
.global-cards {   
    display: grid;   
    grid-template-columns: repeat(3, 1fr);   
    gap: 15px;   
    max-width: 1800px;   
    margin: auto;   
}   
 
.global-card {   
    position: relative;   
    height: 350px;   
    overflow: hidden;   
    border-radius: 10px;   
}   
  
.global-card img {   
    width: 100%;   
    height: 100%;   
    object-fit: cover;   
    display: block;   
    transition: transform 0.7s ease;   
}   
  
.global-overlay {   
    position: absolute;   
    inset: 0;   
    background: rgba(0, 0, 0, 0.25);   
}   
  
.global-card h3 {   
    position: absolute;   
    left: 25px;   
    bottom: 25px;   
    margin: 0;   
    color: white;   
    font-size: 30px;   
    font-weight: 400;   
}   
  
.global-card:hover img {   
    transform: scale(1.06);   
}


/* =========================
    LOKASI KANTOR
========================= */

.office-section {   
    display: grid;   
    grid-template-columns: 1fr 1fr;   
    gap: 0;   
    padding: 15px 30px 0;   
    background: white;   
}   
  
.office-image {   
    height: 500px;   
    overflow: hidden;   
    border-radius: 8px 0 0 8px;   
}   
  
.office-image img {   
    width: 100%;   
    height: 100%;   
    object-fit: cover;   
    display: block;   
}   
  
.office-map {   
    height: 500px;   
    overflow: hidden;   
    border-radius: 0 8px 8px 0;   
}   
  
.office-map iframe {   
    width: 100%;   
    height: 100%;   
    border: 0;   
}


/* =========================
    LAYANAN LOGISTIK LAINNYA
========================= */

.extra-services {     
    background: #ffffff;     
    padding: 5px 8% 20px;
    color: #292633;     
}    
     
.extra-services-header {    
    max-width: 1100px;    
    margin-bottom: 15px;
}    
     
.extra-services-header h2 {    
    font-size: 55px;    
    font-weight: 400;    
    margin-bottom: 5px;
}    
     
.extra-services-header h2 span {    
    color: #607c6e;    
    font-style: italic;    
}    
     
.extra-services-header p {    
    font-size: 19px;    
    line-height: 1.4;    
    color: #666;    
    max-width: 900px;    
} 


/* =========================
    SLIDER
========================= */

.service-slider {    
    display: flex;    
    align-items: center;    
    gap: 12px;    
    max-width: 1150px;
    margin: 0 auto;
}   


/* =========================
    KOTAK LAYANAN
========================= */

.service-slide {    
    flex: 1;    
    min-height: 210px;
    max-height: 230px;
    background: #f5f6f4;    
    border-radius: 20px;    
    padding: 20px 25px;
    display: flex;    
    flex-direction: column;    
    justify-content: center;    
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.service-number {    
    color: #607c6e;    
    font-size: 16px;    
    margin-bottom: 7px;
}

.service-slide h3 {    
    font-size: 32px;    
    font-weight: 500;    
    margin-bottom: 10px;
}

.service-slide p {    
    font-size: 17px;    
    line-height: 1.45;    
    color: #555;    
    margin: 0;    
}


/* =========================
    TOMBOL PANAH
========================= */

.slider-btn {    
    width: 50px;    
    height: 50px;    
    flex-shrink: 0;
    border: none;    
    border-radius: 50%;    
    background: #607c6e;    
    color: white;    
    font-size: 24px;    
    cursor: pointer;    
    display: flex;    
    align-items: center;    
    justify-content: center;    
    transition: 0.3s ease;    
}    
     
.slider-btn:hover {    
    transform: scale(1.1);    
    background: #4f695c;    
}


/* =========================
    DOT
========================= */

.slider-dots {    
    display: flex;    
    justify-content: center;    
    gap: 8px;    
    margin-top: 12px;
}    
     
.slider-dot {    
    width: 8px;    
    height: 8px;    
    border-radius: 50%;    
    background: #ccc;    
    cursor: pointer;    
}    
     
.slider-dot.active {    
    background: #607c6e;    
    transform: scale(1.3);    
}


/* =========================
    FOOTER
========================= */

.footer {  
    background: #668574;  
    color: white;  
    padding: 30px 45px 0;  
}  
 
.footer-content {  
    display: grid;  
    grid-template-columns: 1fr 1.4fr 1.8fr;  
    gap: 60px;  
}  
 
.footer-column {  
    display: flex;  
    flex-direction: column;  
}  
 
.footer-column h3 {  
    font-size: 24px;  
    margin-bottom: 20px;  
}  
 
.footer-column a {  
    color: white;  
    text-decoration: none;  
    margin-bottom: 15px;  
    font-size: 18px;  
}  
 
.footer-column a:hover {  
    color: #f5b642;  
}  
 
.footer-column p {   
    font-size: 18px;   
    line-height: 1.5;   
    margin: 0 0 2px;   
}  
 
.footer-logo {  
    font-size: 80px;  
    font-weight: 200;  
    margin-top: 40px;  
    white-space: nowrap;  
}


/* =========================
    PENGATURAN RESPONSIF (HP & LAPTOP)
========================= */

@media (max-width: 768px) {
    body {
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }

    /* Navbar HP */
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        position: relative;
        background: #35342d; /* Menyesuaikan latar belakang agar terbaca */
    }

    .nav-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-left a {
        font-size: 14px;
        padding: 8px 15px;
    }

    .language {
        width: 100%;
        justify-content: center;
        font-size: 18px;
        padding: 10px;
    }

    /* Hero Section HP */
    .hero {
        height: auto;
        padding: 80px 20px 50px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
    }

    .hero-content p {
        font-size: 1.1rem !important;
    }

    /* Section Tentang (About) HP */
    .about {
        padding: 30px 20px !important;
    }

    .about-header {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .about-header h2,
    .about-header p {
        width: 100% !important;
        font-size: 1.8rem !important;
    }

    .about-header p {
        font-size: 1rem !important;
    }

    .about-image {
        width: 100% !important;
        height: 280px !important;
        transform: scale(1) !important;
        border-radius: 20px !important;
    }

    /* Section Layanan (Services) HP */
    .services {
        padding: 30px 20px !important;
    }

    .services-title h2 {
        font-size: 2rem !important;
    }

    .services-container {
        grid-template-columns: 1fr !important; /* Berubah jadi 1 kolom */
        gap: 20px !important;
    }

    .service-image {
        height: 220px !important;
    }

    .service-card h3 {
        font-size: 1.2rem !important;
    }

    /* Jaringan Global HP */
    .global-network {
        padding: 30px 20px !important;
    }

    .global-header h2 {
        font-size: 2rem !important;
    }

    .global-header p {
        font-size: 1rem !important;
    }

    .global-cards {
        grid-template-columns: 1fr !important; /* Berubah jadi 1 kolom */
        gap: 20px !important;
    }

    .global-card {
        height: 250px !important;
    }

    .global-card h3 {
        font-size: 1.3rem !important;
        left: 20px;
        bottom: 20px;
    }

    /* Lokasi Kantor HP */
    .office-section {
        grid-template-columns: 1fr !important; /* Berubah bertumpuk ke bawah */
        padding: 20px !important;
    }

    .office-image, 
    .office-map {
        height: 250px !important;
        border-radius: 8px !important;
    }

    /* Layanan Lainnya / Slider HP */
    .extra-services {
        padding: 20px !important;
    }

    .extra-services-header h2 {
        font-size: 2rem !important;
    }

    .extra-services-header p {
        font-size: 1rem !important;
    }

    .service-slider {
        flex-direction: column; /* Tombol panah dan slider ditata ulang agar pas di HP */
    }

    .service-slide {
        max-height: none !important;
        min-height: auto !important;
        padding: 15px !important;
    }

    .service-slide h3 {
        font-size: 1.2rem !important;
    }

    .service-slide p {
        font-size: 0.95rem !important;
    }

    .slider-btn {
        display: none; /* Sembunyikan tombol panah samping di HP jika pakai sistem sentuh/dot */
    }

    /* Footer HP */
    .footer {
        padding: 30px 20px !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important; /* Kolom footer menjadi 1 baris ke bawah */
        gap: 30px !important;
    }

    .footer-column h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px;
    }

    .footer-column a, 
    .footer-column p {
        font-size: 1rem !important;
    }

    .footer-logo {
        font-size: 3rem !important;
        margin-top: 20px;
        text-align: center;
    }
}