/* ========================================
   DESIGN SYSTEM & CSS VARIABLES
   ======================================== */

:root {
  /* Colors - HSL Format */
  --color-primary: 217 91% 60%;
  --color-primary-dark: 217 91% 50%;
  --color-primary-light: 217 91% 70%;
  
  --color-secondary: 222 47% 11%;
  
  --color-accent: 30 100% 50%;
  
  --color-background: 210 40% 98%;
  --color-surface: 0 0% 100%;
  
  --color-text: 222 47% 11%;
  --color-text-muted: 215 16% 47%;
  --color-text-light: 210 16% 60%;
  
  --color-border: 214 32% 91%;
  --color-border-light: 220 13% 95%;
  
  --color-success: 142 76% 36%;
  --color-warning: 45 93% 47%;
  --color-error: 0 84% 60%;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(217 91% 60%) 0%, hsl(217 91% 50%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(210 40% 98%) 0%, hsl(0 0% 100%) 100%);
  --gradient-cta: linear-gradient(135deg, hsl(217 91% 60%) 0%, hsl(225 73% 57%) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 hsla(222 47% 11% / 0.05);
  --shadow-md: 0 4px 6px -1px hsla(222 47% 11% / 0.1), 0 2px 4px -1px hsla(222 47% 11% / 0.06);
  --shadow-lg: 0 10px 15px -3px hsla(222 47% 11% / 0.1), 0 4px 6px -2px hsla(222 47% 11% / 0.05);
  --shadow-xl: 0 20px 25px -5px hsla(222 47% 11% / 0.1), 0 10px 10px -5px hsla(222 47% 11% / 0.04);
  --shadow-card: 0 2px 8px hsla(222 47% 11% / 0.08);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Container */
  --container-max-width: 1280px;
  --container-padding: 1rem;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: hsl(var(--color-text));
  background-color: hsl(var(--color-background));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: hsl(var(--color-surface));
  border-bottom: 1px solid hsl(var(--color-border-light));
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-padding);
  gap: 2rem;
}

.nav-brand {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  background-color: #2563eb;
  color: white;
  font-weight: 700;
  border-radius: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  user-select: none;
}

.logo h1 {
  font-weight: 700;
  color: #1d2b64;
  font-size: 1.2rem;
}

.logo small {
  font-weight: 500;
  color: #3b82f6;
  font-size: 0.85rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}


.brand-name {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  color: hsl(var(--color-text));
}

.brand-tagline {
  font-size: var(--font-size-sm);
  color: hsl(var(--color-text-muted));
}

.nav-menu {
  display: none;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-weight: var(--font-weight-medium);
  color: hsl(var(--color-text));
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: hsl(var(--color-primary));
}

.nav-link.active {
  color: hsl(var(--color-primary));
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--color-primary));
  font-weight: var(--font-weight-medium);
  transition: opacity var(--transition-fast);
}

@media (min-width: 1024px) {
  .nav-phone {
    display: flex;
  }
}

.nav-phone:hover {
  opacity: 0.8;
}

.phone-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
}

/* Judul Perusahaan */
.logo h1 {
  font-size: 0.95rem !important;     /* lebih kecil dari sebelumnya */
  font-weight: 700;
  margin: 0;
  line-height: 1.1;       /* rapatkan jarak vertikal */
}

/* Tagline */
.logo small {
  font-size: 0.75rem !important; 
  margin-top: 2px;       /* tarik sedikit ke atas */
  display: block;
  color: #3b82f6;
  line-height: 1;
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 0.85rem;
  }
  .logo small {
    font-size: 0.7rem;
  }
}
/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-cta {
  background: white;
  color: hsl(var(--color-primary));
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
  box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--color-primary));
  font-weight: var(--font-weight-semibold);
  transition: gap var(--transition-fast);
}

.btn-link:hover {
  gap: 0.75rem;
}


.btn-outline:hover {
 transform: translateY(-2px);
 box-shadow: var(--shadow-xl);
}

.btn-outline {
  background-color: #dbeafe;
 color: #1e40af;
}
.btn-outline:active {
  transform: translateY(0);
}

.btn-light {
 color:#2563eb
 hsl(var(--color-background))
}
.btn-light:hover {
 transform: translateY(-2px);
 box-shadow: var(--shadow-xl);
 
}

