/* ==========================================================================
   STYLE.CSS - ICCRI NET Homepage Redesign
   Theme: Premium Agriculture (Coffee & Cocoa - Forest Green, Earthy Brown, Gold)
   Standards: WCAG 2.1 Level AA Compliant
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- Custom Properties / Design Tokens --- */
:root {
  /* Color Palette (WCAG Compliant Contrast ratios against backgrounds) */
  --color-primary: #123524;        /* Deep Forest Green (Main Brand) - HSL(150, 49%, 14%) */
  --color-primary-light: #1f5038;  /* Forest Green Medium - HSL(150, 44%, 22%) */
  --color-secondary: #5c3e35;      /* Cocoa Brown - HSL(14, 27%, 29%) */
  --color-accent: #d49a17;         /* Gold Accent - HSL(42, 80%, 46%) */
  --color-accent-hover: #b8820e;   /* Darker Gold - HSL(42, 80%, 39%) */
  
  /* Neutral Colors */
  --color-bg-light: #fafaf7;       /* Soft Warm White - HSL(60, 20%, 98%) */
  --color-bg-card: #ffffff;        /* Pure White for cards */
  --color-bg-alt: #f1f3f0;         /* Light Gray-Green tint - HSL(100, 10%, 95%) */
  --color-text-dark: #1f2937;      /* Dark Charcoal - HSL(215, 28%, 17%) */
  --color-text-muted: #526053;     /* Muted Olive-Gray - HSL(127, 8%, 35%) */
  --color-text-light: #ffffff;     /* White */
  --color-border: #dcdfdc;         /* Soft Border */
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing & Layout */
  --container-max-width: 1200px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --shadow-sm: 0 2px 4px rgba(18, 53, 36, 0.05);
  --shadow-md: 0 10px 20px rgba(18, 53, 36, 0.08);
  --shadow-lg: 0 20px 40px rgba(18, 53, 36, 0.12);
}

/* --- Base & Reset Rules --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px; /* Base font-size */
  scroll-behavior: smooth;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  line-height: 1.6; /* WCAG 1.4.12 */
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* --- Accessibility Focus Styles (WCAG 2.4.7) --- */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 10px 20px;
  z-index: 9999;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 5px 5px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* --- Global Layout Containers (Elementor-friendly Flexbox Structures) --- */
.el-section {
  padding: 80px 0;
  position: relative;
}

.el-section.bg-alt {
  background-color: var(--color-bg-alt);
}

.el-section.bg-dark {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.el-section.bg-dark h1,
.el-section.bg-dark h2,
.el-section.bg-dark h3,
.el-section.bg-dark h4,
.el-section.bg-dark p {
  color: var(--color-text-light);
}

.el-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.el-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.el-col {
  flex: 1 0 0%;
  padding-left: 15px;
  padding-right: 15px;
}

/* Helper Columns matching Elementor Flexbox percentages */
.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-8 { flex: 0 0 66.666%; max-width: 66.666%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }

@media (max-width: 991px) {
  .el-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 30px;
  }
  .el-col:last-child {
    margin-bottom: 0;
  }
  .el-section {
    padding: 60px 0;
  }
}

/* --- Interactive Components & Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 48px; /* Touch target size (WCAG) */
  text-align: center;
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.btn-accent:hover, .btn-accent:focus {
  background-color: var(--color-accent-hover);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: transparent;
}

.btn-outline:hover, .btn-outline:focus {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  border-color: var(--color-text-light);
  color: var(--color-text-light);
  background-color: transparent;
}

