/* Main CSS Styles for Hotel Panel */

/* CSS Variables - Color Palette */
:root {
  /* Ana Renkler - Modern Corporate Green Theme */
  --primary: #22C55E;
  --primary-dark: #16A34A;
  --primary-light: #4ADE80;
  --secondary: #FB923C;
  --accent: #FBBF24;

  /* Durum Renkleri */
  --success: #22C55E;
  --warning: #FB923C;
  --danger: #EF4444;
  --info: #3B82F6;

  /* Nötr Renkler */
  --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;

  /* Arka Plan */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FFFFFF;
  --bg-card: #FFFFFF;

  /* Metin */
  --text-primary: #111827;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
}

/* Dark Mode - DISABLED */
/* [data-theme="dark"] {
  --bg-primary: #111827;
  --bg-secondary: #1F2937;
  --bg-card: #1F2937;
  --text-primary: #F9FAFB;
  --text-secondary: #D1D5DB;
  --text-muted: #9CA3AF;
} */

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Alpine.js Cloak */
[x-cloak] {
  display: none !important;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-primary);
  background-color: #FFFFFF;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* Dark Mode Scrollbar - DISABLED */
/* .dark ::-webkit-scrollbar-track {
  background: var(--gray-800);
}

.dark ::-webkit-scrollbar-thumb {
  background: var(--gray-600);
} */

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

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

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

/* Card Hover Effects */
.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Button Styles */
.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: #7C3AED;
  transform: translateY(-2px);
}

.btn-success {
  background-color: var(--success);
  color: white;
}

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

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

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

/* Form Styles */
.form-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.badge-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.badge-warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: #D97706;
}

.badge-danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: #DC2626;
}

.badge-info {
  background-color: rgba(59, 130, 246, 0.1);
  color: #2563EB;
}

/* Table Styles */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

