@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #8b7355;
    --primary-light: #a89278;
    --primary-dark: #6d5a43;
    --dark: #1a1a1a;
    --dark-soft: #2d2d2d;
    --dark-menu: #2a2a2a;
    --text: #555555;
    --text-light: #888888;
    --border: #e0dbd4;
    --bg: #ffffff;
    --bg-alt: #f5f1eb;
    --bg-warm: #eae5dc;
    --bg-cream: #f0ebe3;
    --white: #ffffff;
    --gold: #c4a265;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; }

/* ===================== PRELOADER ===================== */
.preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease;
}
.preloader.hidden { opacity: 0; pointer-events: none; }
.preloader__inner { text-align: center; }
.preloader__logo { height: 120px; margin-bottom: 2rem; animation: preloaderPulse 1.5s ease-in-out infinite; }
.preloader__bar { width: 200px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; }
.preloader__progress { height: 100%; background: var(--primary); border-radius: 2px; width: 0; transition: width 0.3s; }
@keyframes preloaderPulse { 0%,100% { opacity: 0.5; transform: scale(0.98); } 50% { opacity: 1; transform: scale(1); } }

/* ===================== SCROLL PROGRESS ===================== */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; z-index: 10000;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    width: 0; transition: width 0.1s linear;
}

/* ===================== HEADER ===================== */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 0 4vw; transition: var(--transition);
}
.header--transparent { background: transparent; }
.header--solid {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header__inner {
    display: flex; justify-content: center; align-items: center;
    height: 80px; max-width: 1400px; margin: 0 auto; position: relative;
}
.header__logo { flex-shrink: 0; display: flex; align-items: center; }
.header__logo img { height: 110px; width: auto; transition: var(--transition); }
.header--transparent .header__logo img { filter: brightness(0) invert(1); }
.header--solid .header__logo img { filter: none; }
.header__mobile {
    display: flex; cursor: pointer; flex-direction: column; gap: 5px;
    z-index: 1002; padding: 8px; position: absolute; right: 0;
}
.header__mobile span { display: block; width: 24px; height: 1.5px; transition: var(--transition); }
.header--transparent .header__mobile span { background: var(--white); }
.header--solid .header__mobile span { background: var(--dark); }
.header__mobile.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); background: var(--white); }
.header__mobile.active span:nth-child(2) { opacity: 0; }
.header__mobile.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); background: var(--white); }

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--dark-menu); z-index: 100002; flex-direction: column;
    padding: 0; opacity: 0; transition: opacity 0.4s ease;
}
.mobile-menu.active { display: flex; opacity: 1; }
.mobile-menu__header {
    display: flex; justify-content: center; align-items: center;
    height: 110px; padding: 0 4vw; position: relative;
}
.mobile-menu__logo { display: flex; align-items: center; }
.mobile-menu__logo img { height: 80px; width: auto; filter: brightness(0) invert(1); }
.mobile-menu__close {
    position: absolute; left: 4vw; background: none; border: none;
    color: var(--white); font-size: 1.3rem; cursor: pointer; padding: 8px;
}
.mobile-menu__search {
    position: absolute; right: 4vw; background: none; border: none;
    color: var(--white); font-size: 1rem; cursor: pointer; padding: 8px;
}
.mobile-menu__nav { flex: 1; display: flex; flex-direction: column; padding: 3rem 6vw; gap: 0; }
.mobile-menu__link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 0; font-family: var(--font-heading); font-size: 1.4rem;
    font-weight: 400; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu__link .arrow { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.mobile-menu__footer { padding: 2rem 6vw; }
.mobile-menu__cta {
    display: block; text-align: center; padding: 16px 32px;
    background: var(--primary); color: var(--white); border-radius: var(--radius-sm);
    font-size: 1rem; font-weight: 500;
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
    font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--white); }

/* ===================== CONTACT HERO ===================== */
.contact-hero {
    position: relative; height: 50vh; min-height: 360px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    display: flex; align-items: flex-end;
}
.contact-hero__overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}
.contact-hero__content {
    position: relative; z-index: 2; padding: 0 6vw 4rem; width: 100%;
}
.contact-hero__title {
    font-family: var(--font-heading); font-size: 3.5rem; font-weight: 300;
    color: var(--white); line-height: 1.1; margin-bottom: 0.8rem;
}
.contact-hero__subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.85); font-weight: 300;
    max-width: 500px;
}

