/* ===================================================
   SAKU – SDI Administrasi Umum Kerjasama
   Universitas Bani Saleh
   Custom CSS v1.0
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:        #1E3A5F;
  --primary-dark:   #142a45;
  --primary-light:  #2a5298;
  --accent:         #C8972A;
  --accent-light:   #e5b84a;
  --success:        #2ecc71;
  --danger:         #e74c3c;
  --warning:        #f39c12;
  --light-bg:       #F4F7FC;
  --text:           #2C3E50;
  --text-muted:     #6C7A89;
  --white:          #ffffff;
  --border:         #E0E6EF;
  --card-shadow:    0 4px 20px rgba(30, 58, 95, 0.08);
  --card-hover:     0 12px 40px rgba(30, 58, 95, 0.18);
  --radius:         14px;
  --radius-sm:      8px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }

/* =============================
   NAVBAR
============================= */
#mainNavbar {
  background: var(--primary) !important;
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(30,58,95,0.25);
  transition: background var(--transition);
}

#mainNavbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

#mainNavbar .brand-logo {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary);
  font-size: 0.85rem;
  letter-spacing: -0.5px;
}

#mainNavbar .brand-text .brand-name {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.1;
}

#mainNavbar .brand-text .brand-sub {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 0.9rem !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.12);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--card-hover);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  background: var(--primary-dark);
  margin-top: 6px !important;
}

.dropdown-item {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  padding: 0.5rem 0.9rem;
  transition: all var(--transition);
}

.dropdown-item:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon { filter: brightness(0) invert(1) }

/* =============================
   TOP BAR
============================= */
.top-bar {
  background: var(--primary-dark);
  padding: 0.35rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}
.top-bar a { color: rgba(255,255,255,0.7); }
.top-bar a:hover { color: var(--accent); }

/* =============================
   HERO BANNER
============================= */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1a4f8a 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(200,151,42,0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-section .hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 41px);
}

.hero-badge {
  display: inline-block;
  background: rgba(200,151,42,0.2);
  border: 1px solid rgba(200,151,42,0.5);
  color: var(--accent-light);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-title span { color: var(--accent-light); }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-float {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.2rem 1.8rem;
  color: var(--white);
  text-align: center;
  animation: floatY 3s ease-in-out infinite;
}

.hero-card-float:nth-child(2) { animation-delay: 1s; }
.hero-card-float:nth-child(3) { animation-delay: 2s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 340px;
  margin: auto;
}

.hero-stat-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  transition: all var(--transition);
}

.hero-stat-item:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.hero-stat-item .stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-light);
  display: block;
}

.hero-stat-item .stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.2rem;
}

/* =============================
   SECTION STYLES
============================= */
section { padding: 5rem 0; }

.section-label {
  display: inline-block;
  background: rgba(200,151,42,0.12);
  color: var(--accent);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
}

.section-divider {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 0.8rem 0 1.5rem;
}

.section-divider.center { margin: 0.8rem auto 1.5rem; }

.bg-light-custom { background: var(--light-bg); }

/* =============================
   CARDS
============================= */
.card-saku {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
  overflow: hidden;
}

.card-saku:hover {
  box-shadow: var(--card-hover);
  transform: translateY(-6px);
}

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  box-shadow: var(--card-hover);
  transform: translateY(-8px);
  border-color: var(--primary-light);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  transition: all var(--transition);
}

.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.icon-blue   { background: rgba(30,58,95,0.1);  color: var(--primary); }
.icon-gold   { background: rgba(200,151,42,0.1); color: var(--accent); }
.icon-green  { background: rgba(46,204,113,0.1); color: var(--success); }
.icon-red    { background: rgba(231,76,60,0.1);  color: var(--danger); }
.icon-purple { background: rgba(155,89,182,0.1); color: #9b59b6; }

/* News Card */
.news-card { border-radius: var(--radius); overflow: hidden; }

.news-card .news-img {
  height: 180px;
  object-fit: cover;
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 3rem;
}

.news-card .news-body { padding: 1.2rem; }
.news-card .news-category { font-size: 0.75rem; font-weight: 600; }
.news-card .news-title { font-size: 0.95rem; font-weight: 700; margin: 0.4rem 0; line-height: 1.4; }
.news-card .news-meta { font-size: 0.78rem; color: var(--text-muted); }

/* Employee Card */
.employee-card {
  text-align: center;
  padding: 1.8rem 1.2rem;
}

.employee-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  border: 3px solid var(--border);
}

.employee-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.employee-role { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.8rem; }

/* Partner Card */
.partner-card {
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.partner-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.partner-name { font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 0.3rem; }
.partner-type { font-size: 0.75rem; color: var(--text-muted); }

/* =============================
   BUTTONS
============================= */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30,58,95,0.35);
  color: var(--white);
}

.btn-accent-custom {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-accent-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,151,42,0.35);
  color: var(--white);
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================
   BADGES
============================= */
.badge-custom {
  font-size: 0.72rem;
  padding: 0.35em 0.8em;
  border-radius: 50px;
  font-weight: 600;
}

