/*
Theme Name: Cleanique Academy
Theme URI: https://cleaniqueacademy.com
Author: Cleanique Academy Team
Author URI: https://cleaniqueacademy.com
Description: Custom WordPress Theme for Cleanique Academy. Fast, lightweight, content-driven, rich landing page, and optimized for conversions.
Version: 2.0.0
Text Domain: cleanique-academy
*/

/* ==========================================================================
   Design Tokens & CSS Variables
   ========================================================================== */
:root {
  --color-primary: #0284c7;
  --color-primary-hover: #0369a1;
  --color-primary-dark: #075985;
  --color-primary-light: #f0f9ff;
  --color-primary-border: #bae6fd;
  
  --color-secondary: #0b0f19;
  --color-secondary-light: #1e293b;
  
  --color-accent: #16a34a;
  --color-accent-hover: #15803d;
  --color-accent-light: #f0fdf4;
  
  --color-amber: #d97706;
  --color-amber-light: #fffbeb;
  
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-bg-main: #ffffff;
  --color-bg-surface: #f8fafc;
  --color-border: #e2e8f0;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 8px;

  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.08);
  --shadow-md: 0 4px 12px -2px rgb(0 0 0 / 0.1), 0 2px 6px -1px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 16px 24px -4px rgb(0 0 0 / 0.12), 0 6px 10px -3px rgb(0 0 0 / 0.08);

  --container-width: 1200px;
  --header-height: 72px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-main);
  background-color: var(--color-bg-main);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--color-primary-hover);
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Header Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  height: 42px;
  width: auto;
  display: block;
}

/* Main Navigation Menu for Company Profile Pages */
.main-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-menu a {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--color-primary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Mobile Toggle Button */
.mobile-toggle-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: #e2e8f0;
  border: none;
  color: var(--color-secondary);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-toggle-btn:hover {
  background-color: #cbd5e1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.86rem;
  border-radius: var(--radius-full);
}

.btn-header-wa {
  white-space: nowrap !important;
  line-height: 1 !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px 0 rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(2, 132, 199, 0.45);
  color: #ffffff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px 0 rgba(22, 163, 74, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(22, 163, 74, 0.45);
  color: #ffffff;
}

.btn-pill-promo {
  background: linear-gradient(135deg, #0284c7 0%, #1e3a8a 100%);
  color: #ffffff;
  padding: 0.9rem 2.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px -4px rgba(2, 132, 199, 0.4);
  transition: all 0.25s ease;
}

.btn-pill-promo:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px -2px rgba(2, 132, 199, 0.5);
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-secondary);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   Mobile Drawer Navigation Menu
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer-panel.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: #e2e8f0;
  border: none;
  color: var(--color-secondary);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-drawer-close:hover {
  background-color: #cbd5e1;
}

.mobile-menu-list {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  flex-grow: 1;
}

.mobile-menu-list li {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-menu-list a {
  display: block;
  padding: 1.1rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-secondary);
  transition: all 0.2s ease;
}

.mobile-menu-list a:hover {
  background-color: var(--color-bg-surface);
  color: var(--color-primary);
  padding-left: 2rem;
}

.mobile-drawer-footer {
  padding: 2rem 1.75rem;
  border-top: 1px solid #f1f5f9;
  background-color: #ffffff;
}

.drawer-footer-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.drawer-footer-item {
  font-size: 0.95rem;
  color: var(--color-secondary);
  margin-bottom: 0.35rem;
}

.drawer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}

.social-icon-box:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-border);
  color: var(--color-primary);
}

