.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 70px;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.1); 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar:hover {
    background: rgba(19, 19, 19, 0.1);
    backdrop-filter: blur(8px);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--smooth);
}

.nav-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 208, 0, 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.brand-sub {
    font-family: var(--font-main);
    font-size: 10px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 4px;
}

.logo-wrapper:hover .nav-logo {
    transform: scale(1.05);
}

.logo-wrapper:hover .brand-name {
    color: var(--gold);
}

.navbar nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1.8px;
    margin: 0 22px;
    transition: color 0.3s ease;
    position: relative;
}

.navbar nav a:hover {
    color: var(--gold);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-panel {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.95);
    border-radius: 12px;
    padding: 28px 40px;
    display: flex;
    gap: 40px;
    min-width: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.column a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.column a:hover {
    color: var(--gold);
}

.divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.footer-logo-fix {
    margin-bottom: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 208, 0, 0.3);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px !important;
    height: 20px !important;
    stroke: var(--gold);
}

.social-icon:hover {
    background: var(--gold);
}

.social-icon:hover svg {
    stroke: #000;
}

.main-footer {
    background: #0a0a0a;
    padding: 100px 70px 40px;
    border-top: 1px solid rgba(255, 208, 0, 0.1);
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand p {
    font-size: 18px;
    color: #777;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 25px;
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }

.footer-col ul li a {
    color: var(--gray-txt);
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: var(--white); }

.contact-item {
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.contact-item .label {
    font-size: 12px;
    font-weight: 400;
    color: #555;      
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.link-big {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--smooth);
}

.link-big:hover { color: var(--gold); }
.link-big:hover .f-arrow { transform: translateX(10px); }

.f-arrow {
    color: var(--gold);
    transition: transform 0.3s;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #444;
    text-transform: uppercase;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--smooth);
}

.lang-btn.active {
    color: var(--gold);
}

.lang-btn:hover {
    color: var(--white);
}

.lang-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}