/* ============================================================
   Green Office CMS — Premium Stylesheet
   Thai Government Green Office Management System
   Version: 1.0.0 | Date: 2026-07-01
   ============================================================ */

/* ──────────────────────────────────────────────────────────────
   0. GOOGLE FONTS IMPORT
   ────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@300;400;500;600;700;800&display=swap');

/* ──────────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ────────────────────────────────────────────────────────────── */
:root {
  /* ── Brand Palette ── */
  --go-primary:        #007126;
  --go-primary-dark:   #005a1e;
  --go-primary-light:  #00913a;
  --go-secondary:      #28a745;
  --go-secondary-dark: #1e8e3a;
  --go-accent:         #e8f5e9;
  --go-accent-medium:  #c8e6c9;
  --go-dark:           #1a1a2e;
  --go-dark-light:     #24243e;
  --go-dark-lighter:   #2e2e4a;

  /* ── Neutral Palette ── */
  --go-white:          #ffffff;
  --go-gray-50:        #f8f9fa;
  --go-gray-100:       #f1f3f5;
  --go-gray-200:       #e9ecef;
  --go-gray-300:       #dee2e6;
  --go-gray-400:       #ced4da;
  --go-gray-500:       #adb5bd;
  --go-gray-600:       #868e96;
  --go-gray-700:       #495057;
  --go-gray-800:       #343a40;
  --go-gray-900:       #212529;

  /* ── Semantic ── */
  --go-success:        #28a745;
  --go-danger:         #dc3545;
  --go-danger-dark:    #c82333;
  --go-warning:        #ffc107;
  --go-info:           #17a2b8;

  /* ── Typography ── */
  --go-font:           'Noto Sans Thai', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --go-fs-xs:          0.75rem;    /* 12px */
  --go-fs-sm:          0.875rem;   /* 14px */
  --go-fs-base:        1rem;       /* 16px */
  --go-fs-md:          1.125rem;   /* 18px */
  --go-fs-lg:          1.25rem;    /* 20px */
  --go-fs-xl:          1.5rem;     /* 24px */
  --go-fs-2xl:         1.875rem;   /* 30px */
  --go-fs-3xl:         2.25rem;    /* 36px */

  /* ── Spacing ── */
  --go-sp-1:           0.25rem;
  --go-sp-2:           0.5rem;
  --go-sp-3:           1rem;
  --go-sp-4:           1.5rem;
  --go-sp-5:           2rem;
  --go-sp-6:           3rem;
  --go-sp-7:           4rem;
  --go-sp-8:           5rem;

  /* ── Radius ── */
  --go-radius-sm:      6px;
  --go-radius:         12px;
  --go-radius-lg:      16px;
  --go-radius-xl:      24px;
  --go-radius-pill:    9999px;
  --go-radius-circle:  50%;

  /* ── Shadows ── */
  --go-shadow-xs:      0 1px 3px rgba(0, 0, 0, 0.06);
  --go-shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.08);
  --go-shadow:         0 4px 16px rgba(0, 0, 0, 0.1);
  --go-shadow-md:      0 8px 24px rgba(0, 0, 0, 0.12);
  --go-shadow-lg:      0 12px 40px rgba(0, 0, 0, 0.15);
  --go-shadow-xl:      0 20px 60px rgba(0, 0, 0, 0.2);
  --go-shadow-green:   0 4px 20px rgba(0, 113, 38, 0.25);
  --go-shadow-inset:   inset 0 2px 4px rgba(0, 0, 0, 0.06);

  /* ── Glassmorphism ── */
  --go-glass-bg:       rgba(255, 255, 255, 0.72);
  --go-glass-border:   rgba(255, 255, 255, 0.35);
  --go-glass-blur:     16px;
  --go-glass-dark-bg:  rgba(26, 26, 46, 0.75);

  /* ── Transitions ── */
  --go-ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --go-ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --go-t-fast:         150ms;
  --go-t-normal:       300ms;
  --go-t-slow:         500ms;

  /* ── Layout ── */
  --go-navbar-h:       72px;
  --go-sidebar-w:      260px;
  --go-container-max:  1200px;
}

/* ──────────────────────────────────────────────────────────────
   2. RESET & BASE
   ────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--go-font);
  font-weight: 400;
  line-height: 1.7;
  color: var(--go-gray-800);
  background-color: var(--go-gray-50);
  overflow-x: hidden;
}

a {
  color: var(--go-primary);
  text-decoration: none;
  transition: color var(--go-t-normal) var(--go-ease);
}

a:hover {
  color: var(--go-secondary);
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--go-font);
  border: none;
  outline: none;
  background: none;
}

input, textarea, select {
  font-family: var(--go-font);
  font-size: var(--go-fs-base);
}

/* ──────────────────────────────────────────────────────────────
   3. LAYOUT & CONTAINER — .go-app, .go-loading
   ────────────────────────────────────────────────────────────── */
.go-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ── Full-page loading spinner overlay ── */
.go-loading {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--go-glass-bg);
  backdrop-filter: blur(var(--go-glass-blur));
  -webkit-backdrop-filter: blur(var(--go-glass-blur));
}

.go-loading::after {
  content: '';
  width: 48px;
  height: 48px;
  border: 4px solid var(--go-accent-medium);
  border-top-color: var(--go-primary);
  border-radius: var(--go-radius-circle);
  animation: go-spin 0.75s linear infinite;
}

/* ──────────────────────────────────────────────────────────────
   4. NAVIGATION BAR — .go-navbar
   ────────────────────────────────────────────────────────────── */
.go-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--go-navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--go-sp-5);
  background: var(--go-white);
  border-bottom: 1px solid var(--go-gray-200);
  box-shadow: var(--go-shadow-sm);
  transition: box-shadow var(--go-t-normal) var(--go-ease),
              background var(--go-t-normal) var(--go-ease);
}

.go-navbar.go-navbar--scrolled {
  box-shadow: var(--go-shadow-md);
  background: var(--go-glass-bg);
  backdrop-filter: blur(var(--go-glass-blur));
  -webkit-backdrop-filter: blur(var(--go-glass-blur));
}

/* ── Brand ── */
.go-navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--go-sp-2);
  text-decoration: none;
  flex-shrink: 0;
}

.go-navbar-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform var(--go-t-normal) var(--go-ease);
}

.go-navbar-brand:hover img {
  transform: scale(1.05);
}

.go-navbar-brand span {
  font-size: var(--go-fs-md);
  font-weight: 700;
  color: var(--go-primary);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* ── Menu ── */
.go-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--go-container-max);
  margin: 0 auto;
  gap: var(--go-sp-4);
}

.go-navbar-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: var(--go-sp-1);
}

.go-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: var(--go-sp-2) var(--go-sp-3);
  font-size: var(--go-fs-sm);
  font-weight: 500;
  color: var(--go-gray-700);
  border-radius: var(--go-radius-sm);
  transition: color var(--go-t-normal) var(--go-ease),
              background var(--go-t-normal) var(--go-ease);
  text-decoration: none;
  white-space: nowrap;
}

.go-nav-item:hover {
  color: var(--go-primary);
  background: var(--go-accent);
}

.go-nav-item.active {
  color: var(--go-primary);
  font-weight: 600;
}

.go-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--go-primary), var(--go-secondary));
  border-radius: var(--go-radius-pill);
}

/* ── Dropdown ── */
.go-dropdown {
  position: relative;
}

.go-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  padding: var(--go-sp-2) 0;
  background: var(--go-white);
  border: 1px solid var(--go-gray-200);
  border-radius: var(--go-radius);
  box-shadow: var(--go-shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--go-t-normal) var(--go-ease),
              transform var(--go-t-normal) var(--go-ease),
              visibility var(--go-t-normal);
  z-index: 100;
}

.go-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--go-white);
  border-top: 1px solid var(--go-gray-200);
  border-left: 1px solid var(--go-gray-200);
}

.go-dropdown:hover .go-dropdown-menu,
.go-dropdown.open .go-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.go-dropdown-item {
  display: block;
  padding: var(--go-sp-2) var(--go-sp-4);
  font-size: var(--go-fs-sm);
  color: var(--go-gray-700);
  transition: background var(--go-t-fast) var(--go-ease),
              color var(--go-t-fast) var(--go-ease),
              padding-left var(--go-t-fast) var(--go-ease);
  text-decoration: none;
}

.go-dropdown-item:hover {
  background: var(--go-accent);
  color: var(--go-primary);
  padding-left: var(--go-sp-5);
}

/* ── Mobile Toggle ── */
.go-navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--go-radius-sm);
  transition: background var(--go-t-fast) var(--go-ease);
}

.go-navbar-toggle:hover {
  background: var(--go-accent);
}

.go-navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--go-gray-700);
  border-radius: 2px;
  transition: transform var(--go-t-normal) var(--go-ease),
              opacity var(--go-t-normal) var(--go-ease);
}