/* ===================== SECTIONS ===================== */
.section { padding: 5rem 6vw; }
.section__header { text-align: center; margin-bottom: 3rem; }
.section__badge {
    display: inline-block; font-size: 0.75rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase; color: var(--primary);
    margin-bottom: 0.8rem;
}
.section__title {
    font-family: var(--font-heading); font-size: 2.5rem; font-weight: 400;
    line-height: 1.2;
    background: linear-gradient(90deg, #8b7355 0%, #8b7355 var(--title-fill, 0%), #1a1a1a var(--title-fill, 0%), #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section__line {
    width: 50px; height: 2px; background: var(--primary);
    margin: 1rem auto; border-radius: 2px;
}
.section__desc {
    font-size: 1rem; color: var(--text-light); max-width: 600px;
    margin: 0 auto; line-height: 1.8;
}

/* ===================== CONTACT CARDS ===================== */
.contact-cards { background: var(--bg-cream); }
.contact-cards__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    max-width: 1200px; margin: 0 auto;
}
.contact-card {
    background: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem;
    text-align: center; transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.contact-card__icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: var(--bg-cream); display: flex; align-items: center;
    justify-content: center; margin: 0 auto 1.5rem; font-size: 1.5rem;
    color: var(--primary); transition: var(--transition);
}
.contact-card:hover .contact-card__icon { background: var(--primary); color: var(--white); }
.contact-card__title {
    font-family: var(--font-heading); font-size: 1.4rem; font-weight: 500;
    color: var(--dark); margin-bottom: 1rem;
}
.contact-card__text { font-size: 0.9rem; color: var(--text); margin-bottom: 0.3rem; line-height: 1.6; }
.contact-card__text a { color: var(--primary); }
.contact-card__text a:hover { color: var(--primary-dark); }
.contact-card__subtext { font-size: 0.8rem; color: var(--text-light); margin-top: 0.5rem; font-style: italic; }
.contact-card__link {
    display: inline-block; margin-top: 1rem; font-size: 0.85rem;
    color: var(--primary); font-weight: 500;
}
.contact-card__link:hover { color: var(--primary-dark); }
.contact-card__link i { margin-left: 4px; font-size: 0.75rem; }
.contact-card__link .fab { margin-right: 4px; margin-left: 0; font-size: 1rem; }
.contact-card__schedule { text-align: left; }
.schedule-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 0; font-size: 0.85rem; border-bottom: 1px solid var(--border);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row span:first-child { font-weight: 500; color: var(--dark); }
.schedule-row span:last-child { color: var(--text); }
.schedule-row--closed span:last-child { color: #c0392b; font-weight: 500; }

/* ===================== MAP ===================== */
.map-section { background: var(--bg); }
.map-container {
    max-width: 1200px; margin: 0 auto; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.map-container iframe { display: block; width: 100%; height: 450px; }

/* ===================== TRANSPORT ===================== */
.transport-section { background: var(--bg-cream); }
.transport-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    max-width: 1200px; margin: 0 auto;
}
.transport-item {
    text-align: center; padding: 2rem 1.5rem;
    background: var(--white); border-radius: var(--radius);
    transition: var(--transition);
}
.transport-item:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.transport-item__icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem; font-size: 1.3rem; color: var(--white);
}
.transport-item__title {
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 500;
    color: var(--dark); margin-bottom: 0.6rem;
}
.transport-item__text { font-size: 0.85rem; color: var(--text); line-height: 1.6; }

/* ===================== FORM SECTION ===================== */
.form-section { background: var(--bg); }
.form-section__inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    max-width: 1200px; margin: 0 auto; align-items: start;
}
.form-section__desc { font-size: 1rem; color: var(--text); line-height: 1.8; margin-top: 1.5rem; }
.form-section__direct { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.form-section__wa, .form-section__phone {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.2rem 1.5rem; background: var(--bg-cream); border-radius: var(--radius-sm);
    transition: var(--transition);
}
.form-section__wa:hover, .form-section__phone:hover {
    background: var(--bg-warm); transform: translateX(4px);
}
.form-section__wa i, .form-section__phone i { font-size: 1.5rem; color: var(--primary); }
.form-section__wa-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.form-section__wa-number { display: block; font-size: 1rem; font-weight: 500; color: var(--dark); margin-top: 2px; }
.form-section__social { margin-top: 2rem; display: flex; gap: 1rem; }
.form-section__social-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--bg-cream); display: flex; align-items: center;
    justify-content: center; font-size: 1.1rem; color: var(--primary);
    transition: var(--transition);
}
.form-section__social-icon:hover { background: var(--primary); color: var(--white); }

