/* 85Cargo Style */
/* ============================================================== */

:root {
    --primary-black: #000000;
    --primary-gold: #D4AF37;
    --primary-brown: #8B4513;
    --primary-white: #FFFFFF;
    --secondary-gold: #F4E4BC;
    --dark-brown: #5D2F0A;
    --light-gray: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Navbar Styles */
.navbar-custom {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: blur(1px);        /* nilai dirubah, seblmnya 10px */
    -webkit-backdrop-filter: blur(1px);    /* nilai dirubah, seblmnya 10px */
}

.navbar-scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
    filter: brightness(1.2);
}

.navbar-scrolled .navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--primary-white) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Back to Top Button - FITUR BARU */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px) scale(0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.1s ease;
}

/* Mobile Responsiveness untuk Back to Top */
@media (max-width: 768px) {
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(212,175,55,0.3));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212,175,55,0.6);
    color: var(--primary-black);
}

/* Tracking Section - FITUR BARU */
.tracking-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-white), rgba(212,175,55,0.05));
    position: relative;
    overflow: hidden;
}

.tracking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tracking-container {
    position: relative;
    z-index: 2;
}

.tracking-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.tracking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
}

.tracking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
    transition: left 0.5s;
}

.tracking-card:hover::before {
    left: 100%;
}

.tracking-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary-black);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.tracking-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.7rem;
    text-align: center;
}

.tracking-subtitle {
    color: var(--primary-brown);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* Form Floating Labels - Enhanced */
.form-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-floating > .form-control {
    height: 60px;
    padding: 1rem 0.75rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-floating > .form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    background: var(--primary-white);
    transform: scale(1.02);
}

.form-floating > .form-control:not(:placeholder-shown) {
    background: var(--primary-white);
}

.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: all 0.1s ease-in-out;
    color: var(--primary-brown);
    font-weight: 500;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    color: var(--primary-gold);
    font-weight: 600;
}

.tracking-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.tracking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    color: var(--primary-black);
}

.tracking-btn:active {
    transform: translateY(0);
}

.tracking-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.tracking-btn:hover i {
    transform: translateX(5px);
}

/* Input Icons */
.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.form-floating:focus-within .input-icon {
    color: var(--primary-brown);
    transform: translateY(-50%) scale(1.1);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray), rgba(212,175,55,0.1));
}

.glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.feature-card {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}
/* ============================================================== */
/* EQUAL HEIGHT CARDS FIX - Services & Features Section */
/* ============================================================== */

/* Services Section - Equal Height Fix */
.services-section .row {
    display: flex;
    flex-wrap: wrap;
}

.services-section .glass-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px; /* Minimum height untuk desktop */
}

.services-section .glass-card .service-icon {
    flex-shrink: 0; /* Icon tidak berubah ukuran */
}

.services-section .glass-card h4 {
    flex-shrink: 0; /* Title tidak berubah ukuran */
    margin-bottom: 1rem;
    min-height: 2.5rem; /* Tinggi minimum untuk title */
}

.services-section .glass-card p {
    flex-grow: 1; /* Konten text mengisi ruang tersisa */
    margin-bottom: 0;
}

/* Features Section - Equal Height Fix */
.features-section .row {
    display: flex;
    flex-wrap: wrap;
}

.features-section .feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px; /* Minimum height untuk desktop */
}

.features-section .feature-card .feature-icon {
    flex-shrink: 0; /* Icon tidak berubah ukuran */
}

.features-section .feature-card h5 {
    flex-shrink: 0; /* Title tidak berubah ukuran */
    margin-bottom: 1rem;
    min-height: 2rem; /* Tinggi minimum untuk title */
}

.features-section .feature-card p {
    flex-grow: 1; /* Konten text mengisi ruang tersisa */
    margin-bottom: 0;
}

/* Mobile Responsive - Equal Height Cards */
@media (max-width: 768px) {
    .services-section .glass-card {
        min-height: 280px; /* Tinggi minimum untuk mobile */
        margin-bottom: 1.5rem;
    }
    
    .features-section .feature-card {
        min-height: 250px; /* Tinggi minimum untuk mobile */
        margin-bottom: 1.5rem;
    }
    
    .services-section .glass-card h4 {
        min-height: 2rem; /* Kurangi tinggi title di mobile */
    }
    
    .features-section .feature-card h5 {
        min-height: 1.5rem; /* Kurangi tinggi title di mobile */
    }
}

