@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');


:root {
    --primary: #6C63FF;
    --secondary: #2A265F;
    --accent: #FF9190;
    --dark: #1A1A2E;
    --light: #F7F7F7;
    --foreground: #1F2937;
    --background-start: 247, 247, 247;
    --background-end: 255, 255, 255;
}

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

html {
    scroll-behavior: smooth;
}

body {
    color: var(--foreground);
    background: linear-gradient(
        to bottom,
        transparent,
        rgb(var(--background-end))
    )
    rgb(var(--background-start));
    font-family: 'Inter', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animazioni più intense */
@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.15);
        opacity: 1;
    }
}

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

@keyframes slide-up {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slide-down {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fade-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes scale-up {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1.1rem 0;
}

.header.scrolled {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.site-logo {
    height: 45px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.nav-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(108, 99, 255, 0.2);
    color: white;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--accent));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    transform: scale(0.9);
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 6rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
}

@keyframes glow {
    0%, 100% {
        opacity: 0.3;
        filter: blur(40px);
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        filter: blur(30px);
        transform: scale(1.2);
    }
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    border-radius: 50%;
    animation: glow 6s ease-in-out infinite;
    pointer-events: none;
}

.hero::before {
    top: 10%;
    right: 5%;
    animation-delay: -3s;
    background: linear-gradient(135deg, #6C63FF, #FF9190);
}

.hero::after {
    bottom: 10%;
    left: 5%;
    background: linear-gradient(-45deg, #2A265F, #6C63FF);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(108, 99, 255, 0.2));
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0rem;
    animation: slide-down 0.8s ease-out;
    cursor: pointer;
    position: relative;
    width: 100%;
}

.hero-title-container {
    height: 14rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
}

.animated-title {
    position: relative;
    height: 100%;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-title .title-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    display: block;
    line-height: 1.1;
    visibility: hidden;
    padding-bottom: 1rem;
}

.animated-title .title-text.current {
    position: relative;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.animated-title .title-text-small {
    font-size: 3.2rem;
}

@keyframes title-fade-in {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes title-fade-out {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

.hero h1 .highlight {
    color: var(--primary);
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s ease-in-out infinite;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4B5563;
    max-width: 600px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.hero-badges .badge {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(108, 99, 255, 0.2);
    transition: all 0.3s ease;
    position: static;
    box-shadow: none;
}

.hero-badges .badge:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(108, 99, 255, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    animation: fade-in 0.8s ease-out;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(108, 99, 255, 0.2);
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

/* Section Styles */
.section {
    padding: 11rem 0 11rem 0;
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.8s ease-out forwards;
}

.section:nth-child(1) { animation-delay: 0.2s; }
.section:nth-child(2) { animation-delay: 0.4s; }
.section:nth-child(3) { animation-delay: 0.6s; }
.section:nth-child(4) { animation-delay: 0.8s; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--secondary-color);
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: slide-up 0.6s ease-out forwards;
}

.section-subtitle {
    text-align: center;
    color: #4B5563;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    margin-bottom: 7rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(50px);
    animation: slide-up 0.8s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }
.service-card:nth-child(5) { animation-delay: 1s; }
.service-card:nth-child(6) { animation-delay: 1.2s; }

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s ease-in-out infinite;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(108, 99, 255, 0.3));
}

.service-card:hover i {
    animation: none;
    transform: scale(1.2);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
    justify-content: center;
}

.service-tags span {
    background: rgba(108, 99, 255, 0.08);
    color: var(--primary);
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(108, 99, 255, 0.15);
    transition: all 0.3s ease;
}

.service-tags span:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Pricing Section */
.price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.2rem;
    margin-top: 1.2rem;
}
.price-from {
    font-size: 0.90rem;
    color: #7c7c8a;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.price-main {
    font-size: 1.1rem;
    font-weight: 500;
    color: #7c7c8a;
    line-height: 1.1;
    margin-bottom: 0.1rem;
    letter-spacing: 0px;
}
.price-label {
    font-size: 1.1rem;
    color: #7c7c8a;
    font-weight: 500;
    letter-spacing: 0px;
    margin-top: 0.2rem;
}

.price-period {
    font-size: 0.9rem;
    color: #7c7c8a;
    font-weight: 500;
    margin-top: 0.5rem;
    font-style: italic;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: slide-up 0.8s ease-out forwards;
}

.pricing-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.pricing-card.popular h3 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.2rem;
}

.pricing-card.popular .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-card.popular .features li {
    color: #333;
    font-weight: 500;
}

.pricing-card.popular .features li i {
    color: var(--accent);
    font-size: 1.2em;
}

.pricing-card { animation-delay: 0.3s; }
.pricing-card.popular { animation-delay: 0.6s; }
.pricing-card:last-child { animation-delay: 0.9s; }

.pricing-card .price {
    font-size: 3rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1rem 0;
    font-weight: 800;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.features li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4B5563;
}

.features li i {
    color: var(--primary);
}

.feature-highlight {
    margin-top: 1.2rem !important;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555 !important;
    font-style: italic;
    text-align: center;
    padding: 0 0.5rem;
}

.pricing-tags {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-tags span {
    background: rgba(108, 99, 255, 0.05);
}

/* Contact Section */
.contact-form {
    max-width: 520px;
    margin: 3rem auto;
    background: #fff;
    padding: 2.7rem 2.2rem 2.2rem 2.2rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 40px rgba(108,99,255,0.13), 0 2px 8px rgba(44,41,89,0.09);
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.8s ease-out forwards;
    border: 2px solid #6C63FF22;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.2rem;
}
.contact-header .contact-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.contact-header p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.form-status {
    text-align: center;
    font-size: 1.04rem;
    margin-bottom: 1.2rem;
    min-height: 1.2em;
    color: #fff;
    background: linear-gradient(90deg, #6C63FF 60%, #FF9190 100%);
    border-radius: 0.5rem;
    padding: 0.4em 0.7em;
    display: none;
}
.form-status.success { display: block; background: linear-gradient(90deg, #6C63FF 60%, #4ade80 100%); color: #fff; }
.form-status.error { display: block; background: linear-gradient(90deg, #FF9190 60%, #ef4444 100%); color: #fff; }


.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--secondary);
    letter-spacing: 0.1px;
    font-size: 1rem;
}
.form-group label i {
    color: var(--primary);
    margin-right: 0.5em;
    font-size: 1.1em;
    vertical-align: middle;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.17);
    transform: scale(1.03);
    transition: all 0.3s cubic-bezier(.22,.68,.54,1.01);
}

/* Maintenance Section */
.maintenance {
    margin: 7rem auto 7rem auto;
    padding: 0;
}
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.maintenance-card {
    background: #fff;
    padding: 2.1rem 1.5rem 2.3rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(108,99,255,0.08), 0 1.5px 4px rgba(44,41,89,0.07);
    border: 1.5px solid #6C63FF22;
    text-align: center;
    transition: all 0.3s cubic-bezier(.22,.68,.54,1.01);
    position: relative;
}
.maintenance-card.popular {
    border: 3px solid var(--primary);
    box-shadow: 0 20px 40px rgba(108,99,255,0.2);
    transform: scale(1.08);
    z-index: 2;
    position: relative;
}
.maintenance-card h3 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    letter-spacing: -0.5px;
}
.maintenance-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: #7c7c8a;
    margin-bottom: 0.7rem;
}
.maintenance-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #7c7c8a;
    margin-left: 0.25em;
}
.maintenance-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.maintenance-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4B5563;
    font-size: 1.05rem;
    margin: 0.7rem 0;
    justify-content: center;
}
.maintenance-features li i {
    color: var(--primary);
    font-size: 1.1em;
}

.badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 0 0 0.7rem 0.7rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .maintenance-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before,
.footer::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    border-radius: 50%;
    animation: glow 6s ease-in-out infinite;
    z-index: 0;
}

.footer::before {
    top: -100px;
    left: -100px;
    background: linear-gradient(135deg, #6C63FF, #FF9190);
    animation-delay: -3s;
}

.footer::after {
    bottom: -100px;
    right: -100px;
    background: linear-gradient(-45deg, #2A265F, #6C63FF);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--light);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #8A84FF 100%);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 0.68, 0.54, 1.01);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.25);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 1rem;
    letter-spacing: 0.3px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.35);
    background: linear-gradient(135deg, #8A84FF 0%, var(--primary) 100%);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(108, 99, 255, 0.2);
}

.btn-primary i {
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-selector .current-lang {
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 8px 0;
}

.language-selector:hover .language-dropdown,
.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown li {
    display: block;
    margin: 0;
    padding: 0;
}

.language-dropdown a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.language-dropdown a:hover {
    background-color: #f5f5f5;
}

.language-dropdown a.active {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .language-dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin-top: 5px;
    }
    
    .language-dropdown a {
        padding: 5px 10px;
    }
}