.table th {
  text-align: left;
  font-weight: 600;
  color: var(--text-secondary);
  background-color: var(--bg-secondary);
  padding: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.table tbody tr:hover {
  background-color: var(--bg-secondary);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: var(--bg-card);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.25rem;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

/* Loading Spinner */
.spinner {
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

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

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

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

/* Sidebar Custom Styles */
aside {
  transition: width 0.3s ease;
}

aside::-webkit-scrollbar {
  width: 4px;
}

/* Header Search Input */
.search-input {
  min-width: 240px;
}

/* Notification Dot */
.notification-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background-color: var(--danger);
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
}

/* Profile Dropdown */
.profile-dropdown {
  min-width: 200px;
}

/* Dashboard Card Effects */
.dashboard-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.dashboard-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Chart Container */
.chart-container {
  position: relative;
  height: 300px;
  width: 100%;
}

/* Responsive Breakpoints */
@media (max-width: 639px) {
  .container {
    padding: 0 0.5rem;
  }

  .hide-mobile {
    display: none;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .container {
    padding: 0 0.75rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
}

/* Print Styles */
@media print {
  aside,
  header {
    display: none;
  }

  main {
    margin: 0;
    padding: 0;
  }
}

/* Focus Visible for Accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Custom Checkbox */
input[type="checkbox"] {
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.25rem;
  background-color: var(--bg-primary);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

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

input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.875rem;
}

/* Tooltip */
.tooltip {
  position: relative;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gray-900);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  margin-bottom: 0.25rem;
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Custom Select */
.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select select {
  appearance: none;
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
}

.custom-select::after {
  content: '▼';
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-secondary);
  font-size: 0.75rem;
}

/* ========== MODERN CORPORATE UI ENHANCEMENTS ========== */

/* Glass Morphism Effects */
.glass-card {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}

.glass-card-dark {
  background: #1F2937;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid #374151;
}

/* Premium Gradient Backgrounds */
.gradient-green-orange {
  background: linear-gradient(135deg, #22C55E 0%, #FB923C 100%);
}

.gradient-green-yellow {
  background: linear-gradient(135deg, #22C55E 0%, #FBBF24 100%);
}

.gradient-overlay {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
}

/* Shimmer Effect */
.shimmer {
  position: relative;
  overflow: hidden;
}

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

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Premium Card Hover Effects */
.premium-card {
  background: #FFFFFF;
  border-radius: 0.625rem;
  padding: 0.875rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #22C55E 0%, #FB923C 50%, #FBBF24 100%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.premium-card:hover::before {
  transform: translateX(0);
}

.premium-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 16px rgba(34, 197, 94, 0.12);
}

/* Icon Animations */
.icon-float {
  animation: float 3s ease-in-out infinite;
}

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

.icon-pulse {
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Badge Premium Styles */
.badge-premium {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: white;
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 1px 4px rgba(34, 197, 94, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.badge-featured {
  background: linear-gradient(135deg, #FB923C 0%, #FBBF24 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(251, 146, 60, 0.3);
}

/* Stat Counter Animation */
.stat-number {
  font-size: 0.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Progress Bar */
.progress-bar {
  height: 0.5rem;
  background-color: var(--gray-200);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #22C55E 0%, #FB923C 100%);
  border-radius: 9999px;
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: progressShimmer 1.5s infinite;
}

@keyframes progressShimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #F0FDF4 0%, #FEF3C7 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(251, 146, 60, 0.08) 0%, transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
}

/* Blur Background Pattern */
.blur-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

.blur-bg-green {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.6) 0%, rgba(34, 197, 94, 0.2) 50%, transparent 100%);
}

.blur-bg-orange {
  background: radial-gradient(circle, rgba(251, 146, 60, 0.6) 0%, rgba(251, 146, 60, 0.2) 50%, transparent 100%);
}

.blur-bg-yellow {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.6) 0%, rgba(251, 191, 36, 0.2) 50%, transparent 100%);
}

/* Button Glow Effect */
.btn-glow {
  position: relative;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: white;
  padding: 0.3rem 0.875rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 6px rgba(34, 197, 94, 0.2);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #22C55E, #FB923C);
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(8px);
}

.btn-glow:hover::before {
  opacity: 0.7;
}

/* Modern Typography */
.heading-gradient {
  background: linear-gradient(135deg, #22C55E 0%, #FB923C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* Sidebar Modern Style */
.sidebar-modern {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(34, 197, 94, 0.1);
}

/* Footer Styles */
.footer-modern {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #22C55E 0%, #FB923C 50%, #FBBF24 100%);
}

/* Newsletter Input */
.newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Social Icons */
.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: #22C55E;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.25);
}

/* ========== ADDITIONAL PREMIUM ANIMATIONS ========== */

/* Blob Animation for Hero Section */
@keyframes blob {
  0%, 100% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

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

/* Fade Up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeUp {
  animation: fadeUp 0.6s ease-out;
}

/* Scale In Animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Rotate Animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-rotate {
  animation: rotate 2s linear infinite;
}

/* Slide In from Right */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Slide In from Bottom */
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slideInBottom {
  animation: slideInFromBottom 0.6s ease-out;
}

/* Wiggle Animation */
@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(3deg);
  }
}

.animate-wiggle {
  animation: wiggle 0.5s ease-in-out;
}

.hover-wiggle:hover {
  animation: wiggle 0.5s ease-in-out;
}

/* Heartbeat Animation */
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
}

.animate-heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite;
}

/* Ripple Effect */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.ripple-effect {
  position: relative;
  overflow: hidden;
}

.ripple-effect::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  animation: ripple 0.6s ease-out;
}

/* Glow Pulse Animation */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.5),
                0 0 10px rgba(34, 197, 94, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.8),
                0 0 30px rgba(34, 197, 94, 0.6);
  }
}

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

/* Text Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.text-gradient-animate {
  background: linear-gradient(90deg, #22C55E, #FB923C, #FBBF24, #22C55E);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

/* Stagger Animation Delays */
.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

.stagger-4 {
  animation-delay: 0.4s;
}

.stagger-5 {
  animation-delay: 0.5s;
}

.stagger-6 {
  animation-delay: 0.6s;
}

/* Hover Lift Effect */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* Hover Glow Effect */
.hover-glow {
  transition: all 0.3s ease;
  position: relative;
}

.hover-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #22C55E, #FB923C);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: -1;
  filter: blur(20px);
}

.hover-glow:hover::before {
  opacity: 0.6;
}

/* Typewriter Effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.typewriter {
  overflow: hidden;
  border-right: 0.15em solid #22C55E;
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
}

/* Flip Animation */
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
  }
  100% {
    transform: perspective(400px) rotateY(360deg);
  }
}

.animate-flip {
  animation: flip 1s ease-in-out;
}

.hover-flip:hover {
  animation: flip 0.6s ease-in-out;
}

/* Swing Animation */
@keyframes swing {
  0%, 100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
}

