/* ========================================
   COLLABRO PREMIUM DESIGN SYSTEM V2.0
   €300k Luxury Tech Aesthetic
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.0.0/css/flag-icons.min.css');

:root {
    /* PRIMARY - Deep Ocean Blue */
    --primary: #0A2E4D;
    --primary-light: #1A4870;
    --primary-dark: #051B2E;
    --primary-50: #E8F1F8;
    
    /* SECONDARY - Sunset Coral */
    --secondary: #FF6B35;
    --secondary-light: #FF8A5B;
    --secondary-dark: #E5532B;
    
    /* ACCENT - Golden Hour */
    --accent: #FFB347;
    --accent-light: #FFC870;
    --accent-dark: #E09A2E;
    
    /* NEUTRALS - Premium Gray Scale */
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* SEMANTIC COLORS */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* BASE */
    --white: #FFFFFF;
    --black: #000000;
    
    /* PREMIUM TYPOGRAPHY */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-heading: 'Poppins', -apple-system, sans-serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    
    /* PREMIUM SHADOWS - Multi-layered depth */
    --shadow-sm: 0 1px 2px 0 rgba(10, 46, 77, 0.05);
    --shadow-md: 
        0 1px 3px 0 rgba(10, 46, 77, 0.07),
        0 4px 12px 0 rgba(10, 46, 77, 0.06);
    --shadow-lg: 
        0 4px 6px -1px rgba(10, 46, 77, 0.08),
        0 10px 40px -5px rgba(10, 46, 77, 0.12);
    --shadow-xl: 
        0 10px 25px -3px rgba(10, 46, 77, 0.1),
        0 20px 60px -10px rgba(10, 46, 77, 0.15);
    --shadow-2xl:
        0 25px 50px -12px rgba(10, 46, 77, 0.25);
    
    /* BORDER RADIUS - Sharp & Modern */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    
    /* SPACING */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* PREMIUM TRANSITIONS */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
:root {
    /* PRIMARY - Deep Ocean Blue */
    --primary: #0A2E4D;
    --primary-light: #1A4870;
    --primary-dark: #051B2E;
    --primary-50: #E8F1F8;
    
    /* SECONDARY - Sunset Coral */
    --secondary: #FF6B35;
    --secondary-light: #FF8A5B;
    --secondary-dark: #E5532B;
    
    /* ACCENT - Golden Hour */
    --accent: #FFB347;
    --accent-light: #FFC870;
    --accent-dark: #E09A2E;
    
    /* NEUTRALS - Premium Gray Scale */
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* SEMANTIC COLORS */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* TYPOGRAPHY - ETT TYPSNITT! */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* REST AV DIN CSS... */
}
/* ========================================
   GLOBAL RESETS & BASE STYLES
   ======================================== */

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

body {
    font-family: var(--font-body);
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.5rem, 3vw, 2rem); }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary);
}

/* ========================================
   PREMIUM BUTTON SYSTEM WITH ANIMATIONS
   ======================================== */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: var(--shadow-md);
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: var(--shadow-md);
    animation: gradientShift 8s ease infinite;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    background-size: 200% 200%;
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
    font-weight: 700;
    animation: gradientShift 8s ease infinite;
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

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

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

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}

.btn-ghost:hover {
    background: var(--gray-100);
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========================================
   GLASSMORPHISM CARD SYSTEM
   ======================================== */

.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        var(--shadow-md),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all var(--transition-base);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(255, 179, 71, 0.4);
}

.card-premium {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--accent);
    position: relative;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%);
}

/* ========================================
   PREMIUM INPUT SYSTEM
   ======================================== */

input, textarea, select {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-900);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 
        0 0 0 4px var(--primary-50),
        var(--shadow-md);
    transform: translateY(-1px);
}

input::placeholder, textarea::placeholder {
    color: var(--gray-400);
}

/* ========================================
   BADGE SYSTEM
   ======================================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 9999px;
    font-family: var(--font-heading);
}

.badge-primary {
    background: var(--primary-50);
    color: var(--primary);
}

.badge-secondary {
    background: rgba(255, 107, 53, 0.15);
    color: var(--secondary);
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.badge-premium {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Fade in animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}
/* ========================================
   NAVBAR STYLES
   ======================================== */

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    height: 48px;
    width: auto;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: 1rem;
}

.navbar-links a:hover {
    color: var(--primary);
}

.navbar-links a.active {
    color: var(--primary);
    position: relative;
}

.navbar-links a.active::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
}

.navbar-links a.premium-link {
    color: var(--accent);
    font-weight: 700;
}

.navbar-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.navbar-actions .btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 1rem 0;
}

.mobile-menu a {
    padding: 1rem 2rem;
    color: var(--gray-700);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all var(--transition-base);
}

.mobile-menu a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.mobile-menu a.mobile-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    margin: 1rem;
    text-align: center;
    border-radius: var(--radius-lg);
}

@media (max-width: 968px) {
    .navbar-links {
        display: none;
    }
    
    .navbar-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .navbar-content {
        padding: 0 1rem;
        height: 60px;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
    
    .brand-logo {
        height: 40px;
    }
}
/* ========================================
   LANGUAGE SWITCHER
   ======================================== */

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-heading);
    color: var(--gray-600);
}

.lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}

.lang-btn.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 640px) {
    .language-switcher {
        margin-right: 0.5rem;
    }
    
.lang-btn {
    background: transparent;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn .fi {
    font-size: 1.5rem;
    border-radius: 3px;
}
