* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            line-height: 1.5;
            color: #1f2937;
            background: #ffffff;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ==================== TOP BAR ==================== */
        .top-bar {
            background: #0b2b44;
            color: #e2e8f0;
            padding: 8px 0;
            font-size: 13px;
        }
        .top-bar i {
            margin-right: 6px;
        }

        /* ==================== MAIN HEADER & NAVBAR ==================== */
        .main-header {
            background: white;
            padding: 20px 0;
            border-bottom: 1px solid #e4e7eb;
            box-shadow: 0 1px 2px rgba(0,0,0,0.02);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .logo img {
            height: 48px;
            width: auto;
            object-fit: contain;
            background: white;
            border-radius: 8px;
            padding: 4px;
        }
        .logo h1 {
            font-size: 1.55rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0b2b44 0%, #1e4a76 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.3px;
        }
        .logo p {
            font-size: 0.8rem;
            color: #4b5563;
            margin-top: 4px;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 16px;
            flex-wrap: wrap;
        }
        .navbar ul {
            display: flex;
            list-style: none;
            gap: 32px;
            flex-wrap: wrap;
        }
        .navbar ul li a {
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            color: #1e293b;
            transition: 0.2s;
            cursor: pointer;
        }
        .navbar ul li a:hover, .navbar ul li a.active {
            color: #e67e22;
        }
        .search-icon {
            background: #f3f4f6;
            padding: 8px 18px;
            border-radius: 40px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: 0.2s;
            font-weight: 500;
        }
        .search-icon:hover {
            background: #e2e8f0;
        }

        /* ==================== BREADCRUMB ==================== */
        .breadcrumb {
            background: #f9fafb;
            padding: 12px 0;
            font-size: 0.8rem;
            border-bottom: 1px solid #edf2f7;
        }
        .breadcrumb a {
            text-decoration: none;
            color: #2563eb;
            cursor: pointer;
        }
        .breadcrumb span {
            color: #e67e22;
        }

        /* ==================== ACTION ICONS ==================== */
        .action-icons {
            padding: 16px 0;
            border-bottom: 1px solid #eef2f6;
        }
        .icons {
            display: flex;
            gap: 32px;
        }
        .icons span {
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 500;
            color: #2c3e66;
            transition: 0.2s;
        }
        .icons span i {
            margin-right: 8px;
        }
        .icons span:hover {
            color: #e67e22;
        }

        /* ==================== HERO BRAND ==================== */
        .hero-brand {
            background: linear-gradient(105deg, #f1f5f9 0%, #ffffff 100%);
            padding: 32px 0 24px 0;
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
        }
        .hero-brand h2 {
            font-size: 2rem;
            color: #0c4a6e;
        }
        .hero-brand p {
            color: #e67e22;
            font-weight: 600;
            margin-top: 6px;
        }

        /* ==================== PRODUCTS SECTION ==================== */
        .products-section {
            padding: 56px 0 40px;
        }
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 32px;
            border-left: 6px solid #e67e22;
            padding-left: 20px;
            color: #0f2b3d;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }
        .product-card {
            background: white;
            border-radius: 28px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.05);
            transition: all 0.25s ease;
            overflow: hidden;
            border: 1px solid #edf2f7;
        }
        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.1);
        }
        .product-img {
    width: 100%;
    height: 300px; /* tinggi gambar seragam */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    overflow: hidden;
    padding: 15px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* gambar tidak terpotong */
    display: block;
}
        .product-img i {
            font-size: 70px;
        }
        .product-info {
            padding: 24px;
        }
        .product-info h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: #0b2b44;
        }
        .product-weight {
            font-weight: 700;
            color: #e67e22;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }
        .product-desc {
            font-size: 0.85rem;
            color: #475569;
            margin: 12px 0;
        }
        .product-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c3e66;
            margin: 12px 0;
        }
        .btn-order {
            background: #e67e22;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            font-size: 0.9rem;
            transition: 0.2s;
            margin-top: 8px;
        }
        .btn-order:hover {
            background: #d35400;
            transform: scale(0.98);
        }

        /* ==================== FEATURES / WHY US ==================== */
        .why-us-section {
            padding: 40px 0 60px;
            background: #fefcf9;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        .feature-card {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 24px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .feature-card i {
            font-size: 2.5rem;
            color: #e67e22;
            margin-bottom: 15px;
        }
        .feature-card h4 {
            margin-bottom: 10px;
            color: #0b2b44;
        }
        .feature-card p {
            font-size: 0.85rem;
            color: #4b5563;
        }

        /* ==================== TESTIMONIAL ==================== */
        .testimonial-section {
            padding: 40px 0 60px;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .testimonial-card {
            background: #f9fafb;
            padding: 24px;
            border-radius: 24px;
            text-align: center;
        }
        .testimonial-card i.fa-star {
            color: #fbbf24;
            font-size: 0.9rem;
        }
        .testimonial-card p {
            margin: 15px 0;
            font-style: italic;
        }
        .testimonial-card h5 {
            color: #e67e22;
        }

        /* ==================== ABOUT PAGE ==================== */
        .about-section {
            padding: 60px 0;
        }
        .about-hero {
            display: flex;
            gap: 40px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        .about-image-placeholder {
            flex: 1;
            background: linear-gradient(135deg, #e67e22, #f39c12);
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 250px;
        }
        .about-image-placeholder i {
            font-size: 6rem;
            color: white;
        }
        .about-text {
            flex: 2;
        }
        .about-text h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #0b2b44;
        }
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .about-card {
            background: #f8fafc;
            padding: 28px;
            border-radius: 24px;
        }
        .about-card i {
            font-size: 2rem;
            color: #e67e22;
            margin-bottom: 15px;
        }
        .about-card ul {
            padding-left: 20px;
            margin-top: 10px;
        }
        .keunggulan-section {
            background: #0b2b44;
            color: white;
            padding: 30px;
            border-radius: 28px;
            margin-top: 30px;
        }
        .keunggulan-section h4 {
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .keunggulan-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        .keunggulan-list div {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* ==================== CONTACT PAGE ==================== */
        .contact-section {
            padding: 60px 0;
        }
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 50px;
        }
        .contact-info {
            flex: 1.2;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 24px;
        }
        .info-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            border: 1px solid #eef2ff;
        }
        .info-card i {
            font-size: 2rem;
            color: #e67e22;
            margin-bottom: 12px;
        }
        .info-card h4 {
            margin: 8px 0;
            font-weight: 700;
        }
        .info-card p, .info-card a {
            color: #334155;
            text-decoration: none;
        }
        .map-container {
            flex: 1;
            min-width: 280px;
        }
        #google-map {
            height: 350px;
            width: 100%;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }
        .map-caption {
            margin-top: 12px;
            font-size: 0.8rem;
            text-align: center;
            color: #5b6e8c;
        }
        .direction-link {
            text-align: center;
            margin-top: 15px;
        }
        .direction-link a {
            color: #e67e22;
            text-decoration: none;
            font-weight: 600;
        }

        /* ==================== CONTACT FORM ==================== */
        .contact-form-container {
            background: #f8fafc;
            border-radius: 28px;
            padding: 32px;
            margin-top: 40px;
        }
        .contact-form-container h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #0b2b44;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.9rem;
        }
        .btn-submit {
            background: #e67e22;
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.2s;
        }
        .btn-submit:hover {
            background: #d35400;
        }

        /* ==================== INFO PRODUK TAMBAHAN ==================== */
        .info-produk-tambahan {
            padding: 40px 0 60px;
            background: #fefcf9;
        }
        .info-box {
            background: white;
            border-radius: 24px;
            padding: 28px;
        }
        .info-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: flex-start;
        }
        .info-item i {
            font-size: 1.5rem;
            color: #e67e22;
        }

        /* ==================== HIDE/SHOW PAGE ==================== */
        .page-content {
            display: none;
        }
        .page-content.active-page {
            display: block;
        }

        /* ==================== CHAT BUBBLE ==================== */
        .chat-bubble {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: white;
            padding: 12px 22px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: 0.2s;
            z-index: 1000;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .chat-bubble i {
            font-size: 1.2rem;
        }
        .chat-bubble:hover {
            transform: scale(1.05);
            background-color: #20b859;
        }

        /* ==================== FOOTER ==================== */
        footer {
            background-color: #0b2b44;
            color: #cbd5e6;
            text-align: center;
            padding: 30px 0;
            margin-top: 40px;
            font-size: 0.85rem;
        }
        footer p {
            margin: 6px 0;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .container {
                padding: 0 18px;
            }
            .navbar ul {
                gap: 18px;
            }
            .logo h1 {
                font-size: 1.2rem;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .about-hero {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .navbar ul {
                flex-direction: column;
                gap: 8px;
                margin-bottom: 12px;
            }
            .navbar {
                flex-direction: column;
                align-items: start;
            }
            .search-icon {
                margin-top: 12px;
            }
            .section-title {
                font-size: 1.4rem;
            }
        }