/* ==========================================================================
   STYLE.CSS - ICCRI NET Pelatihan Page Redesign Stylesheet
   Design System, Components, Layouts, and Responsiveness (WCAG AA Compliant)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Tokens */
  --color-primary: #123524;         /* Deep Forest Green */
  --color-primary-light: #2e6f40;   /* Light Forest Green */
  --color-secondary: #5c3e35;       /* Cocoa Brown */
  --color-accent: #d49a17;         /* Gold Accent */
  --color-accent-hover: #b8820e;   /* Darker Gold */
  --color-bg-light: #f5efe6;        /* Ivory Light */
  --color-bg-card: #ffffff;         /* Pure White */
  --color-border: #e2e8f0;          /* Gray Border */
  --color-text-dark: #1f2937;       /* Dark Gray */
  --color-text-muted: #4b5563;     /* Muted Gray */
  --color-text-light: #ffffff;     /* White text */

  /* Spacing */
  --container-max-width: 1200px;
  
  /* Borders */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(18, 53, 36, 0.04);
  --shadow-lg: 0 20px 40px rgba(18, 53, 36, 0.08);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Styles & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: #fafaf9;
  line-height: 1.6;
  font-size: 1rem;
}

/* Accessibility Focus Indicator (WCAG 2.4.7) */
*:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

/* Skip-to-content Link (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 12px 24px;
  z-index: 9999;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

/* Utility Helpers */
a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.rounded { border-radius: var(--border-radius-md); }
.shadow { box-shadow: var(--shadow-md); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-primary);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 154, 23, 0.3);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  font-size: 1.1rem;
  padding: 14px 35px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #20ba56;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* --- Global Containers --- */
.el-section {
  padding: 80px 0;
  position: relative;
}

.el-section.bg-alt {
  background-color: var(--color-bg-light);
}

.el-section.bg-light {
  background-color: #ffffff;
}

.el-section.bg-dark {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.el-section.bg-dark h2,
.el-section.bg-dark h3 {
  color: #ffffff;
}

.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;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.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%; }

.align-items-center { align-items: center; }

@media (max-width: 991px) {
  .el-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 45px;
  }
  .el-col:last-child {
    margin-bottom: 0;
  }
  .el-section {
    padding: 60px 0;
  }
}

/* --- Heading Section Header --- */
.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header.text-left {
  text-align: left;
}

.section-header .subtitle {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-secondary); /* Contrast > 9.8:1 */
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 850;
  color: var(--color-primary);
  line-height: 1.25;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  margin-top: 15px;
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
}

.section-header.text-left h2::after {
  margin-left: 0;
  margin-right: 0;
}

.section-top-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* --- 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 {
  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 {
  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%;
}

.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-light);
}

.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-light);
  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-light);
}

@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 Section (Centered Layout) --- */
.tc-hero-section {
  background-color: var(--color-primary);
  background-image: linear-gradient(135deg, rgba(18, 53, 36, 0.95) 0%, rgba(11, 31, 21, 0.98) 100%);
  color: #ffffff;
  padding: 100px 0 160px; /* Lebihan padding bawah agar frame sertifikat melayang seimbang */
  position: relative;
  text-align: center;
}

.tc-hero-content-wrapper {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 50px; /* Rounded pill style yang lebih modern */
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.tc-hero-badge .iso-logo {
  height: 22px;
  width: auto;
}

.tc-hero-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.tc-hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  max-width: 980px;
}

.tc-hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 60px;
}

.desktop-only {
  display: inline;
}

/* Certificate Portrait Presentation */
.certificate-wrapper {
  width: 100%;
  max-width: 680px;
  margin: 0 auto -280px; /* Negatif margin bawah agar menindih section berikutnya */
  position: relative;
  z-index: 10;
  padding: 0 15px;
}

.certificate-frame {
  background-color: #ffffff;
  padding: 16px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); /* Sangat tipis dan bersih */
  transition: var(--transition-smooth);
}

.certificate-frame:hover {
  transform: translateY(-4px); /* Translasi hover yang minimalis */
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.certificate-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid #eeeeee;
}

/* Penyesuaian Spacing Section Berikutnya (karena sertifikat melayang) */
#benefits {
  padding-top: 260px; /* Tambahan padding atas agar konten tidak tertutup sertifikat */
}

@media (max-width: 991px) {
  .tc-hero-section {
    padding: 80px 0 120px;
  }
  .desktop-only {
    display: none; /* Nonaktifkan pemotongan baris di mobile/tablet */
  }
  .tc-hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 12px;
    margin-bottom: 40px;
  }
  .tc-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .certificate-wrapper {
    margin-bottom: -220px;
  }
  #benefits {
    padding-top: 200px;
  }
}

