/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    /* Retina/High-DPI Display Optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

main {
    padding: 0;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
}

section.hero-slideshow {
    margin: 0 !important;
    padding: 0 !important;
    border: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0 20px;
}

.navbar.scrolled {
    background: #dc2626 !important;
    border-bottom: 1px solid #b91c1c;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.2) !important;
}

.navbar.scrolled .nav-link {
    color: #ffffff !important;
}

.navbar.scrolled .nav-link:hover {
    color: #fecaca !important;
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link-special {
    background: #ffffff !important;
    color: #dc2626 !important;
}

.navbar.scrolled .nav-link-special:hover {
    background: #fecaca !important;
    color: #dc2626 !important;
}

.navbar.scrolled .company-name {
    color: #ffffff !important;
}

.navbar.scrolled .logo-link .company-name {
    color: #ffffff !important;
}

.navbar.scrolled .logo-link:hover .company-name {
    color: #fecaca !important;
}

.navbar.scrolled .bar {
    background: #ffffff !important;
}

/* Logo tetap warna asli saat scroll agar tetap terlihat di background merah */
.navbar.scrolled .logo-image {
    filter: none;
}

.navbar:hover {
    box-shadow: none;
    border-bottom: 1px solid #d1d5db;
}

.navbar.scrolled:hover {
    border-bottom: 1px solid #991b1b;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3) !important;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    height: 70px;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: inherit;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
}

.logo-link:hover .company-name {
    color: #dc2626;
}

.logo-container {
    display: flex;
    align-items: center;
}