.btn-outline-white:hover, .btn-outline-white:focus {
  background-color: var(--color-text-light);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* --- Section Heading Pattern --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header .subtitle {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-secondary); /* Dark Cocoa Brown - Contrast > 9.8:1 */
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  display: block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* --- Header / Navigation Styling --- */
.site-header {
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.top-bar {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 20px;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info a {
  color: var(--color-text-light);
}

.top-bar-info a:hover {
  color: var(--color-accent);
}

/* Logo Bar */
.logo-bar {
  background-color: #ffffff;
  padding: 15px 0;
}

.logo-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: clamp(40px, 5.5vw, 60px);
  width: auto;
  max-width: 100%;
  display: block;
}

/* Navigation Bar (Desktop) */
.navigation-bar {
  background-color: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.navigation-bar-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.site-navigation {
  width: 100%;
}

/* Main Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  width: 100%;
  justify-content: flex-start;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 12px 18px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.nav-link:hover, .nav-item:focus-within > .nav-link {
  color: var(--color-accent-hover);
  background-color: var(--color-bg-alt);
}

.nav-item.current-menu-item > .nav-link {
  color: var(--color-accent-hover);
  background-color: rgba(212, 154, 23, 0.06);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
  min-width: 240px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 100;
  padding: 8px 0;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.dropdown-link:hover {
  background-color: var(--color-bg-alt);
  color: var(--color-primary-light);
  padding-left: 24px;
}

/* Hamburger Toggle for Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  font-size: 1.25rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 8px 12px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.menu-toggle:hover {
  border-color: var(--color-primary);
  background-color: var(--color-bg-alt);
}

@media (max-width: 991px) {
  .top-bar {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }

  .logo-bar {
    border-bottom: 1px solid var(--color-border);
  }

  .navigation-bar {
    border: none;
    padding: 0;
  }
  
  .site-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  
  .site-navigation.is-active {
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .nav-menu {
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--color-accent);
    margin-left: 15px;
    padding: 5px 0;
    background-color: var(--color-bg-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-item.dropdown-active .dropdown-menu {
    max-height: 200px;
  }
}

/* --- Hero Slider Styles --- */
.hero-slider-section {
  position: relative;
  height: 650px;
  background-color: var(--color-primary);
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.65);
}

/* Gradient overlay dari kiri ke kanan agar teks terbaca & gambar tampil lebih penuh */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 30, 20, 0.75) 0%,
    rgba(10, 30, 20, 0.45) 45%,
    rgba(10, 30, 20, 0.05) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--color-text-light);
  max-width: 800px;
}

.hero-slide-content h2 {
  color: var(--color-accent);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
}

.hero-slide-content p {
  color: var(--color-text-light);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s ease 0.5s, opacity 0.6s ease 0.5s;
}

