
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.site-footer {
  margin-top: auto;
  background: linear-gradient(180deg, #ecfdf3, #fef9c3);
  color: #064e3b;
  padding: 28px 0 0;
  font-size: 13px;
  border-top: 1px solid #bbf7d0;
}

:root {
  /* Brand greens & accents */
  --primary: #32CD32;       /* hijau utama brand */
  --primary-soft: #9ACD32;  /* hijau lembut untuk background */
  --accent: #FFFF00;        /* emas hangat */
  --accent-bright: #FFFFAA; /* kuning lembut, bukan neon */

  /* Neutral background & surface */
  --bg: #f3f4f6;            /* abu muda untuk body */
  --bg-soft: #f9fafb;       /* abu sangat muda untuk beberapa section */
  --card-bg: #ffffff;       /* kartu dan panel */

  /* Border & teks */
  --border-subtle: #e5e7eb;
  --border-strong: #d1d5db;
  --text-main: #111827;
  --text-muted: #6b7280;
  --white: #ffffff;

  /* Radius & shadow */
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.12);
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 56px 0;
}

.section:nth-of-type(odd) {
  background: var(--bg-soft);
}

.section:nth-of-type(even) {
  background: #ffffff;
}

.section-title {
  font-size: 26px;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

.section-subtitle {
  margin: 0 0 24px;
  color: var(--text-main);
  font-size: 14px;
}

/* Header & navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(50,205,50,0.4);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  display: block;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 13px;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Main nav */

.main-nav {
  display: flex;
  gap: 10px;
  font-size: 13px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.main-nav a:hover {
  border-color: var(--border-subtle);
  color: var(--text-main);
  background: #f9fafb;
}

.main-nav a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #ffffff;
  border-color: rgba(34,197,94,0.7);
}

.header-cta .btn-whatsapp {
  background: linear-gradient(135deg, var(--accent), var(--primary-soft));
  color: #1f2937;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 12px 24px rgba(148,163,184,0.6);
  border: 1px solid rgba(250, 204, 21, 0.6);
}

.header-cta .btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(148,163,184,0.7);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-main);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 18px;
}

/* Mobile nav */

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 16px 16px;
  gap: 6px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}
@media (min-width: 769px) {
  .nav-mobile {
    display: none !important;
  }
}


.nav-mobile a {
  padding: 8px 10px;
  text-decoration: none;
  color: var(--text-main);
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 13px;
}

.nav-mobile a:hover {
  border-color: var(--border-subtle);
  background: #f3f4f6;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 9px 18px;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn-primary {
  background-image: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(22,163,74,0.5);
  border: 1px solid rgba(74,222,128,0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(22,163,74,0.6);
}

.btn-outline {
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  background: #ffffff;
}

.btn-outline:hover {
  border-color: var(--primary-soft);
  color: #14532d;
  background: #f0fdf4;
}

.btn-small {
  padding: 6px 12px;
  font-size: 12px;
}

.btn-full {
  width: 100%;
}

/* Hero */

.hero {
  padding: 56px 0 40px;
  background:
    linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.98)),
    url("../img/hero-kaabah.jpg") center/cover no-repeat;
  color: #f9fafb;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  color: #e5e7eb;
  font-size: 11px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero-title {
  font-size: 30px;
  margin: 12px 0 10px;
  letter-spacing: 0.01em;
  color: #f9fafb;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 14px;
  color: #e5e7eb;
  margin-bottom: 16px;
  max-width: 540px;
}

.hero-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}

.hero-highlight span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

/* Hero right: visual card + features */

.hero-visual {
  position: relative;
}

.hero-visual-card {
  border-radius: 24px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.hero-visual-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.hero-visual-caption {
  padding: 10px 12px 12px;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-visual-pill {
  position: absolute;
  bottom: 14px;
  right: 16px;
  background: rgba(255,255,255,0.96);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  border: 1px solid rgba(52,211,153,0.7);
  color: #166534;
}

/* Generic cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 10px;
}

.card-title {
  font-size: 15px;
  margin: 0;
}

.card-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.card-price {
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
}

.card-price-large {
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  margin: 4px 0 6px;
}

/* Detail page layout */

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: flex-start;
}

.detail-sidebar .box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 14px 14px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
}