/* Tablet Responsive - Equal Height Cards */
@media (min-width: 769px) and (max-width: 991px) {
    .services-section .glass-card {
        min-height: 320px; /* Tinggi minimum untuk tablet */
    }
    
    .features-section .feature-card {
        min-height: 290px; /* Tinggi minimum untuk tablet */
    }
}

/* Large Desktop - Increase Height */
@media (min-width: 1200px) {
    .services-section .glass-card {
        min-height: 380px; /* Tinggi lebih besar untuk layar besar */
    }
    
    .features-section .feature-card {
        min-height: 350px; /* Tinggi lebih besar untuk layar besar */
    }
}


/* Technology Section */
.technology-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-black), var(--dark-brown));
    color: var(--primary-white);
}

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.2);
}

.tech-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--primary-gold);
}

/* Fleet Section */
.fleet-section {
    padding: 30px 0;    /*perubahan nilai, seblmnya 100px */
    position: relative;
    background: url('../img/cargolog-1.jpg') center/cover fixed;
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(139,69,19,0.6));
}

.fleet-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
    margin: 0 15px;
}

/* Fleet Card Image Responsiveness - PERBAIKAN UTAMA */
.fleet-card img {
    width: 100%;
    /* height: 350px; */
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Desktop - tinggi image diperkecil agar teks terlihat */
@media (min-width: 992px) {
    .fleet-card img {
        /* height: 180px;
        max-height: 180px; */
        height: 200px;          /* baris perbaikan */
        max-height: 200px;                /* baris perbaikan */
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .fleet-card img {
        height: 200px;
        max-height: 200px;
    }
}

/* Mobile - tetap fleksibel */
@media (max-width: 767px) {
    .fleet-card img {
        height: auto;
        max-height: 250px;
    }
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, var(--primary-black), var(--dark-brown));
    color: var(--primary-white);
    padding: 60px 0 20px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar-scrolled .navbar-brand img {
        height: 30px;
    }

    .tracking-btn {
        font-size: 0.8rem;
        font-weight: 550;
    }
}

/* Burger Menu - PERBAIKAN WARNA PUTIH */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}



/* ============ Style For About-Services-Contact ============ */

.hero-sections {
    height: 325px;
    position: relative;
    overflow: hidden;
    background: url('../img/herologistiksinematik.png') center/cover;
}

.hero-sections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(139,69,19,0.4));
    z-index: 1;
}

.hero-sections::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(0.5px);
    transform: scaleX(1.02);
    z-index: 0;
}

.hero-contents {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.hero-titles {
    font-size: 2rem;
    font-weight: 675;
    margin-bottom: 0.3rem;
    text-shadow: 2px 3px 4px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease;
}

.hero-subtitles {
    font-size: 1.2rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Content Section */
.content-section {
    padding: 100px 0;
    background: var(--primary-white);
}

/* About Section */
.about-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
    transition: left 0.5s;
}

.about-card:hover::before {
    left: 100%;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-black);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray), rgba(212,175,55,0.05));
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.3);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--primary-white);
}

.service-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-black);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(360deg);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray), rgba(212,175,55,0.05));
}

.feature-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Segmentation Section */
.segmentation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-black), var(--dark-brown));
    color: var(--primary-white);
}

.segment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.segment-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.2);
}

.segment-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--primary-white);
}

.contact-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.2);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
    transition: left 0.5s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-black);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Contact Form */
.form-floating > .form-control {
    height: 60px;
    padding: 1rem 0.75rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    background: var(--primary-white);
}

.form-floating > textarea.form-control {
    height: 120px;
    resize: vertical;
}

.form-floating > label {
    color: var(--primary-brown);
    font-weight: 500;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-gold);
    font-weight: 600;
}

.contact-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    color: var(--primary-black);
}

/* Google Maps */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray), rgba(212,175,55,0.05));
}

.google-maps {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px;
}



/* Mobile Responsive For About-Services-Contact*/
@media (max-width: 768px) {
    .hero-titles {
        font-size: 1.5rem;
        margin-top: 20px;
    }
    
    .hero-subtitles {
        font-size: 0.9rem;
    }
    
    .hero-sections {
        height: 275px;
        padding: 30px 0;
        /* margin-top: 50px; */
    }

    .content-section, .values-section {
        padding: 60px 0;
    }
    
    .about-card {
        padding: 2rem;
    }

    .services-section, .features-section, .segmentation-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 2rem;
    }

    .contact-section, .map-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .google-maps {
        padding-bottom: 75%;
    }
}


/* ============================================================== */
/* TRACKING PAGE STYLES */
/* ============================================================== */

