/* 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;
}
/* Ultra-Wide Article Container */
.article-container {
  max-width: 1200px;
  margin: 2rem auto;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

/* Hero Header with Parallax Effect */
.article-header {
  background: 
      linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
      url('https://images.unsplash.com/photo-1639762681057-408e52192e55?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
}

.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: relative;
}

/* Extra-Wide Content Area */
.article-content {
  padding: 4rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Modern Section Styling */
.article-section {
  margin-bottom: 4rem;
}

.article-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.article-section h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 5px;
  background: var(--gradient);
  border-radius: 3px;
}

.article-section p {
  font-size: 1.15rem;
  color: #334155;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

/* Premium Highlight Cards */
.highlight-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  margin: 3rem 0;
  border-left: 6px solid var(--accent);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79,70,229,0.03) 0%, rgba(236,72,153,0.03) 100%);
}

.highlight-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
}

/* Elegant Pull Quotes */
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  margin: 3rem 0;
  background: var(--light);
  border-radius: 8px;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .article-content {
      padding: 3rem 4rem;
  }
  
  .article-header h1 {
      font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .article-container {
      margin: 1rem;
      border-radius: 16px;
  }
  
  .article-header {
      padding: 6rem 2rem;
      background-attachment: scroll;
  }
  
  .article-header h1 {
      font-size: 2.2rem;
  }
  
  .article-content {
      padding: 2rem;
  }
  
  .article-section h2 {
      font-size: 2rem;
  }
  
  .highlight-card {
      padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .article-header {
      padding: 4rem 1.5rem;
  }
  
  .article-header h1 {
      font-size: 1.8rem;
  }
  
  .article-section h2 {
      font-size: 1.6rem;
  }
  
  .article-section p {
      font-size: 1rem;
  }
}

/* Animation Effects */
@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;
  }
}