.hero-slide.active .hero-slide-content h2,
.hero-slide.active .hero-slide-content p {
  transform: translateY(0);
  opacity: 1;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.slider-arrow-left { left: 30px; }
.slider-arrow-right { right: 30px; }

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

@media (max-width: 991px) {
  .d-none-md {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-slider-section {
    height: 480px;
  }
  .slider-arrow {
    display: none; /* Hide arrows on mobile for clean touch interactions */
  }
}

/* --- Info Boxes Grid (6 Cards) --- */
.info-boxes-section {
  margin-top: -60px; /* Overlap hero slider slightly for premium floating layout */
  position: relative;
  z-index: 10;
  padding-bottom: 60px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-box-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.info-box-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.info-box-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.info-box-card:hover::before {
  background-color: var(--color-accent);
}

.info-box-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.info-box-card:hover .info-box-icon-badge {
  transform: scale(1.1) rotate(5deg);
}

/* Badge Color Variations */
.info-box-icon-badge.color-1 { background-color: rgba(18, 53, 36, 0.08); color: var(--color-primary); }
.info-box-icon-badge.color-2 { background-color: rgba(212, 154, 23, 0.08); color: var(--color-accent-hover); }
.info-box-icon-badge.color-3 { background-color: rgba(92, 62, 53, 0.08); color: var(--color-secondary); }
.info-box-icon-badge.color-4 { background-color: rgba(6, 147, 227, 0.08); color: #0693e3; }
.info-box-icon-badge.color-5 { background-color: rgba(212, 154, 23, 0.08); color: var(--color-accent-hover); }
.info-box-icon-badge.color-6 { background-color: rgba(18, 53, 36, 0.08); color: var(--color-primary); }

.info-box-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.info-box-card h3 {
  margin: 0 0 12px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}

.info-box-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.info-box-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.info-box-link i {
  transition: transform 0.2s ease;
}

.info-box-card:hover .info-box-link {
  color: var(--color-accent-hover);
}

.info-box-card:hover .info-box-link i {
  transform: translateX(4px);
}


@media (max-width: 991px) {
  .info-boxes-section {
    margin-top: 0;
    padding-top: 40px;
  }
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Section: Selayang Pandang (About & Video) --- */
.about-section {
  background-color: var(--color-bg-card);
}

.about-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-subtitle {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.about-title {
  margin-bottom: 25px;
  font-weight: 800;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Section: Berita Terkini --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.news-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.news-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-category {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-accent-hover);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: inline-block;
}

.news-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4.2em; /* Lock height to align layouts nicely */
}

.news-title a {
  color: var(--color-primary);
}

.news-excerpt {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 15px;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-readmore {
  color: var(--color-primary-light);
  font-weight: 700;
}

.news-readmore:hover {
  color: var(--color-accent);
}

@media (max-width: 1199px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Section: Layanan Kami --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.service-image-wr {
  height: 200px;
  overflow: hidden;
}

.service-image-wr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-image-wr img {
  transform: scale(1.05);
}

.service-desc {
  padding: 25px;
  text-align: center;
}

.service-desc h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.service-desc .btn {
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Section: Pencapaian & Mitra --- */
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.stats-card {
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(10px);
}

.stats-card .stats-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 10px;
}

.stats-card .stats-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-light);
}

@media (max-width: 991px) {
  .stats-counter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Accent Carousel (Mitra Kerja/Akreditasi) --- */
.partner-logos-wr {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 30px 0;
}

.partner-logo-item img {
  height: 70px;
  width: auto;
  max-width: 100%;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.partner-logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Call to Action Banner --- */
.cta-banner-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  position: relative;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 53, 36, 0.85); /* Dark Green Overlay */
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  color: var(--color-accent);
  margin-bottom: 20px;
}

.cta-banner-content p {
  color: var(--color-text-light);
  font-size: 1.2rem;
  margin-bottom: 35px;
}

/* --- Section Map (Google Map Iframe) --- */
.map-section {
  padding: 0;
  height: 450px;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* --- Section: Hubungi Kami & Footer --- */
.contact-section {
  background-color: var(--color-primary); /* Deep Forest Green */
  color: var(--color-text-light);
  padding: 80px 0 60px;
}

.contact-section h2 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-align: center;
}

.contact-info-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-grids {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.contact-column h4 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 12px;
  margin-bottom: 25px;
  letter-spacing: 0.03em;
}

.contact-cards-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card-item {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: var(--transition-smooth);
}

.contact-card-item:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.contact-card-info h5 {
  color: var(--color-accent);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.contact-card-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.contact-wa-btn {
  background-color: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-smooth);
  width: 100%;
}

.contact-wa-btn i {
  font-size: 1.1rem;
}

.contact-card-item:hover .contact-wa-btn {
  background-color: #25d366;
  border-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 1200px) {
  .contact-grids {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-grids {
    grid-template-columns: 1fr;
  }
}

/* --- Site Footer --- */
.site-footer {
  background-color: #0b1f15; /* Dark forest green */
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widgets {
  display: grid;
  grid-template-columns: 2.2fr 1.5fr 1.5fr 1.8fr;
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 40px;
}

.footer-widget h4 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-widget h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-accent);
  margin-top: 8px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  transition: var(--transition-smooth);
}

.footer-widget ul li a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

/* Recent news widget items */
.footer-recent-news li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
  margin-bottom: 10px !important;
}

.footer-recent-news li:last-child {
  border-bottom: none;
}

.footer-recent-news a {
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.4;
  display: block;
}

.footer-recent-news span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-top: 4px;
}

.footer-info-logo img {
  height: 45px;
  width: auto;
  margin-bottom: 20px;
}

.footer-info-text {
  line-height: 1.6;
  font-size: 0.88rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--color-accent);
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

@media (max-width: 991px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-widgets {
    grid-template-columns: 1fr;
  }
}

