/* ============================================
   CSS VARIABLES & COLORS - GAAJ THEME
   ============================================ */
:root {
  /* GAAJ Primary Colors */
  --primary: #ff6b35;
  --primary-dark: #e55a24;
  --primary-light: #ffb399;
  --secondary: #fbbf24;
  --secondary-dark: #f59e0b;
  --accent: #1e3a8a;
  --accent-light: #3b82f6;
  
  /* Extended Palette */
  --gaaj-orange: #ff6b35;
  --gaaj-gold: #fbbf24;
  --gaaj-blue: #1e3a8a;
  --gaaj-navy: #0f172a;
  
  /* Grayscale */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Status Colors */
  --white: #fff;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #0ea5e9;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--gray-50);
  color: var(--gray-900);
  transition: color 0.15s, background-color 0.15s;
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   CONTAINER & RESPONSIVE GRID
   ============================================ */
.container {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ============================================
   ANIMATIONS & EFFECTS - GAAJ
   ============================================ */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(-20px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translate(20px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5rem);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
  }
  50% {
    box-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary);
  }
}

/* Animation Utility Classes */
.animate-slideIn {
  animation: slideIn 0.3s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 0.3s ease-out;
}

.animate-slideUp {
  animation: slideUp 0.4s ease-out;
}

.animate-slideDown {
  animation: slideDown 0.4s ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.animate-fadeIn {
  animation: fadeIn 0.3s ease-out;
}

.animate-fadeOut {
  animation: fadeOut 0.3s ease-out;
}

.animate-scaleIn {
  animation: scaleIn 0.3s ease-out;
}

.animate-shimmer {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

.animate-floatUp {
  animation: floatUp 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* ============================================
   HOVER EFFECTS & TRANSITIONS - GAAJ
   ============================================ */
.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

.group:hover .group-hover\:text-blue-600 {
  color: var(--primary);
}

/* Scale Effects */
.hover\:scale-105:hover {
  transform: scale(1.05);
  transition: transform var(--transition-base);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
  transition: transform var(--transition-base);
}

/* Lift Effects */
.hover\:shadow-lg:hover {
  box-shadow: var(--shadow-lg);
  transition: box-shadow var(--transition-base);
}

.hover\:shadow-xl:hover {
  box-shadow: var(--shadow-xl);
  transition: box-shadow var(--transition-base);
}

.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
  transition: transform var(--transition-base);
}

.hover\:-translate-y-2:hover {
  transform: translateY(-0.5rem);
  transition: transform var(--transition-base);
}

/* Color Transitions */
.hover\:text-primary:hover {
  color: var(--primary);
  transition: color var(--transition-base);
}

.hover\:text-secondary:hover {
  color: var(--secondary);
  transition: color var(--transition-base);
}

.hover\:bg-primary-dark:hover {
  background-color: var(--primary-dark);
  transition: background-color var(--transition-base);
}

/* Glow Effect on Hover */
.hover\:glow:hover {
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
  transition: box-shadow var(--transition-base);
}

/* Smooth Transitions */
.transition-all {
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-smooth {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
  transition-duration: 0.3s;
}

.duration-500 {
  transition-duration: 0.5s;
}

/* ============================================
   TEXT UTILITIES
   ============================================ */
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* ============================================
   HEADER & NAVIGATION - GAAJ
   ============================================ */
header {
  background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 2px solid var(--gray-100);
  transition: all var(--transition-base);
}

header.scrolled {
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.12);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform var(--transition-base);
}

header .logo:hover {
  transform: scale(1.05);
}

/* Navigation */
nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--gray-700);
  border-bottom: 3px solid transparent;
  transition: all var(--transition-base);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  position: relative;
}

nav a:hover {
  color: var(--primary);
  background-color: rgba(255, 107, 53, 0.05);
  border-bottom-color: var(--primary);
}

nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-700);
  transition: color var(--transition-base);
}

.menu-toggle:hover {
  color: var(--primary);
}

/* Header Search Bar */
.header-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  transition: all var(--transition-base);
}

.header-search:focus-within {
  background: var(--gray-50);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.header-search input {
  background: none;
  border: none;
  outline: none;
  width: 150px;
  color: var(--gray-900);
}

.header-search input::placeholder {
  color: var(--gray-500);
}

/* Header Icons */
.header-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--gray-700);
  transition: color var(--transition-base);
  transition: transform var(--transition-base);
}

.header-icon:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.header-icon-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--danger);
  color: var(--white);
  border-radius: var(--radius-full);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ============================================
   FOOTER - GAAJ THEME
   ============================================ */
footer {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gaaj-navy) 100%);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 4rem;
  border-top: 3px solid var(--primary);
  position: relative;
}

footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  animation: gradientShift 3s ease infinite;
  background-size: 200% 100%;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

footer h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

footer a {
  color: var(--gray-200);
  transition: color var(--transition-base);
}

footer a:hover {
  color: var(--primary);
}