/* Admin-Editable Promo Section Component */
.promo-banner-container {
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.promo-banner-link {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.25s ease;
}

.promo-banner-link:hover {
  transform: scale(1.015);
}

.promo-banner-image {
  width: 100%;
  height: auto;
  display: block;
}

.promo-banner-text {
  max-width: 680px;
  margin: 1.5rem auto 1.5rem auto;
  font-size: 1.05rem;
  color: var(--color-text-main);
  line-height: 1.65;
  text-align: center;
}

/* Reusable Page Hero Header Component */
.page-hero {
  padding: 4rem 0 3.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-hero-light {
  background: linear-gradient(180deg, var(--color-primary-light) 0%, #ffffff 100%);
}

.page-hero-dark {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1e293b 100%);
  color: #ffffff;
}

.page-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.page-hero-light .page-hero-badge {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid var(--color-primary-border);
}

.page-hero-dark .page-hero-badge {
  background-color: rgba(2, 132, 199, 0.25);
  color: #7dd3fc;
  border: 1px solid rgba(125, 211, 252, 0.3);
}

.page-hero-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-dark .page-hero-title {
  color: #ffffff;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.page-hero-light .page-hero-subtitle {
  color: var(--color-text-muted);
}

.page-hero-dark .page-hero-subtitle {
  color: #cbd5e1;
}

.page-hero-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.page-hero-light .page-hero-breadcrumbs a {
  color: var(--color-primary);
  font-weight: 600;
}

.page-hero-light .page-hero-breadcrumbs .breadcrumb-current {
  color: var(--color-text-muted);
}

.page-hero-dark .page-hero-breadcrumbs a {
  color: #7dd3fc;
  font-weight: 600;
}

.page-hero-dark .page-hero-breadcrumbs .breadcrumb-current {
  color: #94a3b8;
}

.breadcrumb-separator {
  color: var(--color-text-muted);
}

/* Overview Section with Video Embed */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.responsive-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background-color: #000000;
}

.responsive-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Static Gallery Grid (6 Images) */
.hero-static {
  padding: 4rem 0 3rem 0;
  text-align: center;
  background: #fafafa;
}

.hero-static-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 2.5rem;
}

.hero-title-green {
  color: #16a34a;
}

.hero-title-blue {
  color: #0284c7;
}

.hero-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.hero-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.highlight-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.highlight-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  line-height: 1.5;
}

.highlight-card-green {
  color: #16a34a;
}

.highlight-card-yellow {
  background-color: #fef08a;
  color: #854d0e;
  border-color: #fde047;
}

/* Article Detail Page (single.php) Layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.article-header {
  margin-bottom: 2rem;
}

.category-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.article-title {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: var(--color-secondary);
}

.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

.article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.meta-dot {
  color: var(--color-border);
  font-weight: bold;
}

.featured-image-wrapper {
  margin-bottom: 2.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.featured-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

/* Table of Contents (TOC) Box */
.toc-box {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-primary-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.toc-title {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.toc-list {
  list-style: none;
}

.toc-list li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.toc-list li.toc-sub {
  margin-left: 1.25rem;
  font-size: 0.9rem;
}

.toc-list a {
  color: var(--color-secondary);
  font-weight: 500;
}

.toc-list a:hover {
  color: var(--color-primary);
}

/* Article Body Typography & Backlinks */
.article-body {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--color-text-main);
}

.article-body h2 {
  font-size: 1.85rem;
  margin: 2.5rem 0 1rem 0;
  color: var(--color-secondary);
}

.article-body h3 {
  font-size: 1.4rem;
  margin: 2rem 0 0.85rem 0;
  color: var(--color-secondary);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body blockquote {
  border-left: 4px solid var(--color-primary);
  background-color: var(--color-primary-light);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Interactive Photo-Focused Overlay Gallery Cards */
.gallery-overlay-card {
  position: relative;
  height: 370px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #0f172a;
}

.gallery-card-image-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.gallery-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.35s ease;
  cursor: zoom-in;
}

.gallery-overlay-card:hover .gallery-card-image-wrap img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.gallery-card-badge-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  color: #38bdf8;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(56, 189, 248, 0.3);
  transition: opacity 0.3s ease;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.6) 55%, rgba(15, 23, 42, 0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.25rem 1.5rem 1.25rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card-content {
  color: #ffffff;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay-card:hover .gallery-card-content {
  transform: translateY(-4px);
}

.gallery-card-lokasi {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.gallery-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-card-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gallery-card-title a:hover {
  color: #38bdf8;
}

.gallery-card-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.45;
  margin-bottom: 0.65rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.gallery-card-actions {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 2px;
  padding-bottom: 4px;
}

.gallery-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.gallery-card-btn:hover {
  background: var(--color-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

.gallery-overlay-card:hover {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
}

.gallery-overlay-card:hover .gallery-card-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.85) 60%, rgba(15, 23, 42, 0.4) 100%);
}

.gallery-overlay-card:hover .gallery-card-desc {
  max-height: 70px;
  opacity: 1;
}

.gallery-overlay-card:hover .gallery-card-actions {
  max-height: 70px;
  opacity: 1;
}

/* Social Share Card Buttons (Matching Custom Circle & Tooltip Design) */
.share-section-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.6rem;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  flex-wrap: wrap;
}

.share-title-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.share-header-icon {
  color: #475569;
}

.share-title-text {
  font-size: 0.98rem;
  font-weight: 700;
  color: #334155;
}

.share-buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Circular Buttons */
.share-circle-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.share-circle-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

/* Specific Platform Colors */
.share-wa {
  background-color: #25d366;
}

.share-fb {
  background-color: #1877f2;
}

.share-li {
  background-color: #0a66c2;
}

.share-x {
  background-color: #000000;
}

.share-copy {
  background-color: #5b6b82;
}

/* Tooltip Badge Styling */
.share-circle-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #0f172a;
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
  z-index: 20;
}

