/* style.css */
/* Font Imports & General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    line-height: 1.7;
    color: #e0e0e0;
    background-color: #2c3e50;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #f0f0f0;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 30px 0;
}

/* --- Navbar Styles --- */
.navbar {
    background: #34495e;
    color: #f0f0f0;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
}

.navbar .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.navbar .nav-item {
    color: #f0f0f0;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.navbar .nav-item:hover {
    background-color: #007bff;
    color: #fff;
}

/* --- Hero Section Styles (Homepage) --- */
.hero-section {
    position: relative;
    /* BARIS INI DIHAPUS agar hero section bisa menyesuaikan konten */
    /* height: 70vh; */ 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* overflow: hidden; */ /* BARIS INI DIHAPUS agar konten yang terlalu panjang tidak terpotong */
    min-height: 70vh; /* BARIS INI DITAMBAHKAN, menggunakan min-height agar hero section tetap minimal 70% tinggi layar */
    padding: 80px 0; /* BARIS INI DITAMBAHKAN untuk memberikan ruang di atas dan bawah konten */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 900px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    width: 90%;
    box-sizing: border-box;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 0;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    flex-shrink: 0;
}

.hero-text {
    text-align: left;
    flex-grow: 1;
    max-width: 600px;
}

.hero-section h1 {
    font-size: 4em;
    margin: 0 0 10px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    line-height: 1.1;
    word-break: break-word;
}

.hero-section h2 {
    font-size: 2em;
    font-weight: 400;
    color: #e0e0e0;
    margin: 0 0 20px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    line-height: 1.2;
    word-break: break-word;
}

.hero-tagline {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: 0;
    margin-right: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    line-height: 1.5;
}

.hero-buttons {
    margin-top: 30px;
}

/* --- General Section Styles --- */
.section {
    padding: 80px 0;
    border-bottom: 1px solid #444;
}

.section:last-of-type {
    border-bottom: none;
}

.section h3 {
    text-align: center;
    color: #f0f0f0;
    font-size: 3em;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: #007bff;
    border-radius: 2px;
}

.section-description {
    text-align: center;
    font-size: 1.2em;
    color: #b0b0b0;
    max-width: 800px;
    margin: -20px auto 60px auto;
}

.bg-light {
    background-color: #3b5971;
}
.bg-dark-alt {
    background-color: #212529;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,123,255,0.4);
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,123,255,0.5);
}

.btn-secondary {
    background-color: #28a745;
    color: #fff;
    box-shadow: 0 4px 10px rgba(40,167,69,0.4);
}

.btn-secondary:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(40,167,69,0.5);
}

.btn-tertiary {
    background-color: #6c757d;
    color: #fff;
    box-shadow: 0 4px 10px rgba(108,117,125,0.4);
}

.btn-tertiary:hover {
    background-color: #5a6268;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(108,117,125,0.5);
}

.btn i {
    margin-left: 10px;
}

/* --- About Section Styles --- */
.about-section {
    background-color: #2c3e50;
    color: #e0e0e0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.about-text {
    flex: 2;
    min-width: 300px;
    max-width: 700px;
    text-align: justify;
}

.about-text h3 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 2.5em;
    padding-bottom: 10px;
    color: #f0f0f0;
}
.about-text h3::after {
    left: 0;
    width: 80px;
}

.about-text p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
}

.about-image {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* --- "Why Choose Us" Section --- */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}
.why-choose-item {
    background-color: #4a6a84;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #5a7b97;
}
.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.why-choose-item i {
    font-size: 3.5em;
    color: #0099ff;
    margin-bottom: 20px;
}
.why-choose-item h4 {
    font-size: 1.5em;
    color: #f0f0f0;
    margin-top: 0;
    margin-bottom: 10px;
}
.why-choose-item p {
    font-size: 1em;
    color: #c0c0c0;
}

/* --- Services Section (Homepage Grid) --- */
.services-section {
    padding-bottom: 80px;
    background-color: #3b5971;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #4a6a84;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border: 1px solid #5a7b97;
    height: 100%;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background-color: #5a7b97;
}

.service-icon {
    font-size: 4em;
    color: #0099ff;
    margin-bottom: 25px;
}

.service-card h4 {
    color: #f0f0f0;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 1.1em;
    margin-bottom: 0;
    text-align: center;
    color: #c0c0c0;
}

/* --- Partners Section --- */
.partners-section {
    padding: 60px 0;
}
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}
.partner-logo {
    max-width: 150px;
    max-height: 80px;
    
    transition: filter 0.3s ease, transform 0.3s ease;
}
.partner-logo:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* --- Mission/Vision Section --- */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mv-card {
    background-color: #2c3e50;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: justify;
    color: #e0e0e0;
}

.mv-card h3 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 25px;
    color: #f0f0f0;
    position: relative;
    padding-bottom: 10px;
}

.mv-card h3::after {
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: #007bff;
}

.mv-card p, .mv-card ul {
    font-size: 1.05em;
    line-height: 1.7;
}