/* Logo Image - sedikit lebih kecil agar seimbang dengan teks PT. Nellco Indopharma
   - max-width: 100% agar tidak overflow di layar kecil
   - height + object-fit untuk proporsi konsisten di semua breakpoint
*/
.logo-image {
    height: 50px;
    width: auto;
    max-width: min(235px, 100%);
    object-fit: contain;
    object-position: left center;
    transition: all 0.3s ease;
    display: block;
    /* Responsive: ikuti ukuran container */
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.logo-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Fallback for logo if image not found */
.logo-container::before {
    content: '';
    display: none;
}

.logo-container:has(img[src=""])::before,
.logo-container:has(img:not([src]))::before {
    content: 'NELLCO';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 30px;
    background: #dc2626;
    border-radius: 15px;
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.company-name {
    color: #1f2937;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav-item-special {
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 12px;
    border-radius: 25px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-1px);
}

.nav-link::after {
    display: none;
}

.nav-link.active {
    color: #dc2626;
    font-weight: 600;
    background: rgba(220, 38, 38, 0.15);
}

.nav-link.active::after {
    display: none;
}

.nav-link-special {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    font-size: 0.9rem;
}

.nav-link-special:hover {
    background: linear-gradient(135deg, #ff5252 0%, #e53935 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

.nav-link-special::after {
    display: none;
}

.nav-link-special.active {
    background: linear-gradient(135deg, #ff5252 0%, #e53935 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hero Slideshow - rasio 16:9 sama dengan gambar 1920x1080: tidak terpotong, tidak margin kiri/kanan */
.hero-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

@supports not (aspect-ratio: 16 / 9) {
    .hero-slideshow {
        aspect-ratio: unset;
        padding-bottom: 56.25%;
        height: 0;
    }
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
}

.slide.active {
    opacity: 1;
}

.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-fallback {
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gambar 1920x1080 (16:9) pas di area 16:9: full tampil, tidak terpotong, tidak margin */
.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 0;
    padding: 1.25rem 1.75rem 2rem;
    padding-bottom: calc(1.75rem + 50px);
    text-align: center;
    border-radius: 24px 24px 0 0;
}

.slide-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.25;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.slide-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.45;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #dc2626;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-outline:hover {
    background: #dc2626;
    color: white;
}

/* Slide Animations */
.slide-pills {
    position: relative;
    width: 300px;
    height: 300px;
}

.slide-icons {
    display: flex;
    gap: 2rem;
    font-size: 4rem;
    opacity: 0.3;
}

.slide-icons i {
    animation: float 3s ease-in-out infinite;
}

.slide-icons i:nth-child(2) {
    animation-delay: 1s;
}

.slide-icons i:nth-child(3) {
    animation-delay: 2s;
}

.slide-hearts {
    display: flex;
    gap: 1rem;
    font-size: 3rem;
    opacity: 0.3;
}

.slide-hearts i {
    animation: heartbeat 2s ease-in-out infinite;
}

.slide-hearts i:nth-child(2) {
    animation-delay: 0.5s;
}

.slide-hearts i:nth-child(3) {
    animation-delay: 1s;
}

.slide-hearts i:nth-child(4) {
    animation-delay: 1.5s;
}

.pill {
    position: absolute;
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.pill-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.pill-2 {
    top: 150px;
    right: 50px;
    animation-delay: 2s;
}

.pill-3 {
    bottom: 50px;
    left: 100px;
    animation-delay: 4s;
}

.pill-4 {
    top: 100px;
    left: 150px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 4;
    pointer-events: none;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Play/Pause Button */
.slideshow-play-pause {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 4;
}

.play-pause-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.about .container {
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 3.5rem;
    align-items: start;
}

.about-main-col {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    min-width: 0;
}

.about-feature-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.about-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(220, 38, 38, 0.12);
}

.about-feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12) 0%, rgba(185, 28, 28, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.about-feature-card-icon i {
    font-size: 1.35rem;
    color: #dc2626;
}

.about-feature-card-icon.has-image {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 6px;
}

.about-feature-card-icon.has-image img {
    width: 100%;
    height: 100%;
    max-width: 48px;
    max-height: 48px;
    object-fit: contain;
    display: block;
}

.about-feature-card-title {
    font-size: 1.05rem;
    color: #1f2937;
    margin: 0 0 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.about-feature-card-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}

.about-download {
    margin-top: 0.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.about-download-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.01em;
}

.about-download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #dc2626;
    text-decoration: none;
    padding: 0.4rem 0;
    line-height: 1.4;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.about-download-link:hover {
    color: #b91c1c;
    border-bottom-color: #fecaca;
}

.about-visual-col.about-image {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    height: auto;
    align-self: start;
}

.about-product-showcase.image-placeholder {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 0;
    max-height: none;
    aspect-ratio: unset;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.about-product-showcase.image-placeholder img {
    width: 100%;
    height: auto;
    max-height: min(92vh, 960px);
    object-fit: contain;
    object-position: center center;
    padding: 0;
    box-sizing: border-box;
    border-radius: 12px;
    display: block;
}

.about-product-showcase.image-placeholder.is-empty {
    color: #64748b;
    justify-content: center;
    align-items: center;
    min-height: min(52vh, 420px);
}

.about-product-showcase.image-placeholder.is-empty i {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 0.35rem;
}

.about-product-showcase.image-placeholder.is-empty p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
}

@media (max-width: 380px) {
    .about-feature-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: stretch;
    }

    .about-visual-col {
        order: -1;
    }

    .about-product-showcase.image-placeholder {
        max-width: none;
        width: 100%;
    }

    .about-product-showcase.image-placeholder img {
        max-height: min(70vh, 720px);
    }
}

.about-text h3 {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: #dc2626;
    margin-top: 0.2rem;
}

.feature h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Tentang Kami: kolom gambar lebar penuh, rata atas */
.about .about-image {
    align-items: stretch;
    justify-content: flex-start;
    height: auto;
}

/* Fallback placeholder (tanpa gambar) — area showcase produk */
.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 500px;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Vision & Mission Section (Now inside About Section) */
.vision-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

/* Vision & Mission content inside About section */
.about .vision-mission-content {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

/* Vision & Mission Section - Standalone (kept for backward compatibility) */
.vision-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: float 15s ease-in-out infinite reverse;
    z-index: 1;
}

.vision-mission .container {
    position: relative;
    z-index: 2;
}

.vision-mission .section-header h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.vision-mission .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.vision-card, .mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Vision & Mission cards inside About section */
.about .vision-card,
.about .mission-card {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #f59e0b, #10b981, #3b82f6);
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.vision-card h3, .mission-card h3 {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.vision-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
}

.mission-card ul {
    list-style: none;
    padding: 0;
}

.mission-card li {
    color: #666;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    font-size: 1rem;
}

.mission-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
    font-size: 1.2rem;
    top: 0;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products .container {
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    text-align: left;
}

.product-features li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    /*content: '✓';*/
    
    content : '•';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

/* Catalog Section */
.catalog {
    padding: 100px 0;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .catalog {
        padding: 80px 0 60px;
    }
}

@media (max-width: 480px) {
    .catalog {
        padding: 70px 0 50px;
    }
}

/* Catalog Filters */
.catalog-filters {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.1rem;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #dc2626;
}

.filter-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.filter-group select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #dc2626;
}

/* E-katalog: satu tombol unduh PDF, rata kiri (tanpa blok section) */
a.catalog-pdf-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 0;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.catalog-pdf-download:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 100%;
}

/* Ensure 4 columns on larger screens */
@media (min-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card-catalog {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card-catalog:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.product-card-image {
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

/* Hover Layer Effect */
.product-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    border-radius: 15px 15px 0 0;
}

.product-card-catalog:hover .product-card-image::before {
    opacity: 1;
}

/* Product Name Overlay */
.product-name-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    padding: 0 1rem;
    line-height: 1.3;
}

.product-card-catalog:hover .product-name-overlay {
    opacity: 1;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    /* Retina/High-DPI Display Optimization */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.product-card-image:hover img {
    transform: scale(1.05);
}

.product-card-image .product-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.3;
    z-index: 1;
}

/* Obat Batuk Product Image */
.product-card-image.obat-batuk {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OBH Nellco specific styling */
.product-card-image.obh-nellco {
    background-image: url('obh-nellco.jpg'), linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Retina/High-DPI Display Optimization */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
}

/* Fallback for OBH Nellco if image not found */
.product-card-image.obh-nellco::after {
    content: 'OBH NELLCO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0.8;
}

/* Ensure OBH Nellco image is visible */
.product-card-image.obh-nellco {
    background-color: #fbbf24;
}

/* When image loads successfully, hide fallback text */
.product-card-image.obh-nellco.image-loaded::after {
    display: none;
}

/* General styling for products with images */
.product-card-image[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Fallback for products without images */
.product-card-image:not([style*="background-image"]):not(.obat-batuk) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Ensure proper aspect ratio for all product cards */
.product-card-catalog {
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
}

.product-card-image {
    flex: 1;
    min-height: 180px;
}

.product-card-image.obat-batuk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.medicine-bottle {
    width: 60px;
    height: 80px;
    background: #8b4513;
    border-radius: 8px 8px 4px 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.medicine-bottle::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 12px;
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.medicine-bottle::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 8px;
    right: 8px;
    height: 50px;
    background: #dc2626;
    border-radius: 2px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.medicine-label {
    position: absolute;
    top: 12px;
    left: 6px;
    right: 6px;
    height: 12px;
    background: #dc2626;
    border-radius: 1px;
    z-index: 3;
}

.medicine-label::before {
    content: 'WELLCO SPECIAL';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4px;
    font-weight: bold;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.medicine-label::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 8px;
    background: #16a34a;
    border-radius: 0 0 1px 1px;
}

.medicine-spoon {
    width: 25px;
    height: 8px;
    background: #c0c0c0;
    border-radius: 0 4px 4px 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.medicine-spoon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.medicine-spoon::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -8px;
    width: 2px;
    height: 20px;
    background: #c0c0c0;
    border-radius: 1px;
}

/* Hover Effects for Medicine */
.product-card-catalog:hover .medicine-bottle {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.product-card-catalog:hover .medicine-spoon {
    transform: translateY(-50%) rotate(5deg);
    transition: transform 0.3s ease;
}

.product-card-catalog:hover .medicine-bottle::after {
    animation: liquidShake 0.5s ease-in-out;
}

@keyframes liquidShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-1px); }
    75% { transform: translateX(1px); }
}

.product-card-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #dc2626;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card-content {
    display: none;
}

.product-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-card-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-card-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-card-spec {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.product-card-spec-label {
    color: #666;
}

.product-card-spec-value {
    color: #333;
    font-weight: 500;
}

.product-card-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-small-primary {
    background: #dc2626;
    color: white;
    flex: 1;
}

.btn-small-primary:hover {
    background: #b91c1c;
}

.btn-small-outline {
    background: transparent;
    color: #dc2626;
    border: 1px solid #dc2626;
}

.btn-small-outline:hover {
    background: #dc2626;
    color: white;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-results i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.no-results p {
    font-size: 0.9rem;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    padding: 0 1rem;
}

.pagination-info {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-btn {
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-btn.disabled:hover {
    transform: none;
    border-color: #e0e0e0;
    color: #666;
    background: white;
}

.pagination-ellipsis {
    padding: 8px 4px;
    color: #999;
    font-weight: bold;
}

/* Catalog Download */
.catalog-download {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.download-content h3 {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.download-content p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Product Detail Page */
.product-detail {
    padding: 120px 0 100px;
    background: #f8f9fa;
    min-height: 100vh;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #2c5aa0;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.product-image {
    position: relative;
}

.product-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    margin-bottom: 1rem;
}

.product-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    background: #dc2626;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.bpom {
    background: #28a745;
}

.product-info h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-item i {
    color: #dc2626;
    width: 20px;
    text-align: center;
}

.spec-label {
    font-weight: 600;
    color: #333;
    min-width: 120px;
}

.spec-value {
    color: #666;
}

.product-description,
.product-ingredients,
.product-usage,
.product-warnings {
    margin-bottom: 2rem;
}

.product-description h3,
.product-ingredients h3,
.product-usage h3,
.product-warnings h3 {
    font-size: 1.3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.product-description p {
    color: #666;
    line-height: 1.8;
}

.product-ingredients ul,
.product-warnings ul {
    list-style: none;
    padding: 0;
}

.product-ingredients li,
.product-warnings li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-ingredients li::before,
.product-warnings li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.product-usage ol {
    color: #666;
    padding-left: 1.5rem;
}

.product-usage li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* E-commerce Links */
.product-ecommerce {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.product-cert-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

/* Lingkaran sama seperti logo "Tersedia di" (.ecommerce-link 50×50) */
.product-cert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 6px;
    box-sizing: border-box;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    flex: 0 0 auto;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-cert-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
    border-color: #d1d5db;
}

.product-cert-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.product-ecommerce h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.ecommerce-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ecommerce-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ecommerce-link i {
    font-size: 1.5rem;
}

.ecommerce-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    /*border-radius: 50%;*/
    /* Retina/High-DPI Display Optimization */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.ecommerce-link.tokopedia {
    /*background: #42b549;*/
    color: white;
    /*border-color: #42b549;*/
}

.ecommerce-link.tokopedia:hover {
    /*background: #3aa042;*/
    /*border-color: #3aa042;*/
    transform: translateY(-2px);
    /*box-shadow: 0 6px 20px rgba(66, 181, 73, 0.3);*/
}

.ecommerce-link.shopee {
    background: #ee4d2d;
    color: white;
    border-color: #ee4d2d;
}

.ecommerce-link.shopee:hover {
    background: #d93e1f;
    border-color: #d93e1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 77, 45, 0.3);
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.product-gallery-main {
    width: 100%;
    max-height: 600px;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.product-gallery-thumbnails {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 1rem;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: #fff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumbnail:hover {
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.product-thumbnail.active {
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.3);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Product Detail Responsive */
@media (max-width: 992px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem;
    }

    .product-detail {
        padding: 100px 0 80px;
    }

    .product-info h1 {
        font-size: 2rem;
    }

    .product-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .product-detail {
        padding: 80px 0 60px;
    }

    .product-detail-content {
        padding: 1.5rem;
        gap: 2rem;
        border-radius: 15px;
    }

    .product-image-placeholder {
        height: 300px;
        font-size: 4rem;
        border-radius: 15px;
    }

    .product-info h1 {
        font-size: 1.75rem;
    }

    .product-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .product-specs {
        padding: 1rem;
        gap: 0.75rem;
    }

    .spec-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .spec-label {
        min-width: auto;
        width: 100%;
    }

    .product-description h3,
    .product-ingredients h3,
    .product-usage h3,
    .product-warnings h3 {
        font-size: 1.2rem;
    }

    .product-ecommerce h3 {
        font-size: 1.2rem;
    }

    .ecommerce-link {
        width: 45px;
        height: 45px;
    }

    .ecommerce-link i {
        font-size: 1.3rem;
    }

    .ecommerce-logo {
        width: 100%;
        height: 100%;
    }

    .breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-detail {
        padding: 70px 0 50px;
    }

    .product-detail-content {
        padding: 1rem;
        gap: 1.5rem;
        border-radius: 10px;
    }

    .product-image-placeholder {
        height: 250px;
        font-size: 3rem;
        border-radius: 10px;
        margin-bottom: 0.75rem;
    }

    .product-info h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .product-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .product-specs {
        padding: 0.75rem;
        gap: 0.5rem;
        border-radius: 10px;
    }

    .spec-item {
        font-size: 0.9rem;
    }

    .spec-item i {
        width: 18px;
        font-size: 0.9rem;
    }

    .spec-label {
        font-size: 0.9rem;
    }

    .spec-value {
        font-size: 0.9rem;
    }

    .product-description,
    .product-ingredients,
    .product-usage,
    .product-warnings {
        margin-bottom: 1.5rem;
    }

    .product-description h3,
    .product-ingredients h3,
    .product-usage h3,
    .product-warnings h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .product-description p,
    .product-ingredients li,
    .product-usage li,
    .product-warnings li {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .product-ecommerce {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .product-ecommerce h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .ecommerce-link {
        width: 40px;
        height: 40px;
    }

    .ecommerce-link i {
        font-size: 1.2rem;
    }

    .ecommerce-logo {
        width: 100%;
        height: 100%;
    }

    .breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
}

.contact::before {
    content: none;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-header h2 {
    color: #dc2626;
    text-shadow: none;
}

.contact .section-header p {
    color: #000000;
    text-shadow: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #dc2626;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-shadow: none;
}

.contact-item p {
    color: #000000;
    margin: 0;
    text-shadow: none;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-form-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dc2626;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.contact-form-header h4 {
    color: #000;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.contact-form-header p {
    color: #6b7280;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

/* Partners Carousel */
.partners-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 2rem 0;
}

.partners-carousel {
    display: flex;
    gap: 2rem;
    animation: scroll-partners 40s linear infinite;
    width: max-content;
    will-change: transform;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo-placeholder {
    width: 100%;
    height: 100%;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-logo-placeholder {
    border-color: #dc2626;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
    transform: translateY(-5px);
}

.partner-logo-placeholder i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.partner-logo-placeholder p {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* Partner logo image - tampil warna asli logo */
.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.partner-logo:hover img {
    opacity: 0.9;
}

/* Partners Responsive */
@media (max-width: 1200px) {
    .partners-carousel {
        gap: 1.5rem;
    }

    .partner-logo {
        width: 160px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 60px 0;
    }

    .partners-carousel {
        gap: 1.5rem;
        animation-duration: 35s;
    }

    .partner-logo {
        width: 150px;
        height: 100px;
    }

    .partner-logo-placeholder i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .partners {
        padding: 50px 0;
    }

    .partners-carousel {
        gap: 1rem;
        animation-duration: 30s;
    }

    .partner-logo {
        width: 130px;
        height: 90px;
    }

    .partner-logo-placeholder i {
        font-size: 1.5rem;
    }

    .partner-logo-placeholder p {
        font-size: 0.75rem;
    }
}

.footer {
    background: #dc2626;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: #dc2626;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */

/* Large Desktop - Show horizontal menu */
@media (min-width: 1200px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
}

/* Tablet Landscape - iPad Air, ZenBook Fold, etc. */
@media (max-width: 1199px) and (min-width: 769px) {
    .hamburger {
        display: flex !important;
        z-index: 1001;
        position: relative;
    }

    .navbar {
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 0 20px;
    }

    .nav-container {
        height: 60px;
    }

    .nav-menu {
        position: fixed;
        left: 50%;
        top: 70px;
        transform: translateX(-50%);
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: calc(100% - 60px);
        max-width: 500px;
        border-radius: 30px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 2.5rem 0;
        opacity: 0;
        visibility: hidden;
        z-index: 999;
        display: flex;
        pointer-events: none;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu li {
        margin: 1rem 0;
        display: block;
    }

    .nav-item-special {
        margin-left: 0;
        margin-top: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 1.5rem;
    }

    .nav-link-special {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .nav-logo {
        flex-direction: row;
        gap: 10px;
        text-align: center;
    }

    .company-name {
        display: none;
    }

    .logo-image {
        height: 46px;
        max-width: min(210px, 100%);
    }

    .nav-link {
        padding: 8px 16px;
        font-size: 0.95rem;
    }

    /* Main Content Responsive for Tablet Landscape */
    .hero-slideshow {
        height: 70vh;
        min-height: 500px;
    }

    .slide-title {
        font-size: 1.85rem;
        margin-bottom: 0.5rem;
    }

    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .slide-buttons {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }

    .vision-mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-card, .mission-card {
        padding: 2rem;
    }

    .about-text h3 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        text-align: left;
    }
}

/* Mobile and Tablet - Show hamburger menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        z-index: 1001;
        position: relative;
    }

    .navbar {
        top: 0;
        width: 100%;
        border-radius: 0;
    }

    .nav-menu {
        position: fixed;
        left: 50%;
        top: 65px;
        transform: translateX(-50%);
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: calc(100% - 40px);
        max-width: 400px;
        border-radius: 30px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 2rem 0;
        opacity: 0;
        visibility: hidden;
        z-index: 999;
        display: flex;
        pointer-events: none;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu li {
        margin: 0.8rem 0;
        display: block;
    }

    .nav-item-special {
        margin-left: 0;
        margin-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 1rem;
    }

    .nav-link-special {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
        padding: 12px 28px;
    }

    .nav-logo {
        flex-direction: row;
        gap: 8px;
        text-align: center;
    }

    .company-name {
        display: none;
    }

    .logo-image {
        height: 42px;
        max-width: min(185px, 100%);
    }

    /* Banner responsive di mobile: lebar penuh, rasio 16:9, gambar tidak terpotong */
    .hero-slideshow {
        width: 100%;
        max-width: 100vw;
        min-height: 0;
        aspect-ratio: 16 / 9;
        margin: 0;
        padding: 0;
        overflow: hidden;
        box-sizing: border-box;
    }

    @supports not (aspect-ratio: 16 / 9) {
        .hero-slideshow {
            aspect-ratio: unset;
            padding-bottom: 56.25%;
            height: 0;
        }
    }

    .slideshow-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    .slide,
    .slide-image {
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
    }

    .slide-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        object-position: center center !important;
        display: block;
    }

    .slide-content {
        padding: 1rem 1.25rem 1.5rem;
        padding-bottom: calc(1.5rem + 44px);
        border-radius: 20px 20px 0 0;
    }

    .slide-title {
        font-size: 1.4rem;
        line-height: 1.25;
        margin-bottom: 0.35rem;
    }

    .slide-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .slideshow-controls {
        padding: 0 8px;
    }

    .prev-btn, .next-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .slide-indicators {
        bottom: 16px;
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .slideshow-play-pause {
        top: 16px;
        right: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-download {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .about-download-label {
        width: 100%;
    }

    .about-download-link {
        justify-content: center;
    }

    .about-feature-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem 0.65rem;
    }

    .vision-mission-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vision-card, .mission-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .vision-card h3, .mission-card h3 {
        font-size: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
        padding-left: 0;
    }

    .footer-section ul li {
        list-style: none;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Catalog Responsive */
    .catalog-filters {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .search-box {
        margin-bottom: 1.5rem;
    }

    .search-box input {
        padding: 10px 12px 10px 40px;
        font-size: 0.9rem;
    }

    .filter-controls {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .filter-group {
        margin-bottom: 0.5rem;
    }

    .filter-group select {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .catalog-download {
        padding: 2rem 1.5rem;
    }

    .download-content h3 {
        font-size: 1.5rem;
    }

    .download-content p {
        font-size: 1rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }

    a.catalog-pdf-download {
        display: flex;
        margin: 1.5rem auto 0;
        padding: 10px 20px;
        font-size: 0.9rem;
        width: fit-content;
        max-width: calc(100% - 2rem);
        box-sizing: border-box;
    }

    /* Product Grid Mobile */
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .product-card-image {
        height: 120px;
        font-size: 2rem;
        min-height: 120px;
    }

    .product-name-overlay {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .product-card-catalog {
        aspect-ratio: 3/4;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .navbar {
        width: 100%;
        padding: 0 15px;
    }

    .nav-container {
        height: 55px;
    }

    .nav-menu.active {
        top: 60px;
        width: calc(100% - 20px);
        max-width: 350px;
    }

    .logo-image {
        height: 38px;
        max-width: min(170px, 100%);
    }

    .catalog-filters {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .search-box input {
        padding: 8px 10px 8px 35px;
        font-size: 0.85rem;
    }

    .filter-group label {
        font-size: 0.8rem;
    }

    .filter-group select {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-card-content {
        padding: 1rem;
    }

    .product-card-title {
        font-size: 1.1rem;
    }

    .product-card-subtitle {
        font-size: 0.8rem;
    }

    .product-card-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-small {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .catalog-download {
        padding: 1.5rem 1rem;
    }

    .download-content h3 {
        font-size: 1.3rem;
    }

    .download-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .section-header p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
}

/* E-Katalog Specific Responsive Styles */

/* Tablet Landscape - iPad Air, ZenBook Fold */
@media (max-width: 1199px) and (min-width: 769px) {
    .catalog-filters {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }

    .search-box {
        margin-bottom: 2rem;
    }

    .search-box input {
        padding: 12px 15px 12px 45px;
        font-size: 1rem;
    }

    .filter-controls {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .filter-group {
        margin-bottom: 0.8rem;
    }

    .filter-group select {
        padding: 10px 15px;
        font-size: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .catalog-download {
        padding: 3rem 2rem;
    }

    .download-content h3 {
        font-size: 1.8rem;
    }

    .download-content p {
        font-size: 1.1rem;
    }

    .download-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
        width: auto;
        max-width: none;
    }

    /* Download Compact Tablet */
    .download-compact {
        position: static;
        margin-top: 1.5rem;
        text-align: center;
    }

    .download-compact .download-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
}

@media (max-width: 768px) {
    /* E-Katalog Mobile Styles */
    .catalog-filters {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .search-box {
        margin-bottom: 1.5rem;
    }

    .search-box input {
        padding: 10px 12px 10px 40px;
        font-size: 0.9rem;
    }

    .filter-controls {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .filter-group {
        margin-bottom: 0.5rem;
    }

    .filter-group select {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .catalog-download {
        padding: 2rem 1.5rem;
    }

    .download-content h3 {
        font-size: 1.5rem;
    }

    .download-content p {
        font-size: 1rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    /* E-Katalog Small Mobile Styles */
    .catalog-filters {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .search-box input {
        padding: 8px 10px 8px 35px;
        font-size: 0.85rem;
    }

    .filter-group label {
        font-size: 0.8rem;
    }

    .filter-group select {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-card-catalog {
        margin-bottom: 0.5rem;
    }

    .product-card-image {
        height: 100px;
        font-size: 1.8rem;
        min-height: 100px;
    }

    .product-name-overlay {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .product-card-catalog {
        aspect-ratio: 3/4;
    }

    .product-card-content {
        padding: 1rem;
    }

    .product-card-title {
        font-size: 1.1rem;
    }

    .product-card-subtitle {
        font-size: 0.8rem;
    }

    .product-card-specs {
        gap: 0.3rem;
    }

    .product-card-spec {
        font-size: 0.8rem;
    }

    .product-card-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-small {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .catalog-download {
        padding: 1.5rem 1rem;
    }

    .download-content h3 {
        font-size: 1.3rem;
    }

    .download-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Product Badges Mobile */
    .product-card-badges {
        top: 10px;
        right: 10px;
        gap: 3px;
    }

    .product-badge {
        padding: 3px 8px;
        font-size: 0.7rem;
        border-radius: 12px;
    }

    /* Product Image Mobile */
    .product-card-image {
        height: 180px;
    }

    .medicine-bottle {
        width: 45px;
        height: 60px;
    }

    .medicine-bottle::before {
        width: 14px;
        height: 8px;
    }

    .medicine-bottle::after {
        top: 6px;
        left: 4px;
        right: 4px;
        height: 35px;
    }

    .medicine-spoon {
        width: 18px;
        height: 5px;
        right: 12px;
    }

    .medicine-spoon::before {
        width: 5px;
        height: 5px;
    }

    .medicine-spoon::after {
        top: -10px;
        right: -5px;
        height: 14px;
    }

    .medicine-label {
        top: 8px;
        left: 4px;
        right: 4px;
        height: 8px;
    }

    .medicine-label::before {
        font-size: 2.5px;
        letter-spacing: 0.2px;
    }

    .medicine-label::after {
        top: 10px;
        height: 5px;
    }

    /* No Results Mobile */
    .no-results {
        padding: 3rem 1rem;
    }

    .no-results i {
        font-size: 3rem;
    }

    .no-results h3 {
        font-size: 1.3rem;
    }

    .no-results p {
        font-size: 0.9rem;
    }

    /* Pagination Mobile */
    .pagination-container {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
    }

    .pagination-info {
        text-align: center;
        font-size: 0.8rem;
    }

    .pagination {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .pagination-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: 35px;
    }

    a.catalog-pdf-download {
        display: flex;
        margin: 1.5rem auto 0;
        padding: 10px 20px;
        font-size: 0.9rem;
        width: fit-content;
        max-width: calc(100% - 2rem);
        box-sizing: border-box;
    }
}

/* Extra Small Screens for E-Katalog */
@media (max-width: 360px) {
    .catalog-filters {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .search-box input {
        padding: 6px 8px 6px 30px;
        font-size: 0.8rem;
    }

    .filter-group label {
        font-size: 0.75rem;
    }

    .filter-group select {
        padding: 5px 8px;
        font-size: 0.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .product-card-content {
        padding: 0.8rem;
    }

    .product-card-title {
        font-size: 1rem;
    }

    .product-card-subtitle {
        font-size: 0.75rem;
    }

    .product-card-spec {
        font-size: 0.75rem;
    }

    .btn-small {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .catalog-download {
        padding: 1rem 0.8rem;
    }

    .download-content h3 {
        font-size: 1.2rem;
    }

    .download-content p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .medicine-bottle {
        width: 40px;
        height: 55px;
    }

    .medicine-bottle::before {
        width: 12px;
        height: 7px;
    }

    .medicine-bottle::after {
        top: 5px;
        left: 3px;
        right: 3px;
        height: 30px;
    }

    .medicine-spoon {
        width: 16px;
        height: 4px;
        right: 10px;
    }

    .medicine-spoon::before {
        width: 4px;
        height: 4px;
    }

    .medicine-spoon::after {
        top: -8px;
        right: -4px;
        height: 12px;
    }

    .medicine-label {
        top: 7px;
        left: 3px;
        right: 3px;
        height: 7px;
    }

    .medicine-label::before {
        font-size: 2px;
        letter-spacing: 0.1px;
    }

    .medicine-label::after {
        top: 8px;
        height: 4px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Section Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.animate-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.products-grid,
.catalog-content,
.contact-content {
    animation: fadeInUp 0.8s ease-out;
}

/* News Section */
.news-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    min-height: 100vh;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image-placeholder {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    margin-top: 2px;
}

.news-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-category {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.news-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.news-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.read-more {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more:hover {
    color: #b91c1c;
    gap: 0.8rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.news-pagination .pagination-btn {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.news-pagination .pagination-btn:hover:not(.disabled):not(.active) {
    border-color: #dc2626;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
    transform: translateY(-2px);
}

.news-pagination .pagination-btn.active {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
}

.news-pagination .pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

/* News Responsive */
@media (max-width: 768px) {
    .news-section {
        padding: 100px 0 80px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-image {
        height: 200px;
    }

    .news-image-placeholder {
        font-size: 3rem;
    }

    .news-content {
        padding: 1.5rem;
    }

    .news-content h3 {
        font-size: 1.3rem;
    }

    .news-pagination {
        flex-direction: column;
        gap: 1rem;
    }

    .pagination-numbers {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 1.2rem;
    }

    .news-content h3 {
        font-size: 1.2rem;
    }

    .date-day {
        font-size: 1.2rem;
    }

    .date-month {
        font-size: 0.8rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    min-height: 100vh;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

.filter-btn.active {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Empty state ketika belum ada foto di galeri */
.gallery-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px dashed #e0e0e0;
}

.gallery-empty-state .gallery-empty-icon {
    font-size: 4rem;
    color: #c4c4c4;
    margin-bottom: 1.5rem;
}

.gallery-empty-state .gallery-empty-icon i {
    font-size: inherit;
}

.gallery-empty-state h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.gallery-empty-state p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item.hide {
    display: none;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    /* Retina/High-DPI Display Optimization */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image-placeholder {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 1rem;
}

.gallery-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #dc2626;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.gallery-item:hover .gallery-view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-view-btn:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery-section {
        padding: 100px 0 80px;
    }

    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-image {
        height: 250px;
    }

    .gallery-image-placeholder {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-image {
        height: 220px;
    }

    .gallery-info h3 {
        font-size: 1.1rem;
    }

    .gallery-info p {
        font-size: 0.85rem;
    }

    .gallery-view-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Gallery Modal/Lightbox */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    position: relative;
    z-index: 10001;
    max-width: 90%;
    max-height: 90%;
    width: 900px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-modal-close:hover {
    background: rgba(220, 38, 38, 0.9);
    transform: rotate(90deg);
}

.gallery-modal-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-modal-image-container .gallery-modal-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-modal-icon {
    font-size: 120px;
    color: white;
    opacity: 0.3;
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #dc2626;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

.gallery-modal-prev {
    left: 20px;
}

.gallery-modal-next {
    right: 20px;
}

.gallery-modal-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-modal-info {
    padding: 30px;
    background: white;
}

.gallery-modal-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.gallery-modal-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Gallery Modal Responsive */
@media (max-width: 768px) {
    .gallery-modal-content {
        max-width: 95%;
        width: 100%;
        max-height: 95%;
    }

    .gallery-modal-image-container {
        height: 300px;
    }

    .gallery-modal-icon {
        font-size: 80px;
    }

    .gallery-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-modal-prev {
        left: 10px;
    }

    .gallery-modal-next {
        right: 10px;
    }

    .gallery-modal-info {
        padding: 20px;
    }

    .gallery-modal-info h3 {
        font-size: 22px;
    }

    .gallery-modal-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gallery-modal-image-container {
        height: 250px;
    }

    .gallery-modal-icon {
        font-size: 60px;
    }

    .gallery-modal-info h3 {
        font-size: 20px;
    }

    .gallery-modal-info p {
        font-size: 13px;
    }
}

/* ============================================
   Retina/High-DPI Display Optimizations
   ============================================ */

/* High DPI / Retina Display Media Queries */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min--moz-device-pixel-ratio: 2),
       only screen and (-o-min-device-pixel-ratio: 2/1),
       only screen and (min-device-pixel-ratio: 2),
       only screen and (min-resolution: 192dpi),
       only screen and (min-resolution: 2dppx) {
    
    /* Enhanced image rendering for high DPI displays */
    img,
    .logo-image,
    .product-card-image img,
    .partner-logo img,
    .ecommerce-logo,
    .gallery-image-placeholder,
    .product-image-placeholder {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        image-rendering: high-quality;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Enhanced font rendering for high DPI displays */
    body,
    .nav-link,
    .company-name,
    h1, h2, h3, h4, h5, h6,
    p, span, a {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Sharper borders and shadows for high DPI */
    .navbar,
    .product-card,
    .news-card,
    .gallery-item {
        border-width: 0.5px;
    }
    
    /* Enhanced box shadows for depth perception */
    .product-card,
    .news-card,
    .gallery-item {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
}

/* Ultra High DPI / 3x Retina Display */
@media only screen and (-webkit-min-device-pixel-ratio: 3),
       only screen and (min--moz-device-pixel-ratio: 3),
       only screen and (-o-min-device-pixel-ratio: 3/1),
       only screen and (min-device-pixel-ratio: 3),
       only screen and (min-resolution: 288dpi),
       only screen and (min-resolution: 3dppx) {
    
    /* Even sharper rendering for ultra high DPI */
    img,
    .logo-image,
    .product-card-image img,
    .partner-logo img,
    .ecommerce-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        image-rendering: high-quality;
    }
    
    /* Enhanced text rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

/* General image optimization for all displays */
img {
    max-width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.footer-section .product-list-footer {
      display: flex;
      flex-wrap: wrap;
      padding: 0;
      margin: 0;
      list-style: none;
      columns:2;
      width : 350px;
    }
    
    .footer-section .product-list-footer li {
      width: 50% !important;
    }
    
    @media (max-width: 600px) {
        .footer-section .product-list-footer{
            width: 100%;
            columns:1;
          }
        .footer-section .product-list-footer li {
            width: 100%;
          }
}