/* Tooltip Triangle Arrow */
.share-circle-btn::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #0f172a transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 20;
}

.share-circle-btn:hover::before,
.share-circle-btn:hover::after,
.share-circle-btn.tooltip-active::before,
.share-circle-btn.tooltip-active::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Article Navigation Cards (Previous/Next) */
.post-navigation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.nav-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: all 0.2s ease;
}

.nav-card:hover {
  border-color: var(--color-primary-border);
  box-shadow: var(--shadow-md);
}

.nav-card-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.nav-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.4;
}

/* Related Articles Grid */
.related-articles-section {
  margin-bottom: 3.5rem;
}

.related-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-primary-light);
  color: var(--color-secondary);
}

.recent-posts-list {
  list-style: none;
}

.recent-posts-list li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.recent-posts-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-link {
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 0.95rem;
  line-height: 1.4;
  display: block;
  margin-bottom: 0.25rem;
}

.recent-post-link:hover {
  color: var(--color-primary);
}

.recent-post-date {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.widget-categories {
  list-style: none;
}

.widget-categories li {
  margin-bottom: 0.6rem;
}

.widget-categories a {
  color: var(--color-text-main);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}

.widget-categories a:hover {
  color: var(--color-primary);
}

/* Comments Area */
.comments-area {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.comments-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.comment-list {
  list-style: none;
  margin-bottom: 3rem;
}

.comment-body {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.comment-author {
  font-weight: 700;
  color: var(--color-secondary);
}

.comment-metadata {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.comment-content {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-main);
}

.comment-form {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.comment-reply-title {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.comment-form p {
  margin-bottom: 1.25rem;
}

.comment-form label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
  color: var(--color-secondary);
}

.comments-area {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.comments-title,
.comment-reply-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
}

.comment-form p {
  margin-bottom: 1.25rem;
}

.comment-form label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-secondary);
  margin-bottom: 0.4rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form input[type="tel"],
.comment-form input[type="search"],
.comment-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-main);
  background-color: var(--color-bg-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form input[type="tel"]:focus,
.comment-form input[type="search"]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.comment-form-cookies-consent input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.comment-form-cookies-consent label {
  display: inline;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.comment-form input[type="submit"] {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  transition: all 0.2s ease;
}

.comment-form input[type="submit"]:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
}

/* Sections General */
.section {
  padding: 3rem 0;
}

.section-alt {
  background-color: var(--color-bg-surface);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem auto;
}

.section-subtitle {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-description {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* Grids */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2 {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr !important;
  }
}

/* Cards */
.card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-border);
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-secondary);
}

.card-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* Accordions (Dropdown FAQ) */
details.accordion-item,
.accordion-item {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.25s ease;
}

details.accordion-item[open] {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
}

summary.accordion-header,
.accordion-header {
  padding: 1.15rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-secondary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: background 0.2s ease, color 0.2s ease;
}

summary.accordion-header::-webkit-details-marker {
  display: none;
}

summary.accordion-header:hover {
  background-color: #f8fafc;
  color: var(--color-primary);
}

summary.accordion-header::after {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  transform: rotate(45deg);
  transition: transform 0.25s ease, border-color 0.25s ease;
  margin-left: 1rem;
  flex-shrink: 0;
}

details.accordion-item[open] summary.accordion-header::after {
  transform: rotate(-135deg);
  border-color: var(--color-primary);
}

.accordion-body {
  padding: 0.85rem 1.5rem 1.35rem 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid #f1f5f9;
}

/* ==========================================================================
   Rich Footer Styles (indotech.id & orchidbrand.id inspired)
   ========================================================================== */
.site-footer {
  background-color: #0b0f19;
  color: #94a3b8;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h4 {
  color: #ffffff;
}

.footer-heading {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: #1e293b;
  color: #94a3b8;
  transition: all 0.2s ease;
}

.social-icon-link:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Floating Back-To-Top and WhatsApp Action Buttons */
.floating-actions-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9997;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  pointer-events: none;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.btn-top {
  width: 48px;
  height: 48px;
  background-color: #0284c7;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.btn-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-top:hover {
  background-color: #0369a1;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.38);
}

.btn-wa-float {
  width: 48px;
  height: 48px;
  background-color: #25d366;
  color: #ffffff;
}

.btn-wa-float:hover {
  background-color: #20ba5a;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.38);
}

.wa-float-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

/* Floating Chat Bubble Speech Tooltip */
.wa-floating-bubble {
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 0.65rem 0.95rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  pointer-events: auto;
  max-width: calc(100vw - 5rem);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  z-index: 10;
}

.wa-floating-bubble:hover {
  border-color: #0284c7;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.wa-floating-bubble span:hover {
  color: #0284c7;
}

.wa-floating-bubble::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #ffffff;
}

