/* ============================================
   RESET & BASE STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1e3a8a;
    --color-secondary: #3b82f6;
    --color-accent: #f59e0b;
    --color-light: #f8fafc;
    --color-dark: #1e293b;
    --color-text: #334155;
    --color-border: #e2e8f0;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-secondary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 1001;
    border-radius: 0 0 var(--border-radius) 0;
}

.skip-to-content:focus {
    top: 0;
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
.main-header {
    background: white;
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.main-header.scrolled {
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.98);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 40px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform var(--transition-normal);
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 55px;
    width: auto;
    transition: all var(--transition-normal);
}

.main-header.scrolled .logo-image {
    height: 45px;
}

/* Desktop Menu */
.desktop-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menu-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 12px 0;
    position: relative;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.menu-link i:first-child {
    font-size: 1rem;
    color: var(--color-secondary);
}

.menu-link:hover {
    color: var(--color-secondary);
}

.menu-link.active {
    color: var(--color-secondary);
}

.menu-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform var(--transition-normal);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: white;
    min-width: 280px;
    max-width: 350px;
    box-shadow: var(--shadow-heavy);
    border-radius: var(--border-radius-lg);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1001;
    border: 1px solid var(--color-border);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--color-text);
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, #f0f7ff, #e3f2fd);
    color: var(--color-secondary);
    padding-left: 25px;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--color-secondary);
}

.external-icon {
    margin-left: auto;
    font-size: 0.9em;
    opacity: 0.7;
}

/* Language Selector (Mengganti Search Form) */
.header-actions {
    flex-shrink: 0;
}

.language-selector {
    position: relative;
    z-index: 1002;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-light);
    border: 2px solid var(--color-border);
    border-radius: 50px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 600;
    color: var(--color-text);
    border: none;
}

.language-toggle:hover {
    background: white;
    border-color: var(--color-secondary);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
}

.language-toggle i:first-child {
    color: var(--color-secondary);
    font-size: 0.9rem;
}

.current-language {
    font-weight: 700;
    color: var(--color-primary);
    min-width: 25px;
}

.language-arrow {
    font-size: 0.7rem;
    transition: transform var(--transition-normal);
    color: var(--color-text);
    opacity: 0.7;
}

.language-selector.active .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    min-width: 180px;
    box-shadow: var(--shadow-heavy);
    border-radius: var(--border-radius-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 1003;
    border: 1px solid var(--color-border);
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 15px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-fast);
    color: var(--color-text);
}

