/* Custom Redesign Stylesheet - Telusur Modern Legal Engine v1.5 */
:root {
  --primary-blue: #2563eb;
  --primary-blue-hover: #1d4ed8;
  --dark-blue: #1e3a8a;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --bg-slate: #f8fafc;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --card-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
  --card-shadow-hover: 0 20px 35px -5px rgba(37, 99, 235, 0.12), 0 10px 10px -5px rgba(37, 99, 235, 0.04);
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-slate);
  color: var(--slate-800);
}

/* Glassmorphism Header */
.header {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.logo span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--slate-900);
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}

.logo-badge {
  background: #eff6ff;
  color: var(--primary-blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid #bfdbfe;
  margin-left: 8px;
}

/* Hero Section 2-Column Search & Flyer Showcase */
.hero-search-section {
  padding: 125px 0 70px 0;
  background: radial-gradient(100% 100% at 30% 0%, #eff6ff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.hero-search-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 30%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.09) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.45rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.24;
  letter-spacing: -0.8px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--slate-600);
  max-width: 620px;
  margin: 14px 0 22px 0;
  line-height: 1.65;
}

/* Dynamic Filter Pills */
.filter-pills-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  background: #ffffff;
  padding: 5px;
  border-radius: 40px;
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  gap: 4px;
}

.filter-pill {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-600);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-pill:hover {
  color: var(--primary-blue);
}

.filter-pill.active {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Omnibox Search Input */
.omnibox-wrapper {
  position: relative;
  width: 100%;
  margin: 0;
}

.omnibox-input {
  width: 100%;
  height: 60px;
  padding: 0 135px 0 54px;
  font-size: 1.05rem;
  border-radius: 50px;
  border: 2px solid var(--slate-200);
  background: #ffffff;
  box-shadow: var(--card-shadow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Flyer Showcase Card (Hero Right Column) */
.hero-flyer-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-flyer-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 55px -12px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(226, 232, 240, 0.8);
  background: #08152c;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.hero-flyer-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 70px -15px rgba(37, 99, 235, 0.32), 0 0 0 2.5px rgba(37, 99, 235, 0.55);
}

.hero-flyer-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.hero-flyer-card:hover .hero-flyer-img {
  transform: scale(1.03);
}

.flyer-badge-floating {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(254, 240, 138, 0.45);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.flyer-overlay-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.85) 0%, rgba(2, 6, 23, 0.2) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.hero-flyer-card:hover .flyer-overlay-hover {
  opacity: 1;
}

.btn-flyer-zoom {
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.hero-flyer-card:hover .btn-flyer-zoom {
  transform: translateY(0);
}

.hero-flyer-actions .btn {
  font-size: 0.85rem;
  padding: 6px 18px;
  transition: all 0.2s ease;
}

.hero-flyer-actions .btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .hero-search-section {
    padding: 110px 0 50px 0;
  }
  .hero-search-section .text-start {
    text-align: center !important;
  }
  .hero-title {
    font-size: 2.1rem;
    letter-spacing: -0.6px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .filter-pills-wrapper {
    justify-content: center;
    max-width: 100%;
  }
  .hero-features {
    justify-content: center !important;
  }
  .hero-flyer-container {
    margin-top: 25px;
    max-width: 380px;
  }
  .hero-flyer-img {
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .hero-search-section {
    padding: 100px 0 40px 0;
  }
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }
  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .filter-pills-wrapper {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 50px;
    padding: 4px 6px;
    margin-bottom: 16px;
    max-width: 100%;
  }
  .filter-pills-wrapper::-webkit-scrollbar {
    display: none;
  }
  .filter-pill {
    padding: 6px 14px;
    font-size: 0.82rem;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .omnibox-input {
    height: 54px;
    font-size: 0.95rem;
    padding: 0 88px 0 44px;
  }
  .omnibox-icon {
    left: 15px;
    font-size: 1.15rem;
  }
  .omnibox-btn {
    height: 40px;
    padding: 0 16px;
    right: 7px;
    font-size: 0.85rem;
  }
  .hero-features {
    gap: 8px 12px;
    font-size: 0.78rem;
  }
  .hero-flyer-container {
    max-width: 320px;
    margin-top: 20px;
  }
  .hero-flyer-img {
    max-height: 360px;
  }
  .pembahasan-item {
    padding: 12px 14px;
    font-size: 0.88rem;
  }
  .stat-card {
    padding: 16px;
    gap: 14px;
  }
  .stat-icon-wrapper {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }
  .stat-val {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .omnibox-input {
    height: 50px;
    padding: 0 78px 0 38px;
    font-size: 0.88rem;
  }
  .omnibox-icon {
    left: 12px;
    font-size: 1.05rem;
  }
  .omnibox-btn {
    height: 36px;
    padding: 0 12px;
    font-size: 0.8rem;
    gap: 4px;
  }
  .hero-flyer-container {
    max-width: 280px;
  }
  .hero-flyer-img {
    max-height: 320px;
  }
}

.omnibox-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), var(--card-shadow-hover);
}

.omnibox-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--slate-500);
}

.omnibox-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  padding: 0 28px;
  border-radius: 40px;
  background: var(--primary-blue);
  color: #ffffff;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.omnibox-btn:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-50%) scale(1.02);
}

