/* ============================
   KUDR CORPORATE THEME
============================ */

:root {
  --yellow: #FFC107;
  --black: #111111;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --soft-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Section spacing */
.section {
  padding: 80px 0;
}

/* Titles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.yellow {
  color: var(--yellow);
}

/* ============================
   NAVBAR PROFESSIONAL FIXED
============================ */

/* Header full width */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Full width wrapper */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 40px; /* 🔥 spacing from edge */
}

/* Logo flush left */
.logo {
  margin-left: 0;
  padding-left: 0;
}

.logo img {
  height: 55px;
  width: auto;
  transition: 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.logo img:hover {
  transform: scale(1.05);
}

/* Nav links right */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* Animated underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--yellow);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 30px;
  left: 0;
  background: white;
  border: 1px solid #eee;
  display: none;
  min-width: 200px;
  box-shadow: var(--soft-shadow);
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
}

.dropdown-content a:hover {
  background: var(--light-gray);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ============================
   HERO
============================ */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 85vh;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
}

.hero span {
  color: var(--yellow);
}

.hero iframe {
  width: 500px;
  height: 500px;
  border: none;
}

/* ============================
   CARDS
============================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

.card small {
  color: gray;
}

/* ============================
   BUTTON
============================ */

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #e0a800;
}

/* ============================
   FOOTER
============================ */

footer {
  background: var(--black);
  color: white;
  padding: 40px 0;
  text-align: center;
}



/* ============================
   RESPONSIVE
============================ */

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero iframe {
    width: 100%;
    height: 350px;
  }

  .nav-links {
    display: none;
  }
}

/* ============================
   ADMIN STYLING UPGRADE
============================ */

body {
  background: #f4f6f9;
}

/* Admin container card */
.admin-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Admin form styling */
.admin-form input,
.admin-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  transition: 0.3s;
  font-size: 14px;
}

.admin-form input:focus,
.admin-form textarea:focus {
  border-color: var(--yellow);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,193,7,0.2);
}

.admin-form textarea {
  min-height: 100px;
  resize: vertical;
}

.admin-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.admin-list-item {
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.admin-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.admin-list-item button {
  margin-right: 10px;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 13px;
}

.admin-list-item button:first-child {
  background: var(--yellow);
}

.admin-list-item button:last-child {
  background: #ff4d4d;
  color: white;
}

/* ===============================
   ADMIN DASHBOARD LAYOUT
=================================*/

.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #f4f6f9;
}

.admin-sidebar {
  width: 240px;
  background: #111;
  color: white;
  padding: 30px 20px;
}

.admin-sidebar h2 {
  color: #FFC107;
  margin-bottom: 40px;
}

.admin-sidebar a {
  display: block;
  color: white;
  padding: 10px 0;
  text-decoration: none;
  transition: 0.3s;
}

.admin-sidebar a:hover {
  color: #FFC107;
}

.admin-content {
  flex: 1;
  padding: 40px;
}

.admin-topbar {
  margin-bottom: 30px;
}

.admin-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Form */

.admin-form input,
.admin-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

.admin-form textarea {
  min-height: 120px;
}

.publish-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* Drop area */

.drop-area {
  border: 2px dashed #ccc;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.drop-area.dragover {
  border-color: #FFC107;
  background: #fff9e6;
}

/* List */

.admin-list-item {
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid #eee;
}

/* Stats */

.stat-box {
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.stat-box h3 {
  font-size: 2rem;
  color: #FFC107;
}

/* Toast */

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  opacity: 0;
  transition: 0.4s;
}

.toast.show {
  opacity: 1;
}

/* Dark Mode */

.dark-mode {
  background: #1e1e1e !important;
  color: white !important;
}

.dark-mode .admin-card {
  background: #2a2a2a;
}

.dark-mode input,
.dark-mode textarea {
  background: #333;
  color: white;
  border-color: #444;
}

/* ===============================
   PREMIUM LOGIN SCREEN
=================================*/

.login-body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(135deg, #111, #1f1f1f);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
}