.go-navbar-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.go-navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.go-navbar-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Language Switcher ── */
.go-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: var(--go-sp-1);
  padding: 6px 14px;
  font-size: var(--go-fs-xs);
  font-weight: 600;
  color: var(--go-primary);
  background: var(--go-accent);
  border: 1px solid var(--go-accent-medium);
  border-radius: var(--go-radius-pill);
  transition: all var(--go-t-normal) var(--go-ease);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.go-lang-switcher:hover {
  background: var(--go-primary);
  color: var(--go-white);
  border-color: var(--go-primary);
  box-shadow: var(--go-shadow-green);
}

/* ──────────────────────────────────────────────────────────────
   5. BANNER CAROUSEL — .go-carousel
   ────────────────────────────────────────────────────────────── */
.go-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: var(--go-gray-200);
}

.go-carousel-track {
  display: flex;
  transition: transform var(--go-t-slow) var(--go-ease);
  will-change: transform;
}

.go-carousel-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.go-carousel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 8s linear;
}

.go-carousel-slide.active img {
  transform: scale(1.05);
}

/* ── Slide Caption Overlay ── */
.go-carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.35) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* ── Navigation Arrows ── */
.go-carousel-prev,
.go-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--go-glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--go-glass-border);
  border-radius: var(--go-radius-circle);
  color: var(--go-gray-800);
  font-size: var(--go-fs-lg);
  cursor: pointer;
  transition: all var(--go-t-normal) var(--go-ease);
  box-shadow: var(--go-shadow-sm);
}

.go-carousel-prev { left: 16px; }
.go-carousel-next { right: 16px; }

.go-carousel-prev:hover,
.go-carousel-next:hover {
  background: var(--go-primary);
  color: var(--go-white);
  border-color: var(--go-primary);
  box-shadow: var(--go-shadow-green);
  transform: translateY(-50%) scale(1.1);
}

/* ── Dot Indicators ── */
.go-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.go-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--go-radius-circle);
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all var(--go-t-normal) var(--go-ease);
}

.go-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.go-carousel-dot.active {
  background: var(--go-secondary);
  border-color: var(--go-white);
  width: 28px;
  border-radius: var(--go-radius-pill);
  box-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
}

/* ──────────────────────────────────────────────────────────────
   6. SECTION HEADERS — .go-section
   ────────────────────────────────────────────────────────────── */
.go-section {
  padding: var(--go-sp-7) var(--go-sp-5);
  max-width: var(--go-container-max);
  margin: 0 auto;
  width: 100%;
}

.go-section--full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.go-section--alt {
  background: var(--go-accent);
}

.go-section-header {
  text-align: center;
  margin-bottom: var(--go-sp-6);
}

.go-section-subtitle {
  display: inline-block;
  font-size: var(--go-fs-sm);
  font-weight: 600;
  color: var(--go-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--go-sp-2);
}

.go-section-title {
  font-size: var(--go-fs-2xl);
  font-weight: 700;
  color: var(--go-gray-900);
  margin-bottom: var(--go-sp-3);
  line-height: 1.3;
}

.go-section-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--go-primary), var(--go-secondary));
  border-radius: var(--go-radius-pill);
  margin: 0 auto;
}

.go-more-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--go-sp-4);
}

.go-more-link a {
  display: inline-flex;
  align-items: center;
  gap: var(--go-sp-1);
  font-size: var(--go-fs-sm);
  font-weight: 600;
  color: var(--go-primary);
  padding: var(--go-sp-2) 0;
  transition: all var(--go-t-normal) var(--go-ease);
}

.go-more-link a::after {
  content: '→';
  transition: transform var(--go-t-normal) var(--go-ease);
}

.go-more-link a:hover {
  color: var(--go-secondary);
}

.go-more-link a:hover::after {
  transform: translateX(4px);
}

/* ──────────────────────────────────────────────────────────────
   7. CARD GRID & CARDS — .go-card
   ────────────────────────────────────────────────────────────── */

/* ── Grid Layout ── */
.go-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--go-sp-5);
}

/* ── Base Card ── */
.go-card {
  position: relative;
  background: var(--go-white);
  border-radius: var(--go-radius);
  overflow: hidden;
  box-shadow: var(--go-shadow-sm);
  border: 1px solid var(--go-gray-200);
  transition: transform var(--go-t-normal) var(--go-ease),
              box-shadow var(--go-t-normal) var(--go-ease),
              border-color var(--go-t-normal) var(--go-ease);
  display: flex;
  flex-direction: column;
}

.go-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--go-shadow-lg);
  border-color: var(--go-accent-medium);
}

/* ── Card Image ── */
.go-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--go-gray-100);
}

.go-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--go-t-slow) var(--go-ease);
}

.go-card:hover .go-card-image img {
  transform: scale(1.08);
}

/* ── Card Overlay ── */
.go-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--go-sp-3);
  background: rgba(0, 113, 38, 0.6);
  opacity: 0;
  transition: opacity var(--go-t-normal) var(--go-ease);
  z-index: 2;
}

.go-card:hover .go-card-overlay {
  opacity: 1;
}

.go-card-overlay a,
.go-card-overlay button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--go-white);
  color: var(--go-primary);
  border-radius: var(--go-radius-circle);
  font-size: var(--go-fs-md);
  transition: all var(--go-t-fast) var(--go-ease);
  transform: translateY(12px);
}

.go-card:hover .go-card-overlay a,
.go-card:hover .go-card-overlay button {
  transform: translateY(0);
}

.go-card-overlay a:hover,
.go-card-overlay button:hover {
  background: var(--go-primary);
  color: var(--go-white);
  box-shadow: var(--go-shadow-green);
}

/* ── Card Body ── */
.go-card-body {
  padding: var(--go-sp-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.go-card-date {
  font-size: var(--go-fs-xs);
  font-weight: 500;
  color: var(--go-secondary);
  margin-bottom: var(--go-sp-2);
  display: flex;
  align-items: center;
  gap: var(--go-sp-1);
}

.go-card-date i {
  font-size: 0.85em;
}

.go-card-category {
  display: inline-block;
  padding: 3px 10px;
  font-size: var(--go-fs-xs);
  font-weight: 600;
  color: var(--go-primary);
  background: var(--go-accent);
  border: 1px solid var(--go-accent-medium);
  border-radius: var(--go-radius-pill);
  margin-right: var(--go-sp-1);
  margin-bottom: var(--go-sp-2);
  transition: all var(--go-t-fast) var(--go-ease);
}

.go-card-category:hover {
  background: var(--go-primary);
  color: var(--go-white);
  border-color: var(--go-primary);
}

.go-card-title {
  font-size: var(--go-fs-base);
  font-weight: 600;
  color: var(--go-gray-800);
  line-height: 1.5;
  margin-bottom: var(--go-sp-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--go-t-normal) var(--go-ease);
}

.go-card:hover .go-card-title {
  color: var(--go-primary);
}

.go-card-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--go-primary), var(--go-secondary));
  border-radius: var(--go-radius-pill);
  margin-top: auto;
}

/* ──────────────────────────────────────────────────────────────
   8. VIDEO CARDS — .go-video-card
   ────────────────────────────────────────────────────────────── */
.go-video-card {
  position: relative;
  background: var(--go-white);
  border-radius: var(--go-radius);
  overflow: hidden;
  box-shadow: var(--go-shadow-sm);
  border: 1px solid var(--go-gray-200);
  transition: transform var(--go-t-normal) var(--go-ease),
              box-shadow var(--go-t-normal) var(--go-ease);
}

.go-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--go-shadow-md);
}

.go-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--go-gray-900);
  overflow: hidden;
}

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

.go-video-card .go-card-body {
  padding: var(--go-sp-4);
}

/* ──────────────────────────────────────────────────────────────
   9. OPERATION CARDS — .go-operation-card
   ────────────────────────────────────────────────────────────── */
.go-operation-card {
  position: relative;
  background: var(--go-white);
  border-radius: var(--go-radius);
  overflow: visible;
  box-shadow: var(--go-shadow-sm);
  border: 1px solid var(--go-gray-200);
  transition: transform var(--go-t-normal) var(--go-ease),
              box-shadow var(--go-t-normal) var(--go-ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0;
}

.go-operation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--go-shadow-lg);
}

.go-operation-card .go-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--go-radius) var(--go-radius) 0 0;
  overflow: hidden;
}

.go-operation-card .go-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--go-t-slow) var(--go-ease);
}

.go-operation-card:hover .go-card-image img {
  transform: scale(1.06);
}

.go-operation-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--go-primary), var(--go-secondary));
  color: var(--go-white);
  font-size: var(--go-fs-xl);
  border-radius: var(--go-radius-circle);
  border: 4px solid var(--go-white);
  box-shadow: var(--go-shadow-green);
  margin-top: -30px;
  position: relative;
  z-index: 2;
  transition: transform var(--go-t-normal) var(--go-ease-bounce),
              box-shadow var(--go-t-normal) var(--go-ease);
}

.go-operation-card:hover .go-operation-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 6px 24px rgba(0, 113, 38, 0.35);
}

.go-operation-title {
  font-size: var(--go-fs-md);
  font-weight: 700;
  color: var(--go-primary);
  margin: var(--go-sp-3) var(--go-sp-4) var(--go-sp-2);
}