/* Modern Card Styling */
.modern-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.modern-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: var(--card-shadow-hover);
}

.section-header-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--slate-900);
}

.section-header-sub {
  color: var(--slate-600);
  font-size: 0.95rem;
}

/* Pembahasan List Item */
.pembahasan-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: var(--slate-800);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.pembahasan-item:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: var(--primary-blue);
  transform: translateX(4px);
}

.pembahasan-item i {
  transition: transform 0.2s ease;
}

.pembahasan-item:hover i {
  transform: translateX(4px);
}

/* Live Stats Counter Cards */
.stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--card-shadow);
}

.stat-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #eff6ff;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid #bfdbfe;
}

.stat-val {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Banner Card Pengantar */
.about-banner-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.3);
  position: relative;
  overflow: hidden;
}

.about-banner-card::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
}

.about-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #93c5fd;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e2e8f0;
  font-style: italic;
}

/* Article Section Overrides & Modern Layout */
.article-filter-btn {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: var(--slate-600);
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.article-filter-btn:hover,
.article-filter-btn.active {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.article-card-redesign {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--slate-200) !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card-redesign:hover {
  transform: translateY(-6px);
  border-color: #93c5fd !important;
  box-shadow: 0 20px 35px -5px rgba(37, 99, 235, 0.12);
}

.article-img-wrapper {
  height: 190px;
  width: 100%;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid var(--slate-200);
}

.article-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.article-card-redesign:hover .article-img-wrapper img {
  transform: scale(1.06);
}

.article-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-excerpt {
  color: var(--slate-600);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-btn {
  background: transparent;
  color: var(--primary-blue);
  border: 1.5px solid var(--primary-blue);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  width: 100%;
}

.article-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Modal Custom Styling */
.custom-modal .modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.custom-modal .modal-header {
  background: var(--slate-900);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 28px;
}

.custom-modal .modal-title {
  font-family: var(--font-display);
  font-weight: 700;
}

.custom-modal .modal-body {
  padding: 32px 28px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate-800);
}

/* ============================================================
   EXECUTIVE MASTERPIECE: VIBRANT STRIKING GRADIENT KATA PENGANTAR
   ============================================================ */

/* Modal Content & Body Luxury High-Contrast Gradient */
.custom-modal .modal-content {
  border-radius: 22px;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.9), 0 0 50px rgba(37, 99, 235, 0.5);
  overflow: hidden;
  background: #020617;
}

.custom-modal .modal-header {
  background: linear-gradient(90deg, #020617 0%, #091224 50%, #1e40af 100%);
  color: #ffffff;
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.4);
  padding: 18px 28px;
}

.custom-modal .modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
}

/* Bold, Vibrant Gradient: Dark Midnight (Left/Top) to Bright Radiant Sapphire Blue (Right/Bottom) */
.pengantar-modal-body {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #020617 0%, #091224 22%, #0f172a 45%, #1e40af 70%, #2563eb 88%, #0284c7 100%) !important;
  padding: 0 !important;
}

