/* ========================================
   TAN TEKSTIL - MODERN DESIGN SYSTEM 2026
   Premium, Elegant, Responsive Design
   ======================================== */

/* Google Fonts - Modern Typography */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   CSS VARIABLES - Modern Design Tokens
   ========================================== */
:root {
    /* Primary Brand Colors */
    --brand-primary: #EF7D00;
    --brand-primary-dark: #d96f00;
    --brand-primary-light: #ff9a3c;
    --brand-gradient: linear-gradient(135deg, #EF7D00 0%, #ff9a3c 100%);
    
    /* Dark Theme Colors */
    --dark-900: #0a0a0a;
    --dark-800: #111111;
    --dark-700: #1a1a1a;
    --dark-600: #2a2a2a;
    --dark-500: #3a3a3a;
    
    /* Light Theme Colors */
    --light-50: #fafafa;
    --light-100: #f5f5f5;
    --light-200: #eeeeee;
    --light-300: #e0e0e0;
    --light-400: #bdbdbd;
    
    /* Text Colors */
    --text-dark: #111111;
    --text-medium: #444444;
    --text-light: #666666;
    --text-muted: #888888;
    --text-white: #ffffff;
    
    /* Glass Effects */
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(255, 255, 255, 0.15);
    
    /* Modern Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(239, 125, 0, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
    
    /* Border Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    --radius-full: 9999px;
    
    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: 150ms var(--ease-smooth);
    --transition-normal: 300ms var(--ease-smooth);
    --transition-slow: 500ms var(--ease-smooth);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
}

/* ==========================================
   BASE STYLES - Modern Foundation
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--light-50);
    overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY - Modern Headings
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    font-weight: 800;
    letter-spacing: -0.03em;
}
h2 { 
    font-size: clamp(2rem, 4vw, 3.5rem); 
    font-weight: 700;
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 2.25rem); 
    font-weight: 600;
}
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
}

/* ==========================================
   MODERN BUTTONS
   ========================================== */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-modern:hover::before {
    opacity: 1;
}

.btn-primary-modern {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(239, 125, 0, 0.4);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 125, 0, 0.5);
    color: white;
}

.btn-outline-modern {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--light-300);
}

.btn-outline-modern:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-glass {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ==========================================
   MODERN CARDS
   ========================================== */
.card-modern {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-modern:hover::before {
    transform: scaleX(1);
}

/* Glass Card */
.card-glass {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-normal);
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section-modern {
    padding: var(--space-24) 0;
    position: relative;
}

.section-dark {
    background: var(--dark-800);
    color: white;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: white;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.75);
}

.section-gradient {
    background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-700) 100%);
    position: relative;
    overflow: hidden;
}

.section-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 125, 0, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-gradient::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239, 125, 0, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(239, 125, 0, 0.1), rgba(239, 125, 0, 0.05));
    color: var(--brand-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-dark .section-title {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   MODERN HERO SECTION
   ========================================== */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-900) 0%, #1a2744 50%, var(--dark-800) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(239, 125, 0, 0.15), transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(239, 125, 0, 0.1), transparent 50%);
    pointer-events: none;
}

/* Animated Background Pattern */
.hero-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: patternMove 30s linear infinite;
    pointer-events: none;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 80px 80px; }
}

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

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-6);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-title span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: var(--space-8);
}

/* ==========================================
   FEATURE CARDS - Modern Style
   ========================================== */
.feature-card-modern {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: var(--brand-gradient);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    transition: all var(--transition-normal);
}

.feature-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.feature-card-modern:hover::before {
    opacity: 1;
    width: 100%;
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: 2rem;
    transition: all var(--transition-normal);
}

.feature-icon-modern.orange {
    background: linear-gradient(135deg, rgba(239, 125, 0, 0.15), rgba(239, 125, 0, 0.05));
    color: var(--brand-primary);
}

.feature-icon-modern.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    color: #3b82f6;
}

.feature-icon-modern.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    color: #10b981;
}

.feature-icon-modern.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    color: #8b5cf6;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card-modern h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--text-dark);
}

.feature-card-modern p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

/* ==========================================
   GALLERY - Modern Grid
   ========================================== */
.gallery-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.gallery-item-modern {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.gallery-item-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.gallery-item-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.gallery-item-modern:hover::before {
    opacity: 1;
}

.gallery-item-modern img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    background: white;
    padding: var(--space-6);
    transition: transform var(--transition-slow);
}

.gallery-item-modern:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    z-index: 2;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item-modern:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--shadow-glow);
}

/* ==========================================
   STEP CARDS - Process Flow
   ========================================== */
.step-card-modern {
    text-align: center;
    padding: var(--space-8);
    position: relative;
}

.step-number-modern {
    width: 70px;
    height: 70px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
}

.step-card-modern h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.step-card-modern p {
    color: var(--text-light);
    margin: 0;
}

/* Connector Line */
.step-connector-modern {
    position: absolute;
    top: 35px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
    z-index: 1;
}

.step-connector-modern::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--brand-primary-light);
}

/* ==========================================
   FOOTER - Modern Design
   ========================================== */
.footer-modern {
    background: var(--dark-900);
    color: white;
    padding: var(--space-20) 0 var(--space-8);
}

.footer-brand {
    margin-bottom: var(--space-6);
}

.footer-brand img {
    height: 60px;
    margin-bottom: var(--space-4);
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-6);
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--brand-primary);
    padding-left: 10px;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--brand-gradient);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-8);
    margin-top: var(--space-12);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

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

.animate-float {
    animation: float 4s ease-in-out infinite;
}

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

/* Staggered animations */
.animate-stagger > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* ==========================================
   SCROLL REVEAL
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   LIGHTBOX - Modern Style
   ========================================== */
.lightbox-modern {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox-modern.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-modern img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
}

.lightbox-close {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--brand-primary);
    transform: rotate(90deg);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1200px) {
    :root {
        --space-24: 80px;
        --space-20: 64px;
        --space-16: 48px;
    }
}

@media (max-width: 992px) {
    :root {
        --space-24: 64px;
        --space-20: 48px;
        --space-16: 40px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
    
    .step-connector-modern {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --space-24: 48px;
        --space-20: 40px;
        --space-16: 32px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-item-modern img {
        height: 250px;
    }
    
    .btn-modern {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    :root {
        --space-24: 40px;
        --space-20: 32px;
        --space-16: 24px;
    }
    
    .feature-card-modern {
        padding: var(--space-6);
    }
    
    .feature-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .gallery-item-modern img {
        height: 200px;
        padding: var(--space-4);
    }
}

/* ==========================================
   UTILITIES
   ========================================== */
.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--brand-gradient);
}

.glass-effect {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.hover-lift {
    transition: transform var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-scale {
    transition: transform var(--transition-normal);
}

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

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* Selection */
::selection {
    background: var(--brand-primary);
    color: white;
}