.go-operation-desc {
  font-size: var(--go-fs-sm);
  color: var(--go-gray-600);
  line-height: 1.7;
  padding: 0 var(--go-sp-4);
  margin-bottom: var(--go-sp-3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.go-operation-link {
  display: inline-flex;
  align-items: center;
  gap: var(--go-sp-1);
  font-size: var(--go-fs-sm);
  font-weight: 600;
  color: var(--go-primary);
  padding: var(--go-sp-2) var(--go-sp-4);
  margin-bottom: var(--go-sp-4);
  border-radius: var(--go-radius-pill);
  transition: all var(--go-t-normal) var(--go-ease);
}

.go-operation-link::after {
  content: '→';
  transition: transform var(--go-t-normal) var(--go-ease);
}

.go-operation-link:hover {
  background: var(--go-accent);
  color: var(--go-primary-dark);
}

.go-operation-link:hover::after {
  transform: translateX(4px);
}

/* ──────────────────────────────────────────────────────────────
   10. FOOTER & VISITOR STATISTICS — .go-footer
   ────────────────────────────────────────────────────────────── */
.go-footer {
  background: linear-gradient(135deg, var(--go-dark) 0%, var(--go-dark-light) 50%, var(--go-primary-dark) 100%);
  color: var(--go-white);
  padding: var(--go-sp-7) var(--go-sp-5) var(--go-sp-5);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.go-footer::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(0, 113, 38, 0.08);
  border-radius: var(--go-radius-circle);
  pointer-events: none;
}

.go-footer::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: rgba(40, 167, 69, 0.06);
  border-radius: var(--go-radius-circle);
  pointer-events: none;
}

.go-visitor-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--go-sp-5);
  max-width: var(--go-container-max);
  margin: 0 auto var(--go-sp-6);
  position: relative;
  z-index: 1;
}

.go-footer-title {
  text-align: center;
  font-size: var(--go-fs-3xl);
  font-weight: 800;
  color: var(--go-white);
  max-width: var(--go-container-max);
  margin: 0 auto var(--go-sp-5);
  position: relative;
  z-index: 1;
}

.go-visitor-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--go-sp-2);
  padding: var(--go-sp-4) var(--go-sp-5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--go-radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 140px;
  transition: all var(--go-t-normal) var(--go-ease);
}

.go-visitor-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(40, 167, 69, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.go-visitor-stat i {
  font-size: var(--go-fs-2xl);
  color: var(--go-secondary);
  transition: transform var(--go-t-normal) var(--go-ease);
}

.go-visitor-stat:hover i {
  transform: scale(1.15);
}

.go-visitor-stat h6 {
  font-size: var(--go-fs-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.go-stat-number {
  font-size: var(--go-fs-xl);
  font-weight: 800;
  color: var(--go-secondary);
  letter-spacing: -0.5px;
}

.go-copyright {
  text-align: center;
  padding-top: var(--go-sp-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--go-fs-xs);
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

/* ── Admin Dashboard: Visitor Stats Card (light theme) ── */
.go-dashboard-visitors {
  background: var(--go-white);
  border: 1px solid var(--go-gray-200);
  border-radius: var(--go-radius);
  padding: var(--go-sp-5);
  margin-top: var(--go-sp-5);
}

.go-dashboard-visitors h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--go-sp-2);
  font-size: var(--go-fs-md);
  font-weight: 700;
  color: var(--go-gray-800);
  margin-bottom: var(--go-sp-4);
  text-align: center;
}

.go-visitor-stats-admin {
  margin: 0 0 var(--go-sp-5);
  justify-content: flex-start;
}

.go-visitor-stats-admin .go-visitor-stat {
  background: var(--go-accent);
  border: 1px solid var(--go-gray-200);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.go-visitor-stats-admin .go-visitor-stat i,
.go-visitor-stats-admin .go-stat-number {
  color: var(--go-primary);
}

.go-visitor-stats-admin .go-visitor-stat h6 {
  color: var(--go-gray-600);
}

.go-visitor-manage {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--go-sp-4);
  padding-top: var(--go-sp-4);
  border-top: 1px solid var(--go-gray-200);
}

.go-visitor-manage-row {
  display: flex;
  gap: var(--go-sp-2);
}

.go-visitor-manage-row .go-form-input {
  width: 140px;
}

.go-form-hint {
  font-size: var(--go-fs-xs);
  color: var(--go-gray-500);
  margin-top: var(--go-sp-1);
}

.go-copyright a {
  color: var(--go-secondary);
  transition: color var(--go-t-fast) var(--go-ease);
}

.go-copyright a:hover {
  color: var(--go-accent);
}

/* ──────────────────────────────────────────────────────────────
   11. PAGE CONTENT — .go-page-container
   ────────────────────────────────────────────────────────────── */
.go-page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--go-sp-6) var(--go-sp-5);
  animation: go-fadeIn var(--go-t-slow) var(--go-ease);
}

.go-page-title {
  font-size: var(--go-fs-2xl);
  font-weight: 700;
  color: var(--go-gray-900);
  margin-bottom: var(--go-sp-4);
  padding-bottom: var(--go-sp-3);
  border-bottom: 3px solid var(--go-primary);
  position: relative;
}

.go-page-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--go-secondary);
}

.go-page-content {
  font-size: var(--go-fs-base);
  line-height: 1.9;
  color: var(--go-gray-700);
}

.go-page-content h2 {
  font-size: var(--go-fs-xl);
  font-weight: 700;
  color: var(--go-gray-900);
  margin: var(--go-sp-5) 0 var(--go-sp-3);
}

.go-page-content h3 {
  font-size: var(--go-fs-lg);
  font-weight: 600;
  color: var(--go-gray-800);
  margin: var(--go-sp-4) 0 var(--go-sp-2);
}

.go-page-content p {
  margin-bottom: var(--go-sp-3);
}

.go-page-content ul,
.go-page-content ol {
  margin-bottom: var(--go-sp-3);
  padding-left: var(--go-sp-5);
}

.go-page-content ul {
  list-style: disc;
}

.go-page-content ol {
  list-style: decimal;
}

.go-page-content li {
  margin-bottom: var(--go-sp-2);
}

.go-page-content img {
  border-radius: var(--go-radius);
  box-shadow: var(--go-shadow);
  margin: var(--go-sp-4) 0;
}

.go-page-content blockquote {
  border-left: 4px solid var(--go-primary);
  padding: var(--go-sp-3) var(--go-sp-4);
  background: var(--go-accent);
  border-radius: 0 var(--go-radius) var(--go-radius) 0;
  margin: var(--go-sp-4) 0;
  font-style: italic;
  color: var(--go-gray-700);
}

.go-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--go-sp-4) 0;
  border-radius: var(--go-radius);
  overflow: hidden;
  box-shadow: var(--go-shadow-sm);
}

.go-page-content table th {
  background: var(--go-primary);
  color: var(--go-white);
  padding: var(--go-sp-3);
  font-weight: 600;
  text-align: left;
}

.go-page-content table td {
  padding: var(--go-sp-3);
  border-bottom: 1px solid var(--go-gray-200);
}

.go-page-content table tr:nth-child(even) {
  background: var(--go-gray-50);
}

/* ── Breadcrumb ── */
.go-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--go-sp-2);
  font-size: var(--go-fs-sm);
  color: var(--go-gray-500);
  margin-bottom: var(--go-sp-4);
  padding: var(--go-sp-3) 0;
  flex-wrap: wrap;
}

.go-breadcrumb a {
  color: var(--go-gray-600);
  transition: color var(--go-t-fast) var(--go-ease);
}

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

.go-breadcrumb span {
  color: var(--go-gray-400);
}

.go-breadcrumb .go-breadcrumb-current {
  color: var(--go-primary);
  font-weight: 500;
}

/* ──────────────────────────────────────────────────────────────
   12. CONTACT PAGE — .go-contact-form
   ────────────────────────────────────────────────────────────── */
.go-contact-form {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--go-sp-6);
  background: var(--go-white);
  border-radius: var(--go-radius-lg);
  box-shadow: var(--go-shadow);
  border: 1px solid var(--go-gray-200);
}

.go-form-group {
  margin-bottom: var(--go-sp-4);
}

.go-form-label {
  display: block;
  font-size: var(--go-fs-sm);
  font-weight: 600;
  color: var(--go-gray-700);
  margin-bottom: var(--go-sp-2);
}

.go-form-label .go-required {
  color: var(--go-danger);
  margin-left: 2px;
}

.go-form-input,
.go-form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: var(--go-fs-base);
  color: var(--go-gray-800);
  background: var(--go-gray-50);
  border: 2px solid var(--go-gray-300);
  border-radius: var(--go-radius-sm);
  transition: border-color var(--go-t-normal) var(--go-ease),
              background var(--go-t-normal) var(--go-ease),
              box-shadow var(--go-t-normal) var(--go-ease);
  outline: none;
}

.go-form-input:hover,
.go-form-textarea:hover {
  border-color: var(--go-gray-400);
}

.go-form-input:focus,
.go-form-textarea:focus {
  border-color: var(--go-primary);
  background: var(--go-white);
  box-shadow: 0 0 0 4px rgba(0, 113, 38, 0.1);
}

.go-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.go-form-input::placeholder,
.go-form-textarea::placeholder {
  color: var(--go-gray-400);
}