.btn-light:active {
 transform: translateY(0);
 background-color: rgb(199, 197, 197);
}

/* Hero Section */

.hero-section {
  position: relative;
  padding: 6rem 1rem 4rem;
  padding-bottom: 140px;

  /* HAPUS background color/gradient lama */
  
  /* Gunakan gambar sebagai background utama */
  background-image: url('/asset/background-beranda-1.jpg'); /* ganti gambar Anda */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0,0,0,0.55);
  background-blend-mode: overlay;
  color: white;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}
.hero-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 450px;
}

.badge {
  background: #dbeafe;
  color: #1e40af;
  font-weight: 600;
  border-radius: 9999px;
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.hero-text h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.highlight {
  color: #60a5fa;
}

.hero-description {
  font-weight: 400;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #cbd5e1;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1 1 450px;
  position: relative;
  text-align: center;
}

.hero-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 30px 30px 30px 30px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  max-height: 500px;
}

.hero-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image .swiper {
  width: 100%;
  height: 380px; /* sesuaikan kebutuhan */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  background: white;
  color: #1e40af;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.4rem;
  box-shadow: 0 5px 12px rgb(30 64 175 / 0.25);
}

.experience-badge .icon {
  background: #dbeafe;
  border-radius: 9999px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-badge .large-text {
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
}

/* Media Query untuk Mobile (Layar di bawah 768px) */
@media (max-width: 768px) {
  .hero-section {
    padding: 5rem 1rem 3rem; /* Mengurangi padding atas/bawah */
    text-align: center;      /* Membuat teks rata tengah di mobile */
  }

  .hero-container {
    flex-direction: column;  /* Menyusun teks dan gambar secara vertikal */
    gap: 2rem;
  }

  .hero-text {
    flex: 1 1 100%;          /* Mengambil lebar penuh */
    order: 1;                /* Teks muncul di atas */
  }

  .hero-text h2 {
    font-size: 2.2rem;       /* Mengecilkan ukuran font judul agar tidak overflow */
  }

  .hero-buttons {
    justify-content: center; /* Mengetengahkan tombol */
  }

  .hero-image {
    flex: 1 1 100%;          /* Mengambil lebar penuh */
    width: 100%;             /* Reset dari width: 50% sebelumnya */
    order: 2;                /* Gambar muncul di bawah teks */
  }

  .hero-image .swiper {
    height: 300px;           /* Sesuaikan tinggi slider untuk HP */
    max-width: 100%;
  }
}

/* Stats Section */
.stats-section {
  background-color: #1e40af;
  color: white;
  padding-top: -10px;
  text-align: center;
  
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin-top: -50px;
  padding-bottom: 30px;
}

.stat {
  flex: 1 1 180px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 1.1rem;
}

/* Services Section */
.services-section {
  padding: 4rem 1rem;
  background: #f9fafb;
  color: #1e2c5a;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #1e2c5a;
}

.section-subtitle {
  color: #64748b;
  margin-bottom: 2rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.05);
  padding-bottom: 1rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
}