/* Tracking Hero Section */
.tracking-hero {
    height: 200px;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.7), 
        rgba(212,175,55,0.3)), 
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tracking-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, var(--primary-white));
    z-index: 2;
}

.tracking-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
}

.tracking-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

/* Tracking Content */
.tracking-content {
    padding: 60px 0 100px;
    background: var(--primary-white);
}

.tracking-header {
    position: relative;
}

.tracking-titles {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.tracking-subtitles {
    color: var(--primary-brown);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.tracking-resi {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(212,175,55,0.3);
    transition: all 0.3s ease;
}

.tracking-resi:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212,175,55,0.4);
}

.resi-label {
    color: var(--primary-black);
    font-weight: 500;
    margin-right: 8px;
}

.resi-number {
    color: var(--primary-black);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Shipment Data Card */
.shipment-data-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shipment-data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212,175,55,0.2);
}

.shipment-data-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
    transition: left 0.5s;
}

.shipment-data-card:hover::before {
    left: 100%;
}

.data-row {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212,175,55,0.1);
    transition: all 0.3s ease;
}

.data-row:last-child {
    border-bottom: none;
}

.data-row:hover {
    background: rgba(212,175,55,0.05);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 10px;
}

.data-label {
    font-weight: 600;
    color: var(--primary-brown);
    min-width: 120px;
    margin-right: 2rem;
    position: relative;
}

.data-label::after {
    content: ':';
    margin-left: 5px;
}

.data-value {
    flex: 1;
    color: var(--primary-black);
    font-weight: 500;
}

/* Professional Divider */
.professional-divider {
    display: flex;
    align-items: center;
    margin: 3rem 0;
    padding: 0 2rem;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    position: relative;
    overflow: hidden;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.divider-icon {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
    box-shadow: 0 8px 25px rgba(212,175,55,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.divider-icon i {
    color: var(--primary-black);
    font-size: 1.2rem;
}

/* Timeline Section */
.timeline-section {
    margin-top: 2rem;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(139,69,19,0.2);
    border: 3px solid rgba(139,69,19,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    z-index: 3;
}

.timeline-marker.active {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.5);
    animation: activePulse 2s infinite;
}

@keyframes activePulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(212,175,55,0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(212,175,55,0.8);
        transform: scale(1.05);
    }
}

.timeline-marker i {
    color: var(--primary-brown);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.timeline-marker.active i {
    color: var(--primary-black);
}

.timeline-marker::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-gold), rgba(212,175,55,0.3));
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item:last-child .timeline-marker::before {
    display: none;
}

.timeline-content {
    flex: 1;
    background: var(--primary-white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item.active .timeline-content {
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(244,228,188,0.3));
    border-color: var(--primary-gold);
    transform: scale(1.02);
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212,175,55,0.2);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item.active .timeline-date {
    color: var(--dark-brown);
    font-weight: 700;
}

.timeline-status {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.3rem;
}

.timeline-location {
    font-size: 0.9rem;
    color: var(--primary-brown);
    opacity: 0.8;
}

/* Back to Track Button */
.back-to-track {
    margin-top: 3rem;
}

.btn-track-another {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.btn-track-another:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212,175,55,0.6);
    color: var(--primary-black);
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tracking-hero {
        height: 150px;
    }
    
    .tracking-hero-title {
        font-size: 1.8rem;
    }
    
    .tracking-hero-subtitle {
        font-size: 1rem;
    }
    
    .tracking-content {
        padding: 40px 0 60px;
    }
    
    .tracking-title {
        font-size: 1.8rem;
    }
    
    .shipment-data-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .data-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8rem 0;
    }
    
    .data-label {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 0.3rem;
    }
    
    .timeline-item {
        margin-bottom: 1.5rem;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }
    
    .timeline-marker i {
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .professional-divider {
        margin: 2rem 0;
        padding: 0 1rem;
    }
    
    .divider-icon {
        width: 40px;
        height: 40px;
        margin: 0 1rem;
    }
}


/* ============================================================== */
/* TESTIMONIALS SECTION */
/* ============================================================== */

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray), rgba(212,175,55,0.05));
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1586953208448-b95a79798f07?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.05;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-carousel {
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
    transition: left 0.6s;
}

.testimonial-card:hover::before {
    left: 100%;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1.5rem;
}

