:root {
    /* Brand Color Palette - Locked */
    --primary-emerald: #68A064;
    --background-black: #0B0E0D;
    --background-white: #FFFFFF;
    --text-neutral: #e1e4e3;
    --text-white: #E8E8E8;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 6px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    background-color: var(--background-black);
    color: var(--text-neutral);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Headings use IBM Plex Sans */
h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Sans', sans-serif;
    letter-spacing: 7%;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

a {
    color: var(--primary-emerald);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-emerald);
    opacity: 0.8;
}

a:focus {
    outline: 2px solid var(--primary-emerald);
    outline-offset: 2px;
}

/* ============================================
   NAVBAR COMPONENT
   ============================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background-color: rgba(11, 14, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(104, 160, 100, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    padding: 0.75rem 2.5rem;
}

.logo-container {
    flex-shrink: 0;
}

.logo-navbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.logo-navbar-visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.logo-navbar-img {
    height: 2.5rem;
    width: auto;
}

.logo-navbar-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-emerald);
    letter-spacing: 7%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    position: relative;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-neutral);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   NAVIGATION LINKS
   ============================================ */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-neutral);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

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

.nav-links a.active {
    color: var(--primary-emerald);
}

main {
    padding-top: 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

.hero {
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-logo-container {
    margin-bottom: 3rem;
    transition: margin-bottom 0.4s ease, opacity 0.4s ease;
    overflow: visible;
}

.hero-logo {
    height: 200px;
    width: auto;
    transition: opacity 0.4s ease, transform 0.4s ease, height 0.4s ease, margin 0.4s ease;
    opacity: 1;
    transform: scale(1);
    display: block;
}

.hero-logo.logo-scrolled {
    opacity: 0;
    transform: scale(0.3);
    height: 0;
    margin: 0;
    pointer-events: none;
    overflow: hidden;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-emerald);
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 7%;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-neutral);
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
}

.cta-button {
    padding: 1rem 2.5rem;
    min-height: 44px;
    background-color: var(--primary-emerald);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
    border: none;
    display: inline-block;
    touch-action: manipulation;
}

.cta-button:hover {
    color: #FFFFFF;
    opacity: 0.85;
}

.cta-button:focus {
    outline: 2px solid var(--primary-emerald);
    outline-offset: 2px;
}

section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: rgba(104, 160, 100, 0.15);
}

section:last-child::after {
    display: none;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--primary-emerald);
    font-weight: 600;
    letter-spacing: 7%;
    line-height: 1.3;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    max-width: 100%;
    margin: 0 auto;
}