.service-card img {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card .service-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1e40af;
  color: white;
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-card h3 {
  margin: 1rem 1rem 0.6rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e40af;
}

.service-card p {
  padding: 0 1rem 1rem;
  color: #475569;
  flex-grow: 1;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-card .link-more {
  margin-left: 1rem;
  margin-top: auto;
  color: #1e40af;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 0.6rem;
  display: inline-block;
}

.service-card:hover {
  box-shadow: 0 10px 40px rgb(30 64 175 / 0.3);
  border-color: #1e40af;
}

.highlighted {
  border-color: #1e40af;
}

/* Why Choose Us Section */
.why-choose-section {
  background-color: #f1f5f9;
  padding: 4rem 1rem;
  color: #1e2c5a;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
}

.center {
  text-align: center;
}


/* feature box */

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


.features-cards {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: left;
  border-left: 6px solid transparent;
  transition: border-color 0.3s ease;
}

.features-cards:nth-child(odd) {
  border-left-color: #1e40af;
}

.features-icons {
  background-color: #dbeafe;
  border-radius: 1rem;
  width: 50px;
  height: 50px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e40af;
  margin-bottom: 1rem;
  user-select: none;
}

.features-cards h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Call To Action Section */
.cta-section {
  background-color: #1e40af;
  color: white;
  text-align: center;
  padding: 4rem 1rem 6rem;
}

.cta-container {
  max-width: 650px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: #1e3a8a;
  color: white;
  padding: 4rem 1rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  background-color: #2563eb;
  color: white;
  font-weight: 700;
  border-radius: 10px;
  width: 47px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  user-select: none;
}

.footer-logo h3 {
  font-weight: 700;
  font-size: 1.3rem;
}

.footer-logo small {
  font-size: 0.75rem;
  color: #a5b4fc;
}

footer p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #bfdbfe;
}

footer ul {
  list-style: none;
  margin-top: 0.75rem;
}

footer ul li a {
  color: #bfdbfe;
  text-decoration: none;
  display: block;
  margin: 0.4rem 0;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: white;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.contact-list li i {
  stroke: white;
  min-width: 20px;
  min-height: 20px;
}

.contact-list li a {
  color: #bfdbfe;
  text-decoration: none;
}

.contact-list li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #a5b4fc;
}

.footer-links a {
  margin-left: 1rem;
  color: #a5b4fc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Responsive */
@media(max-width: 768px){
  .nav-links{
    display: none;
  }
  .nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    background-color: white;
    top: 80px;
    right: 15px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgb(30 64 175 / 0.3);
  }

  .nav-container {
    position: relative;
  }

  .hero-container {
    flex-direction: column;
  }

  .hero-image,
  .hero-text{
    flex: 1 1 100%;
  }

  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

.footer-item:hover {
  transform: translateY(-2px);

}

/* ========== HEADER STICKY ========== */
.header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 3000;
  border-bottom: 1px solid #eee;
}

/* ========== NAVBASE ========== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-padding);
  position: relative; /* PENTING */
}

/* ========== NAV MENU DESKTOP ========== */
.nav-menu {
  display: none;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    position: static;
  }
}

/* ========== HAMBURGER BUTTON ========== */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: 3100; /* di atas header + menu */
}

.menu-toggle i,
.fas.fa-bars {
  font-size: 24px;
  color: #000 !important;
}

.menu-toggle i,
.fas.fa-bars {
  color: #000 !important; /* hitam */
}


@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* ========== HIDE HUBUNGI KAMI DI MOBILE ========== */
@media (max-width: 1023px) {
  .btn.btn-primary {
    display: none;
  }
}

@media (max-width: 1023px) {
    
    /* ... (Kode untuk .btn.btn-primary display: none) ... */

    /* >>> TAMBAHKAN/EDIT BLOK INI <<< */
    .nav-menu {
        display: flex; 
        flex-direction: column;
        
        position: fixed; /* PENTING: Menu tidak ikut scroll */
        top: 0;
        right: 0; /* Mulai dari sisi kanan */
        width: 300px; /* Lebar Sidebar (sesuaikan jika perlu) */
        height: 100%; /* Mengisi seluruh tinggi layar */
        
        background-color: #1d2b64; /* Warna Biru Tua/Navy */
        padding: 80px 30px 20px 30px; /* Jarak dari atas untuk header */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 999; /* Pastikan di atas overlay */
        overflow-y: auto; 
        
        /* SEMBUNYIKAN MENU SECARA DEFAULT */
        transform: translateX(100%); 
        transition: transform 0.3s ease-in-out;
    }

}


/* ========== MOBILE SIDEBAR MENU (PENGGANTI DROPDOWN) ========== */
.nav-menu.open {
    /* Hanya perlu menggeser menu masuk (transform: translateX(0)) */
    transform: translateX(0); 
    
    /* Hapus semua properti lain yang ada di blok lama seperti top, left, width, background, dll. karena sudah didefinisikan di .nav-menu di Langkah 1. */
    
    /* Z-Index harus lebih tinggi dari backdrop */
    z-index: 2200; 
}

.nav-menu.open li {
    margin: .7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Tambahkan garis pemisah putih */
}

.nav-menu.open .nav-link {
    display: block;
    width: 100%;
    color: white; /* PENTING: Agar tautan terlihat di latar belakang biru tua */
    padding: 10px 0;
}

