* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #1a2a4f;
  line-height: 1.5;
  overflow-x: hidden;
}

:root {
  --primary-blue: #1a2a4f;
  --primary-blue-dark: #0f1c38;
  --primary-blue-light: #2d4070;
  --gold: #ffd700;
  --gold-dark: #d4af37;
  --gold-light: #ffed8a;
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #f1f3f8;
  --gray-200: #e2e8f0;
  --gray-600: #475569;
  --gray-700: #2d3748;
  --gray-800: #1e293b;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo-icon img {
  width: 100%;
  height: auto;
  max-width: 48px;
  object-fit: contain;
}

.logo-icon:hover {
  transform: scale(1.05);
}

.logo-text h1 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.logo-text h1 span {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a,
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links a::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.dropdown-toggle:hover::after {
  width: 100%;
}

.nav-links a:hover,
.dropdown-toggle:hover {
  color: var(--gold-dark);
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid var(--gray-200);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.5rem;
  padding-left: 1rem !important;
  text-decoration: none;
  color: var(--gray-700);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: linear-gradient(
    90deg,
    var(--gold-light) 0%,
    rgba(255, 215, 0, 0.1) 100%
  );
  color: var(--primary-blue);
}

.dropdown-item.active {
  background: linear-gradient(
    90deg,
    var(--gold-light) 0%,
    rgba(255, 215, 0, 0.2) 100%
  );
  color: var(--primary-blue);
  font-weight: 600;
  border-left: 3px solid var(--gold);
}

.btn-login {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--primary-blue);
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
  color: var(--primary-blue);
  background: linear-gradient(135deg, #ffe44d 0%, #e6c200 100%);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-blue);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--primary-blue);
  padding: 0.9rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 215, 0, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-dark) 100%
  );
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

.content-section {
  padding: 4rem 2rem;
  background: var(--white);
}

.content-container {
  max-width: 1280px;
  margin: 0 auto;
}

.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 79, 0.9) 0%,
    rgba(15, 28, 56, 0.85) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.slide-content-inner {
  max-width: 800px;
  animation: fadeInUp 0.8s ease;
}

.slide-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold);
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.slide-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.slide-content h1 span {
  color: var(--gold);
}

.slide-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.slide-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 10px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--white);
  font-size: 1.2rem;
}

.carousel-arrow:hover {
  background: var(--gold);
  color: var(--primary-blue);
}

.carousel-arrow.prev {
  left: 20px;
}

.carousel-arrow.next {
  right: 20px;
}

.program {
  padding: 5rem 2rem;
  background: var(--white);
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--gold-dark);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.program-card {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.program-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    rgba(255, 215, 0, 0.2) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--gold-dark);
}

.program-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.program-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

.berita {
  padding: 5rem 2rem;
  background: var(--gray-50);
}

.berita-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.berita-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.berita-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.berita-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.berita-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.berita-card:hover .berita-image img {
  transform: scale(1.05);
}

.berita-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-blue);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
}

.berita-content {
  padding: 1.5rem;
}

.berita-date {
  font-size: 0.8rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}

.berita-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.berita-excerpt {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.berita-link {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s ease;
}

.berita-link:hover {
  gap: 0.6rem;
}

.berita-detail {
  max-width: 100%;
  margin: 0 auto;
}

.berita-detail-image {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  object-fit: cover;
  max-height: 450px;
}

.berita-detail-image.no-image {
  background: var(--gray-100);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.berita-detail-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-600);
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.berita-detail-meta i {
  margin-right: 0.3rem;
  color: var(--gold-dark);
}

.berita-detail-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.berita-detail-content {
  line-height: 1.8;
  color: var(--gray-700);
  font-size: 1rem;
}

.berita-detail-content p {
  margin-bottom: 1rem;
}

.berita-detail-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 1rem 0;
}