.author-name {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.author-position {
    color: var(--primary-brown);
    font-size: 0.9rem;
    opacity: 0.8;
}

.rating {
    color: var(--primary-gold);
    font-size: 1rem;
}

.rating i {
    margin: 0 2px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    filter: invert(1);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-brown);
    opacity: 0.5;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--primary-gold);
    opacity: 1;
    transform: scale(1.2);
}

/* ============================================================== */
/* CLIENTS SECTION */
/* ============================================================== */

/* style client-section lama-start */
/* .clients-section {
    padding: 100px 0;
    background: var(--primary-white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.client-item {
    text-align: center;
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.client-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

.client-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-white);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.client-item:hover .client-logo {
    transform: scale(1.1);
    border-color: var(--secondary-gold);
}

.client-item:hover .client-logo img {
    filter: grayscale(0%);
}

.client-name {
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.client-item:hover .client-name {
    color: var(--primary-gold);
} */
/* style client-section lama-end */
/* style client-section baru-start */
/* ============================================================== */
/* CLIENTS SECTION - OPTIMIZED FOR 37 IMAGES */
/* ============================================================== */

.clients-section {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.03) 0%, 
        rgba(212, 175, 55, 0.08) 50%, 
        rgba(212, 175, 55, 0.03) 100%
    );
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.clients-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 
        inset 0 50px 100px -50px rgba(212, 175, 55, 0.1),
        inset 0 -50px 100px -50px rgba(212, 175, 55, 0.1);
    pointer-events: none;
}

/* Section Header */
.clients-section .section-header {
    margin-bottom: 60px;
}

.clients-title {
    color: var(--primary-black);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Carousel Wrapper */
.clients-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.clients-carousel {
    display: flex;
    gap: 60px;
    align-items: center;
    width: fit-content;
    /* Animation akan diatur via JavaScript berdasarkan jumlah slides */
    animation: scroll-left-37 120s linear infinite;
}
/* ---- */
/* Alternative: Simple infinite scroll for many images */
/* .clients-carousel {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: scroll-infinite 150s linear infinite;
} */
/* Simple infinite scroll - works with any number of images */
/* @keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
} */
/* ---- */

/* Client Slide - Optimized Size */
.client-slide {
    flex-shrink: 0;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
}

/* Client Logo */
.client-logo {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Default: Grayscale */
    filter: grayscale(100%) opacity(0.6);
    transform: scale(1);
}

/* Hover Effects */
.client-slide:hover .client-logo {
    /* On hover: Full color + slightly bigger */
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Animation untuk 37 images - akan disesuaikan dinamis via JS */
@keyframes scroll-left-37 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-37 * (180px + 60px))); /* 37 slides * (width + gap) */
    }
}

/* Pause animation on hover */
.clients-carousel:hover {
    animation-play-state: paused;
}

/* Responsive Design - Adjusted for more images */
@media (max-width: 992px) {
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-carousel {
        gap: 40px;
        animation: scroll-left-37-tablet 100s linear infinite;
    }
    
    .client-slide {
        min-width: 150px;
        padding: 15px 20px;
    }
    
    .client-logo {
        max-width: 120px;
        max-height: 50px;
    }
    
    @keyframes scroll-left-37-tablet {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-37 * (150px + 40px))); }
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 40px 0;
    }
    
    .clients-carousel {
        gap: 30px;
        animation: scroll-left-37-mobile 80s linear infinite;
    }
    
    .client-slide {
        min-width: 120px;
        padding: 10px 15px;
        height: 80px;
    }
    
    .client-logo {
        max-width: 100px;
        max-height: 40px;
    }
    
    @keyframes scroll-left-37-mobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-37 * (120px + 30px))); }
    }
}

@media (max-width: 576px) {
    .clients-carousel {
        animation: scroll-left-37-small 60s linear infinite;
        gap: 20px;
    }
    
    .client-slide {
        min-width: 100px;
        padding: 8px 12px;
    }
    
    .client-logo {
        max-width: 80px;
        max-height: 35px;
    }
    
    @keyframes scroll-left-37-small {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-37 * (100px + 20px))); }
    }
}

/* Alternative Slick Implementation (if preferred) */
/*
.clients-slick-enabled .clients-carousel {
    animation: none;
}

.slick-dots {
    display: none !important;
}

.slick-arrow {
    display: none !important;
}

.clients-slick-carousel.slick-initialized {
    display: block;
}

.clients-slick-carousel .slick-slide {
    padding: 0 15px;
}
*/
/* style client-section baru-end */