/* Forms */

.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--text-main);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 9px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-main);
  padding: 7px 9px;
  font-size: 13px;
  margin-top: 3px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary-soft);
  box-shadow: 0 0 0 1px rgba(74,222,128,0.4);
}

/* Auth (Admin Login) */

.auth-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 0;
  overflow: hidden;
}

.auth-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(34,197,94,0.22), rgba(255,255,255,0) 55%),
    radial-gradient(circle at 85% 30%, rgba(245,158,11,0.18), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #ffffff, var(--bg));
  z-index: 0;
}

.auth-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
}

.auth-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(229,231,235,0.95);
  border-radius: 22px;
  padding: 22px 22px 20px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.auth-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 14px;
  padding: 6px;
  border: 1px solid rgba(229,231,235,0.9);
  box-shadow: 0 16px 32px rgba(15,23,42,0.12);
}

.auth-brand-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.auth-brand-sub {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.auth-title {
  margin: 8px 0 4px;
  font-size: 20px;
  letter-spacing: 0.01em;
}

.auth-subtitle {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.auth-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

.auth-input {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 10px 12px;
  background: #ffffff;
  margin-top: 6px;
}

.auth-input i {
  color: var(--text-muted);
}

.auth-input input {
  width: 100%;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  background: transparent;
  color: var(--text-main);
}

.auth-input:focus-within {
  border-color: rgba(34,197,94,0.75);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
}

.auth-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 10px;
  color: var(--text-muted);
}

.auth-toggle:hover {
  background: rgba(229,231,235,0.55);
  color: var(--text-main);
}

.auth-helper {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* About file preview (Struktur/Legalitas) */

.about-file {
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 12px;
  background: #ffffff;
}

.about-file-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 14px;
}

.about-file-frame {
  width: 100%;
  height: 560px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: #ffffff;
}

.about-file-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Alerts */

.alert {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 10px;
}

.alert-success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid rgba(34,197,94,0.7);
}

.alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid rgba(248,113,113,0.8);
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.gallery-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
}

.gallery-image-wrapper {
  width: 100%;
  padding-top: 62%;
  position: relative;
  overflow: hidden;
}

.gallery-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  padding: 8px 12px 12px;
  font-size: 13px;
}

/* Registration form */

.registration-form {
  margin-top: 16px;
}

.registration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 22px;
}

.registration-form h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.registration-form label {
  font-size: 13px;
  display: block;
  margin-bottom: 7px;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  border-radius: 9px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-main);
  padding: 7px 9px;
  font-size: 13px;
  margin-top: 3px;
}

/* Slider component (Umroh highlight) */

.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  margin-top: 14px;
}

.slider-track {
  display: flex;
  transition: transform 0.45s ease;
}

.slider-slide {
  min-width: 100%;
  padding: 18px 18px 16px;
}

.slider-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.slider-badge {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #f3f4f6;
}

.slider-title {
  font-size: 17px;
  margin: 0 0 4px;
}

.slider-text {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.slider-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.slider-controls {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  pointer-events: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.96);
  color: var(--text-main);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  pointer-events: auto;
}

.slider-arrow-left { left: 10px; }
.slider-arrow-right { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  pointer-events: auto;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-dot-active {
  width: 16px;
  background: var(--primary-soft);
}

/* Admin area */

.admin-header {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  color: #111827;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-logo span {
  font-weight: 600;
}

.admin-logo small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.admin-nav a {
  color: #111827;
  text-decoration: none;
  margin-left: 10px;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.admin-nav a:hover {
  background: #e5e7eb;
}

.admin-main {
  padding: 24px 0 48px;
}

.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--border-strong);
  padding: 8px 8px;
  text-align: left;
}

.admin-table th {
  background: #f9fafb;
  font-weight: 600;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-main);
  padding: 7px 9px;
  font-size: 13px;
  margin-top: 3px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 20px;
}

/* Footer */