.service-card {
    background-color: rgba(11, 14, 13, 0.8);
    border: 1px solid rgba(104, 160, 100, 0.15);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    background-color: rgba(20, 25, 23, 0.95);
    border-color: rgba(104, 160, 100, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card p {
    line-height: 1.7;
    color: var(--text-neutral);
}

.service-card h3 {
    color: var(--primary-emerald);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 7%;
}

footer {
    padding: 3rem 2rem;
    background-color: var(--background-black);
    border-top: 1px solid rgba(104, 160, 100, 0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-right {
    grid-column: 2;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-neutral);
}

.name-origin {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-style: italic;
    opacity: 0.7;
}

.footer-legal {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-neutral);
    opacity: 0.5;
    text-align: center;
}

.legal-info {
    margin-right: 1rem;
}

.legal-info:last-child {
    margin-right: 0;
}

.linkedin-logo {
    display: inline-block;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.linkedin-logo:hover {
    opacity: 1;
}

.linkedin-logo:focus {
    outline: 2px solid var(--primary-emerald);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background-color: rgba(11, 14, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid rgba(104, 160, 100, 0.3);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        justify-content: flex-start;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links > a:not(.nav-contact-btn):not(.mobile-menu-button) {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(104, 160, 100, 0.1);
    }
    
    .nav-contact-btn {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
    }
    
    .floating-menu {
        display: none !important;
    }
    
    .mobile-menu-buttons {
        display: flex !important;
        gap: 1rem;
        margin-top: auto;
        padding-top: 2rem;
        width: 100%;
        justify-content: center;
    }
    
    .mobile-menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        background-color: rgba(104, 160, 100, 0.2);
        border: 1px solid rgba(104, 160, 100, 0.3);
        border-radius: 50%;
        color: var(--text-neutral);
        text-decoration: none;
        transition: all 0.3s ease;
        touch-action: manipulation;
    }
    
    .mobile-menu-button:hover {
        background-color: rgba(104, 160, 100, 0.3);
        border-color: rgba(104, 160, 100, 0.5);
        color: var(--primary-emerald);
    }
    
    .mobile-menu-home svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
    }
    
    .mobile-menu-lang {
        font-weight: 600;
        font-size: 0.85rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-left {
        grid-column: 1;
        justify-content: center;
        order: -1;
    }
    
    .footer-right {
        grid-column: 1;
        margin-top: 0.5rem;
    }
    
    .hero {
        padding: 1.5rem;
        min-height: calc(100vh - 60px);
    }
    
    .hero-logo {
        height: 150px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }

    section {
        padding: 3rem 1rem;
    }
    
    section h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .how-we-work-content-new {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .how-we-work-content-new h2 {
        font-size: 2rem;
    }
    
    .how-we-work-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .how-we-work-text p {
        font-size: 1rem;
    }
    
    .who-am-i-text h2 {
        text-align: center !important;
        font-size: 2rem;
    }
    
    .who-am-i-intro {
        font-size: 1rem;
    }
    
    .who-am-i-section h3 {
        font-size: 1.2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    main {
        padding-top: 70px;
    }
    
    html {
        scroll-padding-top: 70px;
    }
}

#how-we-work-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.how-we-work-wrapper {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.how-we-work-content-new {
    max-width: 100%;
    margin: 0;
    padding: 3rem 2rem;
    background-color: rgba(20, 25, 23, 0.5);
    border-radius: 8px;
    height: auto;
    min-height: auto;
}

.how-we-work-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    min-height: 100%;
}

.how-we-work-image {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 20%;
}

.how-we-work-image,
.how-we-work-shield {
    visibility: hidden;
}

.how-we-work-shield {
    height: auto;
    display: block;
    border-radius: 8px;
}

.ophidia-dictionary-card {
    background-color: rgba(20, 25, 23, 0.4);
    border: 1px solid rgba(104, 160, 100, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.6;
    width: 280px;
    max-width: 280px;
    min-height: 350px;
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
}

.dictionary-word {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-emerald);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-align: center;
}

.dictionary-pronunciation {
    color: var(--text-neutral);
    opacity: 0.7;
    font-style: italic;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    text-align: center;
}

.dictionary-etymology {
    color: var(--text-neutral);
    opacity: 0.8;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    border-left: 2px solid rgba(104, 160, 100, 0.3);
    padding-left: 0.75rem;
}

.dictionary-definition {
    color: var(--text-neutral);
    line-height: 1.7;
}

.how-we-work-content-new h2 {
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    color: var(--primary-emerald);
}

.how-we-work-subtitle {
    font-size: 1.1rem;
    color: var(--text-neutral);
    margin-bottom: 2rem;
    font-style: italic;
    text-align: left;
}

.how-we-work-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.how-we-work-text p {
    color: var(--text-neutral);
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 900px) {
    .who-am-i-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .who-am-i-image-placeholder {
        display: none !important;
    }
    
    .who-am-i-text {
        grid-column: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .how-we-work-content-new {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .how-we-work-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .how-we-work-right-column {
        position: static;
    }
    
    .ophidia-dictionary-card {
        margin-top: 1rem;
        width: auto;
        max-width: 90%;
        min-width: 240px;
        min-height: 300px;
        aspect-ratio: 4 / 5;
    }
    
    .who-am-i {
        padding: 2.5rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .who-am-i-content-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
        margin: 0 !important;
    }
    
    .who-am-i-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }
    
    .who-am-i-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .who-am-i-image-placeholder {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    .who-am-i-text {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        align-items: center !important;
        grid-column: 1 / -1 !important;
        margin: 0 auto !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    .who-am-i-text > * {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .who-am-i-text h2 {
        text-align: center !important;
    }
    
    .who-am-i-intro {
        text-align: center;
    }
    
    .who-am-i-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .who-am-i-section h3 {
        text-align: center;
    }
    
    .who-am-i-section p {
        text-align: center;
    }
    
    .how-we-work-image {
        display: none;
    }
    
    .navbar {
        padding: 0.875rem 1rem;
    }
    
    .logo-navbar-img {
        height: 2rem;
    }
    
    .logo-navbar-text {
        font-size: 1rem;
    }
    
    .nav-links {
        width: 100%;
        right: -100%;
    }
    
    .floating-menu {
        display: none !important;
    }
    
    .mobile-menu-buttons {
        display: flex !important;
    }
    
    .hero {
        padding: 1rem;
    }
    
    .hero-logo-container {
        margin-bottom: 2rem;
    }
    
    .hero-logo {
        height: 120px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 2.5rem 1rem;
    }
    
    section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .service-card {
        padding: 1.5rem 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .how-we-work-content-new {
        padding: 1.5rem 1rem;
    }
    
    .how-we-work-content-new h2 {
        font-size: 1.75rem;
    }
    
    .how-we-work-subtitle {
        font-size: 0.95rem;
    }
    
    .how-we-work-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .who-am-i-text h2 {
        font-size: 1.75rem;
    }
    
    .who-am-i-intro {
        font-size: 0.95rem;
    }
    
    .who-am-i-section h3 {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .scroll-indicator svg {
        width: 28px;
        height: 28px;
    }
    
    footer {
        padding: 2rem 1rem;
    }
    
    footer p {
        font-size: 0.9rem;
    }
    
    .name-origin {
        font-size: 0.75rem;
    }
}

/* ============================================
   WHO AM I SECTION
   ============================================ */
#who-am-i-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.who-am-i-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.who-am-i-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.who-am-i-image-placeholder {
    position: sticky;
    top: 100px;
}

.who-am-i-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    opacity: 20%;
}

.who-am-i-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.who-am-i-text h2 {
    text-align: left;
    margin-bottom: 0;
}

.who-am-i-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-neutral);
}

.who-am-i-section h3 {
    color: var(--primary-emerald);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 7%;
}

.who-am-i-section p {
    line-height: 1.7;
    color: var(--text-neutral);
    margin-bottom: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background-color: rgba(104, 160, 100, 0.05);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.nav-contact-btn {
    background-color: var(--primary-emerald);
    color: var(--background-black);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-contact-btn:hover {
    background-color: rgba(104, 160, 100, 0.9);
    color: var(--background-black);
    opacity: 0.9;
}

/* Floating Menu */
.mobile-menu-buttons {
    display: none;
}

.floating-menu {
    position: fixed;
    right: 0.8rem;
    bottom: 0.1%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: rgba(11, 14, 13, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(104, 160, 100, 0.3);
    border-radius: 50%;
    color: var(--text-neutral);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 48px;
    height: 48px;
    min-width: 44px;
    min-height: 44px;
    text-align: center;
}

.floating-menu-item:hover {
    background-color: rgba(104, 160, 100, 0.15);
    border-color: rgba(104, 160, 100, 0.5);
    color: var(--primary-emerald);
    transform: translateX(-5px);
}

.floating-menu-item:active {
    transform: translateX(-5px) scale(0.95);
}

.floating-menu-item.active {
    background-color: rgba(104, 160, 100, 0.2);
    border-color: var(--primary-emerald);
    color: var(--primary-emerald);
}

.floating-menu-home {
    border-radius: 50%;
    transition: opacity 0.3s ease, pointer-events 0.3s ease;
}

.floating-menu-home svg {
    width: 0.9rem;
    height: 0.9rem;
    stroke: currentColor;
}


.floating-menu-lang {
    font-weight: 600;
    border-radius: 50%;
    font-size: 0.85rem;
    transition: opacity 0.3s ease, pointer-events 0.3s ease;
}

