/* Global Styles */
:root {
    --primary-color: #0071e3;
    --secondary-color: #f5f5f7;
    --text-color: #1d1d1f;
    --text-light: #86868b;
    --white: #ffffff;
    --black: #000000;
    --gray: #f5f5f7;
    --dark-gray: #424245;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Text', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #0077ed;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: rgba(0, 113, 227, 0.1);
}

.btn-link {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-link i {
    font-size: 12px;
}

/* Navbar Styles */
.navbar {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 30px;
}

.nav-menu ul {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--white);
}

.hero-content {
    max-width: 600px;
    margin-left: 10%;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero p {
    font-size: 28px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.info-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.info-card {
    text-align: center;
    padding: 30px;
    flex: 1;
    min-width: 250px;
}

.info-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-light);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 21px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    width: 280px;
    background-color: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background-color: var(--secondary-color);
}

.product-image img {
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 20px;
    text-align: left;
}

.product-category {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.product-name {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-model {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-price {
    margin-top: 15px;
}

.price-monthly {
    font-size: 16px;
    color: var(--text-light);
}

.price-cash {
    font-size: 21px;
    font-weight: 600;
    margin-top: 5px;
}

.product-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
    gap: 50px;
}

.feature.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-image {
    flex: 1;
}

.feature h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature p {
    font-size: 21px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.feature-image img {
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-logo img {
    height: 30px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--text-light);
    max-width: 250px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    flex: 1;
}

.link-group h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-group a {
    font-size: 14px;
    color: var(--white);
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--dark-gray);
    color: var(--text-light);
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 24px;
    }
    
    .feature {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .feature.reverse {
        flex-direction: column;
    }
    
    .feature-content, .feature-image {
        flex: none;
        width: 100%;
    }
    
    .feature h2 {
        font-size: 32px;
    }
    
    .feature p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        min-height: 600px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .info-card {
        min-width: 100%;
    }
    
    .product-card {
        width: 100%;
    }
}


/* Filter Controls Styles */
.filter-controls {
    display: flex;
    justify-content: center; /* Tengah secara horizontal */
    align-items: center; /* Tengah secara vertical */
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
}

.filter-group label {
    font-size: 14px;
    color: var(--text-light);
}

.filter-select {
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #d2d2d7;
    background-color: var(--white);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: var(--primary-color);
}

#reset-filters {
    margin-left: 0; /* Remove auto margin */
    padding: 8px 20px;
}

.no-results {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    grid-column: 1 / -1;
    padding: 40px 0;
}

.product-card {
    transition: all 0.3s ease;
}