/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-section,
    .clients-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin: 1rem 0;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: -60px;
    }
    
    .carousel-control-next {
        right: -60px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .client-logo {
        width: 80px;
        height: 80px;
    }
    
    .client-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* ============================================================== */
/* DELIVERY PHOTOS - FIX THUMBNAIL DISPLAY */
/* ============================================================== */

.delivery-photos {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    margin-top: 1rem;
}

.photos-title {
    color: #155724;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.photos-gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    max-width: 200px;
}

.photo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-gold);
}

.delivery-photo-link {
    display: block;
    position: relative;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    /* PENTING: Hapus background yang menutupi gambar */
}

.delivery-photo {
    width: 150px !important;
    height: 120px !important;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block !important;
    /* PENTING: Pastikan gambar selalu visible */
    opacity: 1 !important;
    /* HAPUS background placeholder yang menutupi gambar */
    background: none !important;
}

.delivery-photo:hover {
    transform: scale(1.02);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
    pointer-events: none; /* PENTING: Jangan block click ke gambar */
}

.photo-overlay i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--primary-gold);
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-caption {
    text-align: center;
    margin-top: 8px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
}

.photo-caption small {
    color: #666;
    font-size: 0.75rem;
    font-style: italic;
}

/* HAPUS semua CSS yang berpotensi menyembunyikan gambar */
/* .delivery-photo[src=""] { */
    /* HAPUS: display: none; */
/* } */

/* .delivery-photo { */
    /* HAPUS background placeholder apapun */
/* } */

/* Delivery Animation - tetap ada */
.delivery-truck-animation {
    overflow: hidden;
    width: 100%;
    height: 60px;
    position: relative;
}

