:root {
    --primary: #C41E3A;
    --primary-dark: #9B1C31;
    --secondary: #38BDF8;
    --dark: #0F172A;
    --darker: #020617;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --container-max: 1280px;
    --header-height: 100px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

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

.text-highlight,
.text-primary {
    color: var(--primary);
}

.bg-dark .text-highlight,
.bg-dark .text-primary,
.bg-dark .section-tag {
    color: var(--secondary) !important;
}

.text-white {
    color: var(--white);
}

.text-dark {
    color: var(--dark) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-light {
    background-color: var(--light);
}

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

.bg-primary {
    background-color: var(--primary);
    color: var(--white);
}

.bg-white {
    background-color: var(--white);
}

.section-tag {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(239, 51, 64, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 51, 64, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

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

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background 0.3s, padding 0.3s;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.logo-dark {
    display: none;
}

.logo-white {
    display: block;
}

.navbar.scrolled .logo-white {
    display: none;
}

.navbar.scrolled .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--text-main);
}

.nav-links a:not(.btn):not(.lang-link):hover,
.nav-links a:not(.btn):not(.lang-link).active,
.navbar.scrolled .nav-links a:not(.btn):not(.lang-link).active {
    color: var(--primary);
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
}

.lang-link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lang-link.active,
.lang-link:hover {
    opacity: 1;
    color: var(--primary);
}

.navbar.scrolled .lang-link {
    color: var(--text-main);
}

.navbar.scrolled .lang-link.active {
    color: var(--primary);
}

.divider {
    color: var(--white);
    opacity: 0.5;
    font-size: 0.8rem;
}

.navbar.scrolled .divider {
    color: var(--text-main);
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    padding: 5px;
}

.mobile-toggle:focus {
    outline: none;
}

.navbar.scrolled .mobile-toggle {
    color: var(--dark);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 1002;
    transition: right 0.3s ease;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.menu-open .mobile-menu {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-header .logo {
    color: var(--dark);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-links a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.mobile-links .btn {
    width: 100%;
    white-space: nowrap;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    color: var(--white);
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 20s infinite alternate;
}

@keyframes zoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
    display: block;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.7;
    z-index: 2;
    font-size: 0.9rem;
}

.scroll-down i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-item .label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.intro-image-wrapper {
    position: relative;
    padding-left: 20px;
}

.tilted-image {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: transform 0.3s;
}

.tilted-image:hover {
    transform: rotate(0deg);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: 0;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.floating-card i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 24px;
    margin-top: 50px;
}

.bento-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    z-index: 0;
}

.bento-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.bento-content .icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.bento-content h3 {
    font-size: 1.5rem;
    color: inherit;
    margin-bottom: 10px;
}

.bento-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-medium {
    grid-column: span 1;
}

.border-item {
    border: 2px solid #E2E8F0;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.images-stack {
    position: relative;
    flex: 1;
    height: 500px;
}

.img-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.img-front {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border-radius: var(--radius-lg);
    border: 8px solid var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-list {
    margin-top: 30px;
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-list i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.feature-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-list span {
    color: var(--text-muted);
}

.lux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.lux-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    transition: transform 0.3s;
    text-align: center;
}

.lux-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.lux-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.lux-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.lux-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-wrapper {
    display: flex;
    gap: 80px;
}

.contact-header {
    flex: 1;
}

.contact-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-methods .method {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
}

.contact-methods .method a {
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-methods .method a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-methods i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary);
}

.contact-form-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--text-main);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.footer {
    background: var(--darker);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col h3 {
    color: #FFFFFF !important;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    color: inherit;
}

.footer-col .social-links a {
    display: inline-block;
    color: #FFFFFF !important;
    opacity: 1;
    margin-bottom: 0;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 0.9rem;
}

.footer-bottom a {
    transition: all 0.3s ease;
    opacity: 0.8;
    display: inline-block;
}

.footer-bottom a:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-bottom img {
    transition: filter 0.3s ease;
}

.footer-bottom a:hover img {
    filter: invert(27%) sepia(91%) saturate(2359%) hue-rotate(338deg) brightness(93%) contrast(92%);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:1024px) {
    .section {
        padding: 60px 0;
    }

    .container {
        width: 90%;
        padding: 0 20px;
    }

    .navbar .nav-links,
    .navbar .btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .intro-image-wrapper {
        padding-left: 0;
        margin-top: 20px;
    }

    .tilted-image {
        transform: none;
        width: 100%;
        height: auto !important;
        object-fit: cover !important;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .item-large,
    .item-medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-item {
        height: 300px !important;
    }

    .split-content {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .images-stack {
        width: 100%;
        height: 400px;
    }

    .img-back {
        width: 90%;
        height: auto !important;
        object-fit: cover !important;
    }

    .img-front {
        height: auto !important;
        object-fit: cover !important;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col a,
    .footer-col p {
        display: flex;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom a {
        align-self: flex-end;
    }
}

@media (max-width:768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .intro-text h2 {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 120px;
        padding-bottom: 80px;
        align-items: flex-start;
    }

    .hero-content {
        margin-top: 20px;
    }

    .hero-actions {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .logo img {
        max-width: 140px;
    }
}

.slg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.slg-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-md);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.slg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background: var(--white);
    border-color: rgba(239, 51, 64, 0.1);
}

.slg-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.slg-card h4 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.slg-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.accessibility-content {
    padding: 120px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}

.accessibility-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.accessibility-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.accessibility-content p {
    margin-bottom: 15px;
    color: var(--text-main);
}

.accessibility-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.accessibility-table th,
.accessibility-table td {
    padding: 15px;
    border: 1px solid #E2E8F0;
    text-align: left;
}

.accessibility-table th {
    background-color: var(--light);
    color: var(--dark);
    font-weight: 600;
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    z-index: 9999;
    border-radius: 0 0 4px 4px;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.legal-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.legal-card .card-icon {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 20px;
    color: #10B981;
}

.legal-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 0;
    color: var(--dark);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.contact-list li i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.contact-list li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-list li a:hover {
    color: var(--primary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    animation: slideUp 0.5s forwards 0.5s;
    border-top: 3px solid var(--primary);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.2rem;
    margin-top: 0;
}

.cookie-content p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0;
    max-width: 700px;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-link {
    font-size: 0.9rem;
    text-decoration: underline;
    opacity: 0.8;
}

.cookie-link:hover {
    opacity: 1;
    color: var(--primary);
}

.cookie-banner.fade-out {
    animation: slideDown 0.5s forwards;
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    to {
        transform: translateY(100%);
    }
}

@media (max-width:768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-wrap: wrap;
    }
}

.events-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 0 20px;
    perspective: 1000px;
}

.events-slider {
    position: relative;
    height: 450px;
}

.event-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform-origin: center center;
    transform: translate3d(40px, 20px, -40px) scale(0.95);
    z-index: 0;
    display: block !important;
    pointer-events: none;
}

.event-slide.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    z-index: 10;
    pointer-events: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.event-slide.next {
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate3d(20px, 15px, -40px) scale(0.95);
    z-index: 5;
    filter: brightness(0.95);
}

.event-slide.next-2 {
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate3d(40px, 30px, -80px) scale(0.9);
    z-index: 1;
    filter: brightness(0.9);
}

.event-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 10px 15px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 70px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark);
}

.event-details {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-details h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 1.5rem;
}

.event-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.event-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.event-desc {
    margin: 0;
    color: var(--text-main);
    line-height: 1.5;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    font-size: 1.1rem;
}

.slider-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: -25px;
}

.slider-nav.next {
    right: -25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:1024px) {
    .events-slider-wrapper {
        max-width: 100%;
        padding: 0 40px;
    }

    .events-slider {
        height: 650px;
    }

    .event-card {
        height: auto;
    }

    .event-image {
        height: 200px;
    }

    .event-details {
        padding: 20px;
    }
}

@media (max-width:768px) {
    .events-slider-wrapper {
        padding: 0 10px;
        margin-top: 30px;
    }

    .events-slider {
        height: auto;
        min-height: 500px;
    }

    .event-slide {
        transform: none !important;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .event-slide.active {
        opacity: 1;
        z-index: 10;
        position: relative;
    }

    .event-slide.next,
    .event-slide.next-2 {
        opacity: 0;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
        top: 50%;
        margin-top: -18px;
    }

    .slider-nav.prev {
        left: -5px;
    }

    .slider-nav.next {
        right: -5px;
    }

    .images-stack {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .images-stack .img-back,
    .images-stack .img-front {
        position: relative;
        width: 100%;
        top: auto !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        border: none;
        transform: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}

.lang-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.scrolled .lang-btn {
    background: rgba(0, 0, 0, 0.05);
    color: var(--dark);
    border-color: rgba(0, 0, 0, 0.1);
}

.lang-btn:hover,
.lang-btn[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.3);
}

.scrolled .lang-btn:hover,
.scrolled .lang-btn[aria-expanded="true"] {
    background: rgba(0, 0, 0, 0.1);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: block;
}

.lang-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.lang-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    min-width: 160px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.lang-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--dark) !important;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.lang-item:hover,
.lang-item:focus {
    background: #f5f5f5;
    color: var(--primary);
    outline: none;
}

.lang-item.active {
    background: rgba(229, 0, 67, 0.05);
    color: var(--primary);
    font-weight: 600;
}

.mobile-lang-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-lang-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    transition: all 0.3s;
}

.mobile-lang-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.mobile-lang-item.active {
    opacity: 1;
    color: var(--primary);
}

.mobile-lang-item.active img {
    border-color: var(--primary);
    transform: scale(1.1);
}