.go-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--go-sp-2);
  padding: 14px 36px;
  font-size: var(--go-fs-base);
  font-weight: 600;
  color: var(--go-white);
  background: linear-gradient(135deg, var(--go-primary), var(--go-secondary));
  border: none;
  border-radius: var(--go-radius-sm);
  cursor: pointer;
  transition: all var(--go-t-normal) var(--go-ease);
  box-shadow: var(--go-shadow-green);
  width: 100%;
}

.go-form-submit:hover {
  background: linear-gradient(135deg, var(--go-primary-dark), var(--go-primary));
  box-shadow: 0 6px 28px rgba(0, 113, 38, 0.35);
  transform: translateY(-2px);
}

.go-form-submit:active {
  transform: translateY(0);
  box-shadow: var(--go-shadow-green);
}

.go-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ──────────────────────────────────────────────────────────────
   13. PAGINATION — .go-pagination
   ────────────────────────────────────────────────────────────── */
.go-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--go-sp-2);
  padding: var(--go-sp-5) 0;
}

.go-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--go-sp-3);
  font-size: var(--go-fs-sm);
  font-weight: 500;
  color: var(--go-gray-700);
  background: var(--go-white);
  border: 1px solid var(--go-gray-300);
  border-radius: var(--go-radius-sm);
  cursor: pointer;
  transition: all var(--go-t-fast) var(--go-ease);
}

.go-page-btn:hover {
  color: var(--go-primary);
  border-color: var(--go-primary);
  background: var(--go-accent);
}

.go-page-btn.active {
  color: var(--go-white);
  background: var(--go-primary);
  border-color: var(--go-primary);
  box-shadow: var(--go-shadow-green);
  font-weight: 700;
}

.go-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ──────────────────────────────────────────────────────────────
   14. ADMIN PANEL — .go-admin
   ────────────────────────────────────────────────────────────── */
.go-admin {
  display: flex;
  min-height: 100vh;
  background: var(--go-gray-100);
}

/* ── Sidebar ── */
.go-admin-sidebar {
  width: var(--go-sidebar-w);
  background: linear-gradient(180deg, var(--go-primary-dark) 0%, var(--go-primary) 60%, var(--go-secondary-dark) 100%);
  color: var(--go-white);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 900;
  overflow-y: auto;
  transition: transform var(--go-t-normal) var(--go-ease),
              width var(--go-t-normal) var(--go-ease);
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.go-admin-sidebar::-webkit-scrollbar {
  width: 4px;
}

.go-admin-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--go-radius-pill);
}

.go-admin-sidebar-header {
  display: flex;
  align-items: center;
  gap: var(--go-sp-3);
  padding: var(--go-sp-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.go-admin-sidebar-header img {
  width: 40px;
  height: 40px;
  border-radius: var(--go-radius-circle);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.go-admin-sidebar-header h3 {
  font-size: var(--go-fs-sm);
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.go-admin-sidebar-header small {
  display: block;
  font-size: var(--go-fs-xs);
  opacity: 0.6;
  margin-top: 2px;
}

.go-admin-sidebar-menu {
  padding: var(--go-sp-3) 0;
  flex: 1;
}

.go-admin-sidebar-item {
  display: flex;
  align-items: center;
  gap: var(--go-sp-3);
  padding: 12px var(--go-sp-5);
  font-size: var(--go-fs-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all var(--go-t-fast) var(--go-ease);
  text-decoration: none;
  white-space: nowrap;
}

.go-admin-sidebar-item:hover {
  color: var(--go-white);
  background: rgba(255, 255, 255, 0.08);
  border-left-color: rgba(255, 255, 255, 0.3);
}

.go-admin-sidebar-item.active {
  color: var(--go-white);
  background: rgba(255, 255, 255, 0.12);
  border-left-color: var(--go-white);
  font-weight: 600;
}

.go-admin-sidebar-item i {
  width: 20px;
  text-align: center;
  font-size: var(--go-fs-base);
  opacity: 0.8;
  transition: opacity var(--go-t-fast) var(--go-ease),
              transform var(--go-t-fast) var(--go-ease);
}

.go-admin-sidebar-item:hover i,
.go-admin-sidebar-item.active i {
  opacity: 1;
}

.go-admin-sidebar-item:hover i {
  transform: scale(1.1);
}

/* ── Main Content Area ── */
.go-admin-main {
  flex: 1;
  margin-left: var(--go-sidebar-w);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: margin-left var(--go-t-normal) var(--go-ease);
}

/* ── Topbar ── */
.go-admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--go-sp-5);
  height: 64px;
  background: var(--go-white);
  border-bottom: 1px solid var(--go-gray-200);
  box-shadow: var(--go-shadow-xs);
  position: sticky;
  top: 0;
  z-index: 800;
}

.go-admin-topbar h2 {
  font-size: var(--go-fs-lg);
  font-weight: 700;
  color: var(--go-gray-900);
}

.go-admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: var(--go-sp-3);
}

.go-admin-topbar-user {
  display: flex;
  align-items: center;
  gap: var(--go-sp-2);
  font-size: var(--go-fs-sm);
  color: var(--go-gray-600);
}

.go-admin-topbar-user img {
  width: 32px;
  height: 32px;
  border-radius: var(--go-radius-circle);
  object-fit: cover;
  border: 2px solid var(--go-accent-medium);
}

.go-admin-topbar-logout {
  display: inline-flex;
  align-items: center;
  gap: var(--go-sp-1);
  padding: 6px 14px;
  font-size: var(--go-fs-xs);
  font-weight: 600;
  color: var(--go-danger);
  border: 1px solid var(--go-danger);
  border-radius: var(--go-radius-sm);
  background: transparent;
  cursor: pointer;
  transition: all var(--go-t-fast) var(--go-ease);
}

.go-admin-topbar-logout:hover {
  background: var(--go-danger);
  color: var(--go-white);
}

/* ── Admin Content ── */
.go-admin-content {
  padding: var(--go-sp-5);
  flex: 1;
}

/* ── Admin Sidebar Toggle (mobile) ── */
.go-admin-sidebar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--go-radius-sm);
  color: var(--go-gray-700);
  font-size: var(--go-fs-lg);
  transition: background var(--go-t-fast) var(--go-ease);
  cursor: pointer;
}

.go-admin-sidebar-toggle:hover {
  background: var(--go-gray-100);
}

/* ──────────────────────────────────────────────────────────────
   15. ADMIN DATA TABLE — .go-table
   ────────────────────────────────────────────────────────────── */
.go-admin-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--go-sp-3);
  margin-bottom: var(--go-sp-4);
}

.go-admin-table-header h3 {
  font-size: var(--go-fs-lg);
  font-weight: 700;
  color: var(--go-gray-900);
}

.go-table-wrapper {
  background: var(--go-white);
  border-radius: var(--go-radius);
  box-shadow: var(--go-shadow-sm);
  border: 1px solid var(--go-gray-200);
  overflow-x: auto;
}

.go-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--go-fs-sm);
}

.go-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--go-primary);
  background: var(--go-accent);
  border-bottom: 2px solid var(--go-accent-medium);
  white-space: nowrap;
  font-size: var(--go-fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.go-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--go-gray-100);
  color: var(--go-gray-700);
  vertical-align: middle;
}

.go-table tbody tr {
  transition: background var(--go-t-fast) var(--go-ease);
}

.go-table tbody tr:nth-child(even) {
  background: var(--go-gray-50);
}

.go-table tbody tr:hover {
  background: var(--go-accent);
}

.go-table-actions {
  display: flex;
  align-items: center;
  gap: var(--go-sp-2);
}

.go-table-thumbnail {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: var(--go-radius-sm);
  border: 1px solid var(--go-gray-200);
}

.go-table-status {
  display: inline-flex;
  padding: 3px 10px;
  font-size: var(--go-fs-xs);
  font-weight: 600;
  border-radius: var(--go-radius-pill);
}

.go-table-status--active {
  color: var(--go-primary);
  background: var(--go-accent);
}

.go-table-status--draft {
  color: var(--go-gray-600);
  background: var(--go-gray-200);
}

/* ──────────────────────────────────────────────────────────────
   16. BUTTONS — .go-btn
   ────────────────────────────────────────────────────────────── */
.go-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--go-sp-2);
  padding: 10px 20px;
  font-size: var(--go-fs-sm);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--go-radius-sm);
  cursor: pointer;
  transition: all var(--go-t-normal) var(--go-ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}

.go-btn:active {
  transform: scale(0.97);
}

.go-btn-primary {
  color: var(--go-white);
  background: linear-gradient(135deg, var(--go-primary), var(--go-secondary));
  border-color: var(--go-primary);
  box-shadow: var(--go-shadow-green);
}

.go-btn-primary:hover {
  background: linear-gradient(135deg, var(--go-primary-dark), var(--go-primary));
  box-shadow: 0 6px 24px rgba(0, 113, 38, 0.35);
  transform: translateY(-2px);
  color: var(--go-white);
}

.go-btn-secondary {
  color: var(--go-primary);
  background: var(--go-accent);
  border-color: var(--go-accent-medium);
}

