﻿/* ============================================
   TrendGraphix - Main Stylesheet
   AI-Powered Real Estate Intelligence Platform
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================
   CSS Custom Properties (Variables)
   ============================================ */
:root {
    /* Brand Colors */
    --color-blue-50: #eff6ff;
    --color-blue-100: #dbeafe;
    --color-blue-300: #93c5fd;
    --color-blue-400: #60a5fa;
    --color-blue-600: #2563eb;
    --color-blue-700: #1d4ed8;
    --color-blue-800: #1e40af;
    --color-green-50: #f0fdf4;
    --color-green-100: #dcfce7;
    --color-green-400: #4ade80;
    --color-green-600: #16a34a;
    --color-green-700: #15803d;
    --color-orange-50: #fff7ed;
    --color-orange-100: #ffedd5;
    --color-orange-400: #fb923c;
    --color-orange-600: #ea580c;
    --color-orange-700: #c2410c;
    --color-purple-50: #faf5ff;
    --color-purple-100: #f3e8ff;
    --color-purple-600: #9333ea;
    --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;
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    /* Spacing Scale */
    --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;
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Reset and Base Styles
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--color-gray-900);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 0px solid var(--color-blue-600);
    outline-offset: 0px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-blue-600);
    color: white;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s;
}

    .skip-link: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: 0;
}

/* ============================================
   Background Colors
   ============================================ */
.bg-white {
    background-color: #ffffff;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-200 {
    background-color: #e5e7eb;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.bg-blue-100 {
    background-color: #dbeafe;
}

.bg-blue-500 {
    background-color: #3b82f6;
}

.bg-blue-600 {
    background-color: #2563eb;
}