.wa-floating-bubble::before {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid #cbd5e1;
}

.wa-bubble-close-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.wa-bubble-close-btn:hover {
  color: #475569;
}

@media (max-width: 520px) {
  .wa-floating-bubble {
    display: none !important;
  }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .desktop-nav {
    display: none !important;
  }
  .mobile-toggle-btn {
    display: inline-flex !important;
  }
  .hero-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlight-cards-row {
    grid-template-columns: 1fr;
  }
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  }
  .article-title {
    font-size: 2rem;
  }
  .page-hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 60px !important;
  }
  .logo-image {
    height: 32px !important;
  }
  .btn-header-wa {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.78rem !important;
    gap: 0.35rem !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }
  .btn-header-wa svg {
    width: 14px !important;
    height: 14px !important;
  }
  .floating-actions-wrap {
    bottom: 1rem !important;
    right: 1rem !important;
    gap: 0.5rem !important;
  }
  .btn-top {
    width: 42px !important;
    height: 42px !important;
  }
  .btn-top svg {
    width: 18px !important;
    height: 18px !important;
  }
  .btn-wa-float {
    width: 42px !important;
    height: 42px !important;
  }
  .btn-wa-float svg {
    width: 22px !important;
    height: 22px !important;
  }
  .hero-static-title {
    font-size: 2rem;
  }
}

/* Table of Contents Collapsible Accordion Dropdown */
details.toc-details {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.15rem 1.35rem;
  margin-bottom: 2.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

summary.toc-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  user-select: none;
}

summary.toc-summary::-webkit-details-marker {
  display: none;
}

summary.toc-summary .toc-chevron {
  transition: transform 0.25s ease;
  color: #64748b;
}

details.toc-details[open] summary.toc-summary .toc-chevron {
  transform: rotate(180deg);
  color: #0284c7;
}

/* Numeric Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.85rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination-wrapper .page-numbers:hover {
  border-color: #0284c7;
  color: #0284c7;
  background: #f0f9ff;
}

.pagination-wrapper .page-numbers.current {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

/* 6 Alasan Accordion Dropdown Styles */
summary.reason-accordion-header::after {
  display: none !important;
}

details.reason-accordion-item[open] .toggle-plus-minus {
  background: #0284c7 !important;
}

/* Contact Page Map Card Mobile Responsive Styling */
.contact-map-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.contact-map-iframe-wrap {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .contact-map-card {
    padding: 1.25rem 1rem !important;
    border-radius: var(--radius-md) !important;
  }
  
  .contact-map-iframe-wrap {
    height: 280px !important;
  }
  
  .contact-map-card .section-header {
    margin-bottom: 1.25rem !important;
  }
  
  .contact-map-card .section-title {
    font-size: 1.35rem !important;
  }
  
  .contact-map-card .btn-primary {
    width: 100% !important;
    justify-content: center !important;
  }
}

