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

:root {
    --bg-dark: #0A0A0A;
    --bg-card: rgba(20, 20, 20, 0.85);
    /* --accent: #8B0000; <- Now controlled by settings via injected style */
    --accent: var(--primary);
    --accent-hover: var(--primary-light);
    --accent-glow: rgba(var(--primary-rgb), 0.5);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for fixed navbar */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.1) 0%, #000 100%), url('../assets/hero-bg.jpg') center/cover no-repeat;
    transition: background 0.5s ease;
}

.hero-content {
    text-align: center;
    margin-bottom: 3rem;
    z-index: 2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8));
    /* Better contrast */
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        /* Fit screen better */
        margin-top: 4rem;
        /* Move down slightly on mobile */
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 1));
        /* Stronger shadow for mobile */
    }

    .hero {
        background-position: center top;
        /* Focus on top of image */
    }

    /* Subtle overlay for mobile to ensure readability */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.15);
        /* Light overlay - not too dark */
        z-index: 1;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 4px 20px rgba(0, 0, 0, 0.7);
}

/* Crimson Glow Navbar */
/* Crimson Glow Navbar (Updated for Centered Links) */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 2rem;
    /* Reduced padding */
    border-radius: 50px;
    display: grid;
    /* Use grid for better centering */
    grid-template-columns: 1fr auto 1fr;
    /* Logo - Links - Empty/Lang */
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(139, 0, 0, 0.1);
}

.nav-logo {
    justify-self: start;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.nav-links {
    justify-self: center;
    display: flex;
    gap: 0.5rem;
    /* Reduced gap */
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle background for the menu pill */
    padding: 0.4rem;
    /* Slightly more padding for the glider to move inside */
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    /* For absolute positioning of glider */
}

/* Lang Switcher separate container to balance grid */
.nav-extras {
    justify-self: end;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
    /* Only animate color, bg handled by glider */
    text-transform: capitalize;
    /* Changed from uppercase for softer look */
    letter-spacing: 0.5px;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    /* Text above glider */
    background: transparent !important;
    /* Remove static background */
    box-shadow: none !important;
}

.nav-links a:hover {
    color: white;
}

.nav-links a.active {
    color: white;
    /* Text color for active item */
    font-weight: 700;
}

/* Nav Dropdown Styling */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* Fix for glider calculation to include dropdown trigger */
.nav-item-dropdown .dropdown-trigger {
    display: flex;
    /* Ensure it behaves like a flex container for the icon */
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0.5rem;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    color: #ccc;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    white-space: nowrap;
    text-transform: capitalize;
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(3px);
}

/* Sliding Glider Pill */
.nav-glider {
    position: absolute;
    height: calc(100% - 0.8rem);
    /* Height minus padding */
    top: 0.4rem;
    left: 0;
    background: var(--accent);
    /* Dynamic Theme Color */
    border-radius: 20px;
    z-index: 1;
    /* Behind text */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    /* Hidden initially until JS sets it */
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
}

/* Service Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.service-card {
    /* ... existing styles ... */
    animation: fadeInUp 0.6s ease-out backwards;
}

/* Staggered delays for 5 items */
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* Search Bar Redesign */
.search-container {
    width: 100%;
    max-width: 1100px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1.8rem;
    border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8);
    z-index: 2;
    position: relative;
    /* overflow: hidden; Removed to allow dropdowns */
}

.search-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1.1rem 1.1rem 1.1rem 2.8rem;
    border-radius: 14px;
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.search-input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.9);
}

.search-input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.9);
}

.search-input:focus {
    border-color: var(--accent);
    background: rgba(139, 0, 0, 0.05);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.2);
}

.btn-search {
    background: linear-gradient(45deg, var(--accent), rgba(var(--primary-rgb), 0.7));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 25px -5px rgba(var(--primary-rgb), 0.4);
}

.btn-search:hover {
    background: linear-gradient(45deg, var(--accent-hover), var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -5px rgba(var(--primary-rgb), 0.6);
}

/* Animations */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-content {
    animation: fadeInSlide 1s ease-out;
}

.search-container {
    animation: fadeInSlide 1.2s ease-out;
}

/* Sections Styling */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title span {
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .search-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

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

/* Cards & Bento Grid (Placeholder for Gallery/Services) */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 0, 0, 0.1);
}