/* HAPUS TOTAL: Animasi Drop */
/* @keyframes drop { ... } */

.nav-menu.open li {
  margin: .7rem 0;
}

.nav-menu.open .nav-link {
  display: block;
  width: 100%;
}



/* ========== BACKDROP MOBILE ========== */
.mobile-backdrop {
  display: none;
}

.mobile-backdrop.show {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 2000; /* di bawah menu */
}

/* ============================
  FORCE HAMBURGER ICON BLACK
  Tempelkan ini di paling bawah file CSS
   ============================ */

/* Semua kemungkinan class FontAwesome & i */
.menu-toggle,
.menu-toggle * {
  color: #000 !important;      /* teks / icon color */
  fill: #000 !important;       /* untuk svg fill */
  stroke: #000 !important;     /* untuk svg stroke */
}

/* Target spesifik untuk FA v4/v5 pseudo-element */
.menu-toggle .fa,
.menu-toggle .fas,
.menu-toggle .fa-bars,
.menu-toggle i.fas,
.menu-toggle i.fa,
.menu-toggle .fa-bars:before,
.menu-toggle i.fas:before {
  color: #000 !important;
  fill: #000 !important;
}

/* Jika icon dimasukkan sebagai SVG */
.menu-toggle svg,
.menu-toggle svg * {
  color: #000 !important;
  fill: #000 !important;
  stroke: #000 !important;
}

/* Pastikan tidak ada background-clip atau mix-blend yang membuatnya transparan */
.menu-toggle,
.menu-toggle i,
.menu-toggle .fa,
.menu-toggle svg {
  -webkit-text-fill-color: #000 !important;
  mix-blend-mode: normal !important;
}

/* Jika masih ada style inline di elemen, tambahkan ini untuk prioritas tertinggi (jadi gunakan sementara) */
[style] > .menu-toggle,
.menu-toggle[style] {
  color: #000 !important;
  fill: #000 !important;
}
/* Warna icon hamburger jadi hitam */
.menu-toggle i {
  color: #000000 !important;
  font-size: 24px; /* opsional */
}

/* Hilangkan border jika ada */
.menu-toggle {
  border: none;
  background: transparent;
}


/*feature Section*/
.feature-container {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  margin-top: -210px;
  z-index: 1;
}

/* SECTION */
.feature-section {
  background: #1e40af;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.feature-container {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  margin-top: -210px;
}

/* CARD */
.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
  border-radius: 16px;
  
  
}


/* IMAGE */
.feature-image {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HOVER GAMBAR SAJA */
.feature-image img {
  transition: transform .4s ease;
}

.feature-image:hover img {
  transform: scale(1.08);
}


/* TEXT */
.feature-card h3 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;

}

.feature-card p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  min-height: 72px;
}

/* BUTTON */
.read-more {
  margin-top: auto;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

/* CTA CARD */
.feature-cta {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #fff;
  border-radius: 20px;
  text-align: center;
  justify-content: center;
  padding: 30px;
}

.feature-cta p {
  color: #e5e7eb;
}

.cta-icon {
  font-size: 36px;
}

.cta-button {
  margin-top: auto;
  padding: 12px 28px;
  background: #fff;
  color: #1e40af;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

/* ======================
   MOBILE (2 KOLUMN)
====================== */
@media (max-width: 768px) {
  .feature-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
    gap: 20px;
  }

  .feature-image {
    height: 140px;
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 14px;
    min-height: 64px;
  }

  /* CTA full width */
  .feature-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .feature-container {
    margin-top: -120px;      /* HENTIKAN TABRAKAN */
  }

 
}




/* Artikel dan agenda */

.sikabufarmberanda-agenda-section {
    padding: 30px 0;
    background-color: #1e40af;
}

.sikabufarmberanda-agenda-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sikabufarmberanda-agenda-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Judul Kolom */
.sikabufarmberanda-agenda-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
}


/* --- STYLE AGENDA (KIRI) --- */
.sikabufarmberanda-agenda-col { flex: 0.9; }

.sikabufarmberanda-agenda-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #f1f5f9;
}

