* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none; 
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    pointer-events: auto;
}

:root {
    --primary-orange: #f38a20;
    --dark-blue: #0a0a2e;
    --white: #ffffff;
    --gray: #f4f4f4;
}

@font-face {
    font-family: 'FiraGO';
    src: url('../font/firago-georgian/FiraGO_OTF_1001/Roman/FiraGO-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FiraGO';
    src: url('../font/firago-georgian/FiraGO_OTF_1001/Roman/FiraGO-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "FiraGO", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.navbar {
    background: var(--white);
    padding: 14px 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo span span {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-size: 1.08rem;
    font-weight: 500;
    transition: color 0.25s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.contact-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    font-size: 0.96rem;
    line-height: 1.25;
}

.phone-link {
    color: var(--dark-blue);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.phone-link:hover {
    color: var(--primary-orange);
}

.email-link {
    color: #555;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.email-link:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.lang-switch {
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    transition: color 0.25s;
}

.lang-switch:hover {
    color: var(--primary-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #000000;
    transition: all 0.3s;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    padding: 6px 10px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 6px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: all 0.2s ease-out;
    margin-top: 4px;
    padding: 5px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    display: block;
    padding: 9px 16px;
    color: #333;
    font-size: 1.02rem;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: var(--gray);
    color: var(--primary-orange);
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 18px;
    }
    .nav-links a {
        font-size: 1.03rem;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px 5%;
        box-shadow: 0 8px 15px rgba(0,0,0,0.08);
        max-height: 70vh;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .contact-group,
    .lang-switch {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 6px 0 6px 28px;
        margin: 0;
    }

    .nav-links a,
    .dropdown-menu a {
        padding: 10px 0;
        font-size: 1.05rem;
        color: #333;
        text-align: left;
    }

    .dropdown-toggle::after {
        display: none;
    }
}

@media (max-width: 440px) {
    .nav-right {
        gap: 12px;
    }

    .contact-group,
    .lang-switch {
        display: none;
    }

    .nav-links.active .contact-group-mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid #eee;
    }

    .nav-links.active .phone-link,
    .nav-links.active .email-link {
        font-size: 1.05rem;
        color: var(--dark-blue);
        font-weight: 600;
    }

    .nav-links.active .email-link {
        color: #555;
        font-weight: 400;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 5%;
    }

    .logo img {
        height: 52px;
    }

    .logo span {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 48px;
    }

    .logo span {
        font-size: 1.05rem;
    }

    .hamburger span {
        width: 24px;
    }
}

.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 5% 20px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 span {
    color: var(--primary-orange);
}

.footer-links h4, .footer-newsletter h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
    font-weight: bold;
}

.footer-links a:hover {
    color: var(--white);
}

.subscribe-box {
    display: flex;
    margin-top: 15px;
}

.subscribe-box input {
    padding: 10px;
    border: none;
    width: 70%;
    border-radius: 4px 0 0 4px;
}

.subscribe-box button {
    padding: 10px 20px;
    border: none;
    background: var(--primary-orange);
    color: white;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    color: #888;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo h3 span {
    color: var(--primary-orange);
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px 5%;
        box-shadow: 0 8px 15px rgba(0,0,0,0.08);
        max-height: 75vh;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-links li,
    .nav-links a,
    .dropdown-menu a {
        text-align: left;
        width: 100%;
    }

    .nav-links a,
    .dropdown-menu a {
        padding: 12px 0;
        font-size: 1.08rem;
        color: #222;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 0px;
        margin: 0;
    }

    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .contact-group-mobile {
        padding-top: 20px;
        border-top: 1px solid #eee;
        margin-top: 20px;
    }

    .contact-group-mobile .phone-link {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--dark-blue);
        display: block;
    }

    .contact-group-mobile .email-link {
        font-size: 1rem;
        color: #555;
        display: block;
    }
}

@media (max-width: 1200px) {
    .nav-right {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .lang-switch {
        font-size: 1.05rem;
        font-weight: 500;
        color: #222;
    }

    .lang-switch:hover {
        color: var(--primary-orange);
    }
}

@media (max-width: 440px) {
    .lang-switch {
        font-size: 0.95rem;
    }

    .hamburger span {
        width: 24px;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0 30px 0 auto;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.lang-switch {
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    transition: color 0.25s;
    order: 1;
}

.contact-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    font-size: 0.96rem;
    line-height: 1.25;
    order: 2;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    order: 3;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    margin-left: auto;
    margin-right: 35px;
    align-items: center;
}

.contact-group-mobile {
    display: none; 
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.contact-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.contact-group .phone-link {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--dark-blue);
    text-decoration: none;
}

.contact-group .email-link {
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 1200px) {
    #about-us22 {
        display: none;
    }

    .contact-group-mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
}

@media (min-width: 1201px) {
    .nav-links {
        margin-left: auto;
        margin-right: 40px;
    }

    .contact-group-mobile {
        display: none;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .lang-switch { order: 1; }
    .contact-group { 
        order: 2; 
        display: flex; 
        flex-direction: column; 
        align-items: flex-end;
    }
    .hamburger { display: none; }
}

@media (max-width: 1200px) {
    .about_us_down {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px 5%;
        box-shadow: 0 8px 15px rgba(0,0,0,0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

    .nav-right .contact-group {
        display: none;
    }

    .lang-switch {
        display: block;
        order: 1;
    }

    .contact-group-mobile {
        display: flex;
        flex-direction: column;
        padding-top: 20px;
        border-top: 1px solid #eee;
        margin-top: 20px;
    }
}

.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.whatsapp {
    background-color: #25D366;
}

.messenger {
    background-color: #0084FF;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    color: #333;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-width: 200px;
    border-left: 4px solid #4CAF50;
    animation: slideIn 0.3s ease forwards, fadeOut 0.5s ease forwards;
    animation-delay: 0s, var(--duration);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(20px); }
}

.site-footer {
    background-color: #032475;
    color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 110px 20px 20px;
    line-height: 1.6;
    border-top: 2px solid white;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    width: 90px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #cfd8dc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #ffb300;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-col p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #cfd8dc;
}

.contact-col .company-name {
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    .footer-logo {
        margin: 0;
        width: 110px;
    }

    .footer-col h4 {
        display: block;
    }

    .social-links {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr; 
        gap: 30px;
        margin-top: 30px;
    }

    .footer-logo {
        width: 240px;
        padding-left: 30px;
        padding-right: 30px;
        height: 180px;
    }
}

.site-footer {
    background-color: #032475;
    color: #f8f9fa;
    padding: 80px 5% 40px;
    font-family: 'FiraGO', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    display: block;
    min-height: 45px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li, 
.footer-col p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
}

.footer-col a {
    color: #cfd8dc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffb300;
}

.logo-col {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    border-radius: 6px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-col {
        width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
}

.site-footer {
    background-color: #032475;
    color: #f8f9fa;
    padding: 80px 5% 40px;
    font-family: 'FiraGO', sans-serif;
    width: 100%;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center; 
    align-items: flex-start;
    gap: 60px; 
}

.footer-col {
    flex: 0 0 auto; 
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap; 
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li, 
.footer-col p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    white-space: nowrap; 
    line-height: 1;
}

.footer-col a {
    color: #cfd8dc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffb300;
}

.logo-col {
    display: flex;
    justify-content: flex-start;
}

.footer-logo {
    width: 200px;
    height: auto;
    display: block;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-links a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .footer-container {
        gap: 30px;
        flex-wrap: wrap; 
        justify-content: flex-start;
    }
}

.site-footer {
    background-color: #032475;
    color: #f8f9fa;
    padding: 80px 5% 40px;
    font-family: 'FiraGO', sans-serif;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap; 
    justify-content: space-between; 
    align-items: flex-start;
    gap: 30px; 
}

.footer-col {
    flex: 0 0 auto; 
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap; 
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li, 
.footer-col p {
    margin-bottom: 15px; 
    font-size: 0.9rem;
    line-height: 1.2;
    white-space: nowrap; 
}

.footer-col a {
    color: #cfd8dc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffb300;
}

.logo-col {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    width: 300px;
    height: 180px;
    object-fit: contain;
    display: block;
    padding: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.social-links a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap; 
        justify-content: center;
        text-align: center;
    }
    
    .footer-col {
        min-width: 200px;
    }

    .social-links {
        justify-content: center;
    }
}

.footer-col {
    min-width: 120px;
}

/* ==================== LANGUAGE DROPDOWN ==================== */

.lang-switch {
    position: relative;
    cursor: pointer;
}

.dropdown-toggle {
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.25s;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle:hover {
    color: var(--primary-orange);
    background: rgba(243, 138, 32, 0.08);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    min-width: 140px;
    z-index: 1001;
    margin-top: 6px;
}

.lang-switch:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.lang-option:hover {
    background: var(--gray);
    color: var(--primary-orange);
}

.flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Mobile adjustments */
@media (max-width: 1200px) {
    .lang-dropdown {
        position: static;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 8px 0 0 0;
        padding-left: 10px;
    }
    
    .lang-option {
        padding: 10px 0;
        font-size: 1.08rem;
    }
}

/* ==================== LANGUAGE DROPDOWN - FIXED FOR MOBILE ==================== */

.lang-switch {
    position: relative;
    cursor: pointer;
}

.dropdown-toggle {
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.25s;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    gap: 4px;
    user-select: none;
}

.dropdown-toggle:hover {
    color: var(--primary-orange);
    background: rgba(243, 138, 32, 0.08);
}

/* Dropdown Menu */
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    min-width: 145px;
    z-index: 1001;
    margin-top: 6px;
}

/* Desktop: Hover */
@media (min-width: 1201px) {
    .lang-switch:hover .lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Tablet & Mobile: Click to toggle */
@media (max-width: 1200px) {
    .lang-dropdown {
        position: static;
        box-shadow: none;
        background: transparent;
        margin: 8px 0 0 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .lang-switch.active .lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 200px;
    }

    .lang-option {
        padding: 12px 0;
        font-size: 1.08rem;
    }
}

/* Common styles for options */
.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.lang-option:hover {
    background: var(--gray);
    color: var(--primary-orange);
}

.flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ==================== LANGUAGE DROPDOWN - OVERLAY + COMPACT ==================== */

.lang-switch {
    position: relative;
    cursor: pointer;
    z-index: 1002;
}

.dropdown-toggle {
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.25s;
    font-weight: 600;
    color: #222;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 5px;
    user-select: none;
    white-space: nowrap;
}

.dropdown-toggle:hover {
    color: var(--primary-orange);
    background: rgba(243, 138, 32, 0.08);
}

/* Dropdown - Overlay style */
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.28s ease;
    min-width: 150px;
    z-index: 9999;           /* High z-index to overlay everything */
    margin-top: 4px;
}

/* Desktop: Hover */
@media (min-width: 1201px) {
    .lang-switch:hover .lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Tablet & Mobile: Click to toggle */
@media (max-width: 1200px) {
    .lang-dropdown {
        position: absolute;           /* Keep absolute for overlay */
        top: 100%;
        right: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
        margin-top: 4px;
        max-height: 0;
        overflow: hidden;
    }

    .lang-switch.active .lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 180px;
    }

    .lang-option {
        padding: 13px 18px;
        font-size: 1.07rem;
    }
}

/* Language options */
.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 1.04rem;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.lang-option:hover {
    background: var(--gray);
    color: var(--primary-orange);
}

.flag {
    width: 26px;
    height: 19px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}