footer p {
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

footer-divider p {
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* Footer Social Links */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 107, 53, 0.2);
  color: var(--primary);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================
   BUTTONS - GAAJ THEME
   ============================================ */
.btn {
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Primary Button - Orange */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #d04000 100%);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.95);
  box-shadow: var(--shadow-sm);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Secondary Button - Gold */
.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--gray-900);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, #d97706 100%);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: scale(0.95);
}

/* Accent Button - Blue */
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, #1e40af 100%);
  box-shadow: 0 0 20px rgba(30, 58, 138, 0.4);
  transform: translateY(-2px);
}

.btn-accent:active {
  transform: scale(0.95);
}

/* Light Button */
.btn-light {
  background: var(--gray-100);
  color: var(--gray-900);
  border: 2px solid var(--gray-200);
}

.btn-light:hover {
  background: var(--gray-200);
  border-color: var(--gray-300);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-ghost:hover {
  background: rgba(255, 107, 53, 0.1);
}

/* Danger Button */
.btn-danger {
  background: var(--danger);
  color: var(--white);
}

.btn-danger:hover {
  background: #dc2626;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
  transform: translateY(-2px);
}

/* Success Button */
.btn-success {
  background: var(--success);
  color: var(--white);
}

.btn-success:hover {
  background: #059669;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

/* Button Sizes */
.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
}

/* Button Block */
.btn-block {
  width: 100%;
}

/* Button with Icon */
.btn-icon {
  padding: 0.5rem;
  border-radius: var(--radius-full);
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   CARDS - GAAJ THEME
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-slow);
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.card:hover:before {
  left: 100%;
}

/* Card Variants */
.card-primary {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
  border-color: var(--primary-light);
}

.card-primary:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
}

.card-accent {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-color: var(--accent-light);
}

.card-accent:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

/* Card Header/Body/Footer */
.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  margin: -1.5rem -1.5rem 1rem -1.5rem;
}

.card-body {
  padding: 0;
}

.card-footer {
  padding: 1rem 0 0 0;
  border-top: 1px solid var(--gray-100);
  margin-top: 1rem;
}

/* Product Card */
.card-product {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-product-image {
  width: 100%;
  height: 200px;
  background: var(--gray-100);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  overflow: hidden;
  position: relative;
}

.card-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.card-product:hover .card-product-image img {
  transform: scale(1.05);
}

/* Card Hover Border */
.card-hover-border:hover {
  border-top: 3px solid var(--primary);
}

/* ============================================
   GRID LAYOUT
   ============================================ */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

/* ============================================
   FLEXBOX UTILITIES
   ============================================ */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

/* ============================================
   GAP & SPACING
   ============================================ */
.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* ============================================
   SIZING
   ============================================ */
.w-full {
  width: 100%;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   MARGINS
   ============================================ */
.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

/* ============================================
   PADDING
   ============================================ */
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
}

/* ============================================
   TEXT COLORS - GAAJ PALETTE
   ============================================ */
.text-gray-600 {
  color: var(--gray-600);
}

.text-gray-700 {
  color: var(--gray-700);
}

.text-gray-900 {
  color: var(--gray-900);
}

.text-primary {
  color: var(--primary);
}

.text-primary-dark {
  color: var(--primary-dark);
}

.text-primary-light {
  color: var(--primary-light);
}

.text-secondary {
  color: var(--secondary);
}

.text-secondary-dark {
  color: var(--secondary-dark);
}

.text-accent {
  color: var(--accent);
}

.text-accent-light {
  color: var(--accent-light);
}

.text-blue-600 {
  color: var(--primary);
}

.text-white {
  color: var(--white);
}

.text-success {
  color: var(--success);
}

.text-danger {
  color: var(--danger);
}

.text-warning {
  color: var(--warning);
}

.text-info {
  color: var(--info);
}

.text-transparent {
  color: transparent;
}

/* Gradient Text */
.bg-gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   BACKGROUND COLORS - GAAJ PALETTE
   ============================================ */
.bg-white {
  background: var(--white);
}

.bg-gray-50 {
  background: var(--gray-50);
}

.bg-gray-100 {
  background: var(--gray-100);
}

.bg-gray-800 {
  background: var(--gray-800);
}

.bg-gray-900 {
  background: var(--gray-900);
}

.bg-primary {
  background: var(--primary);
}

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

.bg-primary-dark {
  background: var(--primary-dark);
}

.bg-secondary {
  background: var(--secondary);
}

.bg-secondary-dark {
  background: var(--secondary-dark);
}

.bg-accent {
  background: var(--accent);
}

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

.bg-blue-50 {
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

.bg-blue-100 {
  background: #dbeafe;
}

.bg-blue-600 {
  background: var(--primary);
}

.bg-orange-50 {
  background: rgba(255, 107, 53, 0.05);
}

.bg-orange-100 {
  background: rgba(255, 107, 53, 0.1);
}

.bg-orange-600 {
  background: var(--primary);
}

.bg-purple-50 {
  background: #faf5ff;
}

.bg-purple-600 {
  background: var(--secondary);
}

.bg-green-600 {
  background: var(--success);
}

.bg-red-600 {
  background: var(--danger);
}

/* Gradient Backgrounds */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.bg-gradient-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

.bg-gradient-warm {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.bg-gradient-cool {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

/* ============================================
   BORDERS
   ============================================ */
.border {
  border: 1px solid var(--gray-100);
}

.border-t {
  border-top: 1px solid var(--gray-100);
}

.border-b {
  border-bottom: 1px solid var(--gray-100);
}

.border-2 {
  border: 2px solid var(--gray-300);
}

/* ============================================
   BORDER RADIUS
   ============================================ */
.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-t-md {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

/* ============================================
   SHADOWS
   ============================================ */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* ============================================
   TRANSITIONS
   ============================================ */
.transition-all {
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
  transition-duration: 0.3s;
}

.duration-500 {
  transition-duration: 0.5s;
}

/* ============================================
   FORM ELEMENTS - GAAJ THEME
   ============================================ */
input, textarea, select {
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  width: 100%;
  transition: all var(--transition-base);
  background: var(--white);
  color: var(--gray-900);
  font-family: inherit;
}

input::placeholder, textarea::placeholder {
  color: var(--gray-600);
  opacity: 1;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  background: linear-gradient(to bottom, var(--white) 0%, rgba(255, 107, 53, 0.02) 100%);
}

/* Form Group */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color var(--transition-base);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
  color: var(--primary);
}

/* Input Variants */
.input-primary {
  border-color: var(--primary);
}

.input-primary:focus {
  border-color: var(--primary-dark);
}

.input-success {
  border-color: var(--success);
}

.input-success:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.input-danger {
  border-color: var(--danger);
}

.input-danger:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Textarea */
textarea {
  resize: vertical;
  min-height: 100px;
}

/* Select */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

/* Checkbox & Radio */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  height: auto;
  margin-right: 0.5rem;
  border-radius: var(--radius-md);
  accent-color: var(--primary);
  cursor: pointer;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* File Input */
input[type="file"] {
  border: 2px dashed var(--gray-300);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

input[type="file"]:hover {
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.02);
}

/* Form Validation */
.form-error {
  display: block;
  color: var(--danger);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  animation: slideDown 0.3s ease-out;
}

.form-success {
  display: block;
  color: var(--success);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  nav {
    display: none;
  }

  header .container {
    flex-direction: column;
  }

  .container {
    padding: 0 1rem;
  }
}

/* Tablet & Up (min-width: 768px) */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:justify-between {
    justify-content: space-between;
  }
}

/* Desktop & Up (min-width: 1024px) */
@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:w-96 {
    width: 24rem;
  }

  .lg\:text-4xl {
    font-size: 2.25rem;
  }

  .lg\:text-7xl {
    font-size: 4.5rem;
  }
}

/* ============================================
   ALERTS, BADGES & TAGS - GAAJ
   ============================================ */
.alert {
  padding: 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  border-left: 4px solid;
  animation: slideDown 0.3s ease-out;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.alert-primary {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  color: var(--primary-dark);
  border-color: var(--primary);
}

.alert-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  color: #065f46;
  border-color: var(--success);
}

.alert-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  color: #7f1d1d;
  border-color: var(--danger);
}

.alert-warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
  color: #78350f;
  border-color: var(--warning);
}

