/**
 * Vanya Tours & Travels - Normal Standard CSS Stylesheet
 * Clean, Readable, Responsive & 100% Standalone Vanilla CSS.
 */

/* ==========================================================================
   1. ROOT VARIABLES (Color Palette & Standard Tokens)
   ========================================================================== */
:root {
    --brand-primary: #f97316;
    --brand-dark: #ea580c;
    --brand-light: #fff7ed;
    --brand-border: #fdba74;

    --navy-dark: #0f172a;
    --navy-black: #020617;
    --navy-card: #1e293b;
    --navy-border: #334155;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --emerald-green: #059669;
    --emerald-light: #ecfdf5;
    --emerald-border: #a7f3d0;

    --amber-gold: #f59e0b;
    --amber-light: #fffbeb;
    --amber-border: #fde68a;

    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-heading: 'Poppins', 'Plus Jakarta Sans', sans-serif;
    --font-code: ui-monospace, monospace;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 10px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 35px rgba(0,0,0,0.2);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
    font-family: var(--font-main);
    line-height: 1.5;
}

body {
    background-color: var(--slate-50);
    color: var(--slate-800);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 70px;
    font-size: 14px;
}

@media (min-width: 1024px) {
    body {
        padding-bottom: 0;
    }
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    border: none;
    background: transparent;
    outline: none;
}

