:root {
    /* Culori */
    --color-primary: #0F172A;
    --color-secondary: #1E3A8A;
    --color-accent: #4F46E5;
    --color-background: #E0E7FF;
    --color-footer-bg: #0B1120;
    --color-text-light: #F8FAFF;
    --color-text-dark: #0F172A;
    --color-section-bg-1: #F8FAFF;
    --color-section-bg-2: #E0E7FF;
    --color-section-bg-3: #D1D8F5;
    --color-section-bg-4: #C2CFF0;
    --color-section-bg-5: #B3C6E0;
    --color-section-bg-6: #A4BBDD;
    --color-neon-blue: #00BFFF; /* For subtle neon accents */
    --color-neon-purple: #8A2BE2; /* For subtle neon accents */

    /* Tipografie */
    --font-family-body: 'Inter', sans-serif;
    --font-family-heading: 'Poppins', sans-serif;
    --font-size-base: 1rem; /* 16px */
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 1rem;     /* 16px */
    --spacing-md: 1.5rem;   /* 24px */
    --spacing-lg: 2rem;     /* 32px */
    --spacing-xl: 3rem;     /* 48px */
    --spacing-xxl: 4rem;    /* 64px */

    /* Border Radius */
    --border-radius-sm: 0.375rem; /* 6px */
    --border-radius-md: 0.75rem;  /* 12px */
    --border-radius-lg: 1.5rem;   /* 24px */

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.12), 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-glass-light: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text-dark);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3.5rem; font-weight: 700; letter-spacing: -0.05em; }
h2 { font-size: 2.5rem; font-weight: 600; letter-spacing: -0.03em; }
h3 { font-size: 1.875rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 500; }
h5 { font-size: 1.25rem; font-weight: 500; }
h6 { font-size: 1.125rem; font-weight: 500; }

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.section {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.flex-col { flex-direction: column; }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }

/* Header Styling */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header-scrolled {
    background-color: rgba(224, 231, 255, 0.8); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-glass-light);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.header-logo {
    font-family: var(--font-family-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    padding: var(--spacing-xs) 0;
}

.header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--spacing-lg);
}

.header-nav a {
    color: var(--color-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.header-nav a:hover {
    color: var(--color-accent);
    background-color: rgba(79, 70, 229, 0.1); /* Subtle background on hover */
    box-shadow: 0 0 10px var(--color-neon-blue), 0 0 20px var(--color-neon-purple); /* Neon glow */
    border-bottom: none;
}

/* Button Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(45deg, var(--color-accent) 0%, #6366F1 100%);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.6);
    background: linear-gradient(45deg, var(--color-accent) 0%, #6366F1 100%); /* Ensure gradient stays */
    filter: brightness(1.1);
    /* Neon effect on hover */
    box-shadow: 0 0 15px var(--color-neon-blue), 0 0 30px var(--color-neon-purple);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 0 10px var(--color-neon-blue);
}

/* Section Background Colors */
.section-bg-1 { background-color: var(--color-section-bg-1); }
.section-bg-2 { background-color: var(--color-section-bg-2); }
.section-bg-3 { background-color: var(--color-section-bg-3); }
.section-bg-4 { background-color: var(--color-section-bg-4); }
.section-bg-5 { background-color: var(--color-section-bg-5); }
.section-bg-6 { background-color: var(--color-section-bg-6); }

/* Glassmorphism Card Example */
.card-glass {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-glass-light);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: var(--spacing-lg);
    margin: var(--spacing-md);
    color: var(--color-text-dark);
}

/* Footer Styling */
.footer {
    background-color: var(--color-footer-bg);
    color: rgba(255, 255, 255, 0.8);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    font-size: 0.9rem;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    display: block;
    text-align: center;
}

.footer-column h4 {
    color: var(--color-accent);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    border-bottom: none;
}

.footer-column ul li a:hover {
    color: var(--color-neon-blue);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    justify-content: center;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    border-bottom: none;
}

.social-icons a:hover {
    color: var(--color-neon-blue);
    text-shadow: 0 0 8px var(--color-neon-blue), 0 0 15px var(--color-neon-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Alpine.js specific styles (for x-show transitions) */
[x-cloak] {
    display: none !important;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.3s ease;
}
.fade-enter-from, .fade-leave-to {
    opacity: 0;
}

.slide-down-enter-active, .slide-down-leave-active {
    transition: all 0.3s ease-out;
    overflow: hidden;
}
.slide-down-enter-from, .slide-down-leave-to {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
}
.slide-down-enter-to, .slide-down-leave-from {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px; /* Adjust as needed */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .header .container {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .header-nav ul {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }

    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-logo {
        margin-bottom: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
}

/* Specific image styling (abstract digital, blue/violet tones) */
.image-abstract-digital {
    filter: grayscale(20%) sepia(20%) hue-rotate(200deg) saturate(150%) brightness(90%);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-abstract-digital:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
}

/* Custom separator for footer logo (if applicable) */
.footer-logo-separator {
    position: relative;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
}

.footer-logo-separator::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-neon-blue) 25%, var(--color-neon-purple) 75%, transparent 100%);
    border-radius: 1px;
}<ctrl63>


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}