.login-container {
  display: flex;
  width: 900px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.login-left {
  flex: 1;
  padding: 60px;
  color: white;
  background: linear-gradient(135deg, #FFC107, #ff9800);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-left h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.login-left p {
  font-size: 18px;
  margin-bottom: 5px;
}

.login-left span {
  font-size: 14px;
  opacity: 0.8;
}

.login-card {
  flex: 1;
  padding: 60px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-card h2 {
  margin-bottom: 30px;
}

.login-form label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.login-form input,
.login-form select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  font-size: 14px;
}

.login-form input:focus,
.login-form select:focus {
  border-color: #FFC107;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,193,7,0.2);
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: #FFC107;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background: #ffb300;
  transform: translateY(-2px);
}

/* ===============================
   ENTERPRISE DASHBOARD STYLE
=================================*/

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.dashboard-header h1 {
  margin: 0;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.kpi-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.kpi-card:hover {
  transform: translateY(-5px);
}

.kpi-card h3 {
  font-size: 32px;
  color: #FFC107;
  margin-bottom: 5px;
}

.chart-card {
  margin-bottom: 30px;
}

.bar-wrapper {
  margin-top: 20px;
}

.bar-item {
  margin-bottom: 20px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.bar-bg {
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
}

.bar-fill {
  height: 14px;
  border-radius: 20px;
  transition: width 1s ease;
}

.activity-card {
  margin-bottom: 40px;
}

.activity-list {
  margin-top: 15px;
}

.activity-item {
  padding: 10px;
  border-left: 4px solid #FFC107;
  margin-bottom: 10px;
  background: #fafafa;
  border-radius: 6px;
}

/* ===== ENTERPRISE ABOUT PAGE ===== */

.about-hero {
  background: linear-gradient(135deg, #111, #1f1f1f);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-hero p {
  max-width: 800px;
  margin: auto;
  opacity: 0.9;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.highlight-box {
  background: #FFC107;
  padding: 30px;
  border-radius: 16px;
  color: black;
}

.highlight-box ul {
  padding-left: 20px;
}

.section-grey {
  background: #f7f7f7;
}

.center-title {
  text-align: center;
  margin-bottom: 40px;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vision-box,
.mission-box {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.cta-section {
  background: #111;
  color: white;
  text-align: center;
}

.btn-outline {
  background: transparent;
  border: 2px solid #FFC107;
  color: #FFC107;
  margin-left: 10px;
}

.btn-outline:hover {
  background: #FFC107;
  color: black;
}

/* ===== TAB STYLE ===== */

.tab-section {
  background: #fff;
}

.about-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 2px solid #eee;
}

.about-tabs a {
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}

.about-tabs a:hover {
  color: #FFC107;
}

.active-tab {
  border-bottom: 3px solid #FFC107 !important;
  color: #FFC107 !important;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.highlight-box {
  background: #FFC107;
  padding: 30px;
  border-radius: 16px;
  color: black;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.center-title {
  text-align: center;
  margin-bottom: 40px;
}

/* ===== ENTERPRISE HERO ===== */

.enterprise-hero {
  background: linear-gradient(135deg,#111,#222);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.enterprise-hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

/* KPI INFO */

.kpi-info {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.kpi-box h3 {
  font-size: 36px;
  color: #FFC107;
}

.kpi-box span {
  font-size: 14px;
  color: #555;
}


/* Org Section */

.org-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.org-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.org-img {
  width: 80px;
  height: 80px;
  background: #eee;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 15px;
}

/* Fade animation */

.fade-in {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {opacity:0; transform:translateY(20px);}
  to {opacity:1; transform:translateY(0);}
}

/* ===== CORPORATE INTRO ===== */

.corporate-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.intro-text ul {
  margin-top: 20px;
  padding-left: 20px;
}

.intro-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== GOVERNANCE FLOW ===== */

.governance-section {
  margin-top: 80px;
}

.governance-flow {
  text-align: center;
  position: relative;
}

.gov-item {
  margin: 20px auto;
}

.gov-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FFC107;
  margin: auto;
}

.gov-box {
  background: linear-gradient(135deg,#1a1a1a,#333);
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  margin-top: 10px;
  display: inline-block;
}

.gov-line {
  width: 3px;
  height: 40px;
  background: #ccc;
  margin: auto;
}

.gov-line.horizontal {
  width: 200px;
  height: 3px;
  margin: 30px auto;
}

.gov-branch {
  display: flex;
  justify-content: center;
  gap: 100px;
}

/* ===== CORPORATE INTRO ===== */

.corporate-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 100px;
}

.intro-text ul {
  margin-top: 20px;
  padding-left: 20px;
}

.intro-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ===== GOVERNANCE STRUCTURE ===== */

.gov-tree {
  text-align: center;
}

.gov-node {
  margin: 25px auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.gov-node:nth-child(1){animation-delay:0.2s;}
.gov-node:nth-child(3){animation-delay:0.4s;}
.gov-node:nth-child(5){animation-delay:0.6s;}

.gov-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  border: 3px solid #FFC107;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gov-card {
  margin-top: 15px;
  padding: 15px 30px;
  border-radius: 14px;
  background: linear-gradient(135deg,#111,#333);
  color: white;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gov-card:hover {
  transform: translateY(-5px);
}

.gov-line {
  width: 3px;
  height: 50px;
  background: #ccc;
  margin: auto;
}

.gov-branch {
  display: flex;
  justify-content: center;
  gap: 120px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:768px){
  .corporate-intro {
    grid-template-columns: 1fr;
  }
  .gov-branch {
    flex-direction: column;
    gap: 40px;
  }
}

/* STRIP */
.about-strip {
  background: linear-gradient(135deg,#FFC107,#ff9800);
  padding: 30px;
  text-align: center;
  font-weight: bold;
}

/* KPI */
.kpi-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 80px 0;
}

.kpi-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.kpi-card h3 {
  font-size: 36px;
  color: #FFC107;
}

/* GOVERNANCE */
.gov-node {
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  width: 400px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}

/* ================= VISION HERO ================= */

.vision-hero {
  background: linear-gradient(135deg,#111,#333);
  color: white;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
}

.vision-hero h2 {
  margin-bottom: 15px;
}

/* ================= VISION MISSION GRID ================= */

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.vision-box-advanced,
.mission-box-advanced {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.vision-box-advanced h3,
.mission-box-advanced h3 {
  color: #FFC107;
  margin-bottom: 15px;
}

/* ================= STRATEGIC PILLARS ================= */

.pillar-section {
  margin-top: 60px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.pillar-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.pillar-card:hover {
  transform: translateY(-6px);
}

.pillar-icon {
  font-size: 30px;
  margin-bottom: 10px;
  color: #FFC107;
}

@media(max-width:992px){
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  .pillar-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CEO MESSAGE ================= */

.ceo-message {
  background: linear-gradient(135deg,#111,#333);
  color: white;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
}

/* ================= ROADMAP ================= */

.roadmap-section {
  margin-top: 80px;
}

.roadmap-timeline {
  border-left: 3px solid #FFC107;
  padding-left: 30px;
}

.roadmap-item {
  margin-bottom: 30px;
}

.roadmap-item span {
  font-weight: bold;
  color: #FFC107;
}

/* ================= BALANCED SCORECARD ================= */

.bsc-section {
  margin-top: 80px;
}

.bsc-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.bsc-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.bsc-card:hover {
  transform: translateY(-6px);
}

/* ================= KPI STRIP ================= */

.kpi-strip {
  margin-top: 80px;
  background: #FFC107;
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 40px;
  border-radius: 20px;
}

.kpi-item {
  text-align: center;
}

.kpi-item h3 {
  font-size: 32px;
}

@media(max-width:992px){
  .bsc-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .kpi-strip {
    flex-direction: column;
    gap: 30px;
  }
}

@media(max-width:600px){
  .bsc-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= BOARD ================= */

.board-section {
  margin-bottom: 80px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.board-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.3s;
}

.board-card:hover {
  transform: translateY(-8px);
}

.board-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #eee;
  margin: auto;
  margin-bottom: 20px;
}


/* ================= MODAL ================= */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  width: 400px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

@media(max-width:992px){
  .board-grid {
    grid-template-columns: 1fr;
  }
  .staff-kpi {
    flex-direction: column;
    gap: 30px;
  }
}

/* ================= TEAM SECTION ================= */

.team-section {
  padding: 80px 0;
  text-align: center;
}


/* ================= HERO ================= */

.service-hero {
  background: linear-gradient(135deg,#111,#333);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

/* Service Cards Grid */
.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}
.s-card {
  background: white; padding: 40px 30px; border-radius: 20px;
  text-align: center; border: 1px solid #e2e8f0; transition: 0.3s;
}
.s-card:hover { transform: translateY(-10px); border-color: #fbbf24; box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.featured-s { background: #0f172a; color: white; border: none; }
.s-icon-wrapper { font-size: 2.5rem; color: #fbbf24; margin-bottom: 20px; }

/* Stepper Timeline */
.stepper-wrapper { display: flex; justify-content: space-between; margin-top: 60px; position: relative; }
.stepper-item { flex: 1; text-align: center; position: relative; }
.stepper-item::after { content: ''; position: absolute; width: 100%; height: 2px; background: #e2e8f0; top: 25px; left: 50%; z-index: -1; }
.stepper-item:last-child::after { display: none; }
.step-counter { width: 50px; height: 50px; background: #fff; border: 2px solid #fbbf24; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-weight: 800; }
.stepper-item.active .step-counter { background: #fbbf24; color: #fff; }

/* Value Hub Tiles */
.value-hub { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 80px 0; }
.value-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tile { background: #f8fafc; padding: 30px; border-radius: 15px; text-align: center; border-bottom: 4px solid #0f172a; transition: 0.3s; }
.tile:hover { background: #fff; transform: scale(1.05); border-color: #fbbf24; }
.tile i { font-size: 1.8rem; color: #e67e22; margin-bottom: 10px; display: block; }


/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .services-core {
    grid-template-columns: repeat(2,1fr);
  }
  .process-flow {
    flex-direction: column;
    gap: 40px;
  }
  .process-step {
    width: 100%;
  }
}

@media(max-width:600px){
  .services-core {
    grid-template-columns: 1fr;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== NAVBAR FIX ===== */

.navbar {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.navbar a.active {
  color: #FFC107;
}

/* ================= MODERN NAVBAR ================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.85);
  padding: 18px 0;
  transition: 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* underline animation */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #FFC107;
  transition: 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.active {
  color: #FFC107;
}

/* ================= MOBILE ================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
}

@media(max-width:992px){

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    width: 220px;
    display: none;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

}

/* HERO */
.news-hero {
  background: linear-gradient(135deg,#111,#333);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

/* TABS */
.tab-buttons {
  display: flex;
  gap: 20px;
  margin: 60px 0;
}

.tab-btn {
  padding: 10px 25px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.tab-btn.active {
  background: #FFC107;
}

/* GRID */
.news-grid {
  display: grid;
  gap: 40px;
}

.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.news-featured img {
  width: 100%;
  border-radius: 15px;
}

.news-card img {
  width: 100%;
  border-radius: 12px;
}

.news-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-6px);
}

.empty-state {
  text-align: center;
  padding: 80px 0;
  color: #888;
}

/* RESPONSIVE */
@media(max-width:992px){
  .news-featured {
    grid-template-columns: 1fr;
  }
}

.news-hero {
  background: linear-gradient(135deg,#000,#222);
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.news-controls {
  display: flex;
  justify-content: space-between;
  margin: 40px auto;
  flex-wrap: wrap;
  gap: 20px;
}

#searchInput {
  padding: 12px;
  border: 1px solid #ddd;
  width: 250px;
}

.filter-group button {
  padding: 10px 20px;
  border: none;
  background: #eee;
  cursor: pointer;
}

.filter-group .active {
  background: #FFC107;
}

.featured-news {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.featured-news img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.featured-content h2 {
  font-size: 28px;
}

.badge {
  background: #FFC107;
  padding: 4px 10px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.news-card {
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-6px);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-body {
  padding: 20px;
}

.pagination {
  margin: 40px 0;
  text-align: center;
}

.pagination button {
  padding: 8px 14px;
  margin: 5px;
  border: none;
  background: #eee;
  cursor: pointer;
}

.pagination .active {
  background: #FFC107;
}

.news-detail-section {
  padding: 80px 20px;
}

.news-detail h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.news-detail .date {
  color: #999;
  margin-bottom: 30px;
  display: block;
}

.news-detail img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 30px;
}

.news-detail p {
  line-height: 1.7;
  font-size: 16px;
}

/* ==============================
   GLOBAL CONTAINER FIX
================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==============================
   RUJUKAN HERO
================================= */

.rujukan-hero {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  margin: 100px auto 80px;
}

.rujukan-left,
.rujukan-right {
  background: linear-gradient(145deg,#ffffff,#f9f9f9);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.rujukan-left:hover,
.rujukan-right:hover {
  transform: translateY(-5px);
}

.tag {
  font-size: 11px;
  font-weight: 600;
  background: linear-gradient(135deg,#ffcc33,#ffb300);
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* ==============================
   TAB BUTTON
================================= */

.tab-group {
  margin-top: 25px;
}

.tab-group button {
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  margin-right: 10px;
  cursor: pointer;
  background: #f1f1f1;
  transition: 0.3s;
}

.tab-group button:hover {
  background: #e6e6e6;
}

.tab-group .active {
  background: linear-gradient(135deg,#ffcc33,#ffb300);
}

/* ==============================
   SECTION HEADER
================================= */

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* ==============================
   PDF GRID
================================= */

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.pdf-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.35s;
}

.pdf-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.pdf-top {
  background: linear-gradient(135deg,#ffcc33,#ffe082);
  padding: 40px;
}

.pdf-badge {
  background: #fff;
  padding: 6px 12px;
  font-size: 11px;
  border-radius: 4px;
  font-weight: 600;
}

.preview-tag {
  margin-top: 15px;
  font-size: 11px;
  opacity: 0.8;
}

.pdf-body {
  padding: 30px;
}

.pdf-body h4 {
  margin-bottom: 8px;
}

.pdf-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

.btn-select {
  background: linear-gradient(135deg,#ffcc33,#ffb300);
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
}

/* ==============================
   PREVIEW SECTION
================================= */

.preview-section {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px;
  margin-bottom: 120px;
}

.preview-left h3 {
  margin-bottom: 10px;
}

.preview-buttons {
  margin-top: 25px;
}

.preview-right iframe {
  width: 100%;
  height: 600px;
  border-radius: 15px;
  border: 1px solid #eee;
  background: #fafafa;
}

/* ==============================
   BUTTON SYSTEM CLEAN
================================= */

.mini-btn-group {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn-yellow {
  background: linear-gradient(135deg,#ffcc33,#ffb300);
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,193,7,0.3);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid #111;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  background: #111;
  color: #fff;
}

/* ==============================
   RESPONSIVE FIX
================================= */

@media(max-width: 992px){
  .rujukan-hero,
  .preview-section {
    grid-template-columns: 1fr;
  }

  .pdf-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 600px){
  .pdf-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   CONTACT HERO
================================= */

.contact-hero {
  padding: 120px 20px 80px;
  text-align: center;
  background: linear-gradient(135deg,#000,#222);
  color: white;
}

.contact-hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

/* ==============================
   CONTACT SECTION
================================= */

.contact-section {
  margin: 80px auto;
}

/* Info cards */
.contact-info {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.info-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-6px);
}

/* Form + Map layout */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ffb300;
  outline: none;
}

/* Map */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 20px;
  border: none;
}

/* Responsive */
@media(max-width:992px){
  .contact-info {
    grid-template-columns: repeat(2,1fr);
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px){
  .contact-info {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   FOOTER
================================= */

.main-footer {
  background: linear-gradient(135deg,#111,#1c1c1c);
  color: #ccc;
  padding: 80px 20px 30px;
  margin-top: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: #ffb300;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #ffb300;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
}

.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  font-size: 18px;
  color: #ccc;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffb300;
}

/* Responsive */

@media(max-width:992px){
  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================
   HERO OPTION D (LIGHT + FUTURISTIC)
====================================== */

.hero-split-d {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  width: 100%;
}

/* ================= LEFT SIDE ================= */

.hero-d-left {
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 0 80px;
  position: relative;
}

.hero-d-content {
  max-width: 520px;
}

.hero-tag {
  display: inline-block;
  background: #ffcc33;
  color: #000;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-d-left h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111;
}

.hero-d-left .highlight {
  color: #ffb300;
}

.hero-d-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.hero-d-buttons {
  display: flex;
  gap: 15px;
}

/* ================= RIGHT SIDE ================= */

.hero-d-right {
  position: relative;
  background: #000;
  overflow: hidden;
}

.hero-d-right spline-viewer {
  width: 100%;
  height: 100%;
}

/* Soft gradient blend divider */
.hero-d-right::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(
    to right,
    #ffffff,
    rgba(255,255,255,0)
  );
  z-index: 2;
  pointer-events: none;
}

/* ================= BUTTONS ================= */

.btn-yellow {
  background: linear-gradient(135deg,#ffcc33,#ffb300);
  padding: 12px 24px;
  border-radius: 8px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,193,7,0.35);
}

.btn-outline {
  border: 1.5px solid #111;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #111;
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .hero-split-d {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-d-left {
    padding: 60px 30px;
  }

  .hero-d-right {
    height: 60vh;
  }

  .hero-d-right::before {
    display: none;
  }

  .hero-d-left h1 {
    font-size: 30px;
  }
}

/* ============================
   SECTION REFINEMENT
============================ */

.section {
  padding: 120px 0;
}

.section-soft {
  background: linear-gradient(180deg,#ffffff,#f8f9fa);
}

.section-light {
  background: #fff;
}

.section-tag {
  background: linear-gradient(135deg,#ffcc33,#ffb300);
  padding: 6px 16px;
  font-size: 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
}

.section-sub {
  max-width: 650px;
  margin: 0 auto 50px;
  color: #666;
}

/* ============================
   POSTER GRID
============================ */

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.poster-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== Poster Card ===== */
.poster-card {
  width: 100%;
  aspect-ratio: 4 / 5;   /* Consistent ratio */
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #f5f5f5;
  transition: transform 0.3s ease;
}

.poster-card:hover {
  transform: translateY(-5px);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.poster-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #f5f5f5;
  transition: transform 0.3s ease;
}

.poster-card:hover {
  transform: translateY(-6px);
}

.poster-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.poster-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

.poster-info h4 {
  margin: 6px 0 0;
  font-size: 16px;
}

.poster-date {
  font-size: 13px;
  opacity: 0.85;
}

/* ===== Image Fit ===== */
.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* Important */
  display: block;
}

.poster-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
}
.poster-card {
  position: relative;
}

/* ============================
   MODEL FLOW MODERN
============================ */

.model-flow-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 80px;
  flex-wrap: wrap;
}

.model-step-modern {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  max-width: 280px;
  text-align: center;
  transition: 0.4s;
}

.model-step-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.step-number {
  font-size: 32px;
  font-weight: bold;
  color: #ffb300;
  margin-bottom: 15px;
}

.flow-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg,#ffcc33,#ffb300);
}

/* Responsive */
@media(max-width:992px){
  .poster-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .model-flow-modern {
    flex-direction: column;
  }

  .flow-line {
    width: 3px;
    height: 40px;
  }
}

@media(max-width:600px){
  .poster-grid {
    grid-template-columns: 1fr;
  }
}

.stats-section {
  padding: 120px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  font-size: 48px;
  color: #ffcc33;
  margin-bottom: 10px;
}

.stat-box p {
  color: #ddd;
}

/* =================================
   SCROLL REVEAL SYSTEM
================================= */

.reveal-base {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   FAQ PREMIUM SECTION
============================ */

/* Container Settings */
.section-faq-modern {
  padding: 100px 0;
  background: #f8fafc;
}

.faq-container-limited {
  max-width: 800px;
  margin: 50px auto 0;
}

/* Badge Style */
.badge-gold {
  display: inline-block;
  background: #fffbeb;
  color: #d97706;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  border: 1px solid #fef3c7;
}

/* FAQ Card */
.faq-card {
  background: white;
  border-radius: 16px;
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: #fbbf24;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* FAQ Header */
.faq-header {
  width: 100%;
  padding: 25px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.q-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.q-icon {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e67e22;
  font-size: 1rem;
}

.faq-header span:nth-child(2) {
  font-weight: 700;
  color: #0f172a;
  font-size: 1.05rem;
}

/* Plus/Minus Icon Animation */
.plus-minus {
  position: relative;
  width: 20px;
  height: 20px;
}

.plus-minus::before, .plus-minus::after {
  content: '';
  position: absolute;
  background: #94a3b8;
  transition: 0.3s;
}

.plus-minus::before { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.plus-minus::after { height: 2px; width: 100%; top: 50%; transform: translateY(-50%); }

.active .plus-minus::before { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.active .plus-minus::after { transform: translateY(-50%) rotate(180deg); background: #fbbf24; }

/* FAQ Body */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background: #fdfdfd;
}

.active + .faq-body {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
  border-top: 1px solid #f1f5f9;
}

.faq-inner { padding: 30px 25px 30px 85px; color: #475569; line-height: 1.7; }

/* FAQ Footer */
.faq-footer { margin-top: 40px; text-align: center; font-weight: 600; color: #64748b; }
.faq-footer a { color: #e67e22; text-decoration: none; border-bottom: 2px solid #fed7aa; padding-bottom: 2px; }



/* ============================
   LOG IN BUTTON SECTION
============================ */

.btn-login {
  padding: 8px 18px;
  border: 2px solid #FFC107;
  border-radius: 8px;
  color: #000;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-login:hover {
  background: #FFC107;
  color: #000;
}


/* ============================
   Register SECTION
============================ */

.btn-register {
  background: #000;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  margin-left: 10px;
  transition: 0.3s ease;
}

.btn-register:hover {
  background: #FFC107;
  color: #000;
}

/* ============================
   POSTER HERO SLIDER
============================ */

.poster-hero {
  padding: 100px 0;
  background: #f4f6f9;
}

.poster-slider-wrapper {
  width: 92%;
  max-width: 1400px;
  margin: 60px auto 0;
}

.poster-slider {
  position: relative;
  height: 620px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  background: #fff;
}

.poster-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.poster-slide.active {
  opacity: 1;
  position: relative;
}

.poster-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Fit image nicely */
  background: #fff;
}

.poster-cta {
  text-align: center;
  margin-top: 30px;
}

/* ================= NEWS HERO ================= */

.news-hero {
  padding: 80px 20px 60px;
  text-align: center;
  background: linear-gradient(135deg,#111,#1a1a1a);
  color: #fff;
}

.news-hero h1 {
  font-size: 42px;
  margin: 20px 0;
}

.news-hero h1 span {
  color: #ffffff;
}

.hero-badge {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: #000;
  font-weight: 600;
}

/* ================= FEATURED PREMIUM ================= */

.featured-news {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin: 60px 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.featured-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h2 {
  font-size: 28px;
  margin: 15px 0;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  background: #eee;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active {
  background: #f5b000;
  color: #000;
}

.filter-btn:hover {
  transform: translateY(-2px);
}

/* ================= NEWS HERO ================= */

.news-hero {
  background: linear-gradient(135deg,#111,#1a1a1a);
  color: #fff;
  text-align: center;
  padding: 80px 20px 60px;
}

.news-hero h1 {
  font-size: 42px;
  margin: 20px 0;
}

.news-hero span {
  color: #f5b000;
}

.hero-badge {
  background: #f5b000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: #000;
  font-weight: 600;
}

/* ================= CATEGORY SLIDER ================= */

.news-category {
  margin: 60px 0;
}

.news-category h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.category-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.category-slider::-webkit-scrollbar {
  height: 6px;
}

.category-slider::-webkit-scrollbar-thumb {
  background: #f5b000;
  border-radius: 10px;
}

.category-slider .news-card {
  min-width: 300px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* ================= MEDIA BUTTON ================= */

.btn-media {
  padding: 8px 18px;
  border: 2px solid #111;
  border-radius: 8px;
  color: #111;
  font-weight: 600;
  transition: 0.3s ease;
  margin-right: 8px;
}

.btn-media:hover {
  background: #111;
  color: #fff;
}

.media-calendar-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 25px;
  align-items: stretch;
}


.media-box video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}


.logo-scroll-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

.logo-track img {
  height: 80px;
  margin: 0 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Infinite scroll animation */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ==========================================================================
   CARTA ORGANISASI & LEMBAGA PENGARAH KUDR
   ========================================================================== */

/* Container Utama */
.board-hierarchy {
  padding: 50px 0;
  text-align: center;
}

/* Pengerusi (Atas) */
.hierarchy-top {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

/* Garis penyambung (Ringkas) */
.hierarchy-line {
  width: 80%;
  height: 2px;
  background: #fbbf24;
  margin: 0 auto 40px;
  position: relative;
}

/* Ahli-ahli (Bawah) */
.hierarchy-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Kad Individu & Ahli Lembaga */
.board-node {
  width: 220px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.board-node:hover {
  transform: translateY(-5px);
}

.node-image-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  border: 4px solid #fbbf24; /* Warna oren/kuning KUDR */
  border-radius: 50%;
  overflow: hidden;
  background: #f8fafc;
}

.node-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.node-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: #0f172a;
}

.node-info span {
  font-size: 0.8rem;
  color: #64748b;
  display: block;
  line-height: 1.2;
}

/* Pemisah Bahagian */
.section-divider {
  border: 0;
  height: 1px;
  background: #e2e8f0;
  margin: 60px 0;
}

/* Layout Grid Organisasi */

.unit-group {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-top: 5px solid #2c3e50;
  transition: box-shadow 0.3s ease;
}

.unit-group:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Container Utama untuk Unit - Paksa Sebaris */
.org-structure-grid {
  display: flex;
  flex-direction: row; /* Susun melintang */
  justify-content: center; /* Letak di tengah */
  align-items: flex-start; /* Selaraskan ke atas */
  gap: 20px; /* Jarak antara unit */
  width: 100%;
  overflow-x: auto; /* Tambah scroll jika skrin kecil */
  padding: 20px 10px;
}

/* Kotak Unit (Zon) */
.unit-group {
  flex: 0 0 auto; /* Jangan bagi kotak mengecil */
  width: 260px; /* Hadkan lebar setiap unit supaya tak terlalu lebar */
  background: #ffffff;
  border-radius: 12px;
  border-top: 6px solid #e67e22; /* Border tebal yang anda minta */
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Tajuk Unit (Zon) */
.unit-label {
  background: #0f172a;
  color: #fff;
  padding: 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}

/* Grid Staf di dalam Unit - Kekal menegak dalam kotak unit */
.staff-grid {
  display: flex;
  flex-direction: column; /* Staf dalam unit tetap susun kebawah */
  gap: 8px;
}

/* Sembunyikan scrollbar untuk rupa yang lebih clean (Opsional) */
.org-structure-grid::-webkit-scrollbar {
  height: 6px;
}
.org-structure-grid::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.highlight-op { border-top-color: #e67e22; }

/* Grid Staf */
/* Container untuk mengehadkan saiz keseluruhan */
.staff-grid {
  display: flex;
  flex-direction: column; /* Staf dalam unit tetap susun kebawah */
  gap: 8px;
}

/* Kad yang lebih jelas & menyerlah */
.team-card {
  padding: 12px 8px;
  background: #ffffff; /* Putih bersih untuk kontras tinggi */
  border: 1px solid #e2e8f0; /* Border lebih gelap sedikit dari sebelum ni */
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02); /* Shadow nipis untuk nampak timbul */
}

/* Nama Staf (Wajib GELAP untuk jelas) */
.team-card h4 { 
  font-size: 0.75rem; 
  margin-bottom: 2px; 
  color: #0f172a; /* Navy gelap (Sangat jelas) */
  font-weight: 800; /* Tebalkan sedikit */
  line-height: 1.2;
}

/* Jawatan Staf */
.team-card span { 
  font-size: 0.62rem; 
  color: #d97706; /* Warna oren-gelap (Lebih nampak dari kuning cair) */
  display: block; 
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Hover effect untuk interaktiviti */
.team-card:hover {
  border-color: #fbbf24;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

/* Gambar Bulat */
.team-card img, .empty-img {
  width: 48px !important;
  height: 58px !important;
  border-radius: 50%;
  margin: 0 auto 8px;
  object-fit: cover;
  border: 2px solid #f8fafc; /* Border putih halus keliling gambar */
}

.empty-img {
  background: #f1f5f9;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* CEO Block */
.ceo-block {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.ceo-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  width: 300px;
  cursor: pointer;
  border-bottom: 5px solid #e67e22;
  transition: 0.3s ease;
}

.ceo-card:hover {
  transform: scale(1.02);
}

.ceo-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid #fbbf24;
  margin-bottom: 15px;
}

/* ==========================================================================
   MODAL PROFILE STYLES (Tambahan untuk openProfile)
   ========================================================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 40px;
  width: 90%;
  max-width: 420px;
  border-radius: 24px;
  position: relative;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid #fbbf24;
  margin-bottom: 20px;
  object-fit: cover;
}

.modal-moto {
  font-style: italic;
  color: #64748b;
  font-size: 0.95rem;
  margin: 20px 0;
  padding: 0 10px;
  line-height: 1.5;
}

.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.email-btn:hover {
  background: #e67e22;
  transform: scale(1.05);
}

.close {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 30px;
  color: #94a3b8;
  cursor: pointer;
  transition: 0.2s;
}

.close:hover {
  color: #1e293b;
}

/* Vision Hero */
.vision-hero-box {
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.vision-hero-box h2 { color: #fbbf24; margin-bottom: 20px; font-size: 2rem; }
.vision-hero-box p { font-size: 1.2rem; line-height: 1.8; max-width: 800px; margin: 0 auto; }
.vision-hero-box span { color: #fbbf24; font-weight: bold; }
.quote-icon { font-size: 3rem; opacity: 0.1; position: absolute; top: 20px; left: 40px; }

/* V & M Cards */
.v-m-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px; }
.vm-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-bottom: 5px solid #2c3e50;
  transition: 0.3s;
  text-align: center;
}
.vm-card:hover { transform: translateY(-10px); border-bottom-color: #fbbf24; }
.vm-icon { font-size: 2.5rem; color: #fbbf24; margin-bottom: 20px; }
.vm-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #0f172a; }

/* Roadmap */
.roadmap-flex { display: flex; justify-content: space-around; gap: 20px; margin-top: 40px; position: relative; }
.roadmap-step { 
  flex: 1; 
  background: #f8fafc; 
  padding: 30px; 
  border-radius: 12px; 
  text-align: center;
  border: 1px solid #e2e8f0;
}
.roadmap-step.active { background: #fffbeb; border-color: #fbbf24; box-shadow: 0 10px 20px rgba(251, 191, 36, 0.1); }
.step-num { 
  width: 60px; height: 60px; background: #0f172a; color: white; 
  border-radius: 50%; display: flex; align-items: center; 
  justify-content: center; margin: 0 auto 15px; font-weight: bold;
}
.roadmap-step.active .step-num { background: #fbbf24; color: #0f172a; }

/* Balanced Scorecard Quadrants */
.bsc-quadrants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.quadrant {
  background: white;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #f1f5f9;
}
.quadrant i { font-size: 2rem; color: #e67e22; margin-bottom: 15px; }

/* Stat Strip */
.stat-strip-modern {
  display: flex;
  justify-content: space-around;
  background: #2c3e50;
  padding: 40px;
  border-radius: 15px;
  color: white;
  margin-top: 50px;
}
.stat-item-alt { text-align: center; }
.stat-number { display: block; font-size: 2.5rem; font-weight: 800; color: #fbbf24; }
.stat-text { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* Mobile Responsive */
@media (max-width: 768px) {
  .v-m-container, .roadmap-flex, .bsc-quadrants { grid-template-columns: 1fr; flex-direction: column; }
}

/* Modern Header */
.modern-about-header {
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../assets/img/kudr-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  color: white;
  margin-bottom: 50px;
}
.header-line { width: 60px; height: 4px; background: #fbbf24; margin: 20px auto; }

/* Intro Grid */
.intro-grid-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.image-stack { position: relative; }
.main-img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.experience-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: #fbbf24; padding: 20px; border-radius: 15px;
  text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.experience-badge .num { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.experience-badge .txt { font-size: 0.75rem; font-weight: bold; text-transform: uppercase; }

/* Pills */
.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.pill {
  background: #f1f5f9; padding: 8px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; color: #334155;
  display: flex; align-items: center; gap: 8px; border: 1px solid #e2e8f0;
}
.pill i { color: #fbbf24; }

/* Stats V2 */
.stats-overview {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 80px;
}
.stat-card-v2 {
  background: white; padding: 40px; border-radius: 20px; text-align: center;
  transition: 0.3s; border: 1px solid #f1f5f9; position: relative;
}
.stat-card-v2:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.stat-icon-bg { font-size: 2rem; color: #fbbf24; margin-bottom: 15px; opacity: 0.8; }
.stat-card-v2 h3 { font-size: 2.5rem; font-weight: 800; margin-bottom: 5px; color: #0f172a; }

.gov-visual-wrapper {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

/* SVG Animasi Garisan */
.gov-svg-lines {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    fill: none;
    stroke: #fbbf24; /* Kuning KUDR */
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLines 2s forwards ease-in-out;
}

@keyframes drawLines {
    to { stroke-dashoffset: 0; }
}

.gov-nodes-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Node Styling (Glassmorphism) */
.gov-node {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gov-node:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.2);
    border-color: #fbbf24;
}

.node-icon-glow {
    width: 50px; height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    margin-right: 15px;
}

.node-text span {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #7f8c8d;
    font-weight: 700;
    letter-spacing: 1px;
}

.node-text h4 {
    margin: 0;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 800;
}

/* OSA Highlight Style */
.osa-highlight {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white !important;
}

.osa-highlight .node-text h4, .osa-highlight .node-text span { color: #fff; }
.osa-highlight .node-icon { color: #fbbf24; }

.gov-row-execution {
    display: flex;
    gap: 60px;
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .gov-row-execution { flex-direction: column; align-items: center; gap: 20px; }
    .gov-svg-lines { display: none; }
}

/* Container Wrapper */
.process-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  position: relative;
  padding: 0 20px;
}

/* Node Styling */
.process-node {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
  z-index: 2;
}

.process-node:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border-color: #fbbf24;
}

.process-node.active-node {
  background: #ffffff;
  border-bottom: 5px solid #fbbf24;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Icon Box */
.process-icon-box {
  width: 80px;
  height: 80px;
  background: #0f172a; /* Warna Biru Gelap KUDR */
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 25px;
  position: relative;
  transition: 0.3s;
}

.process-node:hover .process-icon-box {
  background: #fbbf24; /* Kuning KUDR on Hover */
  transform: rotateY(180deg);
}

/* Badge Nombor */
.step-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fbbf24;
  color: #0f172a;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
}

/* Connector Line */
.process-connector {
  flex: 0.5;
  height: 2px;
  background: #e2e8f0;
  margin-top: 70px; /* Align dengan icon box */
  position: relative;
}

.line-dot {
  width: 10px;
  height: 10px;
  background: #fbbf24;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px #fbbf24;
  animation: pulseLine 2s infinite;
}

@keyframes pulseLine {
  0% { opacity: 0.3; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.5); }
  100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
}

/* Text Styling */
.process-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.process-text p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

.highlight-kudr {
  color: #e67e22;
  font-weight: 800;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .process-wrapper { flex-direction: column; align-items: center; gap: 40px; }
  .process-connector { display: none; }
  .process-node { width: 100%; max-width: 400px; }
}

/* Container Utama */
.section-kudrat { 
  background: #f8fafc; /* Sedikit kelabu cair untuk kontra dengan dashboard putih */
  padding: 100px 0; 
  overflow: hidden;
}

.highlight-kudr { 
  color: #e67e22; 
  font-weight: 800; 
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Dashboard Mockup - Fit to Image Aspect */
.dashboard-mockup { 
  position: relative; 
  border-radius: 20px; 
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.15); /* Shadow lebih dalam ala UI modern */
  overflow: hidden; 
  border: 8px solid #ffffff; /* Frame putih seperti skrin monitor */
  transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
  transform: scale(1.02) translateY(-10px);
}

.dashboard-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* Live Indicator - Diletakkan pada bahagian peta dalam gambar */
.live-indicator { 
  position: absolute; 
  top: 30px; 
  right: 30px; 
  background: rgba(255, 255, 255, 0.9); /* Glassmorphism cerah */
  backdrop-filter: blur(5px);
  color: #0f172a; 
  padding: 8px 18px; 
  border-radius: 50px; 
  font-size: 0.75rem; 
  font-weight: 700; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  z-index: 5;
}

/* Animasi Pulse Hijau */
.dot { 
  height: 10px; 
  width: 10px; 
  background-color: #22c55e; 
  border-radius: 50%; 
  display: inline-block; 
  margin-right: 8px; 
  position: relative;
}

.dot::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse-ring 1.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.33); opacity: 1; }
  80%, 100% { transform: scale(2.5); opacity: 0; }
}

/* Grid Info sebelah gambar */
.kudrat-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 35px;
}

.f-item {
  display: flex;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}

.f-item:hover {
  background: #fffbf5;
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.05);
}

.f-item i {
  font-size: 1.8rem;
  color: #e67e22;
  margin-top: 5px;
}

.section-responsibility {
  padding: 100px 0;
  background: #ffffff;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.res-card {
  display: flex;
  gap: 25px;
  padding: 40px;
  background: #f8fafc;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
}

.res-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  border-color: #fbbf24;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.featured-res {
  background: #0f172a;
  color: white;
  border: none;
}

.featured-res h3 { color: #fbbf24 !important; }
.featured-res .res-icon { background: #fbbf24; color: #0f172a; }
.featured-res .res-list li::before { color: #fbbf24; }

.res-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: #0f172a;
  color: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: 0.3s;
}

.res-body h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0f172a;
  font-weight: 800;
}

.res-body p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.res-list {
  list-style: none;
  padding: 0;
}

.res-list li {
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.res-list li::before {
  content: "→";
  margin-right: 10px;
  color: #e67e22;
  font-weight: 800;
}

@media (max-width: 992px) {
  .responsibility-grid { grid-template-columns: 1fr; }
}

/* Container Utama */
.section-dark-modern {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 100px 0;
  color: white;
}

.stats-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* Card Styling */
.stat-card-premium {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.stat-card-premium:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
  border-color: #fbbf24;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Typography */
.section-tag-gold {
  color: #fbbf24;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.stat-card-premium h3 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 10px 0;
  color: #fff;
  line-height: 1;
}

.stat-unit-small {
  font-size: 1.5rem;
  font-weight: 2000;
}

.stat-card-premium h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #fbbf24;
}

.stat-card-premium p {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Visual Elements */
.stat-visual {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-icon-glow {
  font-size: 2.5rem;
  color: #fbbf24;
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

/* Progress Ring khusus untuk SLA */
.progress-ring__circle {
  transition: stroke-dashoffset 0.35s;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-dasharray: 283; /* 2 * PI * R (45) */
  stroke-dashoffset: 28; /* Menunjukkan 90% secara statik, akan dianimasi JS */
}

.counter-overlay {
  position: absolute;
  font-size: 2rem !important;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .stats-dashboard-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .stats-dashboard-grid { grid-template-columns: 1fr; }
}

/* Container Utama Berita */
.news-category {
  margin-bottom: 80px;
  padding: 20px 0;
}

.category-header {
  border-left: 5px solid #fbbf24;
  padding-left: 20px;
  margin-bottom: 30px;
}

.title-with-icon {
  display: flex;
  align-items: center;
  gap: 15px;
}

.title-with-icon i {
  color: #fbbf24;
  font-size: 1.5rem;
}

.category-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.category-header p {
  color: #64748b;
  font-size: 0.95rem;
  margin-top: 5px;
}

/* Slider Containers (Memastikan JS anda berfungsi dengan padding) */
.category-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 5px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Sembunyikan Scrollbar tapi kekalkan fungsi scroll */
.category-slider::-webkit-scrollbar {
  height: 6px;
}
.category-slider::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}

/* Featured Hero Styling */
#featuredNews {
  min-height: 400px;
  border-radius: 25px;
  overflow: hidden;
  background: #f1f5f9; /* Placeholder */
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Styling Kad Berita (Jika JS anda menggunakan class ini) */
.news-item {
  min-width: 320px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(251, 191, 36, 0.2);
}

/* Container Dropdown */
.dropdown {
  position: relative;
  list-style: none;
}

/* Kotak Luar (Invisible Bridge) */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: transparent;
  padding-top: 10px; /* Jarak kecil antara butang & menu */
  z-index: 9999;
  min-width: 200px; /* DIKECILKAN dari 280px */
}

/* Kotak Dalaman (Yang nampak putih) */
.dropdown-menu-inner {
  background: #ffffff;
  border-radius: 12px;
  padding: 6px; /* Padding dikecilkan */
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid #edf2f7;
  list-style: none;
  margin: 0;
}

/* Reset Gaya Pautan (Compact Version) */
.dropdown-menu-inner li a {
  display: flex !important;
  align-items: center;
  gap: 10px; /* Jarak ikon & teks dikecilkan */
  padding: 6px 10px !important; /* Padding dikecilkan */
  background: transparent !important;
  color: #1e293b !important;
  border-radius: 8px !important;
  text-decoration: none;
  transition: 0.2s;
}

.dropdown-menu-inner li a:hover {
  background: #f8fafc !important;
  color: #e67e22 !important;
}

/* Kecilkan Ikon */
.menu-icon {
  width: 32px; /* Dikecilkan dari 40px */
  height: 32px;
  background: #f1f5f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  font-size: 0.9rem; /* Ikon dikecilkan */
}

/* Kecilkan Teks */
.menu-text strong {
  display: block;
  font-size: 0.8rem; /* Saiz teks utama dikecilkan */
  margin-bottom: 0px;
}


/* Tunjukkan menu bila hover */
.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/** Privacy.html

/* ================= PRIVACY PAGE BASE THEME VARIABLES ================= */
:root {
  --kudr-dark-blue: #092044;
  --kudr-gold: #f3b01c;
  --bg-light: #f4f6f9;
  --border-muted: #e2e8f0;
  --text-dark: #2d3748;
  --text-grey: #64748b;
  --radius: 8px;
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.04);
}

/* Base structural layout container match */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Privacy Page Global Scope styling rules */
.privacy-page-wrapper {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding-bottom: 80px;
}

/* Hero Title Header Area */
.privacy-hero {
  background: linear-gradient(135deg, var(--kudr-dark-blue) 0%, #15325e 100%);
  color: #ffffff;
  padding: 50px 0;
  margin-bottom: 40px;
  border-bottom: 4px solid var(--kudr-gold);
}

.privacy-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.privacy-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Two-Column Grid Component Layout */
.privacy-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar Layout & Content Navigation Links */
.privacy-sidebar {
  position: sticky;
  top: 100px; /* Jarak dari atas skrin apabila skrol bermula (sesuaikan dengan tinggi navbar anda) */
}

.sidebar-sticky-card {
  background-color: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-muted);
}

.sidebar-sticky-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--kudr-dark-blue);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--kudr-gold);
}

.privacy-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-toc-list li {
  margin-bottom: 6px;
}

.privacy-toc-list a {
  display: block;
  font-size: 0.95rem;
  color: var(--text-grey);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.privacy-toc-list a:hover {
  background-color: #f1f5f9;
  color: var(--kudr-dark-blue);
  padding-left: 14px;
}

.privacy-toc-list a.active {
  background-color: #e2e8f0;
  color: var(--kudr-dark-blue);
  font-weight: 600;
}

/* Privacy Body - Core Text styling document */
.privacy-body-content {
  background-color: #ffffff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-muted);
}

.privacy-body-content section {
  margin-bottom: 40px;
  scroll-margin-top: 110px; /* Memastikan anchor scroll berhenti tepat di bawah sticky header */
}

.privacy-body-content section:last-child {
  margin-bottom: 0;
}

.privacy-body-content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--kudr-dark-blue);
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-muted);
  padding-bottom: 8px;
}

.privacy-body-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 14px;
  text-align: justify;
}

/* Bullet list and Sub Blocks details rules */
.policy-bullet-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px 20px;
}

.policy-bullet-list li {
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--text-dark);
  position: relative;
}

.policy-sub-block {
  margin-top: 20px;
  padding: 15px;
  background-color: #f8fafc;
  border-radius: 6px;
  border-left: 3px solid var(--kudr-gold);
}

.policy-sub-block h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--kudr-dark-blue);
  margin-bottom: 8px;
}

/* Responsive Adaptive Interface Rules for Mobile and Tablets */
@media (max-width: 992px) {
  .privacy-layout-grid {
    grid-template-columns: 1fr;
  }
  
  .privacy-sidebar {
    display: none; /* Menyembunyikan sidebar di skrin kecil bagi mengelakkan ruang sesak */
  }

  .privacy-body-content {
    padding: 25px;
  }

  .privacy-hero h1 {
    font-size: 1.8rem;
  }
}

/** Refund

/* ================= CSS EXTENSION FOR TABLES & FORMULAS ================= */

/* Responsive wrapping element for standard tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-muted);
}

/* Base structural table styling mapping */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  background-color: #ffffff;
  min-width: 600px; /* Memastikan ruang paparan mencukupi pada desktop & mudah alih */
}

.policy-table th, 
.policy-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-muted);
  vertical-align: top;
  line-height: 1.5;
}

.policy-table th {
  background-color: var(--kudr-dark-blue);
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.policy-table tr:last-child td {
  border-bottom: none;
}

.policy-table tr:nth-child(even) {
  background-color: #f8fafc;
}

/* Inline typography utility modifiers */
.text-success { color: #10b981; }
.text-danger { color: #ef4444; }
.text-warning { color: #f59e0b; }
.text-center { text-align: center; }

/* Mathematical representation block styling */
.formula-block {
  text-align: center;
  padding: 25px;
  background-color: #f1f5f9;
}

.formula-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--kudr-dark-blue);
  margin-bottom: 15px !important;
  letter-spacing: 1px;
  font-family: 'Cambria', 'Georgia', serif;
}

**/admin dashh
.dashboard-header-modern {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}

.kpi-card {
  display:flex;
  align-items:center;
  gap:20px;
  padding:25px;
  border-radius:16px;
  background:white;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  transition:0.3s;
}

.kpi-card:hover {
  transform:translateY(-5px);
}

.kpi-icon {
  font-size:32px;
}

.admin-card {
  background:white;
  padding:25px;
  border-radius:16px;
  margin-top:30px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.bar-item {
  margin-bottom:15px;
}

.bar-bg {
  height:10px;
  background:#eee;
  border-radius:10px;
  overflow:hidden;
}

.bar-fill {
  height:100%;
}