.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 12px;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .admin-form-grid,
  .registration-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual-card img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .header-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 13px;
  }
  .section-title {
    font-size: 22px;
  }
  .logo-main {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .logo-sub {
    display: none;
  }
  .header-inner {
    padding: 8px 0;
  }
}/* Admin layout with sidebar */

.admin-body {
  background: var(--bg);
}

.admin-shell {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 230px;
  background: #ffffff;
  border-right: 1px solid var(--border-subtle);
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-sidebar-brand {
  margin-bottom: 4px;
}

.admin-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111827;
}

.admin-sidebar-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.admin-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.admin-sidebar-nav a {
  display: block;
  padding: 7px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-main);
  border: 1px solid transparent;
}

.admin-sidebar-nav a:hover {
  background: #f3f4f6;
  border-color: var(--border-subtle);
}

.admin-sidebar-nav a.is-active {
  background: #ecfdf3;
  border-color: rgba(34,197,94,0.7);
  color: #166534;
  font-weight: 600;
}

.admin-sidebar-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 8px 2px 0;
}

.admin-sidebar-bottom {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}

.admin-sidebar-user {
  color: var(--text-muted);
}

.admin-sidebar-logout {
  font-size: 12px;
  text-decoration: none;
  color: #b91c1c;
}

.admin-sidebar-logout:hover {
  text-decoration: underline;
}

.admin-main-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.admin-header-bar {
  padding: 10px 24px;
  border-bottom: 1px solid var(--border-subtle);
  background: #ffffff;
}

.admin-header-left .admin-header-page {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.admin-main {
  padding: 20px 24px 32px;
}

.admin-footer {
  margin-top: auto;
  padding: 10px 24px 16px;
  border-top: 1px solid var(--border-subtle);
  background: #ffffff;
  font-size: 12px;
  color: var(--text-muted);
}

/* Mobile admin layout: stack sidebar on top */

@media (max-width: 900px) {
  .admin-shell {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .admin-sidebar-brand {
    width: 100%;
  }
  .admin-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .admin-sidebar-nav a {
    padding-inline: 8px;
  }
}


/* === Islamic Elegant Modern: header, footer & body refresh === */

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #f3f4f6;
  color: #111827;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #0b7f3b, #32cd32);
  border-bottom: 1px solid rgba(15, 118, 110, 0.45);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark img {
  width: 40px;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f9fafb;
  font-weight: 700;
}

.logo-sub {
  font-size: 11px;
  color: #cbd5f5;
}

/* Main navigation */

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav a {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #e5e7eb;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.main-nav a:hover {
  background: rgba(148, 163, 184, 0.18);
  color: #f9fafb;
  transform: translateY(-1px);
}

.main-nav a.active {
  background: rgba(251, 191, 36, 0.25);
  color: #fefce8;
}

/* Header CTA & mobile toggle */

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-header-wa {
  font-size: 13px;
  padding: 7px 14px;
}

.nav-toggle {
  display: none;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.95);
  color: #f9fafb;
  padding: 4px 9px;
  font-size: 18px;
  cursor: pointer;
}

/* Mobile nav panel */

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 16px 16px;
  gap: 6px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.nav-mobile a {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 13px;
  color: #111827;
}

.nav-mobile a:hover {
  border-color: #e5e7eb;
  background: #f3f4f6;
}

/* Footer */

.site-footer {
  margin-top: auto;
  background: linear-gradient(180deg, #020617, #020617);
  color: #e5e7eb;
  padding: 32px 0 0;
  font-size: 13px;
  border-top: 1px solid rgba(31, 41, 55, 0.8);
}

.footer-main {
  display: grid;
  gap: 20px;
}

@media (min-width: 900px) {
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f9fafb;
}

.footer-text {
  color: #d1d5db;
}

.footer-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #f9fafb;
}

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

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #e5e7eb;
  transition: color 0.15s ease, transform 0.15s ease;
}

.footer-links a:hover {
  color: #ffff00;
  transform: translateX(2px);
}

.footer-bottom {
  border-top: 1px solid rgba(55, 65, 81, 0.8);
  margin-top: 20px;
  padding: 10px 0 14px;
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
}

/* Responsive tweaks for header/nav */