.animate-swing {
  transform-origin: top center;
  animation: swing 1s ease-in-out;
}

/* Zoom Animation */
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

/* Blur to Focus Animation */
@keyframes blurToFocus {
  from {
    filter: blur(10px);
    opacity: 0;
  }
  to {
    filter: blur(0);
    opacity: 1;
  }
}

.animate-blurToFocus {
  animation: blurToFocus 0.8s ease-out;
}

/* Neon Glow Text */
.neon-text {
  text-shadow:
    0 0 7px #fff,
    0 0 10px #fff,
    0 0 21px #fff,
    0 0 42px #22C55E,
    0 0 82px #22C55E,
    0 0 92px #22C55E,
    0 0 102px #22C55E,
    0 0 151px #22C55E;
  animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow:
      0 0 7px #fff,
      0 0 10px #fff,
      0 0 21px #fff,
      0 0 42px #22C55E,
      0 0 82px #22C55E,
      0 0 92px #22C55E,
      0 0 102px #22C55E,
      0 0 151px #22C55E;
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

/* Loading Bar Animation */
@keyframes loadingBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.loading-bar {
  position: relative;
  overflow: hidden;
  background: var(--gray-200);
}

.loading-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #22C55E, transparent);
  animation: loadingBar 1.5s infinite;
}

/* ========== ENHANCED RESPONSIVE DESIGN ========== */

