/* CSS khusus untuk halaman beranda MQO */
/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 94, 46, 0.8), rgba(30, 62, 32, 0.9)), url("https://images.unsplash.com/photo-1519734461761-b5965072e4b2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 8px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffd700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: #ffd700;
    color: #1e3e20;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Fitur Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #2c5e2e;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: #ffffff; /* Diubah menjadi putih */
    margin-bottom: 15px;
    background-color: #2c5e2e;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-card h3 {
    color: #2c5e2e;
    margin-bottom: 10px;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #2c5e2e 0%, #1e3e20 100%);
    color: white;
    padding: 50px 20px;
    border-radius: 8px;
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: #ffd700;
}

/* MQO Info Section */
.mqo-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #2c5e2e;
    text-align: center;
}

.launch-date {
    background: #2c5e2e;
    color: white;
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    margin: 15px 0;
}

.mqo-logo {
    height: 250px;
    margin-bottom: 20px;
    max-width: 100%;
}

.tagline-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1e3e20 0%, #2c5e2e 100%);
    color: white;
    border-radius: 8px;
    margin: 30px 0;
}

.tagline-text {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}

.tagline-subtext {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: #2c5e2e;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.content-section h2 i {
    color: #ffffff; /* Diubah menjadi putih */
    background-color: #2c5e2e;
    padding: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.content-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2c5e2e;
}

.content-card h3 {
    color: #2c5e2e;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.content-card h3 i {
    color: #ffffff; /* Diubah menjadi putih */
    background-color: #2c5e2e;
    padding: 8px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Responsif untuk beranda */
@media screen and (max-width: 768px) {
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .mqo-info {
        padding: 25px 15px;
    }
    
    .tagline-text {
        font-size: 1.5rem;
    }
    
    .tagline-subtext {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .mqo-logo {
        height: 180px;
    }
}

/* Responsif untuk mobile landscape */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 40px 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .mqo-logo {
        height: 120px;
        margin-bottom: 15px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
}

/* Responsif untuk perangkat sangat kecil */
@media screen and (max-width: 480px) {
    .hero {
        padding: 40px 10px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .mqo-logo {
        height: 150px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h2 i {
        padding: 8px;
    }
}