@media (max-width: 768px) {
  .header-inner {
    padding: 8px 0;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .logo-main {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .logo-sub {
    display: none;
  }
}


/* === Dropdown navigation (Tentang Kami & Paket) === */

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav > a.nav-link,
.main-nav .nav-link {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #f9fafb;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.12s ease, box-shadow 0.12s ease;
}

.main-nav > a.nav-link:hover,
.main-nav .nav-link:hover {
  background: rgba(15, 23, 42, 0.18);
  border-color: rgba(15, 23, 42, 0.3);
  transform: translateY(-1px);
}

.main-nav > a.nav-link.active,
.main-nav .nav-link.active {
  background: #ffffff;
  color: #065f46;
  border-color: rgba(16, 185, 129, 0.8);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.3);
}

.nav-item {
  position: relative;
}

.nav-has-dropdown > .nav-link::after {
  content: "▾";
  font-size: 11px;
  opacity: 0.9;
}

.nav-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 190px;
  padding: 8px 0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.14s ease, transform 0.14s ease;
  z-index: 45;
}

.nav-dropdown a {
  display: block;
  padding: 7px 14px;
  font-size: 13px;
  color: #111827;
  text-decoration: none;
}

.nav-dropdown a:hover {
  background: #f3f4f6;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 769px) {
  .nav-has-dropdown:hover .nav-dropdown,
  .nav-has-dropdown.nav-is-active .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* Mobile nav group labels */

.nav-mobile-group-label {
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  padding: 4px 4px 0;
}

.nav-mobile-child {
  padding-left: 18px;
}

/* About page layout */

.about-intro-grid {
  display: grid;
  gap: 16px;
}

.about-structure-grid,
.about-visi-misi-grid {
  display: grid;
  gap: 18px;
}

.about-list {
  list-style: none;
  padding-left: 0;
  font-size: 13px;
  color: var(--text-main);
}

.about-list li {
  margin-bottom: 6px;
}

/* Responsive grids for about */

@media (min-width: 900px) {
  .about-intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-structure-grid,
  .about-visi-misi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ==== Home sections: Paket Umroh, Galeri, Haji, Artikel, Testimoni ==== */

.section-umroh .section-title,
.section-haji .section-title,
.section-artikel .section-title,
.section-gallery .section-title,
.section-testimoni .section-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-umroh .section-title::before,
.section-haji .section-title::before,
.section-artikel .section-title::before,
.section-gallery .section-title::before,
.section-testimoni .section-title::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

/* Paket Umroh slider + cards */

.section-umroh .slider {
  margin-top: 18px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(52,211,153,0.12), #ffffff);
}

.section-umroh .slider-slide {
  padding: 16px 18px 18px;
}

.section-umroh .slider-meta span:first-child {
  background: rgba(16,185,129,0.06);
  border-color: rgba(16,185,129,0.45);
  color: #065f46;
}

.section-umroh .slider-price {
  font-size: 18px;
}

.section-umroh .cards-grid {
  margin-top: 20px;
}

.section-umroh .cards-grid .card {
  border-top: 3px solid rgba(16,185,129,0.75);
}

/* Galeri preview di beranda */

.section-gallery .container {
  max-width: 1120px;
}

.section-gallery .gallery-grid {
  margin-top: 18px;
}

.section-gallery .gallery-item {
  position: relative;
}

.section-gallery .gallery-item::after {
  content: "Lihat foto";
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(15,23,42,0.78);
  color: #f9fafb;
}

/* Paket Haji cards */

.section-haji .cards-grid .card {
  border-top: 3px solid rgba(248,180,0,0.9);
}

/* Artikel cards */

.section-artikel .cards-grid .card {
  border-left: 3px solid rgba(59,130,246,0.8);
}

.section-artikel .card-title {
  font-size: 16px;
}

.section-artikel .card-meta {
  font-size: 12px;
}

/* Testimoni cards */

.section-testimoni .cards-grid {
  margin-top: 20px;
}

.section-testimoni .cards-grid .card {
  position: relative;
  border: 1px solid rgba(16,185,129,0.4);
  background:
    radial-gradient(circle at top left, rgba(22,163,74,0.08), #ffffff);
}

.section-testimoni .cards-grid .card::before {
  content: "“";
  position: absolute;
  top: 4px;
  left: 10px;
  font-size: 32px;
  color: rgba(16,185,129,0.3);
}

.section-testimoni .card-meta {
  font-style: italic;
}

/* Responsif kecil: rapikan spacing */

@media (max-width: 640px) {
  .section-umroh .slider {
    margin-top: 14px;
  }

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


/* Home packages grid (Umroh) */

.home-packages-grid {
  margin-top: 18px;
}

.home-package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-package-card .btn-small {
  margin-top: auto;
  align-self: flex-start;
}

/* General look for home cards (kotak-kotak rapi) */

.section-umroh .cards-grid .card,
.section-haji .cards-grid .card,
.section-artikel .cards-grid .card,
.section-testimoni .cards-grid .card {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

/* Footer links at bottom of section */

.home-section-footer {
  margin-top: 12px;
}


/* Footer social icons */

.footer-social {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 0;
  margin-top: 4px;
}

.footer-social li {
  margin: 0;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(15,23,42,0.45);
}

/* We use first letter style as simple logo mark */

.social-icon::before {
  display: block;
  transform: translateY(-1px);
}

.social-icon-fb {
  background: #1877f2;
}

.social-icon-fb::before {
  content: "f";
}

.social-icon-ig {
  background: radial-gradient(circle at 30% 30%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-icon-ig::before {
  content: "in";
  font-size: 13px;
  font-weight: 600;
}

.social-icon-li {
  background: #0a66c2;
}

.social-icon-li::before {
  content: "in";
  font-size: 13px;
  font-weight: 700;
}

.social-icon-tt {
  background: #000000;
}

.social-icon-tt::before {
  content: "t";
}

/* Strong mobile nav override so header rapi di HP */

@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }

  .header-cta {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex !important;
  }

  .header-inner {
    padding-inline: 0;
  }
}


/* Refine footer social icons: use span text inside circle */

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(15,23,42,0.45);
}

.social-icon i {
  display: block;
  transform: translateY(-1px);
}

/* individual colors */

.social-icon-fb {
  background: #1877f2;
}

.social-icon-ig {
  background: radial-gradient(circle at 30% 30%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-icon-li {
  background: #0a66c2;
}

.social-icon-tt {
  background: #000000;
}


@media (max-width: 1024px) {
  .main-nav {display:none !important;}
  .header-cta{display:none !important;}
  .nav-toggle{display:inline-flex !important;}
  .header-inner{padding-inline:0;}
}


/* === Admin theme revamp: dark header + emerald accent === */

.admin-body {
  background: radial-gradient(circle at top left, #020617, #020617 40%, #020617 60%, #020617 100%);
}

.admin-shell {
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(16,185,129,0.05), transparent 55%);
}

.admin-sidebar {
  background: linear-gradient(180deg, #052e16, #022c22);
  border-right: 1px solid rgba(15,118,110,0.6);
}

.admin-sidebar-brand .admin-sidebar-title,
.admin-sidebar-brand .admin-sidebar-sub {
  color: #ecfeff;
}

.admin-sidebar-nav a {
  color: #e2e8f0;
  border-radius: 10px;
  border-color: transparent;
}

.admin-sidebar-nav a:hover {
  background: rgba(15,23,42,0.7);
  border-color: rgba(34,197,94,0.5);
}

.admin-sidebar-nav a.is-active {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #052e16;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(16,185,129,0.35);
}

.admin-sidebar-label {
  color: rgba(148,163,184,0.9);
}

.admin-sidebar-bottom {
  border-top-color: rgba(15,118,110,0.7);
}

.admin-main-wrapper {
  background: radial-gradient(circle at top, rgba(15,23,42,0.85), #020617);
}

.admin-header-bar {
  background: rgba(15,23,42,0.9);
  border-bottom: 1px solid rgba(31,41,55,0.9);
  box-shadow: 0 12px 30px rgba(15,23,42,0.8);
}

.admin-header-page {
  font-weight: 600;
  color: #e5e7eb;
}

.admin-header-right {
  color: #9ca3af;
}

/* Cards & tables */

.admin-card {
  background: linear-gradient(145deg, rgba(15,23,42,0.92), rgba(10,16,32,0.96));
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(31,41,55,0.9);
  box-shadow: 0 18px 40px rgba(15,23,42,0.85);
  color: #e5e7eb;
}

.admin-card h1,
.admin-card h2,
.admin-card h3 {
  color: #f9fafb;
}

.admin-card-subtitle {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.admin-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.admin-card-wide {
  grid-column: 1 / -1;
}

.admin-card-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
}

.admin-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

.admin-form input[type="text"],
.admin-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(55,65,81,0.9);
  padding: 7px 10px;
  font-size: 13px;
  background: rgba(15,23,42,0.85);
  color: #e5e7eb;
}

.admin-form textarea {
  min-height: 120px;
}

.admin-form input[type="file"] {
  width: 100%;
  border-radius: 12px;
  border: 1px dashed rgba(55,65,81,0.95);
  padding: 10px;
  font-size: 12px;
  background: rgba(15,23,42,0.6);
  color: #e5e7eb;
 }

.admin-file-preview {
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(31,41,55,0.85);
  background: rgba(2,6,23,0.35);
 }

.admin-file-preview-meta {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 8px;
 }

.admin-file-preview-image {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(31,41,55,0.85);
  background: rgba(15,23,42,0.55);
 }

.admin-file-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31,41,55,0.85);
  background: rgba(15,23,42,0.55);
  color: #e5e7eb;
  text-decoration: none;
 }

.admin-file-preview-link:hover {
  border-color: rgba(34,197,94,0.6);
  background: rgba(34,197,94,0.10);
 }

.admin-inline-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 12px;
  color: #cbd5e1;
 }

.admin-form input[type="text"]:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34,197,94,0.6);
}

/* Admin buttons */

.btn.btn-primary,
.admin-main .btn-primary {
  background: linear-gradient(90deg, #22c55e, #14b8a6);
  border-radius: 999px;
  border: none;
  padding-inline: 20px;
  color: #022c22;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(34,197,94,0.5);
}

.btn.btn-primary:hover,
.admin-main .btn-primary:hover {
  filter: brightness(1.05);
}

/* Admin tables */

.admin-table {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(31,41,55,0.9);
}

.admin-table table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(31,41,55,0.8);
  padding: 8px 10px;
  font-size: 13px;
  color: #e5e7eb;
}

.admin-table th {
  background: rgba(15,23,42,0.95);
  font-weight: 600;
}

.admin-table tbody tr:nth-child(even) {
  background: rgba(15,23,42,0.8);
}

/* Responsif admin */

@media (max-width: 768px) {
  .admin-shell {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 12px 14px;
    overflow-x: auto;
  }

  .admin-main-wrapper {
    padding-top: 8px;
  }
}


/* === Admin UI refinement: icons, layout & dashboard === */

.admin-sidebar {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-sidebar-logo {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #22c55e, #15803d);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.6);
}

.admin-logo-mark {
  color: #ecfeff;
  font-size: 18px;
}

.admin-sidebar-title {
  font-weight: 600;
  font-size: 15px;
  color: #ecfeff;
}

.admin-sidebar-sub {
  font-size: 11px;
  color: rgba(148, 163, 184, 0.9);
}

.admin-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border-radius: 999px;
  text-decoration: none;
  color: #e5e7eb;
  border: 1px solid transparent;
}

.admin-nav-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.6);
  font-size: 13px;
}