.mv-card ul {
    list-style: none;
    padding-left: 0;
}

.mv-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.mv-card ul li::before {
    content: '\2713';
    color: #28a745;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
    background-color: #3b5971;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: #4a6a84;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid #5a7b97;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.testimonial-card p {
    font-style: italic;
    color: #c0c0c0;
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #f0f0f0;
    font-style: normal;
    display: block;
    font-size: 1em;
}

/* --- Main Layout for Detail Page (`layanan-detail.html`) --- */
.main-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 30px auto;
    background-color: #3b5971;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    overflow: hidden;
    color: #e0e0e0;
}

/* --- Sidebar Styles --- */
.sidebar {
    flex: 0 0 280px;
    background-color: #2c3e50;
    padding: 30px 20px;
    border-right: 1px solid #4a6a84;
    box-sizing: border-box;
}

.sidebar h3 {
    font-size: 1.8em;
    color: #f0f0f0;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: left;
    padding-bottom: 10px;
    position: relative;
}
.sidebar h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    border-radius: 2px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar-item {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1.1em;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.sidebar-item:hover {
    background-color: #4a6a84;
    color: #fff;
    transform: translateX(5px);
}

.sidebar-item.active {
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* --- Content Area Styles (Detail Page) --- */
.content-area {
    flex: 1;
    padding: 40px;
    box-sizing: border-box;
}

.service-detail-section {
    display: none;
    animation: fadeInContent 0.5s ease-out;
}

.service-detail-section.active-service-detail {
    display: block;
}

@keyframes fadeInContent {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-detail-section h3 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 2.5em;
    color: #f0f0f0;
}
.service-detail-section h3::after {
    left: 0;
}

.service-detail-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-details-points {
    margin-top: 30px;
}
.service-details-points h4 {
    font-size: 1.3em;
    color: #007bff;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.service-details-points ul {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}
.service-details-points ul li {
    background-color: #4a6a84;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-weight: 600;
    color: #f0f0f0;
    position: relative;
    padding-left: 40px;
}
.service-details-points ul li::before {
    content: '\2022';
    font-size: 1.5em;
    line-height: 1;
    color: #007bff;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* --- CSS untuk Produk Unggulan dan Merek Distribusi --- */
.product-category {
    margin-bottom: 40px;
}
.product-category h4 {
    color: #f0f0f0;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.5em;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}
.product-category ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.product-category li {
    background-color: #4a6a84;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, background-color 0.2s ease;
    text-align: center;
    font-weight: 600;
    color: #f0f0f0;
}
.product-category li:hover {
    transform: translateY(-3px);
    background-color: #5a7b97;
}

/* --- Styling for Brand Logos --- */
.brand-logo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: center;
    margin-top: 40px;
}

.brand-item {
    background-color: #4a6a84;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 200px;
    height: 120px;
    box-sizing: border-box;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.brand-item img {
    max-width: 100%;
    max-height: 80px;
    display: block;
    filter: brightness(1.2);
}

/* --- Footer Styles --- */
footer {
    background: #212529;
    color: #e0e0e0;
    text-align: center;
    padding: 50px 0;
    font-size: 0.95em;
}

footer h3 {
    margin: 0 0 30px;
    color: #fff;
    font-size: 2.5em;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    text-align: left;
}

.contact-details {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.contact-details p {
    margin: 12px 0;
    font-size: 1.15em;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #e0e0e0;
}
.contact-details p i {
    color: #0099ff;
    font-size: 1.3em;
    margin-top: 3px;
}

.thank-you {
    margin-top: 30px;
    font-weight: bold;
    font-size: 1.5em;
    color: #fff;
    letter-spacing: 0.5px;
    text-align: center;
}

.google-map {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.social-icons {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
}

.social-icons a {
    display: inline-block;
    margin: 0 18px;
    color: #fff;
    font-size: 2.5em;
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-7px) scale(1.1);
    color: #0099ff;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 35px;
    right: 35px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 2.8em;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1500;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    background-color: #1eaf53;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* --- ANIMASI --- */
/* Base styles for animations */
.animate-fade-in,
.animate-slide-up,
.animate-slide-up-delay,
.animate-fade-in-delay,
.animate-fade-in-delay-more {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Delay animations */
.animate-slide-up-delay {
    transition-delay: 0.3s;
}
.animate-fade-in-delay {
    transition-delay: 0.5s;
}
.animate-fade-in-delay-more {
    transition-delay: 0.7s;
}

/* Animation on visible */
.animate-fade-in.visible,
.animate-slide-up.visible,
.animate-slide-up-delay.visible,
.animate-fade-in-delay.visible,
.animate-fade-in-delay-more.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .container {
        width: 90%;
        padding: 20px 0;
    }
    .hero-section {
        height: auto;
        min-height: 50vh;
        padding: 40px 0;
    }
    .hero-logo {
        max-width: 150px;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .hero-text {
        text-align: center;
    }
    .hero-section h1 {
        font-size: 3.2em;
    }
    .hero-section h2 {
        font-size: 1.5em;
    }
    .hero-tagline {
        font-size: 1em;
        margin-bottom: 0;
    }
    .hero-buttons {
        margin-top: 20px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .section {
        padding: 60px 0;
    }
    .section h3 {
        font-size: 2.5em;
    }
    .section h3::after {
        width: 80px;
        height: 4px;
    }
    .section-description {
        font-size: 1.1em;
        margin-bottom: 40px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-text h3 {
        text-align: center;
    }
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-image {
        order: -1;
    }
    .about-text p {
        text-align: justify;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-choose-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    .service-icon {
        font-size: 3.5em;
    }
    .service-card h4 {
        font-size: 1.5em;
    }
    .service-card p {
        font-size: 1.1em;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }
    .mv-card {
        padding: 30px;
    }
    .mv-card h3 {
        font-size: 2em;
    }

    .main-wrapper {
        flex-direction: column;
        margin: 20px auto;
        width: 90%;
    }
    .sidebar {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #4a6a84;
        padding-bottom: 20px;
        text-align: center;
    }
    .sidebar h3 {
        text-align: center;
    }
    .sidebar h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .sidebar ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .sidebar li {
        margin-bottom: 0;
    }
    .sidebar-item {
        padding: 10px 15px;
        font-size: 1em;
    }
    .content-area {
        padding: 30px;
    }
    .service-detail-section h3 {
        font-size: 2em;
        text-align: center;
    }
    .service-detail-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    footer {
        padding: 40px 0;
    }
    footer h3 {
        font-size: 2em;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    .social-icons a {
        font-size: 2em;
    }
    .whatsapp-float {
        width: 55px; height: 55px; font-size: 2.4em; bottom: 25px; right: 25px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 40vh;
    }
    .hero-logo {
        max-width: 120px;
    }
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section h2 {
        font-size: 1.2em;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-item {
        padding: 25px;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    .brand-logo-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    .brand-item {
        height: 100px;
        padding: 15px;
    }
    .brand-item img {
        max-height: 80px;
    }
    .whatsapp-float {
        width: 55px; height: 55px; font-size: 2.4em; bottom: 25px; right: 25px;
    }
}

@media (max-width: 480px) {
    .navbar .nav-item {
        padding: 5px 10px;
        font-size: 0.8em;
        margin: 5px;
    }
    .hero-section {
        min-height: 35vh;
    }
    .hero-logo {
        max-width: 100px;
        margin-bottom: 15px;
    }
    .hero-section h1 {
        font-size: 1.8em;
    }
    .hero-section h2 {
        font-size: 0.9em;
    }
    .hero-tagline {
        font-size: 0.8em;
        margin-bottom: 15px;
    }
    .about-text {
        min-width: unset;
    }
    .about-text h3 {
        font-size: 1.8em;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .sidebar ul {
        flex-direction: column;
    }
    .brand-logo-list {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }
    .brand-item {
        height: 80px;
        padding: 10px;
    }
    .brand-item img {
        max-height: 60px;
    }
    .whatsapp-float {
        width: 45px; height: 45px; font-size: 2em; bottom: 15px; right: 15px;
    }
}
/* Styling untuk Bagian Merek yang Didistribusikan */
.logo-section {
    padding: 20px 0;
    text-align: center;
    background-color: #e0d5d5;
    border-top: 0.50px solid #eee;
}

.logo-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.logo-section .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25em;
    color: #666;
    margin-bottom: 50px;
}

.brand-logo-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.brand-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.brand-item img {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsif untuk tampilan mobile */
@media (max-width: 768px) {
    .logo-section {
        padding: 60px 0;
    }

    .brand-item {
        padding: 15px;
    }

    .brand-item img {
        max-width: 100px;
    }
}
/* Styling untuk bagian produk unggulan dengan grid */
.product-grid-section {
padding-bottom: 80px;
}

.product-category-grid {
margin-bottom: 40px;
}

.product-category-grid h4 {
font-size: 1.8em;
color: #333;
margin-bottom: 20px;
border-bottom: 2px solid #007bff;
padding-bottom: 10px;
}

.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Mengatur tata letak grid responsif */
gap: 30px;
margin-top: 20px;
text-align: center;
}

.product-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
border-radius: 10px;
background-color: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.product-item:hover {
transform: scale(1.05);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.product-icon-wrapper {
background-color: #74c5db; /* Warna latar belakang lingkaran ikon /
border-radius: 50%;
width: 80px; / Ukuran lingkaran ikon */
height: 80px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15px;
}

.product-icon-wrapper img {
max-width: 100%; /* Ukuran ikon di dalam lingkaran */
max-height: 100%;
object-fit: contain;
}

.product-name {
font-size: 50em;
color: #0e0468;
margin-top: 10px;
text-align: center;
font-weight: bold;
}

/* Responsif untuk layar lebih kecil */
@media (max-width: 768px) {}
.product-grid {
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 20px;
}
.product-icon-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.product-name {
    font-size: 0.9em;
}