.language-option:hover {
    background: linear-gradient(90deg, #f0f7ff, #e3f2fd);
    color: var(--color-secondary);
}

.language-flag {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.language-name {
    flex: 1;
    font-size: 0.9rem;
}

.language-code {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.8rem;
    opacity: 0.8;
}

.language-option.active .language-code {
    color: var(--color-secondary);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px;
    margin-left: 10px;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    padding: 0;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 999;
    overflow-y: auto;
    
    @media (max-width: 993px) {
    .mobile-menu {
        display: block !important; /* Tampilkan di mobile */
    }
}

@media (min-width: 993px) {
    .mobile-menu { 
        display: none !important; /* Sembunyikan di desktop */
    }
}
}

.mobile-menu.active {
    transform: translateX(0);
}

/* ============================================
   HERO SECTION - REVISED
============================================ */
.hero-section {
    background-image: url('images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    position: relative;
    height: 95vh; /* Diperbesar */
    min-height: 500px; /* Diperbesar */
    max-height: 700px; /* Diperbesar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    padding: 35px 40px;
    background: rgba(30, 41, 59, 0.104); /* Abu transparan mengganti biru */
    border-radius: 12px;
    backdrop-filter: blur(5px);
    text-align: center; /* Memastikan teks di tengah */
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* HERO SEARCH FORM - GANTI TOMBOL */
.hero-search-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 5px;
    max-width: 600px;
    margin: 30px auto 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: block; /* Pastikan ditampilkan */
}

/* Mobile adjustments - TAMBAHKAN INI */
@media (max-width: 992px) {
    .hero-search-form {
        max-width: 90%;
        border-radius: 40px;
        padding: 4px;
        margin-top: 25px;
    }
    
    .hero-search-input {
        padding: 13px 18px;
        font-size: 1rem;
    }
    
    .hero-search-button {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 768px) {
    /* HERO SEARCH FORM */
    .hero-search-form {
        height: 40px;
        min-height: 40px;
        border-radius: 30px;
        padding: 0;
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.95);
        overflow: hidden;
    }
    
    /* INPUT */
    .hero-search-input {
        flex: 1;
        height: 100%;
        padding: 0 15px;
        font-size: 14px;
        border: none;
        background: transparent;
        outline: none;
        color: #333;
    }
    
    /* BUTTON - NUKLIR RESET */
    .hero-search-button {
        /* RESET SEMUA */
        all: unset !important;
        box-sizing: border-box !important;
        
        /* DIMENSI */
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        margin: 4px !important;
        
        /* STYLE */
        background: #3b82f6 !important;
        color: white !important;
        border-radius: 50% !important;
        
        /* LAYOUT */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0;
        
        /* TEXT */
        font-size: 14px !important;
        font-family: inherit !important;
        cursor: pointer !important;
        
        /* EFFECT */
        transition: background 0.3s ease !important;
    }
    
    .hero-search-button:hover {
        background: #2563eb !important;
    }
    
    /* HAPUS ICON STYLING LAIN */
    .hero-search-button i,
    .hero-search-button svg {
        font-size: 14px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}


@media (max-width: 576px) {
    .hero-search-form {
        border-radius: 30px;
        padding: 2px;
        margin-top: 15px;
        max-width: 100%;
    }
    
    .hero-search-input {
        padding: 9px 14px;
        font-size: 0.9rem;
    }
    
    .hero-search-input::placeholder {
        font-size: 0.85rem;
    }
    
    .hero-search-button {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}
.hero-search-wrapper {
    display: flex;
    align-items: center;
    padding: 5px;
}

.hero-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: var(--color-dark);
    outline: none;
    width: 100%;
}

.hero-search-input::placeholder {
    color: #666;
    font-size: 1rem;
}

.hero-search-button {
    background: var(--color-secondary);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.hero-search-button:hover {
    background: #2563eb;
    transform: scale(1.05);
}

/* Hide hero buttons */
.hero-buttons {
    display: none !important;
}

/* ============================================
   MAIN CONTENT
============================================ */
.page-content {
    padding-top: 0;
    border:  solid #e5ebe6; /* Border abu-abu terang */
}

/* Sections Spacing */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Services Section */
.services-section {
    padding: 70px 0;
    background: var(--color-light);
       background-color: #e1e3e7 !important;
    margin-bottom: 0px;
    text-align: center; /* Memastikan teks di tengah */
    border: 3px solid rgb(195, 198, 201)
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 0px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    text-align: center;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--color-secondary);
}

/* Gambar dengan corner accent */
.service-image-container {
    position: relative;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Gambar utuh, tidak terpotong */
    object-position: center;
    transition: transform 0.5s ease;
}


/* Gambar dengan overlay title */
.image-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
}


.service-title {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.service-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    margin-top: auto;
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 12px;
    color: var(--color-primary);
}

/* Projects Section */
.projects-section {
    padding: 70px 0;
    background: rgb(234, 239, 243);
    margin-bottom: 0px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Project Cards - GANTI DENGAN INI */
.project-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
}

.project-image-container {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background: #f5f5f5;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}


.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.project-image {
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 3.5rem;
    color: white;
    opacity: 0.8;
}

.project-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.project-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    margin-top: auto;
    font-size: 0.95rem;
}

.project-link:hover {
    gap: 12px;
    color: var(--color-primary);
}

/* Testimonials Section */
.testimonials-section {
    padding: 70px 0;
    background: var(--color-light);
    margin-bottom: 0px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    padding-left: 30px;
}

.testimonial-content::before {
    content: '"';
    font-size: 3.5rem;
    color: var(--color-secondary);
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: -15px;
    font-family: Georgia, serif;
}

.testimonial-author {
    border-top: 2px solid var(--color-border);
    padding-top: 18px;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact CTA */
.contact-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: white;
    text-align: center;
    margin-bottom: 0px;
}

.cta-title {
    font-size: 2.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-3px);
}

.btn-large {
    padding: 14px 30px;
    font-size: 1rem;
}

/* ============================================
   FOOTER - REVISED FOR MOBILE
============================================ */
.main-footer {
    background: var(--color-dark);
    color: white;
    padding-top: 50px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 10px;
    align-items: start;
}

.footer-col {
    padding: 0;
}

/* Company Info - ALL WHITE */
.footer-company-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.footer-description {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer Titles - WHITE */
.footer-title {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 600;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 8px;
    display: inline-block;
    opacity: 0.95;
}

/* Footer Links - ALL WHITE */
.footer-links {
    list-style: none;
    text-align: left; /* Pastikan rata kiri */
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
    opacity: 1;
}

.footer-links a i {
    width: 18px;
    color: #ffffff;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Footer Contact - ALL WHITE */
.footer-contact {
    list-style: none;
    text-align: left; /* Pastikan rata kiri */
     font-size: 0.85rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.5;
    opacity: 0.85;
    text-align: left; /* Pastikan teks rata kiri */
}

.footer-contact i {
    color: #ffffff;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity var(--transition-fast);
    opacity: 0.85;
}

.footer-contact a:hover {
    color: #ffffff;
    opacity: 1;
}

.footer-contact span {
    display: block;
}

/* Social Media - WHITE */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: auto;
    justify-content: flex-start; /* Pastikan mulai dari kiri */
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 1rem;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #ffffff;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity var(--transition-fast);
    opacity: 0.8;
}

.footer-legal a:hover {
    color: #ffffff;
    opacity: 1;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   UTILITY COMPONENTS
============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2980b9;
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1200px) {
    .header-container {
        gap: 30px;
    }
    
    .menu-list {
        gap: 25px;
    }
    
    .hero-section {
        height: 60vh; /* Diperbesar */
        min-height: 450px; /* Diperbesar */
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-container {
        justify-content: space-between;
        gap: 20px;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-section {
        height: 55vh; /* Diperbesar */
        min-height: 400px; /* Diperbesar */
        padding: 60px 0;
        margin-bottom: 30px;
    }
    
    .hero-content {
        padding: 25px 20px;
        margin: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-search-form {
        max-width: 90%;
    }
    
    .services-section,
    .projects-section,
    .testimonials-section,
    .contact-cta {
        padding: 50px 0;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    /* FOOTER REVISI - Di HP kolom diatur rata kiri */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left; /* Ubah dari center menjadi left */
        gap: 30px;
    }
    
    .footer-company-name {
        white-space: normal;
        text-align: left; /* Rata kiri untuk nama perusahaan */
    }
    
    .footer-description {
        text-align: left; /* Rata kiri untuk deskripsi */
    }
    
    .footer-title {
        text-align: left; /* Rata kiri untuk judul */
    }
    
    .footer-social {
        justify-content: flex-start; /* Sosial media mulai dari kiri */
    }
    
    .footer-links a {
        justify-content: flex-start; /* Link rata kiri */
    }
    
    .footer-contact li {
        justify-content: flex-start; /* Kontak rata kiri */
        text-align: left;
    }
    
    /* Responsive Language Selector */
    .language-selector {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .hero-section {
        height: 50vh; /* Diperbesar */
        min-height: 350px; /* Diperbesar */
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-search-input {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .hero-search-button {
        width: 45px;
        height: 45px;
    }
    
    .section-container {
        padding: 0 20px;
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-content {
        font-size: 1rem;
        padding-left: 25px;
    }
    
    .testimonial-content::before {
        font-size: 3rem;
        top: -12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .language-toggle {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .current-language {
        min-width: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 45vh; /* Diperbesar */
        min-height: 300px; /* Diperbesar */
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-search-form {
        border-radius: 25px;
    }
    
    .hero-search-input {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        height: 60px;
        width: 60px;
        font-size: 2.5rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .project-image {
        height: 150px;
    }
    
    .image-placeholder {
        font-size: 3rem;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .footer-company-name {
        font-size: 1rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .language-toggle {
        padding: 5px 10px;
        font-size: 0.85rem;
    }
    
    .language-toggle i:first-child {
        font-size: 0.8rem;
    }
    
}

/* Mobile Menu Styles */
.mobile-nav {
    padding: 20px;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    color: var(--color-secondary);
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: transform var(--transition-normal);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding-left: 20px;
}

.mobile-dropdown.active {
    max-height: 800px;
}

.mobile-dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
}

.mobile-dropdown-link:hover {
    color: var(--color-secondary);
}

/* ===== MOBILE SEARCH ===== */
.mobile-search {
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
}

.mobile-search-form {
    display: flex;
    align-items: center;
    background: var(--color-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    height: 40px;
    min-height: 40px;
}

.mobile-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
    height: 100%;
    color: var(--color-text);
}

.mobile-search-input::placeholder {
    color: var(--color-text-light);
    opacity: 0.7;
}

.mobile-search-button {
    background: var(--color-secondary);
    border: none;
    color: white;
    padding: 0 20px;
    height: 100%;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.mobile-search-button:hover {
    background: var(--color-secondary-dark);
}

/* Print Styles */
@media print {
    .main-header,
    .mobile-menu,
    .back-to-top,
    .footer-social,
    .hero-search-form,
    .cta-buttons {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .page-content {
        padding-top: 0;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .menu-link,
    .dropdown-item,
    .service-link,
    .project-link,
    .footer-links a,
    .footer-contact a {
        text-decoration: underline;
    }
    
    .dropdown-menu {
        border: 2px solid black;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ===== OTHER MACHINE BUTTON ===== */
.other-machine-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 20;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.other-machine-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ============================================
  /* ============================================
   MORE DETAILS BUTTON & IMAGE ICON FIX - UPDATED
============================================ */

/* Image Icon Container - TANPA BULATAN BIRU */
.machinery-icon-img {
    width: 250px; /* DIPERBESAR */
    height: 250px; /* DIPERBESAR */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    padding: 0; /* HAPUS PADDING */
    overflow: hidden;
    /* HAPUS BACKGROUND BIRU DAN BORDER RADIUS */
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Image Icon - BESAR LANGSUNG */
.machinery-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Gambar proporsional */
    display: block;
    /* HAPUS FILTER PUTIH */
    filter: none !important;
    transition: transform 0.3s ease;
}

/* Hover effect untuk gambar */
.machinery-type-card:hover .machinery-icon-img img {
    transform: scale(1.05);
}

/* Adjust card untuk layout vertikal */
.machinery-type-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 25px;
    text-align: center;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 4px solid var(--color-secondary);
}

.machinery-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.machinery-type-card h3 {
    margin: 10px 0;
    font-size: 1.3rem;
    color: var(--color-primary);
    line-height: 1.3;
    min-height: 3.2em; /* Untuk konsistensi tinggi judul */
}

.machinery-type-card p {
    flex: 1;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
    min-height: 4.8em; /* Untuk konsistensi tinggi paragraf */
}

/* More Details Button */
.more-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    min-width: 150px;
    align-self: center;
}

.more-details-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.more-details-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.more-details-btn:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .machinery-icon-img {
        width: 100px; /* SESUAIKAN */
        height: 100px;
        margin-bottom: 20px;
    }
    
    .machinery-type-card {
        padding: 20px;
    }
    
    .machinery-type-card h3 {
        font-size: 1.15rem;
        min-height: 2.8em;
    }
    
    .machinery-type-card p {
        font-size: 0.9rem;
        min-height: 4.5em;
    }
    
    .more-details-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
        min-width: 135px;
    }
}

@media (max-width: 480px) {
    .machinery-icon-img {
        width: 85px;
        height: 85px;
        margin-bottom: 18px;
    }
    
    .machinery-type-card h3 {
        font-size: 1.05rem;
        min-height: 2.5em;
    }
    
    .machinery-type-card p {
        font-size: 0.85rem;
        min-height: 4em;
    }
    
    .more-details-btn {
        padding: 7px 16px;
        font-size: 0.8rem;
        min-width: 125px;
    }
}

/* Tombol Other Machine */
.other-machine-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
    z-index: 20;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.other-machine-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-dark) 100%);
    color: white;
}

/* Responsive untuk tombol */
@media (max-width: 768px) {
    .other-machine-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .other-machine-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        bottom: 10px;
        right: 10px;
    }
    
}
/* SUPER SIMPLE FIX */
@media (min-width: 768px) {
    /* Hide hamburger, show menu */
    .mobile-toggle { display: none !important; }
    .desktop-menu { display: block !important; }
    
    /* Stop horizontal scroll */
    body { overflow-x: hidden !important; max-width: 100% !important; }
}
/* FIX HORIZONTAL SCROLL / WHITE SPACE */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.container, .wrapper, .content {
    max-width: 100%;
    overflow-x: hidden;
}

/* Fix semua element tidak melebihi viewport */
* {
    box-sizing: border-box;
}

/* Fix images */
img {
    max-width: 100%;
    height: auto;
}
/* ===== FIX DESKTOP HEADER KEPOTONG SISI KANAN ===== */
@media (min-width: 769px) {
    /* Reset untuk desktop */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Header fix */
    .main-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important; /* Pakai vw, bukan % */
        max-width: 100% !important;
        z-index: 1000 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1) !important;
        backdrop-filter: blur(10px) !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Container header */
    .header-container {
        max-width: 1400px !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 30px !important;
        box-sizing: border-box !important;
    }
    
    /* Body padding untuk offset header fixed */
    body {
        padding-top: 80px !important;
    }
    
    /* Hero section offset */
    .hero-section {
        margin-top: 0 !important;
    }
}

/* Nuclear option untuk semua screen */
* {
    box-sizing: border-box !important;
    max-width: 100vw !important;
}

/* Fix khusus untuk header di semua device */
.main-header {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}
/* FIX HEADER NUTUPI HERO DI MOBILE */
@media (max-width: 992px) {
    body { padding-top: 70px !important; }
    .header-container { height: 70px !important; }
}

@media (max-width: 768px) {
    body { padding-top: 65px !important; }
    .header-container { height: 65px !important; }
    .hero-section { margin-top: 0px !important; }
}

@media (max-width: 576px) {
    body { padding-top: 60px !important; }
    .header-container { height: 60px !important; }
    .logo-image { height: 36px !important; }
    .hero-section { margin-top: 0px !important; }
}
/* News Section Styles */
.news-section {
    padding: 20px 20px 30px;
    background-color: #f8f9fa;
    margin-top: 0;
    border: 3px solid #e5e7eb; /* Border abu-abu terang */
}

.news-container {
    position: relative;
    max-width: 1200px;
    margin: 25px auto 0;
    display: flex;
    align-items: center;
}

.news-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 10px 5px;
    flex: 1;
}

.news-card {
    min-width: 270px;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    /* TAMBAH BORDER TIPIS */
    border: 1px solid #e5e7eb; /* Border abu-abu terang */
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    /* TAMBAH BORDER LEBIH TEBAL SAAT HOVER */
    border-color: #d1d5db; /* Border sedikit lebih gelap saat hover */
}

.news-image-container {
    height: 150px;
    overflow: hidden;
    /* Border hanya di bagian bawah gambar */
    border-bottom: 1px solid #e5e7eb;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-content {
    padding: 12px 15px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 11px;
    color: #666;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 15px;
    margin-bottom: 6px;
    color: #1e3a8a;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 10px;
    flex: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.2s ease;
}

.news-link:hover {
    color: #1e40af;
}

/* Border untuk tombol navigasi */
.news-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e5e7eb; /* Border tipis */
    color: #1e3a8a;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-nav-btn:hover {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a; /* Border berubah warna saat hover */
}

.news-nav-btn.prev-btn {
    left: -20px;
}

.news-nav-btn.next-btn {
    right: -20px;
}

.news-view-all {
    text-align: center;
    margin-top: 25px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: transparent;
    color: #1e3a8a;
    border: 1px solid #1e3a8a; /* Border untuk tombol */
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

/* Kurangi jarak antara About dan News */
.projects-section#about {
    padding-bottom: 30px;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .news-section {
        padding: 40px 15px 25px;
    }
    
    .news-card {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 30px 10px 20px;
    }
    
    .news-container {
        margin-top: 20px;
        flex-direction: column;
    }
    
    .news-slider {
        gap: 15px;
        padding: 8px 0;
    }
    
    .news-card {
        min-width: 240px;
        border-width: 1px; /* Pastikan border tetap tipis di mobile */
    }
    
    .news-image-container {
        height: 130px;
        border-bottom-width: 1px;
    }
    
    .news-content {
        padding: 10px 12px 12px;
    }
    
    .news-nav-btn {
        margin: 15px 5px;
        border-width: 1px;
    }
    
    .projects-section#about {
        padding-bottom: 20px;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 25px 8px 15px;
    }
    
    .news-container {
        margin-top: 15px;
    }
    
    .news-card {
        min-width: 220px;
        border: 1px solid #e5e7eb; /* Border tetap tipis */
    }
    
    .news-image-container {
        height: 110px;
    }
    
    .news-title {
        font-size: 14px;
    }
    
    .news-excerpt {
        font-size: 12px;
    }
    
    .btn-outline {
        padding: 8px 16px;
        font-size: 13px;
        border-width: 1px;
    }
}
/* Sub-dropdown Styling */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-submenu .submenu {
    display: none;
    position: absolute;
    right: 100%;
    top: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px;
    z-index: 1001;
}

.dropdown-submenu:hover .submenu {
    display: block;
}

.submenu .dropdown-item {
    padding: 8px 15px;
    white-space: nowrap;
}
/* Products Section - Smaller Version */
.products-section {
    background-color: #f9fafc;
    padding: 40px 0;
}

.products-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.products-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.product-card {
    flex: 0 0 160px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    height: 100px;
    overflow: hidden;
    border-bottom: 1px solid #f5f5f5;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 12px 10px;
    text-align: center;
}

.product-title {
    font-size: 13px;
    color: #1e3a8a;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.2;
}

.product-description {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
    margin-bottom: 8px;
    /* Fixed: Added standard line-clamp property */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* Standard property */
}

.products-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #1e3a8a;
    color: #1e3a8a;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 2;
}

.products-nav-btn i {
    font-size: 10px;
}

.products-nav-btn:hover {
    background: #1e3a8a;
    color: white;
    transform: scale(1.05);
}

.products-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.products-nav-btn:disabled:hover {
    background: white;
    color: #1e3a8a;
    transform: none;
}

.products-view-all {
    text-align: center;
    margin-top: 25px;
}

.products-view-all .btn {
    padding: 8px 16px;
    font-size: 13px;
}

/* Responsive untuk ukuran lebih kecil */
@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 140px;
    }
    
    .products-slider-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .products-slider-container {
        margin: 15px auto;
    }
    
    .product-card {
        flex: 0 0 130px;
    }
    
    .product-image-container {
        height: 80px;
    }
    
    .product-title {
        font-size: 12px;
    }
    
    .product-description {
        font-size: 10px;
        -webkit-line-clamp: 2;
        line-clamp: 2; /* Standard property untuk mobile */
    }
    
    .products-nav-btn {
        display: none;
    }
    
    .products-view-all .btn {
        padding: 6px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 25px 0;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .product-card {
        flex: 0 0 110px;
    }
    
    .product-image-container {
        height: 70px;
    }
    
    .product-content {
        padding: 8px 6px;
    }
    
    .product-title {
        font-size: 11px;
    }
    
    .product-description {
        font-size: 9px;
        -webkit-line-clamp: 2;
        line-clamp: 2; /* Standard property untuk mobile kecil */
    }
    
    .products-slider {
        gap: 10px;
    }
}