/* Touch-Friendly Elements */
@media (hover: none) and (pointer: coarse) {
  /* Touch devices */
  button,
  a,
  .btn,
  .premium-card {
    min-height: 44px;
    min-width: 44px;
  }

  /* Remove hover effects on touch devices */
  .hover-lift:hover {
    transform: none;
  }

  /* Larger touch targets */
  input,
  select,
  textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Mobile Optimization (max-width: 640px) */
@media (max-width: 640px) {
  /* Hero Section Mobile */
  .hero-section {
    padding: 1.5rem 1rem !important;
  }

  .hero-section h1 {
    font-size: 1.75rem !important;
    line-height: 1.2;
  }

  .hero-section p {
    font-size: 0.875rem !important;
  }

  /* Cards Mobile */
  .premium-card {
    padding: 0.625rem;
  }

  /* Stats Cards */
  .stat-number {
    font-size: 1.5rem;
  }

  /* Buttons Mobile */
  .btn-glow {
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
  }

  /* Footer Mobile */
  .footer-modern {
    padding: 1.5rem 1rem !important;
  }

  /* CTA Section Mobile */
  .relative.overflow-hidden.rounded-3xl {
    padding: 1.5rem 1rem !important;
  }

  /* Navigation Mobile */
  aside {
    position: fixed;
    z-index: 30;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  aside.mobile-open {
    transform: translateX(0);
  }

  /* Remove animations on mobile for better performance */
  .animate-fadeIn,
  .animate-fadeUp,
  .animate-slideInRight,
  .animate-slideInBottom {
    animation: none;
    opacity: 1;
    transform: none;
  }

  /* Optimize text sizes */
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  /* Reduce padding on mobile */
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  /* Stack elements on mobile */
  .flex.flex-row {
    flex-direction: column;
  }

  /* Full width buttons on mobile */
  .btn,
  button {
    width: 100%;
  }
}

/* Tablet Optimization (641px - 1023px) */
@media (min-width: 641px) and (max-width: 1023px) {
  /* Hero Section Tablet */
  .hero-section {
    padding: 2rem 1.5rem !important;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  /* Cards Tablet */
  .premium-card {
    padding: 0.75rem;
  }

  /* Grid adjustments */
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer Tablet */
  .footer-modern {
    padding: 2rem 1.5rem !important;
  }
}

/* Large Screens (1024px+) */
@media (min-width: 1024px) {
  /* Enhanced hover effects on desktop */
  .premium-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .premium-card:hover {
    transform: translateY(-4px) scale(1.01);
  }

  /* Sidebar animations */
  aside {
    animation: slideInLeft 0.5s ease-out;
  }

  /* Enhanced parallax effects */
  .hero-section {
    background-attachment: fixed;
  }
}

/* Extra Large Screens (1536px+) */
@media (min-width: 1536px) {
  .container {
    max-width: 1440px;
    padding: 0 2rem;
  }

  /* Larger text on big screens */
  .hero-section h1 {
    font-size: 4.5rem;
  }

  .hero-section p {
    font-size: 1.5rem;
  }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-section {
    padding: 1.5rem !important;
  }

  .hero-section h1 {
    font-size: 2rem !important;
  }

  /* Reduce vertical spacing in landscape */
  .mb-8 {
    margin-bottom: 1rem !important;
  }

  .py-8 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

/* Dark Mode Enhancements - DISABLED */
/* @media (prefers-color-scheme: dark) {
  .glass-card {
    background: #FFFFFF !important;
    border-color: #E5E7EB !important;
  }

  .premium-card {
    background: #FFFFFF !important;
  }
} */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-pulse,
  .animate-bounce,
  .animate-spin,
  .icon-float,
  .icon-pulse {
    animation: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .glass-card {
    background: rgba(255, 255, 255, 1);
    border: 2px solid #000;
  }

  .text-gray-600,
  .text-gray-700 {
    color: #000;
  }

  button,
  .btn {
    border: 2px solid currentColor;
  }
}

/* Print Styles Enhancement */
@media print {
  /* Hide decorative elements */
  .blur-bg,
  .shimmer,
  .glow-pulse,
  .animate-pulse,
  footer {
    display: none !important;
  }

  /* Optimize for print */
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  /* Page breaks */
  .premium-card,
  .glass-card {
    page-break-inside: avoid;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }
}

/* Accessibility Enhancements */

/* Focus styles for keyboard navigation */
*:focus-visible {
  outline: 3px solid #22C55E;
  outline-offset: 3px;
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #22C55E;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

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

/* Better link underlines */
a:not(.btn):not(.social-icon) {
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

/* Increased line height for readability */
p {
  line-height: 1.7;
}

/* Better form field visibility */
input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
  border-color: #22C55E;
}

/* Loading states */
.loading {
  pointer-events: none;
  opacity: 0.6;
  cursor: wait;
}

/* Error states */
.error {
  border-color: #EF4444 !important;
}

.error-message {
  color: #EF4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Success states */
.success {
  border-color: #22C55E !important;
}

.success-message {
  color: #22C55E;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ========== PREMIUM MODAL STYLES ========== */

/* Modal Backdrop Enhancement */
.modal-backdrop {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(17, 24, 39, 0.7);
}

/* Premium Modal Container */
.premium-modal {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(34, 197, 94, 0.1),
    0 0 60px rgba(34, 197, 94, 0.1);
}

/* Modal Header Gradient */
.modal-header-gradient {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  position: relative;
  overflow: hidden;
}

.modal-header-gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: modalShine 3s infinite;
}

@keyframes modalShine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

/* Form Field Enhancements */
.modal-input {
  background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
  border: 2px solid #E5E7EB;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-input:hover {
  border-color: #D1D5DB;
  background: #FFFFFF;
  transform: translateY(-1px);
}

.modal-input:focus {
  border-color: #22C55E;
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 4px rgba(34, 197, 94, 0.1),
    0 10px 15px -3px rgba(34, 197, 94, 0.1);
}

/* Section Divider Animation */
.section-divider {
  position: relative;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #22C55E 0%, #FB923C 50%, #FBBF24 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.section-divider:hover::after {
  transform: scaleX(1);
}

/* Modal Close Button */
.modal-close-btn {
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Form Label Highlight */
label {
  position: relative;
  display: inline-block;
}

label::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #22C55E;
  transition: width 0.3s ease;
}

label:hover::before {
  width: 30px;
}

/* ========== NOTIFICATION STYLES ========== */

/* Notification Card */
.notification-card {
  position: relative;
  animation: slideInRight 0.5s ease-out;
}

/* Notification Dismiss Animation */
@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.notification-dismiss {
  animation: slideOutRight 0.3s ease-out forwards;
}

/* Notification Progress Bar */
.notification-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, currentColor);
  animation: notificationProgress 5s linear forwards;
}

@keyframes notificationProgress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

/* Notification Icon Pulse */
.notification-icon {
  animation: notificationPulse 2s ease-in-out infinite;
}

@keyframes notificationPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

/* Notification Types - Enhanced */
.notification-warning {
  background: linear-gradient(135deg, #FEF3C7 0%, #FED7AA 100%);
  border-left: 4px solid #F59E0B;
}

.notification-danger {
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
  border-left: 4px solid #EF4444;
}

.notification-info {
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  border-left: 4px solid #3B82F6;
}

.notification-success {
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
  border-left: 4px solid #22C55E;
}