.admin-sidebar-nav a:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(34, 197, 94, 0.5);
}

.admin-sidebar-nav a.is-active {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-color: transparent;
  color: #022c22;
}

.admin-sidebar-nav a.is-active .admin-nav-icon {
  background: rgba(15, 23, 42, 0.9);
  color: #22c55e;
}

.admin-sidebar-bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
}

.admin-sidebar-user {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e5e7eb;
}

.admin-sidebar-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(248, 250, 252, 0.08);
  color: #f97373;
  font-size: 12px;
}

/* Header */

.admin-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
}

.admin-header-page {
  font-size: 15px;
}

.admin-header-date {
  font-size: 13px;
  color: #9ca3af;
}

/* Dashboard layout */

.admin-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-page-header h1 {
  margin: 0 0 4px;
}

.admin-page-header p {
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-stats-secondary {
  margin-top: 4px;
}

.admin-stat-card {
  position: relative;
  border-radius: 18px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.06), rgba(15, 23, 42, 0.96));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-stat-card-muted {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.88));
}

.admin-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.92);
  color: #22c55e;
  font-size: 17px;
}

.admin-stat-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-stat-label {
  font-size: 12px;
  color: #9ca3af;
}

.admin-stat-value {
  font-size: 20px;
  font-weight: 600;
  color: #ecfeff;
}