.sikabufarmberanda-agenda-date {
    background: #2563eb;
    color: white;
    min-width: 65px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.sikabufarmberanda-agenda-date .day { font-size: 20px; font-weight: 800; line-height: 1; }
.sikabufarmberanda-agenda-date .month { font-size: 12px; text-transform: uppercase; }

.sikabufarmberanda-agenda-info h4 { font-size: 16px; font-weight: 700; color: #1e293b; margin-bottom: 4px; }
.sikabufarmberanda-agenda-info p { font-size: 13px; color: #64748b; line-height: 1.4; }

/* --- STYLE ARTIKEL SLIDER (KANAN) --- */
.sikabufarmberanda-agenda-article-col { flex: 2; min-width: 0; }

.sikabufarmberanda-article-slider { padding-bottom: 40px !important; }

.sikabufarmberanda-agenda-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.sikabufarmberanda-agenda-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.sikabufarmberanda-agenda-card .card-content { padding: 15px; }

.sikabufarmberanda-agenda-card .tag { font-size: 11px; font-weight: 700; color: #2563eb; text-transform: uppercase; }

.sikabufarmberanda-agenda-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 8px 0;
    line-height: 1.4;
    height: 42px;
    overflow: hidden;
}

.read-link { font-size: 13px; font-weight: 700; color: #3b82f6; text-decoration: none; }

/* Mobile */
@media (max-width: 768px) {
    .sikabufarmberanda-agenda-flex { flex-direction: column; }
    .sikabufarmberanda-agenda-col { order: 1; width: 100%; }
    .sikabufarmberanda-agenda-article-col { order: 2; width: 100%; }
}


/* =========================
   DROPDOWN MOBILE ONLY
   ========================= */
@media (max-width: 1023px) {

  .has-dropdown {
    width: 100%;
  }

  .has-dropdown > .nav-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* icon panah */
  .has-dropdown > .nav-parent::after {
    content: "▾";
    font-size: 14px;
    transition: transform .3s ease;
  }

  .dropdown-menu {
    list-style: none;
    padding-left: 15px;
    margin-top: 6px;

    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }

  .dropdown-menu li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255,255,255,.85);
  }

  /* OPEN */
  .has-dropdown.open .dropdown-menu {
    max-height: 300px;
  }

  .has-dropdown.open > .nav-parent::after {
    transform: rotate(180deg);
  }
}

/* DESKTOP — pastikan dropdown tidak pernah muncul */
@media (min-width: 1024px) {
  .dropdown-menu {
    display: none !important;
  }
}

.read-more {
  color: #1e40af;
  padding-top: 10px;
}

/* Pakan UK */

.pakan-uk {
  padding: 100px 0;
}

.pakan-uk-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 48px;
}

/* DESKRIPSI */
.pakan-uk-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pakan-uk-content p {
  font-size: 1.1rem;
  color: hsl(var(--color-text-muted));
  line-height: 1.7;
}

/* CAROUSEL */
.pakan-uk-carousel {
  position: relative;
  overflow: hidden;
}

.pakan-uk-track {
  display: flex;
  align-items: center;
  transition: transform .5s ease;
}

.pakan-uk-item {
  width: 190px;
  margin: 0 -38px;
  transform: scale(.75);
  opacity: .6;
  transition: all .4s ease;
}

.pakan-uk-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  background: white;
  padding: 10px;
}

/* AKTIF */
.pakan-uk-item.active {
  transform: scale(1);
  opacity: 1;
  z-index: 4;
}

/* SAMPING */
.pakan-uk-item.prev,
.pakan-uk-item.next {
  transform: scale(.85);
  opacity: .85;
  z-index: 2;
}

/* NAV */
.pakan-uk-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  color: white;
  font-size: 26px;
  z-index: 10;
}

.pakan-uk-nav.prev { left: 0; }
.pakan-uk-nav.next { right: 0; }

/* MOBILE */
@media (max-width: 900px) {
  .pakan-uk-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pakan-uk-carousel {
    margin-top: 40px;
  }
}

.pakan-uk-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 3rem;
}

.pakan-uk-track.no-transition {
  transition: none !important;
}

.pakan-uk-track {
  cursor: grab;
  user-select: none;
}

.pakan-uk-track.dragging {
  cursor: grabbing;
}