.bg-blue-700 {
    background-color: #1d4ed8;
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.bg-green-400 {
    background-color: var(--color-green-400);
}

.bg-green-500 {
    background-color: #22c55e;
}

.bg-green-600 {
    background-color: #16a34a;
}

.bg-green-700 {
    background-color: var(--color-green-700);
}

.bg-purple-50 {
    background-color: var(--color-purple-50);
}

.bg-purple-100 {
    background-color: var(--color-purple-100);
}

.bg-purple-500 {
    background-color: #a855f7;
}

.bg-purple-600 {
    background-color: #9333ea;
}

.bg-orange-50 {
    background-color: var(--color-orange-50);
}

.bg-orange-100 {
    background-color: var(--color-orange-100);
}

.bg-orange-400 {
    background-color: var(--color-orange-400);
}

.bg-orange-500 {
    background-color: #f97316;
}

.bg-orange-600 {
    background-color: #ea580c;
}

.bg-orange-700 {
    background-color: var(--color-orange-700);
}

.bg-teal-600 {
    background-color: #0d9488;
}

.bg-pink-500 {
    background-color: #ec4899;
}

.bg-pink-600 {
    background-color: #db2777;
}

.bg-indigo-50 {
    background-color: #eef2ff;
}

.bg-indigo-100 {
    background-color: #e0e7ff;
}

.bg-indigo-500 {
    background-color: #6366f1;
}

.bg-indigo-600 {
    background-color: #4f46e5;
}

.bg-cyan-50 {
    background-color: #ecfeff;
}

.bg-cyan-100 {
    background-color: #cffafe;
}

.bg-cyan-500 {
    background-color: #06b6d4;
}

.bg-emerald-50 {
    background-color: #ecfdf5;
}

.bg-emerald-600 {
    background-color: #059669;
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.bg-amber-50 {
    background-color: #fffbeb;
}

.bg-red-50 {
    background-color: #fef2f2;
}

/* Background with opacity */
.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-white\/95 {
    background-color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   Text Colors
   ============================================ */
.text-white {
    color: #ffffff;
}

.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-900 {
    color: var(--color-gray-900);
}

.text-blue-100 {
    color: #dbeafe;
}

.text-blue-300 {
    color: #93c5fd;
}

.text-blue-400 {
    color: #60a5fa;
}

.text-blue-600 {
    color: #2563eb;
}

.text-blue-700 {
    color: #1d4ed8;
}

.text-green-600 {
    color: var(--color-green-600);
}

.text-green-700 {
    color: var(--color-green-700);
}

.text-purple-600 {
    color: var(--color-purple-600);
}

.text-orange-400 {
    color: var(--color-orange-400);
}

.text-orange-600 {
    color: var(--color-orange-600);
}

.text-orange-700 {
    color: #c2410c;
}

.text-pink-600 {
    color: #db2777;
}

.text-indigo-600 {
    color: #4f46e5;
}

.text-indigo-700 {
    color: #4338ca;
}

.text-cyan-600 {
    color: #0891b2;
}

.text-cyan-700 {
    color: #0e7490;
}

.text-emerald-700 {
    color: #047857;
}

.text-amber-700 {
    color: #b45309;
}

.text-yellow-400 {
    color: #facc15;
}

.text-slate-600 {
    color: #475569;
}

.text-slate-900 {
    color: #0f172a;
}

.text-red-700 {
    color: #c53030;
}

.fill-current {
    fill: currentColor;
}

/* ============================================
   Typography - Font Sizes
   ============================================ */
.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.1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

/* Font Weights */
.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;
}

/* Text alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Line height */
.leading-tight {
    line-height: 1.25;
}

.leading-normal {
    line-height: 1.5;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Font Types */
.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Font Styles */
.italic {
    font-style: italic;
}

/* ============================================
   Display
   ============================================ */
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline-flex {
    display: inline-flex;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

/* ============================================
   Flexbox
   ============================================ */
.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-grow {
    flex-grow: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

/* Gap */
.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

/* ============================================
   Grid
   ============================================ */
.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));
}

/* ============================================
   Spacing - Padding
   ============================================ */
.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.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;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.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-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pt-3 {
    padding-top: 0.75rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-12 {
    padding-top: 3rem;
}

.pt-20 {
    padding-top: 5rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pt-28 {
    padding-top: 7rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.pb-12 {
    padding-bottom: 3rem;
}

.pb-16 {
    padding-bottom: 4rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.pl-6 {
    padding-left: 1.5rem;
}

.pr-12 {
    padding-right: 3rem;
}

/* ============================================
   Spacing - Margin
   ============================================ */
.m-0 {
    margin: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-4 {
    margin-left: 1rem;
}

.ml-8 {
    margin-left: 2rem;
}

.mr-1 {
    margin-left: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}


.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.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-5 {
    margin-top: 1.25rem;
}


.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

/* ============================================
   Width & Height
   ============================================ */
.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-20 {
    width: 5rem;
}

.w-24 {
    width: 6rem;
}

.w-32 {
    width: 8rem;
}

.w-48 {
    width: 12rem;
}

.w-64 {
    width: 16rem;
}

.w-72 {
    width: 18rem;
}

.w-96 {
    width: 24rem;
}

.w-auto {
    width: auto;
}

.w-full {
    width: 100%;
}

.w-1\/3 {
    width: 33.333333%;
}

.w-2\/3 {
    width: 66.666667%;
}

.w-px {
    width: 1px;
}

.h-1 {
    height: 0.25rem;
}

.h-2 {
    height: 0.5rem;
}

.h-3 {
    height: 0.75rem;
}

.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-20 {
    height: 5rem;
}

.h-24 {
    height: 6rem;
}

.h-28 {
    height: 7rem;
}

.h-32 {
    height: 8rem;
}

.h-48 {
    height: 12rem;
}

.h-64 {
    height: 16rem;
}

.h-72 {
    height: 18rem;
}

.h-96 {
    height: 24rem;
}

.h-auto {
    height: auto;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.min-h-\[600px\] {
    min-height: 600px;
}

.min-h-screen {
    min-height: 100vh;
}

.max-w-xs {
    max-width: 20rem;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-full {
    max-width: 100%;
}

/* ============================================
   Positioning
   ============================================ */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-0 {
    top: 0;
}

.top-20 {
    top: 5rem;
}

.top-full {
    top: 100%;
}

.top-1\/2 {
    top: 50%;
}

.bottom-0 {
    bottom: 0;
}

.bottom-6 {
    bottom: 1.5rem;
}

.bottom-20 {
    bottom: 5rem;
}

.left-0 {
    left: 0;
}

.left-6 {
    left: 1.5rem;
}

.left-20 {
    left: 5rem;
}

.-left-6 {
    left: -1.5rem;
}

.right-0 {
    right: 0;
}

.right-6 {
    right: 1.5rem;
}

.-left-4 {
    left: -1rem;
}

.right-3 {
    right: 0.75rem;
}

.-right-4 {
    right: -1rem;
}

.-bottom-8 {
    bottom: -2rem;
}

.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;
}

/* ============================================
   Border
   ============================================ */
.border {
    border-width: 1px;
    border-style: solid;
}

.border-t {
    border-top: 1px solid;
}

.border-b {
    border-bottom: 1px solid;
}

.border-l {
    border-left: 1px solid;
}

.border-r {
    border-right: 1px solid;
}

.border-2 {
    border-width: 2px;
    border-style: solid;
}

.border-0 {
    border-width: 0;
}

.border-gray-100 {
    border-color: #f3f4f6;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.border-gray-800 {
    border-color: #1f2937;
}

.border-blue-200 {
    border-color: #bfdbfe;
}

.border-blue-600 {
    border-color: var(--color-blue-600);
}

.border-green-200 {
    border-color: #bbf7d0;
}

.border-purple-200 {
    border-color: #e9d5ff;
}

.border-orange-200 {
    border-color: #fed7aa;
}

.border-indigo-200 {
    border-color: #c7d2fe;
}

.border-cyan-200 {
    border-color: #a5f3fc;
}

.border-emerald-200 {
    border-color: #a7f3d0;
}

.border-amber-200 {
    border-color: #fde68a;
}

.border-red-200 {
    border-color: rgb(254 202 202);
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-white\/30 {
    border-color: rgba(255, 255, 255, 0.3);
}

.border-transparent {
    border-color: transparent;
}

/* Border Radius */
.rounded {
    border-radius: var(--radius-sm);
}

.rounded-md {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-2xl {
    border-radius: var(--radius-2xl);
}

.rounded-full {
    border-radius: var(--radius-full);
}

/* ============================================
   Shadow
   ============================================ */
.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: var(--shadow-2xl);
}

.shadow-none {
    box-shadow: none;
}

.shadow-blue-600\/30 {
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.shadow-blue-500\/30 {
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.shadow-green-500\/30 {
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3);
}

.shadow-purple-500\/30 {
    box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.3);
}

.shadow-orange-500\/30 {
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.shadow-pink-500\/30 {
    box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3);
}

.shadow-indigo-500\/30 {
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

/* ============================================
   Overflow
   ============================================ */
.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

.overflow-x-auto {
    overflow-x: auto;
}

.overflow-y-auto {
    overflow-y: auto;
}

/* ============================================
   Object Fit
   ============================================ */
.object-contain {
    object-fit: contain;
}

.object-cover {
    object-fit: cover;
}

.object-center {
    object-position: center;
}

/* ============================================
   Opacity
   ============================================ */
.opacity-0 {
    opacity: 0;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-100 {
    opacity: 1;
}

/* ============================================
   Filter & Backdrop
   ============================================ */
.blur-xl {
    filter: blur(24px);
}

.blur-3xl {
    filter: blur(64px);
}

.mix-blend-multiply {
    mix-blend-mode: multiply;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.backdrop-blur {
    backdrop-filter: blur(8px);
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

/* ============================================
   Whitespace
   ============================================ */
.whitespace-nowrap {
    white-space: nowrap;
}

/* ============================================
   Transitions
   ============================================ */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

/* ============================================
   Transforms
   ============================================ */
.transform {
    transform: translateX(0);
}

.translate-y-0 {
    transform: translateY(0);
}

.translate-y-1 {
    transform: translateY(0.25rem);
}

.-translate-y-1 {
    transform: translateY(-0.25rem);
}

/* ============================================
   Space Between Children
   ============================================ */
.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

/* ============================================
   Gradients
   ============================================ */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-blue-50 {
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.from-blue-100 {
    --tw-gradient-from: #dbeafe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
}

.from-blue-500 {
    --tw-gradient-from: #3b82f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.from-blue-600 {
    --tw-gradient-from: #2563eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
}

.from-green-50 {
    --tw-gradient-from: #f0fdf4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 253, 244, 0));
}

.from-green-500 {
    --tw-gradient-from: #22c55e;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 197, 94, 0));
}

.from-green-100 {
    --tw-gradient-from: #dcfce7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 252, 231, 0));
}

.from-purple-50 {
    --tw-gradient-from: #faf5ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0));
}

.from-purple-100 {
    --tw-gradient-from: #f3e8ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 232, 255, 0));
}

.from-purple-500 {
    --tw-gradient-from: #a855f7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0));
}

.from-orange-50 {
    --tw-gradient-from: #fff7ed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 247, 237, 0));
}

.from-orange-100 {
    --tw-gradient-from: #ffedd5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 237, 213, 0));
}

.from-orange-500 {
    --tw-gradient-from: #f97316;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0));
}

.from-pink-500 {
    --tw-gradient-from: #ec4899;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
}

.from-indigo-500 {
    --tw-gradient-from: #6366f1;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
}

.via-white {
    --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.to-blue-50 {
    --tw-gradient-to: #eff6ff;
}

.to-blue-100 {
    --tw-gradient-to: #dbeafe;
}

.to-blue-600 {
    --tw-gradient-to: #2563eb;
}

.to-green-50 {
    --tw-gradient-to: #f0fdf4;
}

.to-green-100 {
    --tw-gradient-to: #dcfce7;
}

.to-green-600 {
    --tw-gradient-to: #16a34a;
}

.to-green-600 {
    --tw-gradient-to: #16a34a;
}

.to-purple-100 {
    --tw-gradient-to: #f3e8ff;
}

.to-purple-600 {
    --tw-gradient-to: #9333ea;
}

.to-orange-100 {
    --tw-gradient-to: #ffedd5;
}

.to-orange-600 {
    --tw-gradient-to: #ea580c;
}

.to-red-50 {
    --tw-gradient-to: #fef2f2;
}

.to-emerald-50 {
    --tw-gradient-to: #ecfdf5;
}

.to-emerald-600 {
    --tw-gradient-to: #059669;
}

.to-indigo-50 {
    --tw-gradient-to: #eef2ff;
}

.to-indigo-600 {
    --tw-gradient-to: #4f46e5;
}

.to-cyan-600 {
    --tw-gradient-to: #0891b2;
}

.to-pink-600 {
    --tw-gradient-to: #db2777;
}

/* ============================================
   Hover States
   ============================================ */
.hover\:bg-gray-100:hover {
    background-color: var(--color-gray-100);
}

.hover\:bg-blue-50:hover {
    background-color: var(--color-blue-50);
}

.hover\:bg-blue-700:hover {
    background-color: var(--color-blue-700);
}

.hover\:bg-blue-800:hover {
    background-color: var(--color-blue-800);
}

.hover\:bg-green-700:hover {
    background-color: var(--color-green-700);
}

.hover\:bg-orange-700:hover {
    background-color: var(--color-orange-700);
}

.hover\:bg-white\/20:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hover\:text-white:hover {
    color: #ffffff;
}

.hover\:text-blue-300:hover {
    color: var(--color-blue-300);
}

.hover\:text-blue-400:hover {
    color: var(--color-blue-400);
}

.hover\:text-blue-600:hover {
    color: var(--color-blue-600);   
}

.hover\:text-blue-700:hover {
    color: var(--color-blue-700);
}

.hover\:border-blue-600:hover {
    border-color: #2563eb;
}

.hover\:shadow-lg:hover {
    box-shadow: var(--shadow-lg);
}

.hover\:shadow-xl:hover {
    box-shadow: var(--shadow-xl);
}

.hover\:shadow-2xl:hover {
    box-shadow: var(--shadow-2xl);
}

.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

/* Group hover */
.group {
    position: relative;
}

    .group:hover .group-hover\:translate-x-1 {
        transform: translateX(0.25rem);
    }

    .group:hover .group-hover\:opacity-100 {
        opacity: 1;
    }

/* ============================================
   Focus States
   ============================================ */
.focus\:outline-none:focus {
    outline: none;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px;
}

.focus\:ring-blue-600:focus {
    box-shadow: 0 0 0 2px var(--color-blue-600);
}

.focus\:border-blue-600:focus {
    border-color: #2563eb;
}

.focus\:ring-blue-200:focus {
    box-shadow: 0 0 0 3px rgba(191, 219, 254, 1);
}

.focus\:ring-blue-500:focus {
    box-shadow: 0 0 0 2px #3b82f6;
}

/* ============================================
   Responsive - SM (640px)
   ============================================ */
@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:block {
        display: block;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

/* ============================================
   Responsive - MD (768px)
   ============================================ */
@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .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\:gap-8 {
        gap: 2rem;
    }

    .md\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .md\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
}

/* ============================================
   Responsive - LG (1024px)
   ============================================ */
@media (min-width: 1024px) {
    .lg\:block {
        display: block;
    }

    .lg\:flex {
        display: flex;
    }

    .lg\:hidden {
        display: none;
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .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\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .lg\:col-span-1 {
        grid-column: span 1 / span 1;
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .lg\:text-left {
        text-align: left;
    }

    .lg\:p-8 {
        padding: 2rem;
    }

    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .lg\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .lg\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .lg\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .lg\:block {
        display: block;
    }

    .lg\:h-auto {
        height: auto;
    }

    .lg\:gap-12 {
        gap: 3rem;
    }

    .lg\:w-1\/2 {
        width: 50%;
    }
}

/* ============================================
   Responsive - XL (1280px)
   ============================================ */
@media (min-width: 1280px) {
    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .xl\:px-16 {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

/* ============================================
   Custom Component Styles
   ============================================ */

/* Hero Gradient Background */
.hero-gradient {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
}

/* CTA Section Gradient */
.bg-gradient-cta {
    background: linear-gradient(to right, #2563eb, #4f46e5);
}

/* Text Gradients */
.text-gradient-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-green {
    background: linear-gradient(135deg, #10B981 0%, #14B8A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-orange {
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 3D Card Effect */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

    .card-3d:hover {
        transform: rotateY(5deg) rotateX(5deg);
    }

/* Stats Counter Font */
.stats-counter {
    font-family: var(--font-display);
    font-weight: 700;
}

/* Dropdown Menu */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    padding-top: 0.5rem;
    margin-top: 0 !important;
}

    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 0;
        right: 0;
        height: 10px;
        background: transparent;
    }

/* Feature Card with Shimmer */
.feature-card {
    position: relative;
    overflow: hidden;
}

    .feature-card::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        bottom: -50%;
        left: -50%;
        background: linear-gradient( to bottom, rgba(229, 231, 235, 0), rgba(229, 231, 235, 0.3) 50%, rgba(229, 231, 235, 0) 100% );
        transform: rotateZ(60deg) translate(-5em, 7.5em);
        animation: shimmer 3s infinite;
    }

@keyframes shimmer {
    0% {
        transform: rotateZ(60deg) translate(-5em, 7.5em);
    }

    100% {
        transform: rotateZ(60deg) translate(25em, -20em);
    }
}

/* Solution Tabs */
.solution-tab {
    transition: all 0.3s ease;
    cursor: pointer;
}

    .solution-tab.active {
        background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
        color: white;
    }

.solution-content {
    display: none;
}

    .solution-content.active {
        display: block;
        animation: fadeIn 0.5s ease-in;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Ring Animation */
.pulse-ring {
    animation: pulse-ring 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Social Icon Hover */
.social-icon {
    transition: color 0.2s ease, transform 0.2s ease;
}

    .social-icon:hover {
        transform: translateY(-2px);
    }

/* ============================================
   Button Styles
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--color-blue-600);
    color: white;
}

    .btn-primary:hover {
        background-color: var(--color-blue-700);
    }

.btn-secondary {
    background-color: white;
    color: var(--color-gray-900);
    border: 1px solid var(--color-gray-200);
}

    .btn-secondary:hover {
        background-color: var(--color-gray-50);
    }

.btn-green {
    background-color: var(--color-green-600);
    color: white;
}

    .btn-green:hover {
        background-color: var(--color-green-700);
    }

.btn-orange {
    background-color: var(--color-orange-400);
    color: white;
}

    .btn-orange:hover {
        background-color: var(--color-orange-700);
    }

/* ============================================
   Form Styles
   ============================================ */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

    .form-input:focus {
        outline: none;
        border-color: var(--color-blue-600);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .form-input::placeholder {
        color: var(--color-gray-400);
    }

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

    .form-textarea:focus {
        outline: none;
        border-color: var(--color-blue-600);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    transition: border-color var(--transition-fast);
}

    .form-select:focus {
        outline: none;
        border-color: var(--color-blue-600);
    }

/* ============================================
   Card Styles
   ============================================ */
.card {
    background-color: white;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

    .card:hover {
        box-shadow: var(--shadow-2xl);
        transform: translateY(-4px);
    }

.card-body {
    padding: 2rem;
}

.card-footer {
    padding: 2rem;
    background-color: var(--color-gray-50);
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-gray-900);
    color: white;
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

    .cookie-banner.show {
        transform: translateY(0);
    }

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-blue-600);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 50;
    box-shadow: var(--shadow-lg);
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: var(--color-blue-700);
        transform: translateY(-4px);
    }

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid white;
    }

    .card {
        border: 2px solid var(--color-gray-900);
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .no-print,
    nav,
    footer,
    .cookie-banner,
    .back-to-top {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        text-decoration: underline;
    }

    .card {
        break-inside: avoid;
    }
}


/* Prose styles for content */
.prose {
    font-size: 1rem;
    line-height: 1.75;
}

    .prose p {
        margin-bottom: 1.25em;
    }

.prose-lg {
    font-size: 1.125rem;
    line-height: 1.777;
}

/* List styles */
.list-disc {
    list-style-type: disc;
}

/* ============================================
Testimonials
============================================ */
.testimonial-item {
    min-height: 340px;
}

/* ============================================
   Telerik Overrides
   ============================================ */


/* Make RadTextBox input look like .form-input */
.RadInput_Default .riTextBox.form-input,
.RadInput_Default .riTextBox.form-input:focus {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    border: 1px solid var(--color-gray-300) !important;
    border-radius: var(--radius-lg) !important;
    font-size: 1rem !important;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast) !important;
    box-shadow: none !important;
    background: #fff !important;
    color: var(--color-gray-900) !important;
    height:44px !important;
}

    .RadInput_Default .riTextBox.form-input:focus {
        border-color: var(--color-blue-600) !important;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
        outline: none !important;
    }

    .RadInput_Default .riTextBox.form-input::placeholder {
        color: var(--color-gray-400) !important;
    }

.RadInput_Default .riTextBox.form-input {
    font-family: var(--font-sans) !important;
    font-size: 1rem !important;
}