/* Quick links */

.admin-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 4px;
}

.admin-card-quick {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  border: 1px solid rgba(31, 41, 55, 0.9);
}

.admin-quick-links a i {
  font-size: 13px;
  color: #22c55e;
}

.admin-quick-links a:hover {
  border-color: rgba(34, 197, 94, 0.8);
}

/* Responsive tweaks */

@media (max-width: 768px) {
  .admin-main {
    padding: 16px 14px 24px;
  }

  .admin-header-bar {
    padding-inline: 14px;
  }

  .admin-sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
  }

  .admin-sidebar-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .admin-sidebar-nav a {
    white-space: nowrap;
    padding-inline: 10px;
  }

  .admin-sidebar-label {
    display: none;
  }
}


/* === Admin Light Theme Override (requested) === */

.admin-body {
  background: #f3f4f6;
}

.admin-shell {
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(52,211,153,0.10), transparent 60%);
}

.admin-sidebar {
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
}

.admin-sidebar-title {
  color: #065f46;
}

.admin-sidebar-sub {
  color: #6b7280;
}

.admin-sidebar-nav a {
  color: #111827;
  border-radius: 999px;
}

.admin-sidebar-nav a:hover {
  background: #ecfdf3;
  border-color: rgba(22,163,74,0.35);
}