/* ===================== FORM FIELDS ===================== */
.form-section__form {
    background: var(--white); padding: 2.5rem; border-radius: var(--radius);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block; font-size: 0.82rem; font-weight: 500; color: var(--dark);
    margin-bottom: 0.4rem; letter-spacing: 0.3px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-family: var(--font-body);
    font-size: 0.9rem; color: var(--dark); background: var(--bg);
    transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(139,115,85,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
}
.form-group--checkbox { display: flex; align-items: flex-start; gap: 0.6rem; }
.form-group--checkbox input[type="checkbox"] {
    width: auto; margin-top: 4px; accent-color: var(--primary); cursor: pointer;
}
.form-group--checkbox label { font-size: 0.82rem; color: var(--text); cursor: pointer; }
.form-link { color: var(--primary); text-decoration: underline; }
.form-submit {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    width: 100%; padding: 1rem 2rem; background: var(--primary); color: var(--white);
    border: none; border-radius: var(--radius-sm); font-family: var(--font-body);
    font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: var(--transition);
    margin-top: 0.5rem;
}
.form-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }
.form-success {
    display: none; text-align: center; padding: 1.5rem; margin-top: 1rem;
    background: #eafaf1; border-radius: var(--radius-sm); color: #27ae60;
}
.form-success i { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.form-success p { font-size: 0.9rem; }
.form-success.active { display: block; }

/* ===================== EMERGENCY ===================== */
.emergency-section { padding: 0 6vw; margin-bottom: 0; }
.emergency-inner {
    display: flex; align-items: center; gap: 2rem;
    padding: 2rem 2.5rem; background: #fef5f0; border-radius: var(--radius);
    border-left: 4px solid #e67e22; max-width: 1200px; margin: 0 auto;
}
.emergency-icon { font-size: 2rem; color: #e67e22; flex-shrink: 0; }
.emergency-content { flex: 1; }
.emergency-title {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 500;
    color: var(--dark); margin-bottom: 0.3rem;
}
.emergency-text { font-size: 0.9rem; color: var(--text); }
.emergency-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 1.5rem; background: #e67e22; color: var(--white);
    border-radius: var(--radius-sm); font-weight: 500; font-size: 0.9rem;
    white-space: nowrap; transition: var(--transition); flex-shrink: 0;
}
.emergency-btn:hover { background: #d35400; }

/* ===================== CTA SECTION ===================== */
.cta-section {
    text-align: center; padding: 5rem 6vw;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.cta-section h3 {
    font-family: var(--font-heading); font-size: 2.5rem; font-weight: 300;
    color: var(--white); margin-bottom: 0.8rem;
}
.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 500;
    font-size: 0.95rem; transition: var(--transition);
}
.btn--primary { background: var(--white); color: var(--primary); }
.btn--primary:hover { background: var(--bg-cream); transform: translateY(-2px); }
.btn--outline {
    background: transparent; color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); }

/* ===================== FOOTER ===================== */
.footer { background: var(--dark); padding: 4rem 6vw 2rem; color: rgba(255,255,255,0.7); }
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand { margin-bottom: 1rem; }
.footer__logo-img { height: 50px; filter: brightness(0) invert(1); }
.footer__text { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.8rem; }
.footer__social-icon {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    color: rgba(255,255,255,0.7); transition: var(--transition);
}
.footer__social-icon:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.footer__heading {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500;
    color: var(--white); margin-bottom: 1.2rem;
}
.footer__link { display: block; font-size: 0.85rem; padding: 0.3rem 0; color: rgba(255,255,255,0.6); }
.footer__link:hover { color: var(--white); }
.footer__link i { margin-right: 6px; }
.footer__legal {
    display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__legal-link {
    font-family: var(--font-body); font-size: 0.78rem;
    color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s ease;
}
.footer__legal-link:hover { color: rgba(255,255,255,0.7); }
.footer__bottom {
    text-align: center; padding-top: 1rem;
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ===================== CHAT ===================== */
.chat-btn {
    position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px;
    border-radius: 50%; background: var(--dark); color: var(--white); border: none;
    font-size: 1.3rem; cursor: pointer; z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.chat-btn:hover { transform: scale(1.05); }
.chat-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--dark); z-index: 1003; flex-direction: column;
    align-items: center; justify-content: center; text-align: center; padding: 2rem;
}
.chat-overlay.active { display: flex; }
.chat-overlay__title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 300; color: var(--white); margin-bottom: 2rem; }
.chat-overlay__link {
    display: block; font-size: 1.1rem; color: rgba(255,255,255,0.7);
    padding: 1rem; transition: var(--transition);
}
.chat-overlay__link:hover { color: var(--white); }
.chat-overlay__link .arrow { margin-right: 8px; }

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .contact-cards__grid { grid-template-columns: repeat(2, 1fr); }
    .transport-grid { grid-template-columns: repeat(2, 1fr); }
    .form-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header__logo img { height: 90px; }
    .contact-hero__title { font-size: 2.5rem; }
    .contact-hero__subtitle { font-size: 0.95rem; }
    .section { padding: 3.5rem 5vw; }
    .section__title { font-size: 1.8rem; }
    .contact-cards__grid { grid-template-columns: 1fr; }
    .transport-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .emergency-inner { flex-direction: column; text-align: center; gap: 1rem; }
    .cta-section h3 { font-size: 1.8rem; }
    .map-container iframe { height: 350px; }
    .mobile-menu__nav { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .breadcrumb { font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .header__logo img { height: 80px; }
    .contact-hero { height: 40vh; min-height: 280px; }
    .contact-hero__title { font-size: 1.8rem; }
    .contact-hero__subtitle { font-size: 0.85rem; }
    .section__title { font-size: 1.5rem; }
    .section__header { margin-bottom: 2rem; }
    .transport-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .form-section__form { padding: 1.2rem; }
    .cta-section h3 { font-size: 1.4rem; }
    .cta-section { padding: 2.5rem 5vw; }
    .cta-section p { font-size: 0.85rem; }
    .map-container iframe { height: 260px; }
    .contact-card { padding: 1.5rem; }
    .contact-card__title { font-size: 1rem; }
    .contact-card__text { font-size: 0.85rem; }
    .transport-item { padding: 1.2rem; }
    .emergency-inner { padding: 1.5rem; gap: 0.8rem; }
    .btn { font-size: 0.78rem; padding: 0.65rem 1.5rem; }
    .footer { padding: 2.5rem 5vw 1.5rem; }
    .footer__brand img { height: 55px; }
    .mobile-menu__logo img { height: 55px; }
    .mobile-menu__link { font-size: 0.95rem; padding: 0.8rem 0; }
}

@media (max-width: 360px) {
    .header__logo img { height: 70px; }
    .contact-hero { height: 35vh; min-height: 250px; }
    .contact-hero__title { font-size: 1.5rem; }
    .section { padding: 2rem 4vw; }
    .section__title { font-size: 1.3rem; }
    .cta-section h3 { font-size: 1.2rem; }
    .map-container iframe { height: 220px; }
    .form-section__form { padding: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===================== BACK TO TOP ===================== */
.back-to-top {

    position: fixed;
    bottom: 5.5rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary);
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(20px);
    color: rgba(255,255,255,0.85);
    padding: 1.5rem 4vw;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 100001;
    border-top: 1px solid rgba(255,255,255,0.06);
    animation: cookieSlideUp 0.5s ease-out;
}
.cookie-banner.active {
    display: flex;
}
@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
    font-size: 0.82rem;
    line-height: 1.6;
    flex: 1;
}
.cookie-banner__text a {
    color: var(--gold);
    text-decoration: underline;
}
.cookie-banner__actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}
.cookie-banner__btn {
    padding: 0.6rem 1.4rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.cookie-banner__btn--accept {
    background: var(--primary);
    color: var(--white);
}
.cookie-banner__btn--accept:hover {
    background: var(--primary-dark);
}
.cookie-banner__btn--reject {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
}
.cookie-banner__btn--reject:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

/* ===================== LAZY LOAD ===================== */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded {
    opacity: 1;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 5vw;
        gap: 1rem;
    }
    .whatsapp-float {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    .back-to-top {

        bottom: 5rem;
        left: 1rem;
        width: 42px;
        height: 42px;
    }
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
}
.lang-switcher__btn {
    background: none;
    border: 1px solid transparent;
    color: inherit;
    font-size: 0.72rem;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 3px 5px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.2s, border-color 0.2s;
    text-transform: uppercase;
    line-height: 1;
}
.lang-switcher__btn:hover { opacity: 0.9; border-color: currentColor; }
.lang-switcher__btn.active { opacity: 1; border-color: currentColor; font-weight: 700; }
.mobile-menu .lang-switcher {
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.mobile-menu .lang-switcher__btn { color: #fff; font-size: 0.8rem; padding: 4px 7px; }
@media (max-width: 768px) {
    .lang-switcher { gap: 1px; }
    .lang-switcher__btn { font-size: 0.68rem; padding: 2px 4px; }
}
.header__inner .lang-switcher {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
@media (max-width: 1024px) {
    .header__inner .lang-switcher {
        right: 55px;
    }
}
@media (max-width: 768px) {
    .header__inner .lang-switcher {
        display: none;
    }
}