/* Dropdown Panel */
.dropdown-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 1.5rem;
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin-top: 1rem;
}

.dropdown-panel.active {
    display: block;
    animation: fadeInSlide 0.3s ease-out;
}

.counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
    font-weight: 500;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem;
    border-radius: 8px;
}

.counter-btn {
    background: var(--accent);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.counter-btn:hover {
    background: var(--accent-hover);
}

.input-group {
    position: relative;
    margin-bottom: 0;
    /* Reset margin for grid layout */
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    z-index: 1;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    cursor: pointer;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: rgba(139, 0, 0, 0.2);
    border-color: var(--accent);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    min-width: 120px;
}

.lang-switcher.active .lang-dropdown {
    display: block;
    animation: fadeInSlide 0.2s ease-out;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    color: #ccc;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 0.85rem;
}

.lang-dropdown a:hover {
    background: rgba(139, 0, 0, 0.2);
    color: white;
}

/* Autocomplete Results */
.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 50;
    display: none;
    margin-top: 5px;
}

.autocomplete-results.active {
    display: block;
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #eee;
    transition: background 0.2s;
}

.autocomplete-item:hover {
    background: rgba(139, 0, 0, 0.1);
}

.autocomplete-item strong {
    display: block;
    color: var(--accent);
}

.autocomplete-item small {
    color: #aaa;
}

/* Service Cards - Dark Premium Theme */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* Force 5 columns */
    gap: 1.5rem;
    max-width: 1600px;
    /* Wider container */
    margin: 0 auto;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.service-card {
    background: #090909;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle Hover Glow */
.service-card:hover {
    border-color: rgba(139, 0, 0, 0.4);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(139, 0, 0, 0.1);
    /* Subtle effect */
    transform: translateY(-5px);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.03);
    /* Dark glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    /* Subtle glow instead of red background */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.service-card:hover .service-icon {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.3);
    /* Effect on hover */
}

.service-card h3 {
    color: white;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-top: 0.5rem;
}

.service-card p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Checkmark list style if needed later */
.service-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.service-check i {
    color: var(--accent);
}

/* Gallery Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 2001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 85vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2002;
    padding: 10px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
    z-index: 2002;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ccc;
    font-size: 0.9rem;
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(0, 0, 0, 0.5);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content {
        width: 100%;
    }
}

/* Testimonials Slider */
.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05) !important;
}

.slider-nav:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 300px !important;
        padding: 1.5rem !important;
    }

    .slider-nav {
        display: none !important;
    }
}

/* Mobile Menu Styles - Sexy & Animated */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2001;
    /* Above overlay */
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Hamburger Animation */
.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--accent);
}

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

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--accent);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    transform: translateY(-20px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.mobile-menu-content a,
.mobile-dropdown span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mobile-menu-content a::after,
.mobile-dropdown span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.mobile-menu-content a:hover::after,
.mobile-dropdown span:hover::after {
    width: 100%;
}

.mobile-menu-content a:hover,
.mobile-dropdown span:hover {
    color: var(--accent);
}

/* Staggered Animation for Items */
.mobile-menu-overlay.active a,
.mobile-menu-overlay.active .mobile-dropdown {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.mobile-menu-overlay.active a:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-dropdown:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-menu-overlay.active a:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-menu-overlay.active a:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-lang-switcher {
    animation-delay: 0.5s;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards 0.5s;
}

/* Submenu */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-submenu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.mobile-submenu.active {
    display: flex;
    animation: fadeInSlide 0.3s ease;
}

.mobile-submenu a {
    font-size: 1.1rem;
    color: #ccc;
    text-transform: none;
}

/* Mobile Lang Switcher */
.mobile-lang-switcher {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mobile-lang-switcher a {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid transparent;
}

.mobile-lang-switcher a.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Body Lock */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        padding: 10px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links,
    .nav-extras {
        display: none !important;
    }

    .navbar {
        justify-content: space-between;
        padding: 0.8rem 1.5rem;
    }
}