.alert-info {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
  color: #164e63;
  border-color: var(--info);
}

.alert-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition-base);
}

.badge-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.badge-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--gray-900);
}

.badge-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
}

.badge-success {
  background: linear-gradient(135deg, var(--success) 0%, #047857 100%);
  color: var(--white);
}

.badge-danger {
  background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
  color: var(--white);
}

.badge-warning {
  background: linear-gradient(135deg, var(--warning) 0%, #d97706 100%);
  color: var(--white);
}

.badge-outline {
  background: transparent;
  border: 1px solid;
  color: var(--primary);
  border-color: var(--primary);
}

/* Badge Variants */
.badge-lg {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.badge-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

.badge-animated {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.badge:hover {
  transform: scale(1.05);
}

/* Tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  color: var(--gray-900);
  font-size: 0.875rem;
  border: 1px solid var(--gray-200);
}

.tag-primary {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.tag-close {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.tag-close:hover {
  opacity: 1;
}

/* ============================================
   MODAL & OVERLAY - GAAJ
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  max-width: 90%;
  max-height: 90vh;
  overflow: auto;
  animation: scaleIn 0.3s ease-out;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: color var(--transition-base);
}

.modal-close:hover {
  color: var(--gray-900);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* ============================================
   LOADING & SKELETON - GAAJ
   ============================================ */
.loader {
  border: 4px solid rgba(255, 107, 53, 0.2);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-200) 50%, var(--gray-100) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.skeleton-text {
  height: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
}

/* ============================================
   BREADCRUMB - GAAJ
   ============================================ */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.breadcrumb-item {
  color: var(--gray-600);
  transition: color var(--transition-base);
}

.breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--gray-400);
  margin: 0 0.25rem;
}

.breadcrumb-item.active {
  color: var(--gray-900);
  font-weight: 600;
}

/* ============================================
   PROGRESS BAR - GAAJ
   ============================================ */
.progress {
  width: 100%;
  height: 0.5rem;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
  position: relative;
}

.progress-bar:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}