@media (max-width: 576px) {
  .certificate-wrapper {
    margin-bottom: -160px;
  }
  #benefits {
    padding-top: 140px;
  }
}

/* --- Section 1: Keunggulan (Value Proposition) --- */
.benefit-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(18, 53, 36, 0.05);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: scale(1.1);
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Section 2: Daftar Pelatihan & Filter Kategori --- */
.portfolio-filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-primary);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  background-color: var(--color-bg-light);
  border-color: var(--color-primary-light);
}

.filter-btn.active {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 10px rgba(18, 53, 36, 0.2);
}

/* Grid Pelatihan */
.trainings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .trainings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trainings-grid {
    grid-template-columns: 1fr;
  }
}

.training-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
}

.training-card.hide {
  display: none;
  opacity: 0;
  transform: scale(0.9);
}

.training-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
}

.training-img-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background-color: #eaeaea;
}

.training-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.training-card:hover .training-img-wrapper img {
  transform: scale(1.08);
}

.training-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.training-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.training-badges .badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.badge-primary {
  background-color: rgba(18, 53, 36, 0.08);
  color: var(--color-primary);
}

.badge-secondary {
  background-color: rgba(92, 62, 53, 0.08);
  color: var(--color-secondary);
}

.badge-accent {
  background-color: rgba(212, 154, 23, 0.08);
  color: var(--color-accent-hover);
}

.training-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.35;
  margin-bottom: 12px;
}

.training-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary-light);
}

.read-more-link i {
  transition: var(--transition-smooth);
}

.training-card:hover .read-more-link i {
  transform: translateX(4px);
}

/* --- Section 3: Galeri Fasilitas --- */
.facilities-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media (max-width: 768px) {
  .facilities-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.facility-gallery-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16/10;
}

.facility-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(rgba(18, 53, 36, 0) 0%, rgba(11, 31, 21, 0.95) 75%);
  padding: 35px 25px 25px;
  color: #ffffff;
  box-sizing: border-box;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-info h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.gallery-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  opacity: 0;
  transition: var(--transition-smooth);
}

.facility-gallery-card:hover img {
  transform: scale(1.06);
}

.facility-gallery-card:hover .gallery-info {
  transform: translateY(0);
}

.facility-gallery-card:hover .gallery-info p {
  opacity: 1;
}

/* --- Site Footer --- */
.site-footer {
  background-color: #0b1f15;
  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;
  }
}

/* ==========================================================================
   Premium Floating CTA Section Styles
   ========================================================================== */
.tc-cta-section {
  background-color: var(--color-bg-light); /* Latar abu-abu ivory pemisah agar kontras dengan footer gelap */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.floating-cta-card {
  background-color: var(--color-primary); /* Hijau Forest Gelap di dalam kartu */
  background-image: linear-gradient(135deg, #123524 0%, #1a4a33 100%); /* Flat/smooth forest green */
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 60px;
  box-shadow: 0 8px 32px rgba(18, 53, 36, 0.1); /* Sangat tipis & halus */
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.floating-cta-card .el-row {
  position: relative;
  z-index: 2;
}

.cta-text-side {
  padding-right: 40px;
}

.cta-subtitle {
  color: var(--color-accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  display: block;
}

.cta-text-side h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 850;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-text-side p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
}

.cta-features-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.cta-features-list i {
  color: var(--color-accent);
}

/* Standout WA Card in CTA - Flat & Minimalist (No Glassmorphism, No Blur, No Heavy Shadow) */
.wa-contact-card-standout {
  background-color: rgba(0, 0, 0, 0.15); /* Solid dark background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: none; /* No shadow */
  transition: var(--transition-smooth);
}

.wa-contact-card-standout:hover {
  background-color: rgba(0, 0, 0, 0.22);
  border-color: rgba(212, 154, 23, 0.4);
}

.wa-avatar-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.wa-avatar-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(212, 154, 23, 0.15);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.wa-status-badge {
  position: absolute;
  bottom: 0;
  right: -10px;
  background-color: #25D366;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  border: 2px solid #123524;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.wa-contact-info {
  margin-bottom: 25px;
}

.wa-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}

.wa-contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 850;
  color: #ffffff;
  margin-bottom: 4px;
}

.wa-phone-num {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent);
}

@media (max-width: 991px) {
  .tc-cta-section {
    padding: 60px 0;
  }
  .floating-cta-card {
    padding: 45px 30px;
  }
  .cta-text-side {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