/* Glowing Ambient Accents */
.pengantar-modal-body::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.4) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.pengantar-modal-body::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.45) 0%, rgba(37, 99, 235, 0.3) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Left Column: Transparent with Dark Depth so White Text is Razor Sharp */
.pengantar-text-container {
  padding: 38px 40px 38px 40px;
  position: relative;
  z-index: 3;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.45) 0%, rgba(9, 18, 36, 0.25) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .pengantar-text-container {
    background: rgba(2, 6, 23, 0.75);
    padding: 26px 22px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}

.pengantar-header {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.pengantar-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(254, 240, 138, 0.22);
  color: #fef08a;
  border: 1px solid rgba(254, 240, 138, 0.6);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.pengantar-main-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(254, 240, 138, 0.4);
}

.pengantar-basmalah {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fef08a;
  letter-spacing: -0.2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.pengantar-salam {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e0f2fe;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Masterpiece High-Contrast Typography */
.pengantar-text-body {
  text-align: justify;
  text-justify: inter-word;
  color: #ffffff;
  font-size: 1.03rem;
  line-height: 1.95;
}

.pengantar-text-body p {
  margin-bottom: 1.3rem;
  text-align: justify;
  text-justify: inter-word;
  color: #f8fafc;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.85);
}

.pengantar-text-body p strong {
  color: #ffffff !important;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.25);
  padding: 1px 4px;
  border-radius: 4px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
}

.pengantar-salam-closing strong {
  color: #bae6fd !important;
  font-size: 1.15rem;
  background: none !important;
  padding: 0 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Signature & Closing section */
.pengantar-signature-box {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 20px;
  margin-top: 22px;
  position: relative;
}

.pengantar-signature-box::before {
  content: '✦';
  position: absolute;
  top: -9px;
  left: 20px;
  background: #091734;
  color: #d4af37;
  font-size: 0.75rem;
  padding: 0 8px;
}

.pengantar-sig-date {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

.pengantar-sig-title {
  color: #f8fafc;
  font-size: 0.98rem;
  display: block;
}

.pengantar-sig-img {
  height: 64px;
  width: auto;
  margin: 6px 0;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.5));
}

.pengantar-sig-name {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.btn-pengantar-close {
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  border: 1px solid rgba(212, 175, 55, 0.45);
  transition: all 0.3s ease;
}

.btn-pengantar-close:hover {
  background: linear-gradient(135deg, #d4af37 0%, #ca8a04 100%);
  color: #040812;
  font-weight: 700;
  border-color: #facc15;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Right Column: Giant Photo & Black-Gold Name Tag */
.pengantar-photo-showcase-column {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 24px 26px 10px;
  min-height: 620px;
  background: transparent;
}

/* Giant Portrait that extends full height and slightly bleeds behind text */
.pengantar-giant-photo-wrapper {
  position: absolute;
  top: 15px;
  bottom: 85px;
  right: -10px;
  left: -90px; /* Bleeds behind text column on the left */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.pengantar-giant-photo {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.75));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pengantar-photo-showcase-column:hover .pengantar-giant-photo {
  transform: scale(1.025) translateY(-5px);
}

@media (max-width: 991px) {
  .pengantar-giant-photo-wrapper {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 440px;
    margin-bottom: 12px;
  }
  
  .pengantar-giant-photo {
    max-height: 420px;
  }
}

/* Executive Black & Gold Name Tag */
.nametag-gold-black {
  background: linear-gradient(160deg, #18202c 0%, #0c1118 60%, #03060a 100%);
  border: 1.5px solid #d4af37;
  outline: 1px solid rgba(212, 175, 55, 0.25);
  outline-offset: 3px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75), inset 0 0 20px rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  padding: 15px 20px;
  text-align: center;
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 4;
  margin-top: auto;
}

.nametag-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #dfb94a 0%, #fef3c7 50%, #b8860b 100%);
  color: #0b0f19;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
  margin-bottom: 7px;
}

.nametag-title-gold {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #fff7db 35%, #e6ca65 70%, #aa771c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
}

.nametag-gold-divider {
  height: 1px;
  width: 65%;
  margin: 6px auto;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  opacity: 0.7;
}

.nametag-subtitle {
  color: #cbd5e1;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-bottom: 0;
  opacity: 0.95;
}