@keyframes moveRight {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    color: #dc3545;
    font-weight: bold;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .photos-gallery {
        gap: 15px;
        justify-content: center;
    }
    
    .photo-item {
        max-width: 160px;
        padding: 8px;
    }
    
    .delivery-photo {
        width: 120px !important;
        height: 90px !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .photo-overlay {
        font-size: 0.75rem;
    }
    
    .photo-overlay i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .photos-gallery {
        gap: 10px;
    }
    
    .photo-item {
        max-width: 140px;
        padding: 6px;
    }
    
    .delivery-photo {
        width: 100px !important;
        height: 75px !important;
        opacity: 1 !important;
        display: block !important;
    }
}


/* GLightbox Custom Styles */
.glightbox-clean .gslide-description {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
}

.glightbox-clean .gslide-title {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .photos-gallery {
        gap: 10px;
    }
    
    .delivery-photo {
        width: 100px;
        height: 75px;
    }
    
    .photo-overlay {
        font-size: 0.7rem;
    }
    
    .photo-overlay i {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }
}

@media (max-width: 480px) {
    .photos-gallery {
        justify-content: center;
    }
    
    .delivery-photo {
        width: 90px;
        height: 68px;
    }
}


/* Photo Error State - TAMBAHAN */
.photo-item.error .delivery-photo {
    border: 2px dashed #ccc !important;
    opacity: 0.7;
}

.photo-item.error .photo-overlay {
    background: rgba(220, 53, 69, 0.8);
}

.photo-item.error .photo-overlay span {
    font-size: 0.7rem;
    text-align: center;
}

/* GLightbox Loading Fix */
.glightbox-clean .gloader {
    background: rgba(0, 0, 0, 0.8);
}

.glightbox-clean .gloader .gloader-inner {
    border: 3px solid var(--primary-gold);
    border-top: 3px solid transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ensure images load properly */
.delivery-photo {
    object-fit: cover;
    object-position: center;
    background: #f8f9fa;
}

.delivery-photo[src=""] {
    display: none;
}


/* Image Loading State - TAMBAHAN */
.delivery-photo {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.delivery-photo.loaded {
    opacity: 1;
}

.photo-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 90px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    color: #999;
    font-size: 0.8rem;
    text-align: center;
}

.photo-error i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #ccc;
}


/* ============================================================== */
/* AREA LAYANAN SECTION - CLEAN SIMPLE VERSION */
/* ============================================================== */

.area-layanan {
    /* background: #ffffff; */
    background: var(--primary-white);
    padding: 100px 0;
    position: relative;
}

/* Section Header */
.area-layanan .section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.area-layanan .section-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.area-layanan .section-title {
    color: var(--primary-black);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.area-layanan .section-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Map Container - Simple & Clean */
.map-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.indonesia-map {
    width: 200%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.indonesia-map:hover {
    transform: scale(1.02);
}

/* Slide Up Animation for Map */
[data-aos="slide-up"] {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos="slide-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .area-layanan {
        padding: 80px 0;
    }
    
    .area-layanan .section-title {
        font-size: 2rem;
    }
    
    .indonesia-map {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .area-layanan {
        padding: 60px 0;
    }
    
    .area-layanan .section-title {
        font-size: 1.8rem;
    }
    
    .area-layanan .section-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .indonesia-map {
        max-width: 500px;
    }
    
    .area-layanan .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .area-layanan .section-title {
        font-size: 1.5rem;
    }
    
    .indonesia-map {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .area-layanan .section-badge {
        font-size: 12px;
        padding: 6px 20px;
    }
}



/* ============================================================== */
/* EXPRESS PARTNERS SECTION - REVERSE DIRECTION & DARKER BACKGROUND */
/* ============================================================== */
.express-partners-section {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.08) 0%, 
        rgba(212, 175, 55, 0.15) 50%, 
        rgba(212, 175, 55, 0.08) 100%
    );
    padding: 60px 0; /* Lebih pendek dari clients-section */
    position: relative;
    overflow: hidden;
}

.express-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.express-partners-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 
        inset 0 30px 80px -30px rgba(212, 175, 55, 0.2),
        inset 0 -30px 80px -30px rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

/* Section Header */
.express-partners-section .section-header {
    margin-bottom: 50px; /* Lebih kecil dari clients */
}

.express-title {
    color: var(--primary-black);
    font-size: 1.3rem; /* Sedikit lebih kecil */
    font-weight: 600;
    margin-bottom: 0;
    opacity: 0.85;
}

/* Carousel Wrapper */
.express-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.express-carousel {
    display: flex;
    gap: 50px; /* Sedikit lebih rapat */
    align-items: center;
    width: fit-content;
    /* ARAH BERLAWANAN - KE KANAN */
    animation: scroll-right-15 60s linear infinite;
}

/* Express Slide - Sedikit lebih kecil */
.express-slide {
    flex-shrink: 0;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px; /* Lebih kecil dari client-slide */
    height: 80px; /* Lebih pendek */
}

/* Express Logo */
.express-logo {
    max-width: 120px; /* Lebih kecil dari client-logo */
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Default: Grayscale */
    filter: grayscale(100%) opacity(0.65);
    transform: scale(1);
}

/* Hover Effects */
.express-slide:hover .express-logo {
    /* On hover: Full color + slightly bigger */
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08); /* Sedikit lebih kecil dari clients */
}

/* Animation KE KANAN (berlawanan dari clients) */
@keyframes scroll-right-15 {
    0% {
        transform: translateX(calc(-15 * (160px + 50px))); /* Start dari kiri */
    }
    100% {
        transform: translateX(0); /* End di kanan */
    }
}

/* Pause animation on hover */
.express-carousel:hover {
    animation-play-state: paused;
}

/* Responsive Design - Adjusted for express partners */
@media (max-width: 992px) {
    .express-partners-section {
        padding: 50px 0;
    }
    
    .express-carousel {
        gap: 35px;
        animation: scroll-right-15-tablet 50s linear infinite;
    }
    
    .express-slide {
        min-width: 140px;
        padding: 12px 18px;
        height: 70px;
    }
    
    .express-logo {
        max-width: 100px;
        max-height: 42px;
    }
    
    @keyframes scroll-right-15-tablet {
        0% { transform: translateX(calc(-15 * (140px + 35px))); }
        100% { transform: translateX(0); }
    }
}

@media (max-width: 768px) {
    .express-partners-section {
        padding: 40px 0;
    }
    
    .express-carousel {
        gap: 25px;
        animation: scroll-right-15-mobile 40s linear infinite;
    }
    
    .express-slide {
        min-width: 110px;
        padding: 10px 15px;
        height: 60px;
    }
    
    .express-logo {
        max-width: 85px;
        max-height: 35px;
    }
    
    @keyframes scroll-right-15-mobile {
        0% { transform: translateX(calc(-15 * (110px + 25px))); }
        100% { transform: translateX(0); }
    }
    
    .express-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .express-carousel {
        animation: scroll-right-15-small 30s linear infinite;
        gap: 20px;
    }
    
    .express-slide {
        min-width: 90px;
        padding: 8px 12px;
        height: 50px;
    }
    
    .express-logo {
        max-width: 70px;
        max-height: 30px;
    }
    
    @keyframes scroll-right-15-small {
        0% { transform: translateX(calc(-15 * (90px + 20px))); }
        100% { transform: translateX(0); }
    }
    
    .express-title {
        font-size: 1rem;
    }
}
