/* Navbar Styles */

.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent) !important;
    font-weight: bold;
    position: relative;
}

.navbar.scrolled {
    background-color: var(--primary) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
}


/* Hero Section */
.hero-section {
    height: 60vh;
    min-height: 400px;
    background-image: url('https://ik.imagekit.io/LKS08011968/Image%20LKS/image/HeroSection%20Produk.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    /* margin-top: 76px; */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 31, 44, 0.7);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
}

@media (max-width: 767px) {
    .hero-section p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .product-card img {
        height: 180px;
    }
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    color: #1A1F2C;
    margin-bottom: 0.5rem;
}

.product-content p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Partners Section */

/* Mobile responsiveness */
@media (max-width: 767px) {
    .hero-section {
        height: 50vh;
        min-height: 300px;
    }

    .products-section {
        padding: 3rem 0;
    }

    .product-content {
        padding: 1rem;
    }

    .product-content h3 {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .featured-banner h2 {
        font-size: 1.6rem;
    }

    .featured-banner p {
        font-size: 0.9rem;
    }

    .filter-button {
        margin-bottom: 10px;
        padding: 6px 12px;
        font-size: 14px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

/* Tablet responsiveness */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section {
        height: 50vh;
    }

    .product-card {
        margin-bottom: 20px;
    }
}
.partners-section {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.partners-section h2 {
    color: #1A1F2C;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-description {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.partner-logo {
    width: 180px;
    height: 180px;
    background: #fff;
    /* border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 12px;
    transition: box-shadow 0.3s;
}

.partner-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

/* Footer */
.social-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

.social-icon:hover {
    background-color: var(--white);
    color: var(--primary);
}

footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 5rem;
    padding-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--white);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

/* .footer {
    background-color: #1A1F2C;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand i {
    color: #9b87f5;
    margin-right: 0.5rem;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #9b87f5;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: #9b87f5;
    margin-right: 0.5rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #9b87f5;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
} */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-contact {
        justify-content: center;
    }
    
    .social-links {
        margin-top: 2rem;
    }
}