.go-btn-secondary:hover {
  background: var(--go-accent-medium);
  border-color: var(--go-primary);
  color: var(--go-primary-dark);
}

.go-btn-outline {
  color: var(--go-primary);
  background: transparent;
  border-color: var(--go-primary);
}

.go-btn-outline:hover {
  background: var(--go-primary);
  color: var(--go-white);
  box-shadow: var(--go-shadow-green);
}

.go-btn-danger {
  color: var(--go-white);
  background: var(--go-danger);
  border-color: var(--go-danger);
}

.go-btn-danger:hover {
  background: var(--go-danger-dark);
  border-color: var(--go-danger-dark);
  box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
  transform: translateY(-2px);
  color: var(--go-white);
}

.go-btn-sm {
  padding: 6px 12px;
  font-size: var(--go-fs-xs);
}

.go-btn-lg {
  padding: 14px 28px;
  font-size: var(--go-fs-base);
}

.go-btn-icon {
  padding: 8px;
  min-width: 36px;
  height: 36px;
}

.go-btn-block {
  width: 100%;
}

.go-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ──────────────────────────────────────────────────────────────
   17. ADMIN FORMS — .go-admin-form
   ────────────────────────────────────────────────────────────── */
.go-admin-form {
  background: var(--go-white);
  border-radius: var(--go-radius);
  padding: var(--go-sp-6);
  box-shadow: var(--go-shadow-sm);
  border: 1px solid var(--go-gray-200);
}

.go-admin-form-title {
  font-size: var(--go-fs-xl);
  font-weight: 700;
  color: var(--go-gray-900);
  margin-bottom: var(--go-sp-5);
  padding-bottom: var(--go-sp-3);
  border-bottom: 2px solid var(--go-gray-200);
  position: relative;
}

.go-admin-form-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--go-primary);
}

.go-admin-form-group {
  margin-bottom: var(--go-sp-4);
}

.go-admin-form-group label {
  display: block;
  font-size: var(--go-fs-sm);
  font-weight: 600;
  color: var(--go-gray-700);
  margin-bottom: var(--go-sp-2);
}

.go-admin-form-group input,
.go-admin-form-group textarea,
.go-admin-form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: var(--go-fs-base);
  color: var(--go-gray-800);
  background: var(--go-gray-50);
  border: 2px solid var(--go-gray-300);
  border-radius: var(--go-radius-sm);
  transition: border-color var(--go-t-normal) var(--go-ease),
              background var(--go-t-normal) var(--go-ease),
              box-shadow var(--go-t-normal) var(--go-ease);
  outline: none;
}

.go-admin-form-group input:focus,
.go-admin-form-group textarea:focus,
.go-admin-form-group select:focus {
  border-color: var(--go-primary);
  background: var(--go-white);
  box-shadow: 0 0 0 4px rgba(0, 113, 38, 0.1);
}

.go-admin-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.go-admin-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23495057' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.go-admin-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--go-sp-4);
}

.go-admin-form-actions {
  display: flex;
  align-items: center;
  gap: var(--go-sp-3);
  padding-top: var(--go-sp-4);
  border-top: 1px solid var(--go-gray-200);
  margin-top: var(--go-sp-5);
}

/* ── Image Upload ── */
.go-image-upload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--go-sp-3);
  min-height: 180px;
  padding: var(--go-sp-5);
  border: 2px dashed var(--go-gray-300);
  border-radius: var(--go-radius);
  background: var(--go-gray-50);
  cursor: pointer;
  transition: all var(--go-t-normal) var(--go-ease);
  text-align: center;
}

.go-image-upload:hover {
  border-color: var(--go-primary);
  background: var(--go-accent);
}

.go-image-upload.go-dragover {
  border-color: var(--go-primary);
  background: var(--go-accent);
  box-shadow: inset 0 0 0 2px rgba(0, 113, 38, 0.1);
}

.go-image-upload i {
  font-size: var(--go-fs-3xl);
  color: var(--go-gray-400);
  transition: color var(--go-t-normal) var(--go-ease),
              transform var(--go-t-normal) var(--go-ease);
}

.go-image-upload:hover i {
  color: var(--go-primary);
  transform: translateY(-4px);
}

.go-image-upload p {
  font-size: var(--go-fs-sm);
  color: var(--go-gray-500);
}

.go-image-upload p strong {
  color: var(--go-primary);
}

.go-image-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.go-image-preview {
  position: relative;
  display: inline-block;
  margin-top: var(--go-sp-3);
}

.go-image-preview img {
  max-width: 200px;
  max-height: 140px;
  object-fit: cover;
  border-radius: var(--go-radius);
  border: 2px solid var(--go-gray-200);
  box-shadow: var(--go-shadow-sm);
}

.go-image-preview-remove {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--go-danger);
  color: var(--go-white);
  border-radius: var(--go-radius-circle);
  font-size: 12px;
  cursor: pointer;
  transition: transform var(--go-t-fast) var(--go-ease);
  box-shadow: var(--go-shadow-sm);
}

.go-image-preview-remove:hover {
  transform: scale(1.15);
}

/* ──────────────────────────────────────────────────────────────
   18. ADMIN LOGIN — .go-login
   ────────────────────────────────────────────────────────────── */
.go-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--go-sp-5);
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 113, 38, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(0, 90, 30, 0.08) 0%, transparent 40%),
    linear-gradient(135deg, var(--go-dark) 0%, var(--go-dark-light) 50%, #0d2818 100%);
}

.go-login-card {
  width: 100%;
  max-width: 420px;
  padding: var(--go-sp-7) var(--go-sp-6);
  background: var(--go-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--go-glass-border);
  border-radius: var(--go-radius-xl);
  box-shadow: var(--go-shadow-xl);
  text-align: center;
  animation: go-fadeIn 0.6s var(--go-ease),
             go-slideUp 0.6s var(--go-ease);
}

.go-login-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto var(--go-sp-4);
  background: linear-gradient(135deg, var(--go-primary), var(--go-secondary));
  border-radius: var(--go-radius-lg);
  color: var(--go-white);
  font-size: var(--go-fs-3xl);
  box-shadow: var(--go-shadow-green);
}

.go-login-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.go-login-title {
  font-size: var(--go-fs-xl);
  font-weight: 800;
  color: var(--go-gray-900);
  margin-bottom: var(--go-sp-1);
}

.go-login-subtitle {
  font-size: var(--go-fs-sm);
  color: var(--go-gray-500);
  margin-bottom: var(--go-sp-5);
}

.go-login-form {
  text-align: left;
}

.go-login-form .go-form-group {
  margin-bottom: var(--go-sp-4);
}

.go-login-form .go-form-input {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.08);
}

.go-login-form .go-form-input:focus {
  background: var(--go-white);
  border-color: var(--go-primary);
}

.go-login-error {
  display: flex;
  align-items: center;
  gap: var(--go-sp-2);
  padding: var(--go-sp-3) var(--go-sp-4);
  margin-bottom: var(--go-sp-4);
  font-size: var(--go-fs-sm);
  color: var(--go-danger);
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: var(--go-radius-sm);
  animation: go-fadeIn var(--go-t-normal) var(--go-ease);
}

/* ──────────────────────────────────────────────────────────────
   19. MODAL / DIALOG — .go-modal
   ────────────────────────────────────────────────────────────── */
.go-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--go-sp-5);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: go-fadeIn var(--go-t-normal) var(--go-ease);
}

.go-modal {
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  background: var(--go-white);
  border-radius: var(--go-radius-lg);
  box-shadow: var(--go-shadow-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: go-slideUp var(--go-t-normal) var(--go-ease);
}

.go-modal--sm { max-width: 400px; }
.go-modal--lg { max-width: 720px; }
.go-modal--xl { max-width: 960px; }

.go-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--go-sp-4) var(--go-sp-5);
  border-bottom: 1px solid var(--go-gray-200);
  flex-shrink: 0;
}

.go-modal-header h3 {
  font-size: var(--go-fs-lg);
  font-weight: 700;
  color: var(--go-gray-900);
}

.go-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--go-radius-circle);
  color: var(--go-gray-500);
  font-size: var(--go-fs-lg);
  cursor: pointer;
  transition: all var(--go-t-fast) var(--go-ease);
}

.go-modal-close:hover {
  background: var(--go-gray-100);
  color: var(--go-gray-800);
}

.go-modal-body {
  padding: var(--go-sp-5);
  overflow-y: auto;
  flex: 1;
}

.go-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--go-sp-3);
  padding: var(--go-sp-4) var(--go-sp-5);
  border-top: 1px solid var(--go-gray-200);
  flex-shrink: 0;
}

/* ── Confirm Dialog Variant ── */
.go-modal-confirm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto var(--go-sp-4);
  border-radius: var(--go-radius-circle);
  font-size: var(--go-fs-2xl);
}

.go-modal-confirm-icon--danger {
  background: rgba(220, 53, 69, 0.1);
  color: var(--go-danger);
}

.go-modal-confirm-icon--warning {
  background: rgba(255, 193, 7, 0.1);
  color: var(--go-warning);
}

.go-modal-confirm-icon--success {
  background: rgba(40, 167, 69, 0.1);
  color: var(--go-success);
}

