/* CSS Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'poppins', sans-serif;
      background: linear-gradient(to right, #56ccf2, #ffffff);
  }
  
  /* Header Styles */
  header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ini yang menyelaraskan vertikal */
  }
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropbtn {
    background-color: #2563eb; /* Warna biru seperti gambar */
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 9999px; /* Biar tombolnya oval */
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'poppins', sans-serif;
  }
  
  .dropbtn:hover {
    background-color: #1e40af; /* Biru lebih gelap saat hover */
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Logo Styles */
  .logo {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
  }
  .highlightlogo{
    color: #007bff;
  }
  
  /* Navigation Styles */
  nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    height: 100%;
    align-items: center; /* Menyelaraskan vertikal */
  }
  
  nav li {
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
    height: 100%;
  }
  
  nav li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
  }
  
  /* Button Styles */
  .contact-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
    height: 40px;
  }
  
  .contact-btn:hover {
    background-color: #0069d9;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  /* Article Container */
  .article-container {
    max-width: 1100px;
    margin: 3rem auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Hero Header */
.article-header {
    background: 
        linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
        url('https://images.unsplash.com/photo-1606787366850-de6330128bfc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
}

.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
}

/* Article Content */
.article-content {
    padding: 4rem 5rem;
}

/* Section Styling */
.article-section {
    margin-bottom: 3.5rem;
}

.article-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
}

.article-section h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.article-section p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(to right, #f8fafc, #ffffff);
    border-left: 5px solid var(--accent);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.highlight-box h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

/* List Styling */
.factor-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.factor-list li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.1rem;
    color: #4a5568;
}

.factor-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-content {
        padding: 3rem 4rem;
    }
    
    .article-header h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .article-container {
        margin: 1.5rem;
        border-radius: 16px;
    }
    
    .article-header {
        padding: 4rem 2rem;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-content {
        padding: 2.5rem;
    }
    
    .article-section h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 480px) {
    .article-header {
        padding: 3rem 1.5rem;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-content {
        padding: 2rem;
    }
    
    .article-section h2 {
        font-size: 1.5rem;
    }
    
    .article-section p {
        font-size: 1rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.article-section {
    animation: fadeIn 0.6s ease forwards;
}

.article-section:nth-child(2) { animation-delay: 0.1s; }
.article-section:nth-child(3) { animation-delay: 0.2s; }
.article-section:nth-child(4) { animation-delay: 0.3s; }
.article-section:nth-child(5) { animation-delay: 0.4s; }
/* Opinion Grid */

.opini-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3498db;
  }
  
  .opini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .opini-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 350px;
  }
  
  .opini-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
  }
  
  .opini-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    padding: 30px 20px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
  }
  
  .opini-card:hover .opini-overlay {
    opacity: 1;
    transform: translateY(0);
  }
  
  .opini-card:hover .opini-image {
    transform: scale(1.05);
  }
  
  .opini-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .opini-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
/* ===== FOOTER STYLES ===== */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 60px;
  }
  
  .footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .footer-col {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
  }
  
  .footer-logo .highlight {
    color: #3498db;
  }
  
  .footer-about p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ecf0f1;
  }
  
  .footer-links h3, 
  .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-links h3::after,
  .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3498db;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  
  .contact-icon {
    color: #3498db;
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  
  .social-links a:hover {
    background: #3498db;
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer {
      padding: 40px 0 20px;
    }
    
    .footer-col {
      flex: 100%;
      margin-bottom: 30px;
    }
    
    .footer-links h3,
    .footer-contact h3 {
      margin-bottom: 15px;
    }
  }