/* ===== FONTS ===== */
@font-face {
    font-family: 'InterLight';
    src: url('fonts/Inter-Light.otf') format('opentype');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'InterRegular';
    src: url('fonts/Inter-Regular.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'InterSemiBold';
    src: url('fonts/Inter-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'InterBold';
    src: url('fonts/Inter-Bold.otf') format('opentype');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'LaBelle';
    src: url('fonts/LaBelleAurore-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root {
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --light-gray: #F5F4F0;
    --medium-gray: #E8E6E1;
    --text-dark: #2C2C2C;
    --text-muted: #6B6B6B;
    --gold: #B8926A;
    --gold-light: #D4B896;
    --gold-dark: #96734E;
    --accent: #B8926A;
    --font-light: 'InterLight', sans-serif;
    --font-regular: 'InterRegular', sans-serif;
    --font-semibold: 'InterSemiBold', sans-serif;
    --font-bold: 'InterBold', sans-serif;
    --font-script: 'LaBelle', cursive;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
body {
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: var(--text-dark);
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
    padding: 12px 0;
}
.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}
.navbar-brand img {
    height: 36px;
    width: auto;
}
.navbar-brand span {
    font-family: var(--font-semibold);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gold);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    font-family: var(--font-light);
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    transition: color 0.3s;
    text-transform: uppercase;
}
.nav-links a:hover {
    color: var(--gold);
}
.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}
.btn-prenota {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-light);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-prenota:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-light);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-whatsapp:hover {
    background: var(--gold);
    color: var(--white);
}
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s;
}

/* ===== MOBILE MENU (hidden by default) ===== */
.mobile-menu {
    display: none;
}
.mobile-lang {
    display: none;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-slider {
    position: relative;
    height: 100%;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content {
    color: var(--white);
    padding: 20px;
}
.hero-content .subtitle {
    font-family: var(--font-light);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.9;
}
.hero-content h1 {
    font-family: var(--font-light);
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 24px;
}
.hero-content h1 .script {
    font-family: var(--font-script);
    font-size: 56px;
    font-weight: 400;
}
.hero-content .hero-cta {
    margin-top: 32px;
}
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.hero-indicators button {
    width: 40px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}
.hero-indicators button.active {
    background: var(--white);
    width: 60px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 20px;
}
.section-light {
    background: var(--off-white);
}
.section-white {
    background: var(--white);
}
.section-dark {
    background: var(--text-dark);
    color: var(--white);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    font-family: var(--font-semibold);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-light);
    font-size: 36px;
    font-weight: 300;
    line-height: 1.3;
    margin: 0 0 20px;
    color: var(--text-dark);
}
.section-dark .section-title {
    color: var(--white);
}
.section-subtitle {
    font-family: var(--font-light);
    font-size: 16px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}
.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

/* ===== PANORAMICA ===== */
.panoramica-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-light);
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.9;
}

/* ===== APPARTAMENTI ===== */
.appartamento-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    margin-bottom: 60px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.appartamento-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.appartamento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.appartamento-grid.reverse {
    direction: rtl;
}
.appartamento-grid.reverse > * {
    direction: ltr;
}
.appartamento-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    min-height: 400px;
}
.appartamento-images .img-main {
    grid-column: 1 / -1;
}
.appartamento-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.appartamento-info {
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.appartamento-info .tag {
    display: inline-block;
    font-family: var(--font-semibold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.appartamento-info h3 {
    font-family: var(--font-light);
    font-size: 30px;
    font-weight: 300;
    margin: 0 0 8px;
    color: var(--text-dark);
}
.appartamento-info .app-subtitle {
    font-family: var(--font-light);
    font-size: 15px;
    color: var(--gold);
    margin-bottom: 20px;
}
.appartamento-info p {
    font-family: var(--font-light);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}
.servizi-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    list-style: none;
    padding: 0;
}
.servizi-list li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-light);
    font-size: 13px;
    color: var(--text-dark);
    background: var(--light-gray);
    padding: 6px 14px;
    border-radius: 20px;
}
.servizi-list li i {
    color: var(--gold);
    font-size: 14px;
}

/* ===== SERVIZI GRID ===== */
.servizi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.servizio-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}
.servizio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.servizio-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.servizio-icon i {
    font-size: 22px;
    color: var(--gold);
}
.servizio-item h4 {
    font-family: var(--font-semibold);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0 0 10px;
}
.servizio-item p {
    font-family: var(--font-light);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== TARIFFE ===== */
.tariffe-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.tariffa-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.tariffa-header {
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 24px;
}
.tariffa-header h4 {
    font-family: var(--font-semibold);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}
.tariffa-body {
    padding: 24px;
}
.tariffe-table {
    width: 100%;
    border-collapse: collapse;
}
.tariffe-table th,
.tariffe-table td {
    padding: 10px 8px;
    text-align: center;
    font-family: var(--font-light);
    font-size: 13px;
    border-bottom: 1px solid var(--medium-gray);
}
.tariffe-table th {
    font-family: var(--font-semibold);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 12px;
}
.tariffe-table td {
    color: var(--text-dark);
}
.tariffe-note {
    text-align: center;
    font-family: var(--font-light);
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 40px;
    line-height: 1.7;
}

/* ===== POSIZIONE ===== */
.posizione-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    height: 450px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.dintorni-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dintorni-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--medium-gray);
    font-family: var(--font-light);
    font-size: 15px;
    color: var(--text-dark);
}
.dintorni-list li:last-child {
    border-bottom: none;
}
.dintorni-list .icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dintorni-list .icon-circle i {
    color: var(--gold);
    font-size: 16px;
}
.dintorni-list .poi-name {
    font-family: var(--font-semibold);
    font-size: 14px;
}
.dintorni-list .poi-distance {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s, filter 0.3s;
    cursor: pointer;
}
.gallery-grid img:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