.badge-primary { background: rgba(30,58,95,0.1); color: var(--primary); }
.badge-accent  { background: rgba(200,151,42,0.12); color: var(--accent); }
.badge-success { background: rgba(46,204,113,0.12); color: #27ae60; }
.badge-danger  { background: rgba(231,76,60,0.12); color: var(--danger); }
.badge-warning { background: rgba(243,156,18,0.12); color: #d68910; }

/* =============================
   PAGE HEADER / BREADCRUMB
============================= */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(200,151,42,0.12) 0%, transparent 60%);
}

.page-header h1 { color: var(--white); font-size: 2rem; margin-bottom: 0.4rem; }
.page-header p  { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin: 0; }

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.82rem;
}

.breadcrumb-custom li { color: rgba(255,255,255,0.65); }
.breadcrumb-custom li a { color: rgba(255,255,255,0.75); }
.breadcrumb-custom li a:hover { color: var(--accent-light); }
.breadcrumb-custom li:last-child { color: var(--accent-light); font-weight: 600; }
.breadcrumb-custom .sep { color: rgba(255,255,255,0.35); }

/* =============================
   STATISTICS
============================= */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-light);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* =============================
   FORMS
============================= */
.form-saku .form-control,
.form-saku .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.form-saku .form-control:focus,
.form-saku .form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
  outline: none;
}

.form-saku .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.form-saku .invalid-feedback { font-size: 0.8rem; }

/* =============================
   TABLES
============================= */
.table-saku {
  font-size: 0.88rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.table-saku thead th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  border: none;
  padding: 1rem;
}

.table-saku tbody tr {
  transition: background var(--transition);
  border-bottom: 1px solid var(--border);
}

.table-saku tbody tr:hover { background: var(--light-bg); }

.table-saku tbody td { padding: 0.9rem 1rem; vertical-align: middle; }

/* =============================
   FILTERS / SEARCH
============================= */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.search-box input {
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  width: 100%;
  transition: all var(--transition);
}

.search-box input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
  outline: none;
}

.search-box .search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* =============================
   MODALS
============================= */
.modal-saku .modal-content {
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.modal-saku .modal-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: none;
  padding: 1.2rem 1.5rem;
}

.modal-saku .modal-title { font-weight: 700; font-size: 1rem; color: var(--white); }
.modal-saku .btn-close { filter: brightness(0) invert(1); }
.modal-saku .modal-body { padding: 1.5rem; }
.modal-saku .modal-footer { border-top: 1px solid var(--border); padding: 1rem 1.5rem; }

/* =============================
   PAGINATION
============================= */
.pagination-custom {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
}

.page-btn:hover,
.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* =============================
   CTA SECTION
============================= */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #b8841e 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-section h2 { color: var(--white); font-size: 2rem; margin-bottom: 0.8rem; }
.cta-section p  { color: rgba(255,255,255,0.85); margin-bottom: 1.8rem; }

/* =============================
   FOOTER
============================= */
.main-footer {
  background: var(--primary-dark);
  padding: 3.5rem 0 0;
}

.footer-brand .brand-name { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.footer-brand .brand-sub  { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.8rem; line-height: 1.7; }

.footer-heading {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--accent-light); }
.footer-links a i { font-size: 0.7rem; }

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  align-items: flex-start;
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--accent-light);
}

.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; }

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* =============================
   VISI MISI
============================= */
.visi-card {
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  background: rgba(200,151,42,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.org-chart {
  text-align: center;
}

.org-node {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.2rem;
  display: inline-block;
  box-shadow: var(--card-shadow);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: all var(--transition);
}

.org-node:hover {
  border-color: var(--primary-light);
  box-shadow: var(--card-hover);
}

.org-node.top { background: var(--primary); color: var(--white); border-color: var(--primary); }
.org-node.mid { background: rgba(30,58,95,0.06); }
.org-connector { width: 2px; height: 30px; background: var(--border); margin: 0 auto; }
.org-row { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 0; }
.org-col { display: flex; flex-direction: column; align-items: center; }

/* =============================
   MAP
============================= */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

/* =============================
   ANIMATIONS
============================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,151,42,0.4); }
  50%      { box-shadow: 0 0 0 10px rgba(200,151,42,0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease both; }
.fade-in    { animation: fadeIn 0.5s ease both; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* =============================
   UTILITIES
============================= */
.text-primary-custom { color: var(--primary) !important; }
.text-accent  { color: var(--accent) !important; }
.bg-primary-custom { background: var(--primary) !important; }

.rounded-custom { border-radius: var(--radius) !important; }

.shadow-custom { box-shadow: var(--card-shadow) !important; }

.divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 5rem 0 3rem; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { margin-top: 2.5rem; }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

@media (max-width: 767px) {
  section { padding: 3.5rem 0; }
  .hero-title { font-size: 1.7rem; }
  .hero-stats-grid { max-width: 280px; }
  .stat-number { font-size: 2.2rem; }
  .filter-bar { flex-direction: column; align-items: stretch; }
}

@media (max-width: 575px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary-custom,
  .hero-cta .btn-outline-light-custom { width: 100%; justify-content: center; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
}
