/*
 * Alnilam Engineering - Pre-compiled CSS
 * This is a manually optimized CSS file for shared hosting without Node.js
 * Based on Tailwind CSS utility classes and Visual Identity
 */

/* ================================
   CSS Reset & Base
   ================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-family: Inter, Cairo, system-ui, -apple-system, sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

/* ================================
   CSS Variables (Visual Identity)
   ================================ */

:root {
  /* Primary Colors */
  --color-gold: #C89B1F;
  --color-deep-black: #0B0B0B;
  --color-pure-white: #FFFFFF;
  
  /* Secondary Colors */
  --color-charcoal: #1F1F1F;
  --color-soft-gray: #E5E5E5;
  
  /* Grays */
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;
  
  /* Semantic Colors */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.125rem;
  --radius: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --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);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 200ms ease;
  --transition-slow: 300ms ease;
}

/* ================================
   Typography
   ================================ */

.font-cairo { font-family: 'Cairo', sans-serif; }
.font-inter { font-family: 'Inter', sans-serif; }
.font-sans { font-family: Inter, Cairo, system-ui, sans-serif; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }

.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ================================
   Colors
   ================================ */

/* Text Colors */
.text-gold { color: var(--color-gold); }
.text-deep-black { color: var(--color-deep-black); }
.text-white { color: white; }
.text-gray-300 { color: var(--color-gray-300); }
.text-gray-400 { color: var(--color-gray-400); }
.text-gray-500 { color: var(--color-gray-500); }
.text-gray-600 { color: var(--color-gray-600); }
.text-gray-700 { color: var(--color-gray-700); }
.text-gray-800 { color: var(--color-gray-800); }
.text-gray-900 { color: var(--color-gray-900); }
.text-red-500 { color: #EF4444; }
.text-red-600 { color: #DC2626; }
.text-red-800 { color: #991B1B; }
.text-green-800 { color: #166534; }
.text-yellow-600 { color: #CA8A04; }
.text-yellow-800 { color: #854D0E; }
.text-blue-600 { color: #2563EB; }
.text-blue-800 { color: #1E40AF; }
.text-indigo-800 { color: #3730A3; }

/* Background Colors */
.bg-white { background-color: white; }
.bg-deep-black { background-color: var(--color-deep-black); }
.bg-charcoal { background-color: var(--color-charcoal); }
.bg-soft-gray { background-color: var(--color-soft-gray); }
.bg-gold { --tw-bg-opacity: 1; background-color: rgba(200, 155, 31, var(--tw-bg-opacity)); }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-gray-100 { background-color: var(--color-gray-100); }
.bg-gray-200 { background-color: var(--color-gray-200); }
.bg-red-50 { background-color: #FEF2F2; }
.bg-red-100 { background-color: #FEE2E2; }
.bg-red-500 { background-color: #EF4444; }
.bg-green-100 { background-color: #DCFCE7; }
.bg-yellow-100 { background-color: #FEF3C7; }
.bg-blue-100 { background-color: #DBEAFE; }
.bg-indigo-100 { background-color: #E0E7FF; }

.bg-opacity-10 { --tw-bg-opacity: 0.1; }
.bg-opacity-50 { --tw-bg-opacity: 0.5; }
.bg-opacity-90 { --tw-bg-opacity: 0.9; }

/* Border Colors */
.border-gold { border-color: var(--color-gold); }
.border-soft-gray { border-color: var(--color-soft-gray); }
.border-charcoal { border-color: var(--color-charcoal); }
.border-gray-200 { border-color: var(--color-gray-200); }
.border-gray-300 { border-color: var(--color-gray-300); }
.border-gray-400 { border-color: var(--color-gray-400); }
.border-green-400 { border-color: #4ADE80; }
.border-red-200 { border-color: #FECACA; }
.border-red-400 { border-color: #F87171; }
.border-red-500 { border-color: #EF4444; }
.border-white { border-color: white; }

/* ================================
   Layout
   ================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.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-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

/* ================================
   Spacing
   ================================ */

/* Margin */
.m-0 { margin: 0; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }

/* Padding */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pb-4 { padding-bottom: 1rem; }

/* ================================
   Sizing
   ================================ */

.w-0 { width: 0; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-full { width: 100%; }
.w-1\/3 { width: 33.333333%; }

.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-32 { height: 8rem; }
.h-full { height: 100%; }

.min-h-screen { min-height: 100vh; }
.min-h-\[70vh\] { min-height: 70vh; }

.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

/* ================================
   Positioning
   ================================ */

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-4 { top: 1rem; }
.left-4 { left: 1rem; }

.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ================================
   Borders
   ================================ */

.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-solid { border-style: solid; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

/* ================================
   Shadows
   ================================ */

.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* ================================
   Effects
   ================================ */

.opacity-10 { opacity: 0.1; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }

.whitespace-nowrap { white-space: nowrap; }

.object-cover { object-fit: cover; }

.rotate-180 { transform: rotate(180deg); }

/* ================================
   Transitions
   ================================ */

.transition-colors { 
  transition-property: color, background-color, border-color;
  transition-timing-function: ease;
  transition-duration: 200ms;
}

.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: ease;
  transition-duration: 200ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: ease;
  transition-duration: 200ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: ease;
  transition-duration: 200ms;
}

.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* ================================
   Hover States
   ================================ */

.hover\:bg-opacity-90:hover { opacity: 0.9; }
.hover\:bg-gray-50:hover { background-color: var(--color-gray-50); }
.hover\:bg-gray-100:hover { background-color: var(--color-gray-100); }
.hover\:bg-gray-200:hover { background-color: var(--color-gray-200); }
.hover\:bg-gray-300:hover { background-color: var(--color-gray-300); }
.hover\:bg-gray-600:hover { background-color: #4B5563; }
.hover\:bg-soft-gray:hover { background-color: var(--color-soft-gray); }
.hover\:bg-charcoal:hover { background-color: var(--color-charcoal); }
.hover\:bg-white:hover { background-color: white; }
.hover\:bg-deep-black:hover { background-color: var(--color-deep-black); }
.hover\:text-gold:hover { color: var(--color-gold); }
.hover\:text-white:hover { color: white; }
.hover\:text-gray-900:hover { color: var(--color-gray-900); }
.hover\:text-deep-black:hover { color: var(--color-deep-black); }
.hover\:text-blue-800:hover { color: #1E40AF; }
.hover\:text-red-800:hover { color: #991B1B; }
.hover\:border-gold:hover { border-color: var(--color-gold); }
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:scale-105:hover { transform: scale(1.05); }

.group:hover .group-hover\:text-gold { color: var(--color-gold); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }

/* ================================
   Focus States
   ================================ */

.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--color-gold); }
.focus\:ring-gold:focus { box-shadow: 0 0 0 2px var(--color-gold); }
.focus\:border-gold:focus { border-color: var(--color-gold); }
.focus\:outline-none:focus { outline: none; }
.focus\:not-sr-only:focus { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }

/* ================================
   Screen Reader
   ================================ */

.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;
}

/* ================================
   Line Clamp
   ================================ */

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ================================
   Aspect Ratio
   ================================ */

.aspect-video {
  aspect-ratio: 16 / 9;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

/* ================================
   Divide
   ================================ */

.divide-y > * + * {
  border-top-width: 1px;
}

.divide-gray-200 > * + * {
  border-color: var(--color-gray-200);
}

/* ================================
   Tables
   ================================ */

table {
  border-collapse: collapse;
  width: 100%;
}

/* ================================
   Responsive - Small Screens
   ================================ */

@media (min-width: 640px) {
  .sm\:inline { display: inline; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:items-center { align-items: center; }
  .sm\:flex-row { flex-direction: row; }
}

/* ================================
   Responsive - Medium Screens
   ================================ */

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .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\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:mt-0 { margin-top: 0; }
  .md\:h-16 { height: 4rem; }
}

/* ================================
   Responsive - Large Screens
   ================================ */

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:inline-flex { display: inline-flex; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:ml-0 { margin-left: 0; }
  .lg\:mr-0 { margin-right: 0; }
  .lg\:ml-64 { margin-left: 16rem; }
  .lg\:mr-64 { margin-right: 16rem; }
  .lg\:translate-x-0 { transform: translateX(0); }
}

/* ================================
   RTL Support
   ================================ */

[dir="rtl"] .rotate-180 { transform: rotate(0deg); }
[dir="ltr"] .rotate-180 { transform: rotate(180deg); }

/* ================================
   Arabic Text Improvements
   ================================ */

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 {
  line-height: 1.6;
  letter-spacing: 0;
}

[dir="rtl"] .leading-tight { line-height: 1.5; }
[dir="rtl"] .leading-relaxed { line-height: 1.8; }

/* ================================
   Decorative Gold Elements
   ================================ */

.gold-curve-decoration::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  opacity: 0.1;
}

.gold-wave-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23C89B1F' fill-opacity='0.05' d='M0,160L48,170.7C96,181,192,203,288,186.7C384,171,480,117,576,117.3C672,117,768,171,864,181.3C960,192,1056,160,1152,149.3C1248,139,1344,149,1392,154.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
}

.gold-dots-pattern {
  background-image: radial-gradient(circle, var(--color-gold) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
}

/* ================================
   Additional Utilities
   ================================ */

.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }

.blur-3xl { filter: blur(64px); }

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

.grayscale { filter: grayscale(100%); }
.grayscale-0 { filter: grayscale(0%); }
.hover\:grayscale-0:hover { filter: grayscale(0%); }

.resize-none { resize: none; }

/* Negative margins and transforms */
.-mt-16 { margin-top: -4rem; }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-x-1\/2 { transform: translateX(50%); }
.-translate-y-full { transform: translateY(-100%); }
.translate-y-full { transform: translateY(100%); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }

/* Pointer events */
.pointer-events-none { pointer-events: none; }

/* Additional sizing */
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-\[400px\] { height: 400px; }
.min-h-\[85vh\] { min-height: 85vh; }

/* Order */
.order-1 { order: 1; }
.order-2 { order: 2; }
.lg\:order-1 { order: 1; }
.lg\:order-2 { order: 2; }

/* Additional text sizes */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.15; }
.text-6xl { font-size: 3.75rem; line-height: 1.1; }

/* Leading improvements for Arabic */
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

/* Additional border radius */
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-bl-full { border-bottom-left-radius: 9999px; }
.rounded-br-full { border-bottom-right-radius: 9999px; }

/* Additional gaps */
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Shadow gold */
.shadow-gold\/20 { box-shadow: 0 10px 15px -3px rgba(200, 155, 31, 0.2); }

/* Additional spacing */
.p-3 { padding: 0.75rem; }
.p-5 { padding: 1.25rem; }
.p-10 { padding: 2.5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-3 { padding-bottom: 0.75rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.ml-4 { margin-left: 1rem; }
.mr-4 { margin-right: 1rem; }

/* Additional padding */
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.pl-12 { padding-left: 3rem; }
.pr-12 { padding-right: 3rem; }

/* Additional widths */
.w-1\.5 { width: 0.375rem; }
.w-20 { width: 5rem; }
.h-0\.5 { height: 0.125rem; }
.h-3 { height: 0.75rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }

/* Transform origin */
.origin-left { transform-origin: left; }
.origin-right { transform-origin: right; }

/* Scale X */
.scale-x-0 { transform: scaleX(0); }
.scale-x-100 { transform: scaleX(1); }
.group:hover .group-hover\:scale-x-100 { transform: scaleX(1); }

/* Whitespace */
.whitespace-pre-line { white-space: pre-line; }

/* Space Y utilities */
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Top positioning */
.top-28 { top: 7rem; }

/* Max height arbitrary */
.max-h-\[500px\] { max-height: 500px; }
.max-h-\[85vh\] { max-height: 85vh; }

/* Alpine x-cloak */
[x-cloak] { display: none !important; }

/* Additional margins */
.-mt-12 { margin-top: -3rem; }
.mt-16 { margin-top: 4rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }

/* Additional widths/heights */
.w-1 { width: 0.25rem; }
.w-3\.5 { width: 0.875rem; }
.h-1\.5 { height: 0.375rem; }
.h-3\.5 { height: 0.875rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }

/* Shadow variants */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-gold\/30 { box-shadow: 0 10px 15px -3px rgba(200, 155, 31, 0.3); }

/* Gap additions */
.gap-1\.5 { gap: 0.375rem; }

/* Padding additions */
.p-8 { padding: 2rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }

/* Additional color utilities */
.bg-green-500\/20 { background-color: rgba(34, 197, 94, 0.2); }
.bg-blue-500\/20 { background-color: rgba(59, 130, 246, 0.2); }
.border-green-500\/30 { border-color: rgba(34, 197, 94, 0.3); }
.border-blue-500\/30 { border-color: rgba(59, 130, 246, 0.3); }
.text-green-400 { color: rgb(74, 222, 128); }
.text-blue-400 { color: rgb(96, 165, 250); }
.bg-green-400 { background-color: rgb(74, 222, 128); }
.bg-blue-400 { background-color: rgb(96, 165, 250); }

/* Group hover translate */
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:-translate-x-1 { transform: translateX(-0.25rem); }

/* Flex shrink */
.flex-shrink-0 { flex-shrink: 0; }

/* Column span */
.col-span-full { grid-column: 1 / -1; }

/* Flex row reverse */
.flex-row-reverse { flex-direction: row-reverse; }

/* Space Y additions */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }

/* Placeholder color */
.placeholder-gray-400::placeholder { color: #9CA3AF; }

/* Text colors */
.text-green-600 { color: rgb(22, 163, 74); }
.text-green-700 { color: rgb(21, 128, 61); }
.text-red-700 { color: rgb(185, 28, 28); }

/* BG / Border alert colors */
.bg-green-500\/10 { background-color: rgba(34, 197, 94, 0.1); }
.border-green-500\/30 { border-color: rgba(34, 197, 94, 0.3); }
.bg-red-500\/10 { background-color: rgba(239, 68, 68, 0.1); }
.border-red-500\/30 { border-color: rgba(239, 68, 68, 0.3); }

/* Ring for focus */
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color, rgba(200,155,31,0.2)); }
.focus\:ring-gold\/20:focus { --tw-ring-color: rgba(200,155,31,0.2); }
.focus\:border-gold:focus { border-color: #C89B1F; }
.focus\:outline-none:focus { outline: none; }

/* Responsive w-96 */
@media (min-width: 1024px) {
  .lg\:w-96 { width: 24rem; }
}

/* width w-8 h-8 */
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }

/* Additional hover */
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }

/* ================================
   Admin Component Classes
   ================================ */

/* Card */
.card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background-color: #C89B1F;
  color: #0B0B0B;
  font-weight: 600;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: opacity 200ms ease, background-color 200ms ease;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background-color: #E5E7EB;
  color: #374151;
  font-weight: 600;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border: 1px solid #D1D5DB;
  transition: background-color 200ms ease;
  cursor: pointer;
}
.btn-secondary:hover { background-color: #D1D5DB; }

/* Form Input */
.form-input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background-color: white;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-input:focus {
  outline: none;
  border-color: #C89B1F;
  box-shadow: 0 0 0 2px rgba(200, 155, 31, 0.2);
}

/* Badges */
.badge-success {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #DCFCE7;
  color: #166534;
  border-radius: 9999px;
}
.badge-danger {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #FEE2E2;
  color: #991B1B;
  border-radius: 9999px;
}
.badge-warning {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #FEF3C7;
  color: #854D0E;
  border-radius: 9999px;
}
.badge-info {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #DBEAFE;
  color: #1E40AF;
  border-radius: 9999px;
}
.badge-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: rgba(200, 155, 31, 0.15);
  color: #C89B1F;
  border-radius: 9999px;
}
.badge-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #F3F4F6;
  color: #4B5563;
  border-radius: 9999px;
}

/* ================================
   Admin Layout & Sidebar Classes
   ================================ */

/* Sidebar responsive: visible on desktop */
@media (min-width: 1024px) {
  .lg\:ml-64 { margin-left: 16rem; }
  .lg\:translate-x-0 { transform: translateX(0) !important; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:hidden { display: none; }
}

/* Transform & Transition (sidebar animations) */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)); }
.translate-x-0 { transform: translateX(0); }
.-translate-x-full { transform: translateX(-100%); }
.translate-x-full { transform: translateX(100%); }
.transition-opacity { transition-property: opacity; transition-timing-function: ease; transition-duration: 200ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.ease-linear { transition-timing-function: linear; }
.opacity-0 { opacity: 0; }

/* ================================
   Admin Utility Classes
   ================================ */

/* Background colors */
.bg-black { background-color: #000000; }
.bg-yellow-500 { background-color: #EAB308; }
.bg-blue-500 { background-color: #3B82F6; }
.bg-green-500 { background-color: #22C55E; }
.bg-yellow-50 { background-color: #FEFCE8; }

/* Spacing */
.ml-0 { margin-left: 0; }
.mr-0 { margin-right: 0; }
.p-1 { padding: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.mr-auto { margin-right: auto; }
.ml-auto { margin-left: auto; }

/* Hover & Focus states */
.hover\:bg-gray-50:hover { background-color: #F9FAFB; }
.hover\:bg-red-50:hover { background-color: #FEF2F2; }
.hover\:bg-red-600:hover { background-color: #DC2626; }
.hover\:bg-gold:hover { background-color: #C89B1F; }
.focus\:ring-gold:focus { box-shadow: 0 0 0 3px rgba(200, 155, 31, 0.3); }
.focus\:border-gold:focus { border-color: #C89B1F; }
.focus\:ring-red-500:focus { box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.3); }

/* Border colors */
.border-red-300 { border-color: #FCA5A5; }

/* Negative positioning */
.-top-2 { top: -0.5rem; }
.-right-2 { right: -0.5rem; }

/* RTL variant */
[dir="rtl"] .rtl\:rotate-180 { transform: rotate(180deg); }

/* Interaction */
.cursor-pointer { cursor: pointer; }

/* Typography */
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================
   Print Styles
   ================================ */

@media print {
  .no-print { display: none !important; }
  header, footer, nav { display: none !important; }
  body { background: white !important; color: black !important; }
}

/* ================================
   Custom Modifiers for Missing Classes
   ================================ */

.bg-white\/75 { background-color: rgba(255, 255, 255, 0.75); }
.bg-deep-black\/95 { background-color: rgba(11, 11, 11, 0.95); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.border-gold\/20 { border-color: rgba(200, 155, 31, 0.2); }
.hover\:border-gold\/50:hover { border-color: rgba(200, 155, 31, 0.5); }

/* Social Media Backgrounds */
.bg-green-600 { background-color: #16a34a; }
.hover\:bg-green-700:hover { background-color: #15803d; }
.bg-blue-600 { background-color: #2563eb; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.bg-pink-600 { background-color: #db2777; }
.hover\:bg-pink-700:hover { background-color: #be185d; }