/* ===== CONTATTI ===== */
.contatti-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.contatti-info h3 {
    font-family: var(--font-light);
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 30px;
}
.contatti-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contatti-item .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contatti-item .icon-circle i {
    color: var(--white);
    font-size: 18px;
}
.contatti-item .info {
    font-family: var(--font-light);
}
.contatti-item .info strong {
    display: block;
    font-family: var(--font-semibold);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.contatti-item .info a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}
.contatti-item .info a:hover {
    color: var(--gold);
}
.contatti-form {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
}
.contatti-form h4 {
    font-family: var(--font-semibold);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-family: var(--font-semibold);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-family: var(--font-light);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-semibold);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-submit:hover {
    background: var(--gold-dark);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 20px 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}
.footer-brand p {
    font-family: var(--font-light);
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}
.footer-col h5 {
    font-family: var(--font-semibold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0 0 20px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-family: var(--font-light);
    font-size: 14px;
    transition: color 0.3s;
}
.footer-col ul li a:hover {
    color: var(--white);
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
}
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-light);
    font-size: 13px;
}
.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-left: 20px;
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.modal-overlay.show {
    display: flex;
}
.modal-box {
    background: var(--white);
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    overflow: hidden;
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.modal-header {
    background: var(--gold);
    color: var(--white);
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h5 {
    font-family: var(--font-semibold);
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}
.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}
.modal-body {
    padding: 30px;
}
.prenota-options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    text-align: center;
}
.prenota-option {
    padding: 20px 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    transition: all 0.3s;
}
.prenota-option:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(184,146,106,0.15);
}
.prenota-option i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}
.prenota-option .opt-title {
    font-family: var(--font-semibold);
    font-size: 12px;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.prenota-option .opt-note {
    font-family: var(--font-light);
    font-size: 11px;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}
.prenota-option a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-light);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 20px;
    transition: background 0.3s;
}
.prenota-option a:hover {
    background: var(--gold-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: var(--white);
        z-index: 999;
        padding: 80px 30px 30px;
        flex-direction: column;
        gap: 0;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu.open .mobile-lang { display: flex; }
    .mobile-menu a {
        display: block;
        padding: 16px 0;
        font-family: var(--font-light);
        font-size: 18px;
        color: var(--text-dark);
        text-decoration: none;
        border-bottom: 1px solid var(--medium-gray);
        letter-spacing: 1px;
    }
    .mobile-menu .mobile-cta {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .appartamento-grid,
    .appartamento-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .appartamento-images {
        min-height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .appartamento-images .img-main {
        grid-column: 1 / -1;
    }
    .appartamento-images img {
        width: 100%;
        height: auto;
        object-fit: cover;
        aspect-ratio: 4/3;
    }
    .appartamento-info { padding: 30px 24px; }

    .servizi-grid { grid-template-columns: repeat(2, 1fr); }
    .tariffe-wrapper { grid-template-columns: 1fr; }
    .posizione-grid { grid-template-columns: 1fr; }
    .contatti-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 32px; }
    .hero-content h1 .script { font-size: 38px; }
    .section { padding: 60px 16px; }
    .section-title { font-size: 28px; }
    .servizi-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .prenota-options { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
}

/* ===== LANG SWITCHER ===== */
.lang-switcher {
    position: relative;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    padding: 6px 12px;
    font-family: var(--font-light);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
}
.lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.lang-btn i:first-child { font-size: 14px; }
.lang-btn i:last-child { font-size: 10px; transition: transform 0.3s; }
.lang-switcher.open .lang-btn i:last-child { transform: rotate(180deg); }
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
    min-width: 140px;
    z-index: 100;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-dropdown a {
    display: block;
    padding: 10px 16px;
    font-family: var(--font-light);
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
}
.lang-dropdown a:hover { background: var(--light-gray); color: var(--gold); }
.lang-dropdown a.active { color: var(--gold); font-family: var(--font-semibold); }
.mobile-lang {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--medium-gray);
}
.mobile-lang a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--light-gray);
    font-family: var(--font-semibold);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-dark);
    text-decoration: none;
    border: none !important;
    padding: 0 !important;
    transition: all 0.2s;
}
.mobile-lang a.active { background: var(--gold); color: var(--white); }
.mobile-lang a:hover { background: var(--gold-light); color: var(--white); }