/* ──────────────────────────────────────────────────────────────
   20. TOAST NOTIFICATIONS — .go-toast
   ────────────────────────────────────────────────────────────── */
.go-toast-container {
  position: fixed;
  bottom: var(--go-sp-5);
  right: var(--go-sp-5);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--go-sp-3);
  max-width: 380px;
  width: 100%;
  pointer-events: none;
}

.go-toast {
  display: flex;
  align-items: flex-start;
  gap: var(--go-sp-3);
  padding: var(--go-sp-3) var(--go-sp-4);
  background: var(--go-white);
  border-radius: var(--go-radius);
  box-shadow: var(--go-shadow-lg);
  border-left: 4px solid var(--go-gray-400);
  pointer-events: auto;
  animation: go-toastIn var(--go-t-normal) var(--go-ease);
  transition: opacity var(--go-t-normal) var(--go-ease),
              transform var(--go-t-normal) var(--go-ease);
}

.go-toast.go-toast--exiting {
  opacity: 0;
  transform: translateX(100%);
}

.go-toast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--go-radius-circle);
  font-size: var(--go-fs-sm);
}

.go-toast-content {
  flex: 1;
}

.go-toast-content strong {
  display: block;
  font-size: var(--go-fs-sm);
  font-weight: 600;
  color: var(--go-gray-900);
  margin-bottom: 2px;
}

.go-toast-content p {
  font-size: var(--go-fs-xs);
  color: var(--go-gray-600);
  line-height: 1.5;
}

.go-toast-close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--go-radius-circle);
  color: var(--go-gray-400);
  font-size: var(--go-fs-xs);
  cursor: pointer;
  transition: background var(--go-t-fast) var(--go-ease),
              color var(--go-t-fast) var(--go-ease);
}

.go-toast-close:hover {
  background: var(--go-gray-100);
  color: var(--go-gray-700);
}

/* Toast Variants */
.go-toast-success {
  border-left-color: var(--go-success);
}

.go-toast-success .go-toast-icon {
  background: rgba(40, 167, 69, 0.1);
  color: var(--go-success);
}

.go-toast-error {
  border-left-color: var(--go-danger);
}

.go-toast-error .go-toast-icon {
  background: rgba(220, 53, 69, 0.1);
  color: var(--go-danger);
}

.go-toast-info {
  border-left-color: var(--go-info);
}

.go-toast-info .go-toast-icon {
  background: rgba(23, 162, 184, 0.1);
  color: var(--go-info);
}

.go-toast-warning {
  border-left-color: var(--go-warning);
}

.go-toast-warning .go-toast-icon {
  background: rgba(255, 193, 7, 0.1);
  color: var(--go-warning);
}

/* ──────────────────────────────────────────────────────────────
   21. UTILITY CLASSES
   ────────────────────────────────────────────────────────────── */

/* ── Text ── */
.go-text-primary  { color: var(--go-primary) !important; }
.go-text-secondary{ color: var(--go-secondary) !important; }
.go-text-muted    { color: var(--go-gray-500) !important; }
.go-text-white    { color: var(--go-white) !important; }
.go-text-danger   { color: var(--go-danger) !important; }
.go-text-center   { text-align: center !important; }
.go-text-right    { text-align: right !important; }
.go-text-left     { text-align: left !important; }
.go-text-bold     { font-weight: 700 !important; }
.go-text-sm       { font-size: var(--go-fs-sm) !important; }
.go-text-xs       { font-size: var(--go-fs-xs) !important; }

/* ── Margin Bottom ── */
.go-mb-0 { margin-bottom: 0 !important; }
.go-mb-1 { margin-bottom: var(--go-sp-1) !important; }
.go-mb-2 { margin-bottom: var(--go-sp-2) !important; }
.go-mb-3 { margin-bottom: var(--go-sp-3) !important; }
.go-mb-4 { margin-bottom: var(--go-sp-4) !important; }
.go-mb-5 { margin-bottom: var(--go-sp-5) !important; }

/* ── Margin Top ── */
.go-mt-0 { margin-top: 0 !important; }
.go-mt-1 { margin-top: var(--go-sp-1) !important; }
.go-mt-2 { margin-top: var(--go-sp-2) !important; }
.go-mt-3 { margin-top: var(--go-sp-3) !important; }
.go-mt-4 { margin-top: var(--go-sp-4) !important; }
.go-mt-5 { margin-top: var(--go-sp-5) !important; }

/* ── Padding ── */
.go-p-0  { padding: 0 !important; }
.go-p-3  { padding: var(--go-sp-3) !important; }
.go-p-4  { padding: var(--go-sp-4) !important; }
.go-p-5  { padding: var(--go-sp-5) !important; }
.go-px-3 { padding-left: var(--go-sp-3) !important; padding-right: var(--go-sp-3) !important; }
.go-py-3 { padding-top: var(--go-sp-3) !important; padding-bottom: var(--go-sp-3) !important; }

/* ── Display ── */
.go-hidden    { display: none !important; }
.go-block     { display: block !important; }
.go-flex      { display: flex !important; }
.go-flex-col  { flex-direction: column !important; }
.go-flex-wrap { flex-wrap: wrap !important; }
.go-items-center   { align-items: center !important; }
.go-justify-center { justify-content: center !important; }
.go-justify-between{ justify-content: space-between !important; }
.go-gap-2 { gap: var(--go-sp-2) !important; }
.go-gap-3 { gap: var(--go-sp-3) !important; }
.go-gap-4 { gap: var(--go-sp-4) !important; }

/* ── Backgrounds ── */
.go-bg-primary { background-color: var(--go-primary) !important; }
.go-bg-accent  { background-color: var(--go-accent) !important; }
.go-bg-white   { background-color: var(--go-white) !important; }
.go-bg-dark    { background-color: var(--go-dark) !important; }

/* ── Borders ── */
.go-rounded    { border-radius: var(--go-radius) !important; }
.go-rounded-lg { border-radius: var(--go-radius-lg) !important; }
.go-border     { border: 1px solid var(--go-gray-200) !important; }

/* ── Width ── */
.go-w-full { width: 100% !important; }

/* ── Animation Classes ── */
.go-fade-in {
  animation: go-fadeIn var(--go-t-slow) var(--go-ease) both;
}

.go-slide-up {
  animation: go-slideUp var(--go-t-slow) var(--go-ease) both;
}

.go-fade-in-delay-1 { animation-delay: 100ms; }
.go-fade-in-delay-2 { animation-delay: 200ms; }
.go-fade-in-delay-3 { animation-delay: 300ms; }
.go-fade-in-delay-4 { animation-delay: 400ms; }

/* ── Scrollbar Styling ── */
.go-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.go-scrollbar::-webkit-scrollbar-track {
  background: var(--go-gray-100);
}

.go-scrollbar::-webkit-scrollbar-thumb {
  background: var(--go-gray-300);
  border-radius: var(--go-radius-pill);
}

.go-scrollbar::-webkit-scrollbar-thumb:hover {
  background: var(--go-gray-400);
}

/* ── Selection ── */
::selection {
  background: rgba(0, 113, 38, 0.2);
  color: var(--go-primary-dark);
}

/* ──────────────────────────────────────────────────────────────
   22. KEYFRAME ANIMATIONS
   ────────────────────────────────────────────────────────────── */
@keyframes go-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes go-fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes go-slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes go-slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes go-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes go-slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes go-spin {
  to { transform: rotate(360deg); }
}

@keyframes go-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

@keyframes go-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes go-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes go-toastIn {
  from {
    opacity: 0;
    transform: translateX(100%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes go-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* ── Skeleton Loading ── */
.go-skeleton {
  background: linear-gradient(
    90deg,
    var(--go-gray-200) 25%,
    var(--go-gray-100) 50%,
    var(--go-gray-200) 75%
  );
  background-size: 200% 100%;
  animation: go-shimmer 1.5s infinite;
  border-radius: var(--go-radius-sm);
}

.go-skeleton-text {
  height: 14px;
  margin-bottom: var(--go-sp-2);
  width: 100%;
}

.go-skeleton-text:last-child {
  width: 60%;
}

.go-skeleton-img {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.go-skeleton-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--go-radius-circle);
}

/* ──────────────────────────────────────────────────────────────
   23. ADMIN DASHBOARD STAT CARDS
   ────────────────────────────────────────────────────────────── */
.go-admin-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--go-sp-4);
  margin-bottom: var(--go-sp-5);
}

.go-admin-stat-card {
  display: flex;
  align-items: center;
  gap: var(--go-sp-4);
  padding: var(--go-sp-5);
  background: var(--go-white);
  border-radius: var(--go-radius);
  box-shadow: var(--go-shadow-sm);
  border: 1px solid var(--go-gray-200);
  transition: transform var(--go-t-normal) var(--go-ease),
              box-shadow var(--go-t-normal) var(--go-ease);
  position: relative;
  overflow: hidden;
}

.go-admin-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--go-primary), var(--go-secondary));
}

.go-admin-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--go-shadow-md);
}

.go-admin-stat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--go-fs-xl);
  border-radius: var(--go-radius);
  flex-shrink: 0;
}

