* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item i {
  font-size: 16px;
}

/* Header */
header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
  position: relative;
}

nav a:hover {
  color: #14b8a6;
}

nav a.active {
  color: #0d9488;
}

.nav-item-dropdown::after {
  content: '+';
  margin-left: 5px;
  font-weight: bold;
}

.btn-berlangganan {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-berlangganan:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  border-radius: 10px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
  min-height: calc(100vh - 140px);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

/* Wave Layer 1 - Darker/Transparent (Background Wave) */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'%3E%3Cpath fill='rgba(200, 180, 255, 0.4)' d='M0,100 C240,150 480,150 720,100 C960,50 1200,50 1440,100 L1440,200 L0,200 Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 1;
}

/* Wave Layer 2 - Brighter/White (Front Wave) */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,80 C240,120 480,120 720,80 C960,40 1200,40 1440,80 L1440,150 L0,150 Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 2;
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: white;
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #dbeafe;
}

.hero p {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.btn {
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  position: relative;
  z-index: 10;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
  color: white;
  box-shadow: 0 5px 20px rgba(20, 184, 166, 0.4);
}

.btn-secondary:hover {
  box-shadow: 0 8px 30px rgba(20, 184, 166, 0.6);
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  background: white;
  border-radius: 15px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.float-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.float-2 {
  top: 40%;
  right: 5%;
  animation-delay: 1s;
}

.float-3 {
  bottom: 25%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element.cepat {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-element.cepat::before {
  content: '⚡';
  font-size: 24px;
}

.floating-element.aman {
  background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-element.aman::before {
  content: '✓';
  font-size: 24px;
  background: white;
  color: #14b8a6;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-element.stabil {
  background: white;
  color: #333;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-element.stabil::before {
  content: '»';
  font-size: 24px;
  color: #2563eb;
}

/* Social Icons Floating */
.social-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-whatsapp {
  background: #25d366;
  top: 20%;
  left: 5%;
}

.social-youtube {
  background: #ff0000;
  top: 15%;
  right: 15%;
  animation-delay: 0.5s;
}

.social-linkedin {
  background: #0077b5;
  top: 35%;
  right: 5%;
  animation-delay: 1s;
}

.social-facebook {
  background: #1877f2;
  bottom: 40%;
  left: 8%;
  animation-delay: 1.5s;
}

.social-netflix {
  background: #e50914;
  bottom: 30%;
  left: 2%;
  animation-delay: 2s;
}

.social-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  bottom: 20%;
  right: 10%;
  animation-delay: 2.5s;
}

.social-telegram {
  background: #0088cc;
  bottom: 35%;
  right: 2%;
  animation-delay: 3s;
}

/* Chart Card */
.chart-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  width: 280px;
  top: 15%;
  left: 50%;
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.chart-title {
  font-weight: bold;
  color: #333;
  font-size: 14px;
}

.chart-icon {
  background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.chart-percentage {
  font-size: 48px;
  font-weight: bold;
  color: #2563eb;
  text-align: center;
  margin: 20px 0;
}

.chart-graph {
  width: 100%;
  height: 80px;
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.2) 0%, rgba(20, 184, 166, 0.05) 100%);
  border-radius: 10px;
}

/* Detail Chart Card */
.detail-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  width: 300px;
  bottom: 20%;
  right: 25%;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.detail-percentage {
  font-size: 32px;
  font-weight: bold;
  color: #2563eb;
}

.wave-graph {
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 100"><path d="M0,50 Q25,20 50,50 T100,50 T150,50 T200,50 T250,50 T300,50" fill="none" stroke="%2300ff88" stroke-width="3"/><path d="M0,60 Q25,80 50,60 T100,60 T150,60 T200,60 T250,60 T300,60" fill="none" stroke="%236b0bff" stroke-width="3"/><path d="M0,70 Q25,85 50,70 T100,70 T150,70 T200,70 T250,70 T300,70" fill="none" stroke="%23ff8c00" stroke-width="3"/></svg>')
    no-repeat center;
  background-size: contain;
}

/* ==================== SECTION 1.5: PAKET INTERNET STYLES ==================== */
.paket-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.paket-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.paket-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.paket-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.paket-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.paket-card.paket-orange::before {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.paket-card.paket-blue::before {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.paket-card.paket-green::before {
  background: linear-gradient(135deg, #10b981, #059669);
}

.paket-card.paket-purple::before {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.paket-card.paket-red::before {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.paket-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.paket-card.popular {
  border-color: #f59e0b;
  transform: scale(1.05);
}

.paket-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.paket-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 5px 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
}

.paket-header {
  background: #000;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.paket-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.paket-speed {
  font-size: 13px;
  opacity: 0.9;
  margin: 0;
}

.paket-price {
  text-align: center;
  padding: 20px 0;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 20px;
}

.price-label {
  font-size: 18px;
  color: #f97316;
  font-weight: 600;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #f97316;
  margin: 0 5px;
}

.price-period {
  font-size: 14px;
  color: #64748b;
  display: block;
  margin-top: 5px;
}

.paket-features {
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  color: #10b981;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.paket-footer {
  text-align: center;
}

.btn-paket {
  display: inline-block;
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-paket:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  background: linear-gradient(135deg, #ea580c, #c2410c);
}

.paket-card.paket-blue .btn-paket {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.paket-card.paket-blue .btn-paket:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.paket-card.paket-green .btn-paket {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.paket-card.paket-green .btn-paket:hover {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.paket-card.paket-purple .btn-paket {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.paket-card.paket-purple .btn-paket:hover {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.paket-card.paket-red .btn-paket {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.paket-card.paket-red .btn-paket:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.no-paket {
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
  font-size: 16px;
}

/* ==================== SECTION 2: PARTNERS & COMPANY INFO STYLES ==================== */

.partners-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.partners-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 32px;
  color: #2c3e50;
  font-weight: 700;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}

.section-title .highlight {
  color: #2563eb;
  font-weight: 800;
}

/* Partners Logo Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(107, 11, 255, 0.15);
}

.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Company Info Title */
.company-info-title {
  text-align: center;
  margin-bottom: 50px;
}

.company-info-title h2 {
  font-size: 36px;
  color: #2c3e50;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.company-info-title p {
  font-size: 16px;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Company Info Cards Grid */
.company-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(107, 11, 255, 0.2);
}

.info-label {
  font-size: 16px;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 18px;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.4;
}

.info-card .info-value:last-child {
  margin-bottom: 0;
}

/* ==================== SECTION 3: ABOUT / GROW TO THE FUTURE STYLES ==================== */

.about-section {
  background: white;
  padding: 100px 0;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Side - Image */
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(107, 11, 255, 0.2));
  animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Right Side - Content */
.about-content {
  padding-left: 20px;
}

.about-brand {
  margin-bottom: 20px;
}

.brand-text {
  color: #0d9488;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

.brand-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 3px;
  background: linear-gradient(90deg, #0d9488 0%, #14b8a6 100%);
}

.about-title {
  font-size: 48px;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-text {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.about-text:last-child {
  margin-bottom: 0;
}

/* ==================== SECTION 4: SEJARAH, VISI & MISI STYLES ==================== */

.history-vision-mission {
  background: #f8f9fa;
  padding: 80px 0;
}

.history-vision-mission .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid Layout - 3 Columns */
.hvm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card Styles */
.hvm-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.hvm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(107, 11, 255, 0.15);
}

/* Card Header */
.card-header {
  background: white;
  padding: 30px 25px;
  text-align: center;
  border-bottom: 2px solid #f1f3f5;
}

.card-title {
  color: #2c3e50;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

/* Vision Card Special Header */
.card-vision .card-header {
  background: white;
}

.card-vision .card-title {
  color: #0d9488;
}

/* Card Content */
.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-text {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.card-text:last-child {
  margin-bottom: 0;
}

/* Vision Image */
.vision-image {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.vision-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.vision-image:hover img {
  transform: scale(1.05);
}

/* ========== ACCORDION STYLES ========== */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.accordion-item.active {
  border-color: #2563eb;
}

.accordion-header {
  width: 100%;
  background: white;
  border: none;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #f8f9fa;
}

.accordion-item.active .accordion-header {
  background: #dbeafe;
}

.accordion-title {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
}

.accordion-icon {
  font-size: 24px;
  font-weight: bold;
  color: #2563eb;
  transition: transform 0.3s;
}

.accordion-content {
  display: none;
  padding: 0 20px 15px 20px;
  background: white;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-text {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.7;
  margin: 0;
}

/* ==================== SECTION 5: MENGAPA MEMILIH KAMI STYLES ==================== */

.why-choose-us {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
  padding: 100px 0 50px 0;
  position: relative;
  margin-bottom: -150px;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-title {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.why-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Feature Card */
.feature-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Feature Icon */
.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  font-size: 36px;
  color: white;
}

/* Feature Title */
.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Feature Description */
.feature-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Feature Link */
.feature-link {
  color: #2563eb;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, color 0.3s;
}

.feature-link:hover {
  color: #1d4ed8;
  transform: translateX(5px);
}

/* ==================== SECTION 6: GROW TO THE FUTURE STYLES ==================== */

.grow-future {
  background: #f8f9fa;
  padding: 180px 0 100px 0;
  position: relative;
  overflow: hidden;
}

/* Background World Map - Full section */
.grow-future::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url('../images/map.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.grow-future .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.grow-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.grow-title {
  font-size: 48px;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1.3;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.brand-highlight {
  color: #0d9488;
  display: block;
}

.grow-description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.8;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ==================== SECTION 7: JANGKAUAN JARINGAN STYLES ==================== */

.coverage-section {
  background: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.coverage-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.coverage-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Content */
.coverage-content {
  padding-right: 40px;
}

.coverage-title {
  font-size: 48px;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 25px;
}

.coverage-description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 35px;
}

.btn-coverage {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-coverage:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
}

/* Right Slider Wrapper with Purple Background */
.coverage-slider-wrapper {
  position: relative;
  padding: 80px 60px 80px 60px;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
  border-radius: 30px 0 0 30px;
  min-height: 400px;
  margin-right: calc(-100vw + 100%);
  padding-right: calc(100vw - 100% + 60px);
  overflow: visible;
}

/* Slider Container */
.coverage-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 100%;
  margin: 0 auto;
}

.coverage-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transform: translateX(20px);
}

.coverage-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Coverage Card */
.coverage-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 20px;
}

.coverage-image {
  flex-shrink: 0;
}

.coverage-image img {
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-radius: 15px;
}

.coverage-info {
  flex: 1;
}

.coverage-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.area-title {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.area-count {
  font-size: 14px;
  color: #0d9488;
  font-weight: 600;
}

.location-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  font-size: 20px;
}

.area-details {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.6;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ==================== SECTION 8: ARTIKEL FOR YOU STYLES ==================== */

.artikel-section {
  background: white;
  padding: 100px 0 120px;
  position: relative;
}

.artikel-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.artikel-header {
  text-align: center;
  margin-bottom: 60px;
}

.artikel-title {
  font-size: 48px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
}

.artikel-description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* Artikel Grid */
.artikel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* For artikel.php - same 1 column */
.artikel-list-section .artikel-grid {
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Artikel Card */
.artikel-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.artikel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(107, 11, 255, 0.15);
}

/* Artikel Image */
.artikel-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.artikel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.artikel-card:hover .artikel-image img {
  transform: scale(1.1);
}

/* Artikel Tag */
.artikel-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white;
  z-index: 2;
}

.artikel-tag.android {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.artikel-tag.fiveg {
  background: linear-gradient(135deg, #0ea5e9 0%, #2962ff 100%);
}

.artikel-tag.ai {
  background: linear-gradient(135deg, #ff006e 0%, #c026d3 100%);
}

.artikel-tag.bisnis {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.artikel-tag.acara {
  background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
}

.artikel-tag.covid {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Artikel Content */
.artikel-content {
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Logo M */
.artikel-logo {
  position: absolute;
  top: -22px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
}

.logo-m {
  font-size: 20px;
  font-weight: 900;
  color: white;
  font-family: 'Arial', sans-serif;
}

.artikel-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 30px;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artikel-excerpt {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 60px;
}

/* Tags inline in artikel card */
.artikel-tags-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.artikel-tags-inline .tag-chip {
  display: inline-block;
  padding: 3px 10px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #475569;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.artikel-tags-inline .tag-chip:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  transform: translateY(-2px);
}

.artikel-read-more {
  display: inline-block;
  color: #8b00ff;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s;
  margin-top: auto;
}

.artikel-read-more:hover {
  color: #0d9488;
}

/* Button Artikel Lainnya */
.artikel-button-wrapper {
  text-align: center;
}

.btn-artikel {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  padding: 16px 50px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-artikel:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
}

/* ==================== FOOTER STYLES ==================== */

.footer {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
  color: white;
  position: relative;
}

/* ==================== JANGKAUAN SECTION ==================== */
.jangkauan-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.jangkauan-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.jangkauan-section .section-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.jangkauan-section .section-header .highlight {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jangkauan-section .section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.jangkauan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.jangkauan-card-mini {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
}

.jangkauan-card-mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.15);
  border-color: #14b8a6;
}

.jangkauan-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: white;
}

.jangkauan-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.jangkauan-location {
  font-size: 14px;
  color: #666;
}

.jangkauan-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn-jangkauan {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

.btn-jangkauan:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.4);
}

.jangkauan-empty {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 18px;
}

/* Footer Top Info Bar */
.footer-top {
  background: rgba(0, 0, 0, 0.15);
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-info-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.footer-info-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-info-icon.phone {
  transform: rotate(90deg);
}

.footer-info-content h4 {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-info-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

/* Footer Main */
.footer-main {
  padding: 60px 0 40px;
}

.footer-main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
}

/* Footer Column */
.footer-column {
  padding: 0 10px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
}

.footer-description {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.5);
}

.footer-column-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a i {
  font-size: 10px;
  color: #dbeafe;
}

.footer-links a:hover {
  color: white;
  padding-left: 8px;
}

.konsultasi-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
}

.btn-konsultasi {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-konsultasi:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.build-with {
  display: flex;
  align-items: center;
  gap: 5px;
}

.heart {
  color: #ff006e;
  font-size: 16px;
}

.brand {
  color: #ffffff;
  font-weight: 700;
}

/* ==================== SCROLL TO TOP BUTTON ==================== */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */

/* Animation 1: Fade + Slide Up */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Animation 2: Fade + Slide Left */
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Animation 3: Fade + Slide Right */
.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Animation 4: Scale + Fade (Zoom In) */
.reveal-scale {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Animation 5: Rotate + Scale */
.reveal-rotate {
  opacity: 0;
  transform: rotate(-15deg) scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.reveal-rotate.active {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Animation 6: Flip Horizontal */
.reveal-flip {
  opacity: 0;
  transform: perspective(1000px) rotateY(-90deg);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.reveal-flip.active {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg);
}

/* Animation 7: Blur + Fade */
.reveal-blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(30px);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}

.reveal-blur.active {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

/* Animation 8: Bounce In */
.reveal-bounce {
  opacity: 0;
  transform: translateY(-100px) scale(0.5);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.reveal-bounce.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Animation 9: Diagonal Slide */
.reveal-diagonal {
  opacity: 0;
  transform: translate(-60px, 60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.reveal-diagonal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==================== MITRA PAGE STYLES ==================== */
/* Mitra Banner */
.mitra-banner {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.mitra-banner .container {
  padding: 0 50px;
}

.mitra-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.mitra-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.mitra-banner-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 15px;
  color: white;
}

.mitra-banner-subtitle {
  font-size: 20px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
}

.mitra-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.mitra-breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.mitra-breadcrumb a:hover {
  color: #dbeafe;
}

.mitra-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.7);
}

.mitra-breadcrumb .current {
  color: #dbeafe;
  font-weight: 600;
}

/* Mitra Intro Section */
.mitra-intro-section {
  padding: 80px 0 40px;
  background: white;
}

.mitra-intro-section .container {
  padding: 0 50px;
}

.mitra-intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mitra-intro-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.3;
}

.mitra-intro-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

/* Mitra List Section */
.mitra-list-section {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.mitra-list-section .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0 50px;
}

.mitra-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mitra-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.mitra-item .mitra-banner {
  width: 100%;
  height: 180px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.mitra-item .mitra-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mitra-info-card {
  padding: 25px;
}

.mitra-header {
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}

.mitra-name {
  font-size: 20px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 8px;
  line-height: 1.3;
}

.mitra-tagline {
  font-size: 13px;
  color: #ff8c00;
  font-weight: 600;
}

.mitra-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mitra-logo-section {
  background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.mitra-logo-wrapper {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.mitra-logo-wrapper img {
  max-width: 120px;
  height: auto;
  border-radius: 8px;
  background: white;
  padding: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.mitra-info-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mitra-description {
  margin-bottom: 15px;
  padding: 15px;
  background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
  border-radius: 8px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.no-mitra {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 500px;
}

.no-mitra i {
  font-size: 48px;
  color: #cbd5e1;
  margin-bottom: 15px;
}

.no-mitra p {
  color: #64748b;
  font-size: 16px;
  margin: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13px;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: #333;
  font-size: 13px;
}

.info-value {
  color: #666;
  font-size: 13px;
  word-break: break-word;
}

.info-value a {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-value a:hover {
  color: #14b8a6;
  text-decoration: underline;
}

/* Join Mitra Section */
.join-mitra-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
  position: relative;
  overflow: hidden;
}

.join-mitra-section .container {
  padding: 0 50px;
}

.join-mitra-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.join-mitra-wrapper {
  position: relative;
  z-index: 2;
}

.join-mitra-content {
  text-align: center;
  color: white;
}

.join-mitra-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.join-mitra-description {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 50px;
  color: rgba(255, 255, 255, 0.95);
}

.join-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 35px 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, background 0.3s;
}

.benefit-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #0d9488;
}

.benefit-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.benefit-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.join-cta {
  margin-top: 50px;
}

.btn-large {
  padding: 18px 45px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.join-cta-note {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
}

.join-cta-note strong {
  font-weight: 800;
  color: white;
}

/* ==================== TEAM PAGE STYLES ==================== */
/* Team Banner */
.team-banner {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.team-banner .container {
  padding: 0 50px;
}

.team-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.team-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.team-banner-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 15px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.team-banner-subtitle {
  font-size: 18px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
}

.team-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-top: 20px;
}

.team-breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.team-breadcrumb a:hover {
  color: #dbeafe;
}

.team-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.7);
}

.team-breadcrumb .current {
  color: #dbeafe;
  font-weight: 600;
}

/* Team Intro Section */
.team-intro-section {
  padding: 80px 0 40px;
  background: white;
}

.team-intro-section .container {
  padding: 0 50px;
}

.team-intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.team-intro-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.3;
}

.team-intro-title .highlight {
  color: #2563eb;
  position: relative;
}

.team-intro-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

/* Team Members Section */
.team-members-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.team-members-section .container {
  padding: 0 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-photo {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.team-card:hover .team-photo img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  text-decoration: none;
  font-size: 18px;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}

.social-icon:hover {
  transform: translateY(-5px);
  background: #2563eb;
  color: white;
}

.team-info {
  padding: 30px 25px;
  text-align: center;
}

.team-name {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.team-position {
  font-size: 16px;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 15px;
}

.team-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Team Contact & Social Media */
.team-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.team-contact-link,
.team-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.team-contact-link {
  background-color: #f3f4f6;
  color: #374151;
}

.team-contact-link:hover {
  background-color: #2563eb;
  color: #fff;
  transform: translateY(-3px);
}

.team-social-link {
  color: #fff;
}

.team-social-link.facebook {
  background-color: #1877f2;
}

.team-social-link.facebook:hover {
  background-color: #0c5dbf;
  transform: translateY(-3px);
}

.team-social-link.twitter {
  background-color: #1da1f2;
}

.team-social-link.twitter:hover {
  background-color: #0d8bd9;
  transform: translateY(-3px);
}

.team-social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.team-social-link.instagram:hover {
  background: linear-gradient(45deg, #d07623 0%, #c6582c 25%, #bc1733 50%, #ac1356 75%, #9c0878 100%);
  transform: translateY(-3px);
}

.team-social-link.linkedin {
  background-color: #0077b5;
}

.team-social-link.linkedin:hover {
  background-color: #00669c;
  transform: translateY(-3px);
}

/* No Team Message */
.no-team-message {
  text-align: center;
  padding: 80px 20px;
  color: #666;
}

.no-team-message i {
  font-size: 64px;
  color: #ddd;
  margin-bottom: 20px;
}

.no-team-message h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.no-team-message p {
  font-size: 16px;
  color: #666;
}

/* Join Team Section */
.join-team-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  position: relative;
  overflow: hidden;
}

.join-team-section .container {
  padding: 0 50px;
}

.join-team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.join-team-wrapper {
  position: relative;
  z-index: 2;
}

.join-team-content {
  text-align: center;
  color: white;
}

.join-team-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.join-team-title .highlight {
  color: #dbeafe;
}

.join-team-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
}

.join-team-cta {
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 968px) {
  /* Top Bar Responsive */
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .top-bar-item {
    font-size: 13px;
  }

  /* Header Responsive */
  header {
    padding: 10px 0;
  }

  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }

  .logo img {
    height: 40px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  nav a {
    font-size: 14px;
  }

  nav {
    position: fixed;
    left: -100%;
    top: 72px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    gap: 0;
    z-index: 1000;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  nav ul li {
    width: 100%;
  }

  nav a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .hamburger {
    display: flex;
  }

  .btn-berlangganan {
    padding: 10px 25px;
    font-size: 13px;
    margin: 15px 20px;
    display: inline-block;
    width: auto;
  }

  /* Hero Section Responsive */
  .hero {
    min-height: auto;
    padding-bottom: 100px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    width: auto;
    min-width: 180px;
    max-width: 280px;
    padding: 14px 30px;
    font-size: 14px;
  }

  .hero-image img {
    max-width: 280px;
    margin: 0 auto;
  }

  .floating-element {
    display: none;
  }

  .social-icon,
  .chart-card,
  .detail-card {
    display: none;
  }

  /* Section 1.5 Responsive - Paket Internet */
  .paket-section {
    padding: 60px 0;
  }

  .paket-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }

  .paket-card {
    padding: 25px;
  }

  .paket-card.popular {
    transform: scale(1);
  }

  .paket-card.popular:hover {
    transform: translateY(-5px);
  }

  .paket-header {
    padding: 15px;
  }

  .paket-name {
    font-size: 18px;
  }

  .paket-speed {
    font-size: 12px;
  }

  .price-amount {
    font-size: 42px;
  }

  .feature-item {
    padding: 10px 0;
  }

  .feature-item span {
    font-size: 13px;
  }

  /* Section 2 Responsive - Partners */
  .partners-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-description {
    font-size: 14px;
  }

  .company-info-title h2 {
    font-size: 28px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .partner-logo {
    padding: 15px;
  }

  .company-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card {
    padding: 20px;
  }

  .chart-percentage,
  .detail-percentage {
    font-size: 32px;
  }

  /* Section 3 Responsive - About */
  .about-section {
    padding: 60px 0;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    padding-left: 0;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 14px;
    text-align: left;
  }

  /* Section 4 Responsive - History/Vision/Mission */
  .history-vision-mission {
    padding: 60px 0;
  }

  .hvm-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-text {
    font-size: 13px;
  }

  .accordion-item {
    margin-bottom: 10px;
  }

  .accordion-title {
    font-size: 14px;
  }

  .accordion-text {
    font-size: 13px;
  }

  /* Section 5 Responsive - Why Choose Us */
  .why-choose-us {
    padding: 60px 0 30px;
    margin-bottom: -100px;
  }

  .why-header {
    margin-bottom: 40px;
  }

  .why-title {
    font-size: 28px;
  }

  .why-subtitle {
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 25px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .feature-icon i {
    font-size: 28px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-text {
    font-size: 13px;
  }

  /* Section 6 Responsive - Grow Future */
  .grow-future {
    padding: 150px 0 60px;
  }

  .grow-title {
    font-size: 28px;
  }

  .grow-description {
    font-size: 14px;
  }

  /* Section 7 Responsive - Coverage */
  .coverage-section {
    padding: 60px 0;
  }

  .coverage-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coverage-content {
    padding-right: 0;
    text-align: center;
  }

  .coverage-title {
    font-size: 28px;
  }

  .coverage-description {
    font-size: 14px;
  }

  .btn-coverage {
    padding: 12px 30px;
    font-size: 13px;
  }

  .coverage-slider-wrapper {
    border-radius: 20px;
    padding: 40px 20px;
    margin-right: 0;
    padding-right: 20px;
  }

  .coverage-card {
    flex-direction: column;
    padding: 20px;
  }

  .coverage-image {
    margin-bottom: 15px;
  }

  .coverage-image img {
    width: 100%;
    height: auto;
  }

  .location-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .area-title {
    font-size: 18px;
  }

  .area-count {
    font-size: 13px;
  }

  /* Section 8 Responsive - Artikel */
  .artikel-section {
    padding: 60px 0 80px;
  }

  .artikel-title {
    font-size: 28px;
  }

  .artikel-description {
    font-size: 14px;
  }

  .artikel-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .artikel-card-title {
    font-size: 16px;
    min-height: auto;
  }

  .artikel-excerpt {
    font-size: 13px;
  }

  .btn-artikel {
    padding: 14px 40px;
    font-size: 13px;
  }

  /* Mitra Page Responsive */
  .mitra-banner {
    padding: 80px 0 60px;
  }

  .mitra-banner .container {
    padding: 0 30px;
  }

  .mitra-banner-title {
    font-size: 36px;
  }

  .mitra-banner-subtitle {
    font-size: 16px;
  }

  .mitra-intro-section {
    padding: 60px 0 30px;
  }

  .mitra-intro-section .container {
    padding: 0 30px;
  }

  .mitra-intro-title {
    font-size: 32px;
  }

  .mitra-intro-description {
    font-size: 16px;
  }

  .mitra-list-section {
    padding: 40px 0 60px;
  }

  .mitra-list-section .container {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 30px;
  }

  .mitra-item {
    margin-bottom: 0;
  }

  .mitra-item .mitra-banner {
    height: 160px;
  }

  .mitra-info-card {
    padding: 25px 20px;
  }

  .mitra-name {
    font-size: 18px;
  }

  .mitra-tagline {
    font-size: 12px;
  }

  .mitra-details {
    flex-direction: column;
    gap: 20px;
  }

  .mitra-logo-section {
    padding: 15px;
  }

  .mitra-logo-wrapper {
    flex-direction: row;
  }

  .mitra-logo-wrapper img {
    max-width: 100px;
  }

  .info-row {
    grid-template-columns: 120px 1fr;
    gap: 8px;
    font-size: 12px;
    padding: 6px 0;
  }

  .info-label,
  .info-value {
    font-size: 12px;
  }

  /* Join Mitra Responsive */
  .join-mitra-section {
    padding: 60px 0;
  }

  .join-mitra-section .container {
    padding: 0 30px;
  }

  .join-mitra-title {
    font-size: 32px;
  }

  .join-mitra-description {
    font-size: 16px;
  }

  .join-benefits {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .benefit-item {
    padding: 30px 20px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .benefit-item h4 {
    font-size: 18px;
  }

  .btn-large {
    padding: 16px 35px;
    font-size: 16px;
  }

  /* Team Page Responsive */
  .team-banner {
    padding: 80px 0 60px;
  }

  .team-banner .container {
    padding: 0 30px;
  }

  .team-banner-title {
    font-size: 36px;
  }

  .team-banner-subtitle {
    font-size: 16px;
  }

  .team-intro-section {
    padding: 60px 0 30px;
  }

  .team-intro-section .container {
    padding: 0 30px;
  }

  .team-intro-title {
    font-size: 32px;
  }

  .team-intro-description {
    font-size: 16px;
  }

  .team-members-section {
    padding: 40px 0 60px;
  }

  .team-members-section .container {
    padding: 0 30px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .team-photo {
    height: 320px;
  }

  .team-info {
    padding: 25px 20px;
  }

  .team-name {
    font-size: 22px;
  }

  .team-position {
    font-size: 15px;
  }

  .join-team-section {
    padding: 60px 0;
  }

  .join-team-section .container {
    padding: 0 30px;
  }

  .join-team-title {
    font-size: 32px;
  }

  .join-team-description {
    font-size: 16px;
  }

  /* Footer Responsive */
  .footer-top {
    padding: 30px 0;
  }

  .footer-info-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-info-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-info-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .footer-info-content h4 {
    font-size: 16px;
  }

  .footer-info-content p {
    font-size: 13px;
  }

  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-column-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .footer-description {
    font-size: 13px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .konsultasi-text {
    font-size: 13px;
  }

  .btn-konsultasi {
    padding: 12px 30px;
    font-size: 12px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  /* Scroll to Top Button */
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title h2,
  .company-info-title h2,
  .about-title,
  .why-title,
  .grow-title,
  .coverage-title,
  .artikel-title {
    font-size: 24px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    max-width: 200px;
    margin: 0 auto;
  }

  .btn {
    font-size: 13px;
    padding: 12px 20px;
  }

  .hero-buttons .btn {
    min-width: 160px;
    max-width: 200px;
  }

  .feature-card,
  .hvm-card,
  .artikel-card {
    padding: 20px;
  }

  .coverage-slider-wrapper {
    padding: 30px 15px;
  }

  /* Mitra Page Mobile */
  .mitra-banner {
    padding: 70px 0 50px;
  }

  .mitra-banner .container {
    padding: 0 20px;
  }

  .mitra-banner-title {
    font-size: 28px;
  }

  .mitra-banner-subtitle {
    font-size: 14px;
  }

  .mitra-breadcrumb {
    font-size: 14px;
  }

  .mitra-intro-section {
    padding: 50px 0 25px;
  }

  .mitra-intro-section .container {
    padding: 0 20px;
  }

  .mitra-intro-title {
    font-size: 24px;
  }

  .mitra-intro-description {
    font-size: 14px;
  }

  .mitra-list-section {
    padding: 35px 0 50px;
  }

  .mitra-list-section .container {
    padding: 0 20px;
  }

  .mitra-item .mitra-banner {
    height: 140px;
  }

  .mitra-info-card {
    padding: 20px 15px;
  }

  .mitra-name {
    font-size: 16px;
  }

  .mitra-tagline {
    font-size: 11px;
  }

  .mitra-logo-wrapper img {
    max-width: 80px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 8px 0;
  }

  .info-label {
    font-weight: 700;
    color: #0d9488;
    font-size: 11px;
  }

  .info-value {
    padding-left: 0;
    font-size: 11px;
  }

  /* Join Mitra Mobile */
  .join-mitra-section {
    padding: 50px 0;
  }

  .join-mitra-section .container {
    padding: 0 20px;
  }

  .join-mitra-title {
    font-size: 26px;
  }

  .join-mitra-description {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .join-benefits {
    gap: 20px;
  }

  .benefit-item {
    padding: 25px 15px;
  }

  .benefit-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .benefit-item h4 {
    font-size: 16px;
  }

  .benefit-item p {
    font-size: 13px;
  }

  .btn-large {
    padding: 14px 30px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
  }

  .join-cta-note {
    font-size: 14px;
  }

  /* Team Page Mobile */
  .team-banner {
    padding: 70px 0 50px;
  }

  .team-banner .container {
    padding: 0 20px;
  }

  .team-banner-title {
    font-size: 28px;
  }

  .team-banner-subtitle {
    font-size: 14px;
  }

  .team-breadcrumb {
    font-size: 14px;
  }

  .team-intro-section {
    padding: 50px 0 25px;
  }

  .team-intro-section .container {
    padding: 0 20px;
  }

  .team-intro-title {
    font-size: 24px;
  }

  .team-intro-description {
    font-size: 14px;
  }

  .team-members-section {
    padding: 35px 0 50px;
  }

  .team-members-section .container {
    padding: 0 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .team-photo {
    height: 280px;
  }

  .team-info {
    padding: 20px 15px;
  }

  .team-name {
    font-size: 20px;
  }

  .team-position {
    font-size: 14px;
  }

  .team-description {
    font-size: 13px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .join-team-section {
    padding: 50px 0;
  }

  .join-team-section .container {
    padding: 0 20px;
  }

  .join-team-title {
    font-size: 24px;
  }

  .join-team-description {
    font-size: 14px;
  }

  /* Footer Mobile - Single Column */
  .footer-info-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-info-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-logo img {
    max-width: 150px;
  }
}

/* ===================================
   JANGKAUAN PAGE STYLES
   =================================== */

/* Jangkauan Banner */
.jangkauan-banner {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  padding: 120px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.jangkauan-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: bottom;
  opacity: 0.5;
}

.jangkauan-banner .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.jangkauan-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.jangkauan-banner-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.jangkauan-banner-subtitle {
  font-size: 18px;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 25px;
}

.jangkauan-breadcrumb {
  font-size: 15px;
  opacity: 0.9;
}

.jangkauan-breadcrumb a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.jangkauan-breadcrumb a:hover {
  opacity: 0.7;
}

/* Coverage Area Section */
.coverage-area-section {
  background: #f9fafb;
  padding: 80px 0;
}

.coverage-area-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.area-group {
  background: white;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.area-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e2e8f0;
}

.area-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.area-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.area-title i {
  color: #3b82f6;
  font-size: 28px;
}

.area-count-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.area-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Desktop & Mobile Toggle - REMOVED, only use table */

/* Table Styles */
.area-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.area-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 800px; /* Minimum width for horizontal scroll on mobile */
}

.area-table thead {
  background: linear-gradient(135deg, #1e293b, #334155);
}

.area-table thead th {
  color: white;
  padding: 18px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.area-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.2s ease;
}

.area-table tbody tr:hover {
  background: #f8fafc;
}

.area-table tbody td {
  padding: 18px 15px;
  color: #334155;
  font-size: 14px;
  vertical-align: middle;
}

.area-table .text-center {
  text-align: center;
}

.area-name-cell strong {
  display: block;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 4px;
}

.area-name-cell .text-muted {
  display: block;
  color: #94a3b8;
  font-size: 12px;
}

.area-description-cell {
  color: #64748b;
  line-height: 1.5;
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.badge i {
  font-size: 11px;
}

.badge-coverage {
  color: white;
}

.badge-fiber {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.badge-wireless {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.badge-hybrid {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.badge-status {
  font-weight: 600;
}

.badge-active {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.badge-coming-soon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

/* Action Button */
.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-action:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.area-content {
  margin-top: 30px;
}

/* Coverage CTA Section */
.coverage-cta-section {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.coverage-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

.coverage-cta-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.coverage-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.coverage-cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.coverage-cta-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
}

/* ===================================
   ARTIKEL LIST PAGE STYLES
   =================================== */

/* Artikel Banner */
.artikel-banner {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
  padding: 120px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.artikel-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: bottom;
  opacity: 0.5;
}

.artikel-banner .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 50px;
  margin: 0 auto; /* Center the container */
}

.artikel-banner-content {
  text-align: center; /* Center all text */
}

.artikel-banner-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.artikel-banner-subtitle {
  font-size: 18px;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 25px;
}

.artikel-breadcrumb {
  font-size: 15px;
  opacity: 0.9;
  display: inline-flex; /* Center the breadcrumb */
  align-items: center;
  gap: 8px;
}

.artikel-breadcrumb a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.artikel-breadcrumb a:hover {
  opacity: 0.7;
}

/* Artikel List Section */
.artikel-list-section {
  background: #f9fafb;
  padding: 80px 0;
}

.artikel-list-section .container {
  padding: 0 50px;
  max-width: 1400px; /* Increased from 1200px */
  margin: 0 auto;
}

/* Filter Form Styling */
.artikel-filter-form {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
}

.filter-row {
  display: grid;
  grid-template-columns: 280px 1fr auto auto;
  gap: 20px;
  align-items: end; /* Changed from center to end */
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-group label {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0;
}

.filter-group select,
.filter-group input {
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  color: #1e293b;
  background: #f8fafc;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
}

.filter-group select:hover,
.filter-group input:hover {
  border-color: #cbd5e1;
  background: white;
}

.filter-group select:focus,
.filter-group input:focus {
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.filter-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%233b82f6' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 45px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.btn-filter,
.btn-reset {
  padding: 14px 28px;
  margin-bottom: 0;
  align-self: flex-end;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-filter {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-filter:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-reset {
  background: #f1f5f9;
  color: #475569;
}

.btn-reset:hover {
  background: #e2e8f0;
  color: #1e293b;
}

/* Empty State */
.artikel-empty-state {
  text-align: center;
  padding: 100px 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.artikel-empty-state i {
  font-size: 80px;
  color: #cbd5e1;
  margin-bottom: 25px;
  display: block;
}

.artikel-empty-state h3 {
  font-size: 28px;
  color: #1e293b;
  margin-bottom: 12px;
  font-weight: 700;
}

.artikel-empty-state p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

.artikel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.artikel-card-full {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: grid;
  grid-template-columns: 400px 1fr;
  height: 280px;
}

.artikel-card-full:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.artikel-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.artikel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.artikel-card-full:hover .artikel-image img {
  transform: scale(1.1);
}

.artikel-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  z-index: 2;
}

/* Featured Badge */
.artikel-featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  animation: pulse-badge 2s ease-in-out infinite;
}

.artikel-featured-badge i {
  font-size: 14px;
  animation: rotate-star 3s linear infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(251, 191, 36, 0.6);
  }
}

@keyframes rotate-star {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.artikel-content {
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.artikel-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  color: #64748b;
  font-size: 14px;
}

.artikel-meta i {
  margin-right: 6px;
  color: #3b82f6;
}

.artikel-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
}

.artikel-title:hover {
  color: #2563eb;
}

.artikel-excerpt {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Tags Styling - Colorful Chips */
.artikel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.artikel-tag {
  display: inline-block;
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

/* Colorful tag variants */
.artikel-tag:nth-child(1) {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.artikel-tag:nth-child(2) {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.artikel-tag:nth-child(3) {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.artikel-tag:nth-child(4) {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.artikel-tag:nth-child(5) {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: white;
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}

.artikel-tag:nth-child(6) {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.artikel-tag:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.artikel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-read-more:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* ===================================
   ARTIKEL DETAIL PAGE STYLES
   =================================== */

.artikel-detail-section {
  background: #f9fafb;
  padding: 80px 0;
  min-height: 100vh;
}

.artikel-detail-section .container {
  padding: 0 50px;
  max-width: 1400px;
}

.artikel-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
}

/* Back Link */
.back-link {
  margin-bottom: 30px;
}

.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 10px 15px;
  border-radius: 8px;
}

.back-link a:hover {
  background: #eff6ff;
  transform: translateX(-5px);
}

/* Main Article Content */
.artikel-detail {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.artikel-detail-header {
  margin-bottom: 35px;
}

.artikel-category-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.artikel-detail-title {
  font-size: 42px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 20px;
}

.artikel-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  color: #64748b;
  font-size: 15px;
  padding-bottom: 25px;
  border-bottom: 2px solid #e2e8f0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item i {
  color: #3b82f6;
  font-size: 14px;
}

/* Article Image */
.artikel-detail-image {
  margin: 35px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.artikel-detail-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Article Content */
.artikel-detail-content {
  color: #334155;
  font-size: 17px;
  line-height: 1.8;
}

.lead-paragraph {
  font-size: 20px;
  font-weight: 500;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 4px solid #3b82f6;
}

.artikel-detail-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin: 40px 0 20px;
  line-height: 1.3;
}

.artikel-detail-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #334155;
  margin: 30px 0 15px;
  line-height: 1.4;
}

.artikel-detail-content p {
  margin-bottom: 20px;
}

.artikel-detail-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.artikel-detail-content li {
  margin-bottom: 12px;
  line-height: 1.7;
  position: relative;
  padding-left: 10px;
}

.artikel-detail-content li::marker {
  color: #3b82f6;
  font-weight: 600;
}

/* Article CTA */
.artikel-cta {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin: 50px 0 40px;
  border: 2px solid #bfdbfe;
}

.artikel-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.artikel-cta p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 25px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Share Buttons */
.artikel-share {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #e2e8f0;
}

.artikel-share h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  color: white;
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Article Detail Main Content */
.artikel-detail-main {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Back Button Top */
.artikel-back-top {
  margin-bottom: 30px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #f1f5f9;
  color: #475569;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: #e2e8f0;
  color: #1e293b;
  transform: translateX(-5px);
}

/* Hero Image */
.artikel-detail-hero {
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.artikel-detail-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article Header */
.artikel-detail-header {
  margin-bottom: 40px;
}

.artikel-detail-category {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.artikel-detail-title {
  font-size: 38px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 20px;
}

.artikel-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding-top: 20px;
  border-top: 2px solid #e2e8f0;
}

/* Article Tags Section */
.artikel-detail-tags {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid #e2e8f0;
}

.artikel-detail-tags h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.artikel-detail-tags h3 i {
  color: #3b82f6;
}

/* Override absolute positioning for tags in detail page */
.artikel-detail-tags .artikel-tag {
  position: static !important;
  display: inline-block !important;
  margin: 0 !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
}

/* Article Share Section */
.artikel-share {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid #e2e8f0;
}

.artikel-share h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.artikel-share h3 i {
  color: #3b82f6;
}

/* Sidebar */
.artikel-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #3b82f6;
}

/* Related Articles */
.related-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.related-artikel-card {
  display: flex;
  gap: 15px;
  text-decoration: none;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.related-artikel-card:hover {
  background: #f8fafc;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-artikel-image {
  flex-shrink: 0;
  width: 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.related-artikel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-artikel-info {
  flex: 1;
}

.related-artikel-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.related-artikel-card:hover .related-artikel-info h4 {
  color: #3b82f6;
}

.related-date {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.related-date i {
  font-size: 12px;
}

/* CTA Widget */
.sidebar-cta {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  text-align: center;
}

.sidebar-cta .widget-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: white;
  color: #2563eb;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f8fafc;
}

.related-article-item:hover h4 {
  color: #2563eb;
}

.related-date {
  font-size: 13px;
  color: #64748b;
}

/* Category List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  color: #334155;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-list a:hover {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
  transform: translateX(5px);
}

.category-list span {
  color: #64748b;
  font-size: 13px;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 12px;
}

/* CTA Widget */
.cta-widget {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  text-align: center;
}

.cta-widget .widget-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-widget p {
  margin-bottom: 20px;
  opacity: 0.95;
}

/* ===================================
   RESPONSIVE STYLES - TABLET
   =================================== */
@media (max-width: 968px) {
  /* Jangkauan Page Tablet */
  .jangkauan-banner {
    padding: 90px 0 60px;
  }

  .jangkauan-banner .container {
    padding: 0 30px;
  }

  .jangkauan-banner-title {
    font-size: 36px;
  }

  .jangkauan-banner-subtitle {
    font-size: 16px;
  }

  .coverage-area-section {
    padding: 60px 0;
  }

  .coverage-area-section .container {
    padding: 0 30px;
  }

  .area-group {
    padding: 30px 25px;
    margin-bottom: 40px;
  }

  .area-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .area-title-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .area-title {
    font-size: 24px;
  }

  .area-title i {
    font-size: 22px;
  }

  .area-count-badge {
    font-size: 13px;
    padding: 5px 15px;
  }

  .area-subtitle {
    font-size: 14px;
  }

  /* Table remains, just adjust padding */
  .area-table-wrapper {
    border-radius: 8px;
  }

  .area-table thead th {
    padding: 12px 8px;
    font-size: 12px;
  }

  .area-table tbody td {
    padding: 12px 8px;
    font-size: 13px;
  }

  .area-name-cell strong {
    font-size: 13px;
  }

  .area-name-cell .text-muted {
    font-size: 11px;
  }

  .area-description-cell {
    font-size: 12px;
  }

  .badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .btn-action {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .coverage-cta-section {
    padding: 60px 0;
  }

  .coverage-cta-section .container {
    padding: 0 30px;
  }

  .coverage-cta-title {
    font-size: 30px;
  }

  .coverage-cta-description {
    font-size: 16px;
  }

  /* Artikel List Tablet */
  .artikel-banner {
    padding: 90px 0 60px;
  }

  .artikel-banner .container {
    padding: 0 30px;
  }

  .artikel-banner-title {
    font-size: 36px;
  }

  .artikel-list-section {
    padding: 60px 0;
  }

  .artikel-list-section .container {
    padding: 0 30px;
    max-width: 100%;
  }

  /* Filter Form Tablet */
  .artikel-filter-form {
    padding: 25px;
  }

  .filter-row {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .filter-group {
    grid-column: span 1;
  }

  .filter-group select,
  .filter-group input {
    padding: 12px 16px;
  }

  .btn-filter,
  .btn-reset {
    grid-column: span 1;
    padding: 12px 20px;
  }

  .artikel-card-full {
    grid-template-columns: 1fr;
    height: auto;
  }

  .artikel-image {
    height: 240px;
  }

  .artikel-content {
    padding: 25px;
  }

  .artikel-title {
    font-size: 22px;
  }

  /* Artikel Detail Tablet */
  .artikel-detail-section {
    padding: 60px 0;
  }

  .artikel-detail-section .container {
    padding: 0 30px;
  }

  .artikel-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .artikel-detail {
    padding: 35px;
  }

  .artikel-detail-title {
    font-size: 34px;
  }

  .artikel-detail-image img {
    height: 400px;
  }

  .artikel-detail-content {
    font-size: 16px;
  }

  .lead-paragraph {
    font-size: 18px;
  }

  .artikel-detail-content h2 {
    font-size: 28px;
  }

  .artikel-detail-content h3 {
    font-size: 22px;
  }

  .artikel-cta h3 {
    font-size: 24px;
  }
}

/* ===================================
   RESPONSIVE STYLES - MOBILE
   =================================== */
@media (max-width: 480px) {
  /* Jangkauan Page Mobile */
  .jangkauan-banner {
    padding: 70px 0 50px;
  }

  .jangkauan-banner .container {
    padding: 0 20px;
  }

  .jangkauan-banner-title {
    font-size: 28px;
  }

  .jangkauan-banner-subtitle {
    font-size: 14px;
  }

  .jangkauan-breadcrumb {
    font-size: 13px;
  }

  .coverage-area-section {
    padding: 50px 0;
  }

  .coverage-area-section .container {
    padding: 0 20px;
  }

  .area-group {
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 15px;
  }

  .area-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .area-title {
    font-size: 20px;
  }

  .area-title i {
    font-size: 18px;
  }

  .area-count-badge {
    font-size: 12px;
    padding: 4px 12px;
  }

  .area-subtitle {
    font-size: 13px;
  }

  /* Table with horizontal scroll on small mobile */
  .area-table-wrapper {
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .area-table {
    min-width: 700px; /* Force horizontal scroll on small screens */
  }

  .area-table thead th {
    padding: 10px 6px;
    font-size: 11px;
  }

  .area-table tbody td {
    padding: 10px 6px;
    font-size: 12px;
  }

  .area-name-cell strong {
    font-size: 12px;
  }

  .area-name-cell .text-muted {
    font-size: 10px;
  }

  .area-description-cell {
    font-size: 11px;
  }

  .badge {
    font-size: 9px;
    padding: 4px 8px;
    gap: 4px;
  }

  .badge i {
    font-size: 9px;
  }

  .btn-action {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  }

  .location-item {
    padding: 10px 12px;
  }

  .location-item span {
    font-size: 13px;
  }

  .coverage-cta-section {
    padding: 50px 0;
  }

  .coverage-cta-section .container {
    padding: 0 20px;
  }

  .coverage-cta-title {
    font-size: 24px;
  }

  .coverage-cta-description {
    font-size: 15px;
  }

  /* Artikel List Mobile */
  .artikel-banner {
    padding: 70px 0 50px;
  }

  .artikel-banner .container {
    padding: 0 20px;
  }

  .artikel-banner-title {
    font-size: 28px;
  }

  .artikel-banner-subtitle {
    font-size: 14px;
  }

  .artikel-breadcrumb {
    font-size: 13px;
  }

  .artikel-list-section {
    padding: 50px 0;
  }

  .artikel-list-section .container {
    padding: 0 20px;
    max-width: 100%;
  }

  /* Filter Form Mobile */
  .artikel-filter-form {
    padding: 20px;
    margin-bottom: 30px;
  }

  .filter-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .filter-group {
    grid-column: span 1;
  }

  .filter-group label {
    font-size: 13px;
  }

  .filter-group select,
  .filter-group input {
    padding: 12px 16px;
    font-size: 14px;
  }

  .btn-filter,
  .btn-reset {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  /* Empty State Mobile */
  .artikel-empty-state {
    padding: 60px 20px;
  }

  .artikel-empty-state i {
    font-size: 60px;
  }

  .artikel-empty-state h3 {
    font-size: 22px;
  }

  .artikel-empty-state p {
    font-size: 15px;
  }

  .artikel-grid {
    gap: 30px;
  }

  .artikel-image {
    height: 200px;
  }

  .artikel-category {
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 12px;
  }

  .artikel-featured-badge {
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .artikel-content {
    padding: 20px;
  }

  .artikel-meta {
    font-size: 13px;
    gap: 15px;
  }

  .artikel-title {
    font-size: 20px;
  }

  .artikel-excerpt {
    font-size: 14px;
  }

  .artikel-tags {
    gap: 6px;
    margin-bottom: 14px;
  }

  .artikel-tag {
    padding: 5px 12px;
    font-size: 11px;
  }

  .btn-read-more {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* Artikel Detail Mobile */
  .artikel-detail-section {
    padding: 50px 0;
  }

  .artikel-detail-section .container {
    padding: 0 20px;
  }

  .artikel-detail-wrapper {
    gap: 30px;
  }

  .artikel-detail {
    padding: 25px;
    border-radius: 15px;
  }

  .artikel-category-badge {
    padding: 8px 16px;
    font-size: 12px;
    margin-bottom: 15px;
  }

  .artikel-detail-title {
    font-size: 26px;
  }

  .artikel-detail-meta {
    gap: 15px;
    font-size: 13px;
  }

  .artikel-detail-image {
    margin: 25px 0;
  }

  .artikel-detail-image img {
    height: 250px;
  }

  .artikel-detail-content {
    font-size: 15px;
  }

  .lead-paragraph {
    font-size: 16px;
    padding-left: 15px;
  }

  .artikel-detail-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
  }

  .artikel-detail-content h3 {
    font-size: 20px;
    margin: 25px 0 12px;
  }

  .artikel-detail-content ul {
    padding-left: 25px;
  }

  .artikel-detail-content li {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .artikel-cta {
    padding: 30px 20px;
    margin: 40px 0 30px;
  }

  .artikel-cta h3 {
    font-size: 22px;
  }

  .artikel-cta p {
    font-size: 14px;
  }

  .btn-large {
    padding: 14px 30px;
    font-size: 14px;
    width: 100%;
  }

  .artikel-share {
    margin-top: 30px;
    padding-top: 30px;
  }

  .artikel-share h4 {
    font-size: 16px;
  }

  .share-buttons {
    gap: 10px;
  }

  .share-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 15px;
    font-size: 13px;
  }

  .sidebar-widget {
    padding: 25px;
  }

  .widget-title {
    font-size: 18px;
  }

  .related-article-image {
    width: 80px;
    height: 64px;
  }

  .related-article-content h4 {
    font-size: 14px;
  }

  .related-date {
    font-size: 12px;
  }

  .category-list a {
    padding: 10px 12px;
    font-size: 14px;
  }

  .back-link a {
    font-size: 14px;
  }
}

/* ==================== IMPROVED ARTIKEL LIST LAYOUT FOR DESKTOP ==================== */
@media (min-width: 1024px) {
  /* Keep 1 column grid for artikel list page */
  .artikel-list-section .artikel-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  /* Adjust card height for better proportion */
  .artikel-card-full {
    height: 320px;
    grid-template-columns: 380px 1fr;
  }

  .artikel-image {
    height: 100%;
  }

  .artikel-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Title - 2 lines max */
  .artikel-title {
    font-size: 20px;
    line-height: 1.4;
    max-height: 56px; /* 2 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  /* Excerpt - 3 lines max */
  .artikel-excerpt {
    font-size: 14px;
    line-height: 1.6;
    max-height: 67px; /* 3 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;
  }

  /* Meta info smaller */
  .artikel-meta {
    font-size: 13px;
    gap: 15px;
    margin-bottom: 10px;
  }

  /* Tags section compact */
  .artikel-tags {
    gap: 6px;
    margin-bottom: 12px;
  }

  .artikel-tag {
    padding: 4px 10px;
    font-size: 11px;
  }

  /* Read more button */
  .btn-read-more {
    margin-top: auto;
    align-self: flex-start;
  }
}

/* For larger screens - better spacing */
@media (min-width: 1400px) {
  .artikel-list-section .container {
    max-width: 1400px;
    padding: 0 60px;
  }

  .artikel-list-section .artikel-grid {
    gap: 40px;
  }

  .artikel-card-full {
    height: 340px;
    grid-template-columns: 420px 1fr;
  }

  .artikel-title {
    font-size: 22px;
  }

  .artikel-excerpt {
    font-size: 15px;
  }
}