details.reason-accordion-item[open] .plus-icon {
  display: none !important;
}

details.reason-accordion-item[open] .minus-icon {
  display: block !important;
  stroke: #ffffff !important;
}

/* ==========================================================================
   Featured / Highlight Post & Gallery Cards (Sorotan Utama)
   ========================================================================== */

/* Featured Article Card */
.featured-article-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  background: #ffffff;
  border: 1px solid #bae6fd;
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 12px 36px rgba(2, 132, 197, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.featured-article-card:hover {
  border-color: #7dd3fc;
  box-shadow: 0 18px 42px rgba(2, 132, 197, 0.15);
  transform: translateY(-3px);
}

.featured-article-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 280px;
  height: 100%;
}

.featured-article-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-article-card:hover .featured-article-image-wrap img {
  transform: scale(1.05);
}

.featured-badge-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(2, 132, 197, 0.35);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.featured-article-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0.5rem 0.5rem 0;
}

.featured-article-meta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.featured-category-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.featured-reading-time {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

.featured-article-title {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 0.85rem;
}

.featured-article-title a {
  color: #0f172a;
  transition: color 0.2s ease;
}

.featured-article-title a:hover {
  color: var(--color-primary);
}

.featured-article-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #64748b;
  font-size: 0.84rem;
  margin-bottom: 1rem;
}

.featured-article-excerpt {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 1.5rem;
  flex: 1;
}

.featured-article-action {
  margin-top: auto;
}

/* Featured Gallery Card (Dokumentasi Sorotan) */
.featured-gallery-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3.5rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ffffff;
}

.featured-gallery-card:hover {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.35);
  transform: translateY(-3px);
}

.featured-gallery-image-wrap {
  position: relative;
  min-height: 320px;
  height: 100%;
  overflow: hidden;
}

.featured-gallery-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-gallery-card:hover .featured-gallery-image-wrap img {
  transform: scale(1.06);
}

.featured-gallery-badge-top {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 5;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.4);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.95rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-gallery-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.25rem 2rem;
}

.featured-gallery-meta-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
}

.featured-gallery-lokasi {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #38bdf8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.featured-gallery-tanggal {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #94a3b8;
  font-weight: 600;
}

.featured-gallery-title {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.featured-gallery-title a {
  color: #ffffff;
  transition: color 0.2s ease;
}

.featured-gallery-title a:hover {
  color: #38bdf8;
}

.featured-gallery-desc {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 1.75rem;
  flex: 1;
}

.featured-gallery-actions {
  margin-top: auto;
}

@media (max-width: 868px) {
  .featured-article-card {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1.25rem;
  }
  
  .featured-article-image-wrap {
    min-height: 220px;
    height: 220px;
  }

  .featured-article-content {
    padding: 0;
  }

  .featured-gallery-card {
    grid-template-columns: 1fr;
  }

  .featured-gallery-image-wrap {
    min-height: 240px;
    height: 240px;
  }

  .featured-gallery-content {
    padding: 1.5rem 1.25rem;
  }
}

/* Component Boxes & Mobile Padding Optimizations for Tentang Kami & Other Pages */
.video-profile-card {
  margin-bottom: 3rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-cta-box {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.card-span-2 {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .section {
    padding: 2.25rem 0 !important;
  }
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .page-hero {
    padding: 2.25rem 0 1.75rem 0 !important;
  }
  .page-hero-title {
    font-size: 1.65rem !important;
    margin-bottom: 0.65rem !important;
  }
  .page-hero-subtitle {
    font-size: 0.92rem !important;
    margin-bottom: 0.85rem !important;
  }
  .card {
    padding: 1.25rem 1rem !important;
  }
  .card-span-2 {
    grid-column: span 1 !important;
  }
  .video-profile-card {
    padding: 1.25rem 0.85rem !important;
    margin-bottom: 2rem !important;
  }
  .contact-cta-box {
    padding: 1.75rem 1rem !important;
  }
}

/* Bulletproof Article Card Component (Zero Negative-Margin Overflow) */
.article-card {
  padding: 0 !important;
  overflow: hidden !important;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.article-card-image-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.article-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.article-card:hover .article-card-image-wrap img {
  transform: scale(1.04);
}

.article-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}