.berita-detail-content h2,
.berita-detail-content h3,
.berita-detail-content h4 {
  color: var(--primary-blue);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.berita-detail-content ul,
.berita-detail-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.berita-detail-content li {
  margin-bottom: 0.5rem;
}

.share-section {
  border-top: 1px solid var(--gray-200);
  margin-top: 2rem;
  padding-top: 2rem;
}

.share-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.share-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.share-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.share-btn.facebook {
  background: #1877f2;
}
.share-btn.twitter {
  background: #1da1f2;
}
.share-btn.whatsapp {
  background: #25d366;
}
.share-btn.linkedin {
  background: #0a66c2;
}

.back-to-berita {
  margin-top: 2rem;
  text-align: center;
}

.profil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.profil-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.profil-stats {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 2rem;
}

.stat-item-big {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.visi-card,
.misi-card {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--gold);
}

.visi-card h3,
.misi-card h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.misi-list {
  list-style: none;
  padding: 0;
}

.misi-list li {
  padding: 0.75rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--gray-200);
}

.misi-list li:last-child {
  border-bottom: none;
}

.misi-list li i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.sidebar-widget {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  box-shadow: var(--shadow-md);
}

.sidebar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 0.75rem;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  background: var(--gray-50);
  border-radius: 40px;
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.category-link:hover {
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    rgba(255, 215, 0, 0.2) 100%
  );
  color: var(--primary-blue);
  border-color: var(--gold);
  transform: translateX(5px);
}

.category-badge {
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

.recent-news-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.recent-news-item:last-child {
  border-bottom: none;
}

.recent-news-item:hover {
  transform: translateX(5px);
}

.recent-news-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--gray-100);
}

.recent-news-img.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-400);
  font-size: 1.5rem;
}

.recent-news-content {
  flex: 1;
}

.recent-news-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.recent-news-title a {
  text-decoration: none;
  color: var(--primary-blue);
  transition: color 0.3s ease;
}

.recent-news-title a:hover {
  color: var(--gold-dark);
}

.news-meta {
  font-size: 0.7rem;
  color: var(--gray-600);
}

.hover-gold:hover {
  color: var(--gold-dark) !important;
}

.pagination-link {
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  border-radius: 8px;
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid transparent;
}

.pagination-link:hover {
  background: var(--gold-light);
  color: var(--primary-blue);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.pagination-active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-blue);
  font-weight: 700;
}

.pagination-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.cta {
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-dark) 100%
  );
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: none;
}

.cta .btn-primary:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer {
  background: var(--primary-blue-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 2rem 1.5rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--gold);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.footer-credit {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.credit-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.credit-link:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

@media (max-width: 992px) {
  .slide-content h1 {
    font-size: 2.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .berita-grid {
    grid-template-columns: 1fr;
  }

  .profil-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .berita-detail-title {
    font-size: 1.5rem;
  }

  .berita-detail-image {
    max-height: 350px;
  }

  .row {
    flex-direction: column;
  }

  .col-lg-8,
  .col-lg-4 {
    width: 100%;
  }

  .sidebar-widget {
    margin-bottom: 1.5rem;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: var(--gray-50);
    border-radius: 8px;
    margin-top: 0.5rem;
    margin-left: 1rem;
    border: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-toggle i {
    margin-left: auto;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .nav-links a::after,
  .dropdown-toggle::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-icon img {
    max-width: 40px;
  }

  .logo-text h1 {
    font-size: 1rem;
  }

  .berita-detail-meta {
    gap: 1rem;
    font-size: 0.75rem;
  }

  .share-icons {
    flex-wrap: wrap;
  }

  .sidebar-widget {
    padding: 1rem;
  }

  .footer-logo-icon {
    width: 35px;
    height: 35px;
  }

  .footer-bottom {
    font-size: 0.7rem;
  }

  .footer-credit {
    font-size: 0.65rem;
  }
}

@media (max-width: 576px) {
  .nav-container {
    padding: 0 1rem;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .logo-icon img {
    max-width: 36px;
  }

  .logo-text h1 {
    font-size: 0.9rem;
  }

  .pagination-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .recent-news-img {
    width: 55px;
    height: 55px;
  }

  .recent-news-title {
    font-size: 0.8rem;
  }

  .content-container {
    padding: 0 1rem;
  }

  .berita-detail-title {
    font-size: 1.3rem;
  }

  .berita-detail-content {
    font-size: 0.9rem;
  }
}