button {
    cursor: pointer;
    user-select: none;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   3. STANDARD LAYOUT CONTAINERS & GRIDS
   ========================================================================== */
.max-w-7xl { max-width: 1280px; }
.max-w-5xl { max-width: 1024px; }
.max-w-4xl { max-width: 896px; }
.max-w-3xl { max-width: 768px; }
.max-w-2xl { max-width: 672px; }
.max-w-xl  { max-width: 576px; }
.max-w-lg  { max-width: 512px; }
.max-w-md  { max-width: 448px; }
.max-w-sm  { max-width: 384px; }
.max-w-xs  { max-width: 320px; }
.mx-auto   { margin-left: auto; margin-right: auto; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.hidden { display: none !important; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-start { justify-content: flex-start; }

.flex-1 { flex: 1 1 0%; }
.flex-\[1\.5\] { flex: 1.5 1.5 0%; }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.min-w-\[700px\] { min-width: 700px; }
.min-w-\[800px\] { min-width: 800px; }
.min-w-\[850px\] { min-width: 850px; }
.max-w-\[150px\] { max-width: 150px; }
.max-w-\[200px\] { max-width: 200px; }

.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)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }

.gap-0\.5 { gap: 2px; }
.gap-1 { gap: 4px; }
.gap-1\.5 { gap: 6px; }
.gap-2 { gap: 8px; }
.gap-2\.5 { gap: 10px; }
.gap-3 { gap: 12px; }
.gap-3\.5 { gap: 14px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-10 { gap: 40px; }
.gap-12 { gap: 48px; }

/* ==========================================================================
   4. NORMAL PADDING & MARGIN UTILITIES
   ========================================================================== */
.p-0 { padding: 0; }
.p-1 { padding: 4px; }
.p-1\.5 { padding: 6px; }
.p-2 { padding: 8px; }
.p-2\.5 { padding: 10px; }
.p-3 { padding: 12px; }
.p-3\.5 { padding: 14px; }
.p-4 { padding: 16px; }
.p-5 { padding: 20px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }
.p-10 { padding: 40px; }

.px-2 { padding-left: 8px; padding-right: 8px; }
.px-2\.5 { padding-left: 10px; padding-right: 10px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.px-3\.5 { padding-left: 14px; padding-right: 14px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-5 { padding-left: 20px; padding-right: 20px; }
.px-6 { padding-left: 24px; padding-right: 24px; }

.py-0\.5 { padding-top: 2px; padding-bottom: 2px; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.py-1\.5 { padding-top: 6px; padding-bottom: 6px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-2\.5 { padding-top: 10px; padding-bottom: 10px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-3\.5 { padding-top: 14px; padding-bottom: 14px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-6 { padding-top: 24px; padding-bottom: 24px; }
.py-10 { padding-top: 40px; padding-bottom: 40px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }

.pt-0 { padding-top: 0; }
.pt-0\.5 { padding-top: 2px; }
.pt-1 { padding-top: 4px; }
.pt-2 { padding-top: 8px; }
.pt-3 { padding-top: 12px; }
.pt-4 { padding-top: 16px; }
.pt-6 { padding-top: 24px; }
.pt-8 { padding-top: 32px; }

.pb-2 { padding-bottom: 8px; }
.pb-2\.5 { padding-bottom: 10px; }
.pb-3 { padding-bottom: 12px; }
.pb-4 { padding-bottom: 16px; }
.pb-12 { padding-bottom: 48px; }

.m-0 { margin: 0; }
.mt-0\.5 { margin-top: 2px; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }

.mb-0\.5 { margin-bottom: 2px; }
.mb-1 { margin-bottom: 4px; }
.mb-1\.5 { margin-bottom: 6px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }

.ml-1 { margin-left: 4px; }
.mr-1 { margin-right: 4px; }
.my-8 { margin-top: 32px; margin-bottom: 32px; }
.my-12 { margin-top: 48px; margin-bottom: 48px; }

.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 4px; }
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 6px; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 8px; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 12px; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 16px; }
.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 20px; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 24px; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 32px; }
.space-y-10 > :not([hidden]) ~ :not([hidden]) { margin-top: 40px; }
.space-y-12 > :not([hidden]) ~ :not([hidden]) { margin-top: 48px; }

.space-x-1 > :not([hidden]) ~ :not([hidden]) { margin-left: 4px; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 8px; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 12px; }

.divide-y > :not([hidden]) ~ :not([hidden]) { border-top: 1px solid var(--slate-700); }
.divide-slate-700\/60 > :not([hidden]) ~ :not([hidden]) { border-top-color: rgba(51, 65, 85, 0.6); }
.divide-slate-700\/80 > :not([hidden]) ~ :not([hidden]) { border-top-color: rgba(51, 65, 85, 0.8); }

/* ==========================================================================
   5. NORMAL TYPOGRAPHY CLASSES
   ========================================================================== */
.font-sans { font-family: var(--font-main); }
.font-display { font-family: var(--font-heading); }
.font-mono { font-family: var(--font-code); }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-xs { font-size: 12px; line-height: 16px; }
.text-sm { font-size: 14px; line-height: 20px; }
.text-base { font-size: 16px; line-height: 24px; }
.text-lg { font-size: 18px; line-height: 26px; }
.text-xl { font-size: 20px; line-height: 28px; }
.text-2xl { font-size: 24px; line-height: 32px; }
.text-3xl { font-size: 30px; line-height: 36px; }
.text-4xl { font-size: 36px; line-height: 40px; }
.text-5xl { font-size: 48px; line-height: 1.15; }
.text-6xl { font-size: 60px; line-height: 1.1; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.italic { font-style: italic; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   6. NORMAL COLORS & GRADIENTS
   ========================================================================== */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-transparent { color: transparent; }

.text-slate-100 { color: var(--slate-100); }
.text-slate-200 { color: var(--slate-200); }
.text-slate-300 { color: var(--slate-300); }
.text-slate-400 { color: var(--slate-400); }
.text-slate-500 { color: var(--slate-500); }
.text-slate-600 { color: var(--slate-600); }
.text-slate-700 { color: var(--slate-700); }
.text-slate-800 { color: var(--slate-800); }
.text-slate-900 { color: var(--slate-900); }
.text-slate-950 { color: var(--slate-950); }

.text-brand-300 { color: var(--brand-border); }
.text-brand-400 { color: #fb923c; }
.text-brand-500 { color: var(--brand-primary); }
.text-brand-600 { color: var(--brand-dark); }
.text-brand-700 { color: #c2410c; }
.text-brand-800 { color: #9a3412; }

.text-emerald-300 { color: #6ee7b7; }
.text-emerald-400 { color: #34d399; }
.text-emerald-500 { color: #10b981; }
.text-emerald-600 { color: var(--emerald-green); }
.text-emerald-700 { color: #047857; }
.text-emerald-800 { color: #065f46; }

.text-amber-200 { color: #fde68a; }
.text-amber-300 { color: #fcd34d; }
.text-amber-400 { color: #fbbf24; }
.text-amber-500 { color: var(--amber-gold); }
.text-amber-600 { color: #d97706; }
.text-amber-700 { color: #b45309; }
.text-amber-800 { color: #92400e; }
.text-amber-900 { color: #78350f; }
.text-amber-950 { color: #451a03; }

.text-sky-300 { color: #7dd3fc; }
.text-sky-400 { color: #38bdf8; }
.text-sky-500 { color: #0ea5e9; }

.text-rose-300 { color: #fda4af; }
.text-rose-400 { color: #fb7185; }
.text-rose-500 { color: #f43f5e; }

/* Backgrounds */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-transparent { background-color: transparent; }

.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-black\/75 { background-color: rgba(0, 0, 0, 0.75); }

.bg-slate-50 { background-color: var(--slate-50); }
.bg-slate-50\/80 { background-color: rgba(248, 250, 252, 0.8); }
.bg-slate-100 { background-color: var(--slate-100); }
.bg-slate-100\/80 { background-color: rgba(241, 245, 249, 0.8); }
.bg-slate-200 { background-color: var(--slate-200); }
.bg-slate-700 { background-color: var(--slate-700); }
.bg-slate-800 { background-color: var(--slate-800); }
.bg-slate-800\/60 { background-color: rgba(30, 41, 59, 0.6); }
.bg-slate-800\/80 { background-color: rgba(30, 41, 59, 0.8); }
.bg-slate-800\/90 { background-color: rgba(30, 41, 59, 0.9); }
.bg-slate-900 { background-color: var(--slate-900); }
.bg-slate-900\/60 { background-color: rgba(15, 23, 42, 0.6); }
.bg-slate-900\/80 { background-color: rgba(15, 23, 42, 0.8); }
.bg-slate-900\/95 { background-color: rgba(15, 23, 42, 0.95); }
.bg-slate-950 { background-color: var(--slate-950); }
.bg-slate-950\/70 { background-color: rgba(2, 6, 23, 0.7); }
.bg-slate-950\/80 { background-color: rgba(2, 6, 23, 0.8); }

.bg-brand-50 { background-color: var(--brand-light); }
.bg-brand-50\/80 { background-color: rgba(255, 247, 237, 0.8); }
.bg-brand-100 { background-color: #ffedd5; }
.bg-brand-500 { background-color: var(--brand-primary); }
.bg-brand-500\/10 { background-color: rgba(249, 115, 22, 0.1); }
.bg-brand-500\/15 { background-color: rgba(249, 115, 22, 0.15); }
.bg-brand-500\/20 { background-color: rgba(249, 115, 22, 0.2); }
.bg-brand-500\/30 { background-color: rgba(249, 115, 22, 0.3); }
.bg-brand-600 { background-color: var(--brand-dark); }
.bg-brand-950\/70 { background-color: rgba(67, 20, 7, 0.7); }

.bg-emerald-50 { background-color: var(--emerald-light); }
.bg-emerald-100 { background-color: #d1fae5; }
.bg-emerald-500 { background-color: #10b981; }
.bg-emerald-500\/10 { background-color: rgba(16, 185, 129, 0.1); }
.bg-emerald-500\/20 { background-color: rgba(16, 185, 129, 0.2); }
.bg-emerald-600 { background-color: var(--emerald-green); }
.bg-emerald-700 { background-color: #047857; }
.bg-emerald-950 { background-color: #022c22; }
.bg-emerald-950\/60 { background-color: rgba(2, 44, 34, 0.6); }

.bg-amber-50 { background-color: var(--amber-light); }
.bg-amber-100 { background-color: #fef3c7; }
.bg-amber-200 { background-color: #fde68a; }
.bg-amber-500 { background-color: var(--amber-gold); }
.bg-amber-500\/10 { background-color: rgba(245, 158, 11, 0.1); }
.bg-amber-500\/20 { background-color: rgba(245, 158, 11, 0.2); }
.bg-amber-600 { background-color: #d97706; }

.bg-sky-500\/20 { background-color: rgba(14, 165, 233, 0.2); }
.bg-rose-500\/20 { background-color: rgba(244, 63, 94, 0.2); }
.bg-rose-600\/20 { background-color: rgba(225, 29, 72, 0.2); }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops, #0f172a, #1e293b)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops, #0f172a, #1e293b)); }
.bg-gradient-to-tr { background-image: linear-gradient(to top right, var(--tw-gradient-stops, #ea580c, #f59e0b)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops, #0f172a, #1e293b)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops, rgba(0,0,0,0.8), transparent)); }

.from-slate-950 { --tw-gradient-from: var(--slate-950); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 6, 23, 0)); }
.from-slate-900 { --tw-gradient-from: var(--slate-900); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.from-brand-500 { --tw-gradient-from: var(--brand-primary); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0)); }
.from-brand-600 { --tw-gradient-from: var(--brand-dark); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 88, 12, 0)); }
.from-brand-950\/70 { --tw-gradient-from: rgba(67, 20, 7, 0.7); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-amber-500\/20 { --tw-gradient-from: rgba(245, 158, 11, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-black\/80 { --tw-gradient-from: rgba(0, 0, 0, 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-slate-950\/90 { --tw-gradient-from: rgba(2, 6, 23, 0.9); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }

.via-slate-900 { --tw-gradient-stops: var(--tw-gradient-from, #020617), var(--slate-900), var(--tw-gradient-to, #020617); }
.via-royal-navy { --tw-gradient-stops: var(--tw-gradient-from, #020617), #0f172a, var(--tw-gradient-to, #020617); }
.via-brand-500 { --tw-gradient-stops: var(--tw-gradient-from, #ea580c), #f97316, var(--tw-gradient-to, #f59e0b); }
.via-amber-300 { --tw-gradient-stops: var(--tw-gradient-from, #fb923c), #fcd34d, var(--tw-gradient-to, #f97316); }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from, rgba(0,0,0,0.8)), transparent, var(--tw-gradient-to, transparent); }
.via-black\/40 { --tw-gradient-stops: var(--tw-gradient-from, rgba(0,0,0,0.8)), rgba(0,0,0,0.4), var(--tw-gradient-to, transparent); }

.to-slate-950 { --tw-gradient-to: var(--slate-950); }
.to-slate-900 { --tw-gradient-to: var(--slate-900); }
.to-slate-800 { --tw-gradient-to: var(--slate-800); }
.to-brand-500\/20 { --tw-gradient-to: rgba(249, 115, 22, 0.2); }
.to-brand-600 { --tw-gradient-to: var(--brand-dark); }
.to-brand-700 { --tw-gradient-to: #c2410c; }
.to-amber-300 { --tw-gradient-to: #fcd34d; }
.to-amber-500 { --tw-gradient-to: var(--amber-gold); }
.to-orange-400 { --tw-gradient-to: #fb923c; }
.to-brand-950\/70 { --tw-gradient-to: rgba(67, 20, 7, 0.7); }
.to-transparent { --tw-gradient-to: transparent; }

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* ==========================================================================
   7. BORDERS & RADIUS
   ========================================================================== */
.border { border: 1px solid var(--slate-200); }
.border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom: 1px solid var(--slate-200); }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-t { border-top: 1px solid var(--slate-200); }

.border-transparent { border-color: transparent; }
.border-white { border-color: #ffffff; }
.border-slate-100 { border-color: var(--slate-100); }
.border-slate-200 { border-color: var(--slate-200); }
.border-slate-200\/80 { border-color: rgba(226, 232, 240, 0.8); }
.border-slate-200\/90 { border-color: rgba(226, 232, 240, 0.9); }
.border-slate-300 { border-color: var(--slate-300); }
.border-slate-700 { border-color: var(--slate-700); }
.border-slate-700\/60 { border-color: rgba(51, 65, 85, 0.6); }
.border-slate-700\/80 { border-color: rgba(51, 65, 85, 0.8); }
.border-slate-800 { border-color: var(--slate-800); }
.border-slate-800\/80 { border-color: rgba(30, 41, 59, 0.8); }
.border-slate-900 { border-color: var(--slate-900); }

.border-brand-200 { border-color: var(--brand-border); }
.border-brand-200\/60 { border-color: rgba(254, 215, 170, 0.6); }
.border-brand-300 { border-color: var(--brand-border); }
.border-brand-400 { border-color: #fb923c; }
.border-brand-500 { border-color: var(--brand-primary); }
.border-brand-500\/30 { border-color: rgba(249, 115, 22, 0.3); }
.border-brand-500\/40 { border-color: rgba(249, 115, 22, 0.4); }
.border-brand-500\/90 { border-color: rgba(249, 115, 22, 0.9); }

.border-emerald-200 { border-color: var(--emerald-border); }
.border-emerald-300 { border-color: var(--emerald-border); }
.border-emerald-300\/60 { border-color: rgba(110, 231, 183, 0.6); }
.border-emerald-400 { border-color: #34d399; }
.border-emerald-500 { border-color: var(--emerald-green); }
.border-emerald-500\/30 { border-color: rgba(16, 185, 129, 0.3); }
.border-emerald-500\/40 { border-color: rgba(16, 185, 129, 0.4); }

.border-amber-200 { border-color: var(--amber-border); }
.border-amber-200\/60 { border-color: rgba(253, 230, 138, 0.6); }
.border-amber-200\/80 { border-color: rgba(253, 230, 138, 0.8); }
.border-amber-300 { border-color: var(--amber-border); }
.border-amber-500 { border-color: var(--amber-gold); }
.border-amber-500\/30 { border-color: rgba(245, 158, 11, 0.3); }

.border-rose-500\/30 { border-color: rgba(244, 63, 94, 0.3); }
.border-rose-500\/40 { border-color: rgba(244, 63, 94, 0.4); }

.rounded-md { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-md); }
.rounded-xl { border-radius: var(--radius-lg); }
.rounded-2xl { border-radius: var(--radius-xl); }
.rounded-3xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }
.rounded-l-xl { border-top-left-radius: var(--radius-lg); border-bottom-left-radius: var(--radius-lg); }
.rounded-r-xl { border-top-right-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }

/* ==========================================================================
   8. SIZING, POSITIONS & SHADOWS
   ========================================================================== */
.min-h-screen { min-height: 100vh; }
.min-h-\[58px\] { min-height: 58px; }
.min-h-\[70vh\] { min-height: 70vh; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-1\.5 { width: 6px; }
.h-1\.5 { height: 6px; }
.w-2 { width: 8px; }
.h-2 { height: 8px; }
.w-4 { width: 16px; }
.h-4 { height: 16px; }
.w-5 { width: 20px; }
.h-5 { height: 20px; }
.w-6 { width: 24px; }
.h-6 { height: 24px; }
.w-8 { width: 32px; }
.h-8 { height: 32px; }
.w-10 { width: 40px; }
.h-10 { height: 40px; }
.w-12 { width: 48px; }
.h-12 { height: 48px; }
.w-14 { width: 56px; }
.h-14 { height: 56px; }
.w-16 { width: 64px; }
.h-16 { height: 64px; }
.w-20 { width: 80px; }
.h-20 { height: 80px; }
.w-80 { width: 320px; }
.h-80 { height: 320px; }
.w-96 { width: 384px; }
.h-96 { height: 384px; }
.h-15 { height: 60px; }
.h-48 { height: 192px; }

.aspect-\[16\/10\] { aspect-ratio: 16 / 10; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.top-2 { top: 8px; }
.top-2\.5 { top: 10px; }
.top-3 { top: 12px; }
.top-10 { top: 40px; }
.top-full { top: 100%; }
.bottom-0 { bottom: 0; }
.bottom-2 { bottom: 8px; }
.bottom-2\.5 { bottom: 10px; }
.bottom-3 { bottom: 12px; }
.bottom-6 { bottom: 24px; }
.bottom-10 { bottom: 40px; }
.bottom-20 { bottom: 80px; }
.left-0 { left: 0; }
.left-2 { left: 8px; }
.left-2\.5 { left: 10px; }
.left-3 { left: 12px; }
.left-4 { left: 16px; }
.left-10 { left: 40px; }
.right-0 { right: 0; }
.right-2 { right: 8px; }
.right-2\.5 { right: 10px; }
.right-3 { right: 12px; }
.right-6 { right: 24px; }
.right-10 { right: 40px; }

.-top-1 { top: -4px; }
.-right-1 { right: -4px; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-auto { overflow-x: auto; }

.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

.object-cover { object-fit: cover; }
.object-center { object-position: center; }

.shadow-xs { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.shadow-brand-500\/20 { box-shadow: 0 10px 15px rgba(249, 115, 22, 0.2); }
.shadow-brand-500\/25 { box-shadow: 0 10px 15px rgba(249, 115, 22, 0.25); }
.shadow-brand-500\/30 { box-shadow: 0 10px 15px rgba(249, 115, 22, 0.3); }

.opacity-0 { opacity: 0; }
.opacity-20 { opacity: 0.2; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.blur-3xl { filter: blur(64px); }
.backdrop-blur-xs { backdrop-filter: blur(4px); }
.backdrop-blur-sm { backdrop-filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

.mix-blend-luminosity { mix-blend-mode: luminosity; }
.brightness-90 { filter: brightness(0.9); }

.scale-105 { transform: scale(1.05); }
.translate-y-0 { transform: translateY(0); }
.translate-y-10 { transform: translateY(40px); }

.transition { transition: all 0.2s ease-in-out; }
.transition-all { transition: all 0.3s ease; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Interactive Hover States */
.hover\:bg-white:hover { background-color: #ffffff; }
.hover\:bg-slate-50:hover { background-color: var(--slate-50); }
.hover\:bg-slate-100:hover { background-color: var(--slate-100); }
.hover\:bg-slate-100\/80:hover { background-color: rgba(241, 245, 249, 0.8); }
.hover\:bg-slate-200:hover { background-color: var(--slate-200); }
.hover\:bg-slate-600:hover { background-color: var(--slate-600); }
.hover\:bg-slate-700:hover { background-color: var(--slate-700); }
.hover\:bg-slate-800:hover { background-color: var(--slate-800); }
.hover\:bg-brand-500:hover { background-color: var(--brand-primary); }
.hover\:bg-brand-600:hover { background-color: var(--brand-dark); }
.hover\:bg-emerald-100:hover { background-color: #d1fae5; }
.hover\:bg-emerald-500:hover { background-color: #10b981; }
.hover\:bg-emerald-700:hover { background-color: #047857; }
.hover\:bg-amber-100:hover { background-color: #fef3c7; }
.hover\:bg-amber-400:hover { background-color: #fbbf24; }
.hover\:bg-rose-600\/30:hover { background-color: rgba(225, 29, 72, 0.3); }
.hover\:bg-rose-600\/40:hover { background-color: rgba(225, 29, 72, 0.4); }

.hover\:text-white:hover { color: #ffffff; }
.hover\:text-slate-800:hover { color: var(--slate-800); }
.hover\:text-brand-400:hover { color: #fb923c; }
.hover\:text-brand-600:hover { color: var(--brand-dark); }
.hover\:text-amber-200:hover { color: #fde68a; }
.hover\:text-amber-300:hover { color: #fcd34d; }

.hover\:border-slate-300:hover { border-color: var(--slate-300); }
.hover\:border-brand-300:hover { border-color: var(--brand-border); }
.hover\:border-brand-400:hover { border-color: #fb923c; }
.hover\:border-brand-500\/50:hover { border-color: rgba(249, 115, 22, 0.5); }

.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:shadow-xl:hover { box-shadow: var(--shadow-xl); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px rgba(0,0,0,0.25); }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:underline:hover { text-decoration: underline; }

.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:text-brand-600 { color: var(--brand-dark); }
.group:hover .group-hover\:underline { text-decoration: underline; }

.active\:scale-95:active { transform: scale(0.95); }

.focus\:outline-none:focus { outline: none; }
.focus\:border-brand-500:focus { border-color: var(--brand-primary); }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2); }

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

@keyframes bounce {
    0%, 100% { transform: translateY(-10%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50% { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

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

/* Custom Form Elements */
input, select, textarea {
    color: inherit;
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
    cursor: pointer;
}

/* ==========================================================================
   9. RESPONSIVE MEDIA QUERIES (sm, md, lg, xl)
   ========================================================================== */

/* Extra Small (>= 375px) */
@media (min-width: 375px) {
    .xs\:inline { display: inline !important; }
    .xs\:text-4xl { font-size: 36px; line-height: 40px; }
}

/* Small Screens (>= 640px) */
@media (min-width: 640px) {
    .sm\:inline { display: inline !important; }
    .sm\:block { display: block !important; }
    .sm\:flex { display: flex !important; }
    .sm\:hidden { display: none !important; }
    .sm\:flex-row { flex-direction: row !important; }
    .sm\:flex-1 { flex: 1 1 0% !important; }
    .sm\:w-auto { width: auto !important; }
    .sm\:self-auto { align-self: auto !important; }
    .sm\:items-center { align-items: center !important; }

    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .sm\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
    .sm\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)) !important; }
    .sm\:grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)) !important; }

    .sm\:col-span-1 { grid-column: span 1 / span 1 !important; }
    .sm\:col-span-2 { grid-column: span 2 / span 2 !important; }
    .sm\:col-span-5 { grid-column: span 5 / span 5 !important; }

    .sm\:text-xs { font-size: 12px; line-height: 16px; }
    .sm\:text-sm { font-size: 14px; line-height: 20px; }
    .sm\:text-base { font-size: 16px; line-height: 24px; }
    .sm\:text-lg { font-size: 18px; line-height: 26px; }
    .sm\:text-xl { font-size: 20px; line-height: 28px; }
    .sm\:text-2xl { font-size: 24px; line-height: 32px; }
    .sm\:text-3xl { font-size: 30px; line-height: 36px; }
    .sm\:text-4xl { font-size: 36px; line-height: 40px; }
    .sm\:text-5xl { font-size: 48px; line-height: 1.15; }

    .sm\:h-12 { height: 48px; }
    .sm\:w-12 { width: 48px; }
    .sm\:h-20 { height: 80px; }
    .sm\:h-52 { height: 208px; }

    .sm\:p-3 { padding: 12px; }
    .sm\:p-4 { padding: 16px; }
    .sm\:p-5 { padding: 20px; }
    .sm\:p-6 { padding: 24px; }
    .sm\:p-8 { padding: 32px; }
    .sm\:p-10 { padding: 40px; }
    .sm\:px-6 { padding-left: 24px; padding-right: 24px; }
    .sm\:py-2 { padding-top: 8px; padding-bottom: 8px; }
    .sm\:py-2\.5 { padding-top: 10px; padding-bottom: 10px; }
    .sm\:py-10 { padding-top: 40px; padding-bottom: 40px; }
    .sm\:py-16 { padding-top: 64px; padding-bottom: 64px; }
    .sm\:pt-0 { padding-top: 0; }
    .sm\:pt-10 { padding-top: 40px; }
    .sm\:pb-16 { padding-bottom: 64px; }
    .sm\:mb-10 { margin-bottom: 40px; }
    .sm\:mb-12 { margin-bottom: 48px; }

    .sm\:gap-2 { gap: 8px; }
    .sm\:gap-3 { gap: 12px; }
    .sm\:gap-4 { gap: 16px; }
    .sm\:gap-6 { gap: 24px; }
    .sm\:gap-8 { gap: 32px; }

    .sm\:rounded-3xl { border-radius: var(--radius-2xl); }
    .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 12px; }
    .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 20px; }
    .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 24px; }
    .sm\:space-y-16 > :not([hidden]) ~ :not([hidden]) { margin-top: 64px; }
}

/* Medium Screens (>= 768px) */
@media (min-width: 768px) {
    .md\:inline { display: inline !important; }
    .md\:inline-block { display: inline-block !important; }
    .md\:flex { display: flex !important; }
    .md\:flex-row { flex-direction: row !important; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }

    .md\:text-left { text-align: left !important; }
    .md\:text-sm { font-size: 14px; line-height: 20px; }

    .md\:px-4 { padding-left: 16px; padding-right: 16px; }
    .md\:pr-4 { padding-right: 16px; }
    .md\:pl-4 { padding-left: 16px; }
    .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 12px; }

    .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { border-top-width: 0; }
    .md\:divide-x > :not([hidden]) ~ :not([hidden]) { border-left: 1px solid var(--slate-700); }
}

/* Large Screens (>= 1024px) */
@media (min-width: 1024px) {
    .lg\:hidden { display: none !important; }
    .lg\:flex { display: flex !important; }
    .lg\:inline { display: inline !important; }
    .lg\:flex-row { flex-direction: row !important; }
    .lg\:text-left { text-align: left !important; }
    .lg\:mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
    .lg\:justify-start { justify-content: flex-start !important; }

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

    .lg\:col-span-6 { grid-column: span 6 / span 6 !important; }

    .lg\:px-8 { padding-left: 32px; padding-right: 32px; }
    .lg\:py-16 { padding-top: 64px; padding-bottom: 64px; }
    .lg\:py-24 { padding-top: 96px; padding-bottom: 96px; }
    .lg\:pb-20 { padding-bottom: 80px; }
    .lg\:p-6 { padding: 24px; }
    .lg\:gap-8 { gap: 32px; }
    .lg\:gap-10 { gap: 40px; }

    .lg\:text-5xl { font-size: 48px; line-height: 1.15; }
}

/* Extra Large Screens (>= 1280px) */
@media (min-width: 1280px) {
    .xl\:text-sm { font-size: 14px; line-height: 20px; }
    .xl\:text-6xl { font-size: 60px; line-height: 1.1; }
    .xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 8px; }
}

/* Modal Dialog & Print Rules */
.modal-dialog-content {
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
}

.safe-bottom {
    padding-bottom: env(safe-area-inset-bottom, 12px);
}

/* ==========================================================================
   Fleet Showroom & Car Photo Card Enhancements
   ========================================================================== */
.car-card {
    background-color: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
    border-color: rgba(249, 115, 22, 0.35);
}

.car-photo-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--slate-900);
}

.car-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.car-card:hover .car-photo-img {
    transform: scale(1.05);
}

.car-photo-watermark {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: none;
}

.car-photo-watermark .brand-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--amber-gold);
}

.car-condition-box {
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    color: #78350f;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 11px;
    line-height: 1.45;
}