.admin-sidebar-nav a.is-active {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #f9fafb;
}

.admin-sidebar-nav a.is-active .admin-nav-icon {
  background: rgba(15,23,42,0.95);
  color: #22c55e;
}

.admin-sidebar-bottom {
  border-top: 1px dashed #e5e7eb;
}

.admin-sidebar-user {
  color: #111827;
}

.admin-sidebar-logout {
  background: #fee2e2;
  color: #b91c1c;
}

/* Main content area */

.admin-main-wrapper {
  background: linear-gradient(180deg, #eff6ff, #f9fafb);
}

.admin-main {
  padding: 24px 26px 32px;
}

.admin-header-bar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
}

.admin-header-page {
  color: #111827;
}

.admin-header-date {
  color: #6b7280;
}

.admin-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15,23,42,0.05);
  color: #111827;
}

.admin-card-subtitle {
  color: #6b7280;
}

/* Tables in light theme */

.admin-table {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.admin-table th {
  background: #f3f4f6;
  color: #111827;
}

.admin-table td {
  color: #111827;
}

.admin-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

/* Form controls */

.admin-form input[type="text"],
.admin-form textarea {
  background: #f9fafb;
  color: #111827;
  border: 1px solid #d1d5db;
}

.admin-form input[type="text"]:focus,
.admin-form textarea:focus {
  background: #ffffff;
}

/* Bootstrap-like button variants */

.btn-sm {
  padding: 4px 10px;
  font-size: 12px;
}

.btn-outline-secondary {
  background-color: transparent;
  border: 1px solid #d1d5db;
  color: #374151;
  box-shadow: none;
}

.btn-outline-secondary:hover {
  background-color: #e5e7eb;
}

.btn-danger {
  background-image: none;
  background-color: #ef4444;
  border: 1px solid #fca5a5;
  color: #fef2f2;
  box-shadow: 0 10px 22px rgba(239,68,68,0.45);
}

.btn-danger:hover {
  background-color: #dc2626;
}

/* Responsive tweaks for light theme */

@media (max-width: 768px) {
  .admin-main {
    padding: 18px 14px 24px;
  }
}

/* Override warna harga paket */
.card-price,
.card-price-large,
.slider-price {
  color: #228B22 !important;
}