.go-admin-stat-icon--primary {
  background: var(--go-accent);
  color: var(--go-primary);
}

.go-admin-stat-icon--info {
  background: rgba(23, 162, 184, 0.1);
  color: var(--go-info);
}

.go-admin-stat-icon--warning {
  background: rgba(255, 193, 7, 0.1);
  color: var(--go-warning);
}

.go-admin-stat-icon--danger {
  background: rgba(220, 53, 69, 0.1);
  color: var(--go-danger);
}

.go-admin-stat-info h4 {
  font-size: var(--go-fs-2xl);
  font-weight: 800;
  color: var(--go-gray-900);
  line-height: 1.2;
}

.go-admin-stat-info p {
  font-size: var(--go-fs-sm);
  color: var(--go-gray-500);
  margin-top: 2px;
}

/* ──────────────────────────────────────────────────────────────
   24. SEARCH & FILTER BAR
   ────────────────────────────────────────────────────────────── */
.go-search-bar {
  display: flex;
  align-items: center;
  gap: var(--go-sp-3);
  margin-bottom: var(--go-sp-4);
  flex-wrap: wrap;
}

.go-search-input-wrapper {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.go-search-input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--go-gray-400);
  font-size: var(--go-fs-sm);
  pointer-events: none;
}

.go-search-input-wrapper input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  font-size: var(--go-fs-sm);
  border: 2px solid var(--go-gray-300);
  border-radius: var(--go-radius-sm);
  background: var(--go-white);
  color: var(--go-gray-800);
  outline: none;
  transition: border-color var(--go-t-normal) var(--go-ease),
              box-shadow var(--go-t-normal) var(--go-ease);
}

.go-search-input-wrapper input:focus {
  border-color: var(--go-primary);
  box-shadow: 0 0 0 4px rgba(0, 113, 38, 0.1);
}

.go-filter-select {
  padding: 10px 36px 10px 14px;
  font-size: var(--go-fs-sm);
  border: 2px solid var(--go-gray-300);
  border-radius: var(--go-radius-sm);
  background: var(--go-white);
  color: var(--go-gray-700);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23495057' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--go-t-normal) var(--go-ease);
}

.go-filter-select:focus {
  border-color: var(--go-primary);
}

/* ──────────────────────────────────────────────────────────────
   25. BADGES & TAGS
   ────────────────────────────────────────────────────────────── */
.go-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: var(--go-fs-xs);
  font-weight: 600;
  border-radius: var(--go-radius-pill);
  white-space: nowrap;
}

.go-badge-primary {
  background: var(--go-accent);
  color: var(--go-primary);
}

.go-badge-success {
  background: rgba(40, 167, 69, 0.12);
  color: var(--go-success);
}

.go-badge-danger {
  background: rgba(220, 53, 69, 0.12);
  color: var(--go-danger);
}

.go-badge-warning {
  background: rgba(255, 193, 7, 0.12);
  color: #856404;
}

.go-badge-info {
  background: rgba(23, 162, 184, 0.12);
  color: var(--go-info);
}

/* ──────────────────────────────────────────────────────────────
   26. EMPTY STATE
   ────────────────────────────────────────────────────────────── */
.go-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--go-sp-8) var(--go-sp-5);
  text-align: center;
}

.go-empty-state i {
  font-size: 4rem;
  color: var(--go-gray-300);
  margin-bottom: var(--go-sp-4);
}

.go-empty-state h4 {
  font-size: var(--go-fs-lg);
  font-weight: 600;
  color: var(--go-gray-600);
  margin-bottom: var(--go-sp-2);
}

.go-empty-state p {
  font-size: var(--go-fs-sm);
  color: var(--go-gray-400);
  max-width: 360px;
}

/* ──────────────────────────────────────────────────────────────
   27. PROGRESS BAR
   ────────────────────────────────────────────────────────────── */
.go-progress {
  width: 100%;
  height: 8px;
  background: var(--go-gray-200);
  border-radius: var(--go-radius-pill);
  overflow: hidden;
}

.go-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--go-primary), var(--go-secondary));
  border-radius: var(--go-radius-pill);
  transition: width var(--go-t-slow) var(--go-ease);
}

/* ──────────────────────────────────────────────────────────────
   28. TABS
   ────────────────────────────────────────────────────────────── */
.go-tabs {
  display: flex;
  border-bottom: 2px solid var(--go-gray-200);
  gap: var(--go-sp-1);
  margin-bottom: var(--go-sp-5);
  overflow-x: auto;
}

.go-tab {
  padding: var(--go-sp-3) var(--go-sp-4);
  font-size: var(--go-fs-sm);
  font-weight: 500;
  color: var(--go-gray-600);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--go-t-fast) var(--go-ease);
}

.go-tab:hover {
  color: var(--go-primary);
  background: var(--go-accent);
  border-radius: var(--go-radius-sm) var(--go-radius-sm) 0 0;
}

.go-tab.active {
  color: var(--go-primary);
  font-weight: 600;
  border-bottom-color: var(--go-primary);
}

.go-tab-content {
  animation: go-fadeIn var(--go-t-normal) var(--go-ease);
}

/* ──────────────────────────────────────────────────────────────
   29. SWITCH / TOGGLE
   ────────────────────────────────────────────────────────────── */
.go-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.go-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.go-switch-slider {
  position: absolute;
  inset: 0;
  background: var(--go-gray-300);
  border-radius: var(--go-radius-pill);
  cursor: pointer;
  transition: background var(--go-t-normal) var(--go-ease);
}

.go-switch-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--go-white);
  border-radius: var(--go-radius-circle);
  box-shadow: var(--go-shadow-xs);
  transition: transform var(--go-t-normal) var(--go-ease-bounce);
}

.go-switch input:checked + .go-switch-slider {
  background: var(--go-primary);
}

.go-switch input:checked + .go-switch-slider::before {
  transform: translateX(20px);
}

.go-switch input:focus + .go-switch-slider {
  box-shadow: 0 0 0 3px rgba(0, 113, 38, 0.15);
}

/* ──────────────────────────────────────────────────────────────
   30. TOOLTIP
   ────────────────────────────────────────────────────────────── */
.go-tooltip {
  position: relative;
}

.go-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 12px;
  font-size: var(--go-fs-xs);
  font-weight: 500;
  color: var(--go-white);
  background: var(--go-gray-800);
  border-radius: var(--go-radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--go-t-fast) var(--go-ease),
              transform var(--go-t-fast) var(--go-ease),
              visibility var(--go-t-fast);
  z-index: 100;
}

.go-tooltip::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--go-gray-800);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--go-t-fast) var(--go-ease),
              visibility var(--go-t-fast);
  z-index: 100;
}

.go-tooltip:hover::after,
.go-tooltip:hover::before {
  opacity: 1;
  visibility: visible;
}

.go-tooltip:hover::after {
  transform: translateX(-50%) translateY(0);
}

/* ──────────────────────────────────────────────────────────────
   31. RESPONSIVE — MOBILE FIRST (< 768px is base)
   ────────────────────────────────────────────────────────────── */

/* ── Tablet ≥ 768px ── */
@media (min-width: 768px) {
  .go-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .go-carousel-slide img {
    height: 480px;
  }

  .go-section-title {
    font-size: var(--go-fs-3xl);
  }
}

/* ── Desktop ≥ 1024px ── */
@media (min-width: 1024px) {
  .go-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .go-admin-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .go-carousel-slide img {
    height: 540px;
  }
}

/* ── Wide ≥ 1200px ── */
@media (min-width: 1200px) {
  .go-section {
    padding-left: var(--go-sp-6);
    padding-right: var(--go-sp-6);
  }

  .go-carousel-slide img {
    height: 600px;
  }
}

/* ── Mobile ≤ 767px ── */
@media (max-width: 767px) {
  :root {
    --go-navbar-h: 60px;
  }

  /* Navbar mobile */
  .go-navbar {
    padding: 0 var(--go-sp-3);
  }

  .go-navbar-toggle {
    display: flex;
  }

  .go-navbar-menu {
    position: fixed;
    top: var(--go-navbar-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    padding: var(--go-sp-4);
    background: var(--go-white);
    border-top: 1px solid var(--go-gray-200);
    box-shadow: var(--go-shadow-lg);
    transform: translateX(100%);
    transition: transform var(--go-t-normal) var(--go-ease);
    overflow-y: auto;
    z-index: 999;
  }

  .go-navbar-menu.open {
    transform: translateX(0);
  }

  .go-nav-item {
    padding: var(--go-sp-3) var(--go-sp-4);
    font-size: var(--go-fs-base);
    border-radius: var(--go-radius-sm);
  }

  .go-nav-item.active::after {
    display: none;
  }

  .go-nav-item.active {
    background: var(--go-accent);
  }

  .go-dropdown-menu {
    position: static;
    transform: none;
    border: none;
    box-shadow: none;
    padding-left: var(--go-sp-4);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .go-dropdown-menu::before {
    display: none;
  }

  .go-dropdown.open .go-dropdown-menu {
    display: block;
  }

  /* Carousel */
  .go-carousel-slide img {
    height: 220px;
  }

  .go-carousel-prev,
  .go-carousel-next {
    width: 36px;
    height: 36px;
    font-size: var(--go-fs-sm);
  }

  .go-carousel-prev { left: 8px; }
  .go-carousel-next { right: 8px; }

  /* Sections */
  .go-section {
    padding: var(--go-sp-5) var(--go-sp-3);
  }

  .go-section-title {
    font-size: var(--go-fs-xl);
  }

  /* Footer */
  .go-visitor-stats {
    gap: var(--go-sp-3);
  }

  .go-visitor-stat {
    min-width: 120px;
    padding: var(--go-sp-3) var(--go-sp-4);
  }

  .go-stat-number {
    font-size: var(--go-fs-lg);
  }

  /* Contact Form */
  .go-contact-form {
    padding: var(--go-sp-4);
  }

  /* Pagination */
  .go-pagination {
    gap: var(--go-sp-1);
  }

  .go-page-btn {
    min-width: 34px;
    height: 34px;
    font-size: var(--go-fs-xs);
  }

  /* Admin Panel */
  .go-admin-sidebar {
    transform: translateX(-100%);
  }

  .go-admin-sidebar.open {
    transform: translateX(0);
  }

  .go-admin-main {
    margin-left: 0;
  }

  .go-admin-sidebar-toggle {
    display: flex;
  }

  .go-admin-content {
    padding: var(--go-sp-3);
  }

  .go-admin-topbar {
    padding: 0 var(--go-sp-3);
  }

  .go-admin-topbar h2 {
    font-size: var(--go-fs-base);
  }

  /* Admin Forms */
  .go-admin-form {
    padding: var(--go-sp-4);
  }

  .go-admin-form-actions {
    flex-direction: column;
  }

  .go-admin-form-actions .go-btn {
    width: 100%;
  }

  /* Table */
  .go-table {
    font-size: var(--go-fs-xs);
  }

  .go-table th,
  .go-table td {
    padding: 8px 10px;
  }

  /* Toast */
  .go-toast-container {
    left: var(--go-sp-3);
    right: var(--go-sp-3);
    bottom: var(--go-sp-3);
    max-width: 100%;
  }

  /* Modal */
  .go-modal-overlay {
    padding: var(--go-sp-3);
    align-items: flex-end;
  }

  .go-modal {
    border-radius: var(--go-radius-lg) var(--go-radius-lg) 0 0;
    max-height: 85vh;
  }

  .go-modal-footer {
    flex-direction: column;
  }

  .go-modal-footer .go-btn {
    width: 100%;
  }

  /* Login */
  .go-login-card {
    padding: var(--go-sp-5) var(--go-sp-4);
  }
}

/* ── Tablet admin tweaks ── */
@media (min-width: 768px) and (max-width: 1023px) {
  .go-admin-sidebar {
    width: 220px;
  }

  .go-admin-main {
    margin-left: 220px;
  }

  .go-admin-sidebar-item {
    padding: 10px var(--go-sp-4);
    font-size: var(--go-fs-xs);
  }
}

/* ──────────────────────────────────────────────────────────────
   32. PRINT STYLES
   ────────────────────────────────────────────────────────────── */
@media print {
  .go-navbar,
  .go-footer,
  .go-carousel,
  .go-toast-container,
  .go-admin-sidebar,
  .go-admin-topbar,
  .go-modal-overlay {
    display: none !important;
  }

  .go-admin-main {
    margin-left: 0 !important;
  }

  body {
    background: var(--go-white);
    color: #000;
  }

  .go-card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }

  .go-page-content {
    font-size: 12pt;
    line-height: 1.6;
  }
}

/* ──────────────────────────────────────────────────────────────
   33. REDUCED MOTION (Accessibility)
   ────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ──────────────────────────────────────────────────────────────
   34. FOCUS VISIBLE (Accessibility)
   ────────────────────────────────────────────────────────────── */
.go-nav-item:focus-visible,
.go-btn:focus-visible,
.go-page-btn:focus-visible,
.go-form-input:focus-visible,
.go-form-textarea:focus-visible,
.go-admin-sidebar-item:focus-visible,
.go-tab:focus-visible,
.go-dropdown-item:focus-visible,
.go-carousel-prev:focus-visible,
.go-carousel-next:focus-visible,
.go-carousel-dot:focus-visible,
.go-lang-switcher:focus-visible,
.go-modal-close:focus-visible {
  outline: 2px solid var(--go-primary);
  outline-offset: 2px;
}

/* ──────────────────────────────────────────────────────────────
   35. ADMIN SIDEBAR OVERLAY (mobile backdrop)
   ────────────────────────────────────────────────────────────── */
.go-admin-sidebar-overlay {
  display: none;
}

@media (max-width: 767px) {
  .go-admin-sidebar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 899;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--go-t-normal) var(--go-ease),
                visibility var(--go-t-normal);
  }

  .go-admin-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* ──────────────────────────────────────────────────────────────
   36. RICH TEXT EDITOR WRAPPER (Admin)
   ────────────────────────────────────────────────────────────── */
.go-editor-wrapper {
  border: 2px solid var(--go-gray-300);
  border-radius: var(--go-radius-sm);
  overflow: hidden;
  transition: border-color var(--go-t-normal) var(--go-ease),
              box-shadow var(--go-t-normal) var(--go-ease);
}

.go-editor-wrapper:focus-within {
  border-color: var(--go-primary);
  box-shadow: 0 0 0 4px rgba(0, 113, 38, 0.1);
}

.go-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: var(--go-sp-2);
  background: var(--go-gray-50);
  border-bottom: 1px solid var(--go-gray-200);
}

.go-editor-toolbar button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--go-radius-sm);
  color: var(--go-gray-600);
  font-size: var(--go-fs-sm);
  transition: all var(--go-t-fast) var(--go-ease);
}

.go-editor-toolbar button:hover {
  background: var(--go-gray-200);
  color: var(--go-gray-800);
}

.go-editor-toolbar button.active {
  background: var(--go-primary);
  color: var(--go-white);
}

.go-editor-body {
  min-height: 240px;
  padding: var(--go-sp-4);
  font-size: var(--go-fs-base);
  line-height: 1.8;
  color: var(--go-gray-800);
  outline: none;
}

/* ──────────────────────────────────────────────────────────────
   37. DARK MODE SUPPORT (Optional — triggered via class)
   ────────────────────────────────────────────────────────────── */
.go-app--dark {
  --go-white:      #1e1e2f;
  --go-gray-50:    #252540;
  --go-gray-100:   #2a2a48;
  --go-gray-200:   #35355a;
  --go-gray-300:   #44446a;
  --go-gray-400:   #5a5a80;
  --go-gray-500:   #7a7a9e;
  --go-gray-600:   #9a9abd;
  --go-gray-700:   #c0c0d8;
  --go-gray-800:   #ddddf0;
  --go-gray-900:   #f0f0ff;
  --go-accent:     rgba(0, 113, 38, 0.12);
  --go-accent-medium: rgba(0, 113, 38, 0.2);
  --go-glass-bg:   rgba(30, 30, 47, 0.85);
  --go-glass-border: rgba(255, 255, 255, 0.08);
}

/* ──────────────────────────────────────────────────────────────
   38. NEW: YEAR GRID, RESOURCE CHARTS, TABLE INPUTS, EXPORTS
   ────────────────────────────────────────────────────────────── */
.go-year-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--go-sp-4);
}

.go-year-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--go-sp-2);
  padding: var(--go-sp-5) var(--go-sp-3);
  background: var(--go-white);
  border: 1px solid var(--go-gray-200);
  border-radius: var(--go-radius-lg);
  text-decoration: none;
  color: var(--go-primary);
  font-weight: 700;
  font-size: var(--go-fs-lg);
  transition: transform var(--go-t-normal) var(--go-ease), box-shadow var(--go-t-normal) var(--go-ease);
}

.go-year-card i {
  font-size: var(--go-fs-2xl);
}

.go-year-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--go-shadow-green);
  border-color: var(--go-primary);
}

.go-resource-charts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--go-sp-5);
  margin-top: var(--go-sp-6);
}

.go-chart-card {
  background: var(--go-white);
  border: 1px solid var(--go-gray-200);
  border-radius: var(--go-radius-lg);
  padding: var(--go-sp-5);
}

.go-chart-card h3 {
  font-size: var(--go-fs-md);
  font-weight: 700;
  color: var(--go-gray-800);
  margin-bottom: var(--go-sp-4);
  text-align: center;
}

.go-table-input {
  width: 100%;
  min-width: 120px;
  padding: 6px 10px;
  font-size: var(--go-fs-sm);
}

.go-export-buttons {
  display: flex;
  gap: var(--go-sp-2);
}

.go-export-buttons a {
  text-decoration: none;
}

.go-quill-editor {
  background: var(--go-white);
  border-radius: 0 0 var(--go-radius) var(--go-radius);
}

.go-quill-editor .ql-editor {
  min-height: 220px;
  font-size: var(--go-fs-base, 1rem);
  font-family: inherit;
}

.go-quill-editor .ql-toolbar {
  border-radius: var(--go-radius) var(--go-radius) 0 0;
  background: var(--go-gray-100, #f8f9fa);
}
