/* ============================================================
   CLAUDE DESIGN SYSTEM — ESJP ABOGADOS
   Full professional overrides for all sections.
   ============================================================ */

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 7vw;
}

/* ── Section Helpers ── */
.section-subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-subtitle.center { text-align: center; }

.section-title-center {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  text-align: center;
  color: var(--bg-dark);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.section-title-center span {
  font-style: italic;
  color: var(--accent);
}

.section-intro {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  background-color: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 7vw;
  border-bottom: 1px solid rgba(28,26,23,0.1);
  background: var(--bg-base);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-modal);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(28,26,23,0.08);
  background: rgba(246,242,234,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-decoration: none;
}

.logo-accent {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--accent);
  vertical-align: middle;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after { display: none; }

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-cta {
  background: var(--bg-dark) !important;
  color: var(--text-white) !important;
  padding: 11px 22px !important;
  border-radius: 2px;
  font-size: 12px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--bg-dark) !important;
}

/* Hamburger override */
.nav-toggle span {
  background: #ffffff;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
  background: var(--bg-base);
  margin-top: 70px; /* account for fixed navbar */
}

.hero-content {
  padding: 96px 5vw 96px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.0;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--bg-dark);
}
.hero h1 span {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(28,26,23,0.1);
  border-bottom: 1px solid rgba(28,26,23,0.1);
  background: var(--bg-base);
}

.stat-item { padding: 40px 32px; text-align: left; }
.stat-item.stat-border { border-right: 1px solid rgba(28,26,23,0.1); }

.stat-number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 48px;
  color: var(--bg-dark);
  line-height: 1;
}
.stat-number span { color: var(--accent); }

.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════
   AREAS
   ═══════════════════════════════════════════════ */
.areas {
  padding: 96px 0;
  background: var(--bg-base);
}

.areas-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}

.areas-header-titles h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 56px);
  margin: 0;
  line-height: 1.04;
  color: var(--bg-dark);
}

.areas-intro {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 340px;
  margin: 0;
  text-align: right;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(28,26,23,0.1);
  border: 1px solid rgba(28,26,23,0.1);
}

.area-card {
  background: var(--bg-base);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 210px;
  transition: background 0.3s;
}
.area-card:hover { background: var(--bg-alt); }

.area-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--accent);
}

.area-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 27px;
  margin: 0;
  color: var(--bg-dark);
  line-height: 1.05;
}

.area-card p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.62;
  color: var(--text-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--bg-dark);
  color: var(--text-white);
}

.about-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  padding: 88px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  margin: 0;
  line-height: 1.06;
  color: var(--text-white);
}
.about-content h2 span {
  font-style: italic;
  color: var(--accent-light);
}

.about-content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 520px;
}
.about-content strong {
  font-weight: 600;
  color: #ffffff !important;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  margin-top: 6px;
}
.about-features > span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.about-features .check {
  color: var(--accent);
  font-weight: bold;
  margin-right: 6px;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials-section {
  padding: var(--space-section) 0;
  background: var(--bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-base);
  border: 1px solid rgba(28,26,23,0.1);
  border-radius: 3px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(28,26,23,0.1);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 4px;
}

.testimonial-card p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--bg-dark);
  margin: 0;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial-author-row strong {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bg-dark);
}
.testimonial-author-row span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   BLOG PREVIEW
   ═══════════════════════════════════════════════ */
.blog-section {
  padding: var(--space-section) 0;
  background: var(--bg-base);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-alt);
  border: 1px solid rgba(28,26,23,0.1);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 12px 32px rgba(28,26,23,0.1);
  transform: translateY(-4px);
}

.blog-card-icon {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--bg-dark);
}

.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  color: var(--bg-dark);
  margin: 0;
}

.blog-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(28,26,23,0.08);
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq-section {
  padding: var(--space-section) 0;
  background: var(--bg-alt);
}

.faq-container {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-base);
  border: 1px solid rgba(28,26,23,0.1);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] {
  border-color: var(--accent);
}

.faq-question {
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--bg-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-question:hover { color: var(--accent); }

.faq-answer {
  padding: 0 28px 22px;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact-section {
  padding: var(--space-section) 0;
  background: var(--bg-base);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  margin-top: 16px;
}

.contact-form {
  background: var(--bg-alt);
  border: 1px solid rgba(28,26,23,0.1);
  border-radius: 3px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid rgba(28,26,23,0.15);
  border-radius: 2px;
  background: var(--bg-base);
  color: var(--bg-dark);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--bg-alt);
  border: 1px solid rgba(28,26,23,0.1);
  border-radius: 3px;
  padding: 28px 28px;
  transition: border-color 0.3s;
}
.contact-info-card:hover {
  border-color: var(--accent);
}

.contact-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--bg-dark);
  margin: 0 0 8px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 8px;
  line-height: 1.6;
}

.contact-info-card a {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-info-card a:hover { text-decoration: underline; }

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.social-links a {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(246,242,234,0.1);
}

.footer-brand-col p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 38px;
  letter-spacing: 0.06em;
  color: var(--text-white);
  line-height: 1;
}
.footer-logo-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}

.footer-links-group h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-white); }

.footer-bottom {
  padding-top: 28px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(230,223,207,0.9);
  margin: 4px 0;
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: var(--z-overlay);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ═══════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--bg-dark);
  color: var(--text-white);
  border: 1px solid rgba(246,242,234,0.2);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: var(--z-overlay);
  transition: opacity 0.3s, background 0.3s;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 992px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { min-height: 400px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item.stat-border { border-bottom: 1px solid rgba(28,26,23,0.1); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 350px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .navbar { padding: 15px 5vw; }
  
  /* Mobile Menu (Fullscreen overlay) */
  .nav-toggle {
    display: flex;
    z-index: var(--z-modal);
  }
  .nav-links {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: var(--z-overlay);
    background: rgba(28,26,23,0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links a {
    color: var(--text-white) !important;
    font-size: 22px !important;
    letter-spacing: 0.06em;
  }
  .nav-toggle.active span { background: var(--text-white); }
  
  .hero { margin-top: 60px; }
  .hero-content { padding: 48px 5vw; }
  .hero h1 { font-size: clamp(32px, 8vw, 44px); }
  .areas-grid { grid-template-columns: 1fr; }
  .areas-header { flex-direction: column; }
  .areas-intro { text-align: left; max-width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat-item.stat-border { border-right: none; border-bottom: 1px solid rgba(28,26,23,0.1); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand-col p { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .stat-number { font-size: 36px; }
  .stats { grid-template-columns: 1fr; }
}

/* ============================================================
   GLOBAL LINK FIX (Anti-Blue Links)
   ============================================================ */
a, a:link, a:visited {
    color: inherit;
    text-decoration: none;
}
a[href^="tel:"], a[href^="mailto:"] {
    color: inherit !important;
    text-decoration: none !important;
}

/* ============================================================
   GLOBAL TYPOGRAPHY FIX (Override legacy light-blue colors)
   ============================================================ */
:root {
  --text-primary: var(--bg-dark);
  --text-secondary: var(--text-muted);
  --text-tertiary: var(--accent);
}

strong, b {
    font-weight: 700;
}

article p, .blog-content p, .blog-content li {
    color: var(--text-muted) !important;
}
/* ============================================================
   CLEAN HERO IMAGE OVERRIDES
   ============================================================ */
.hero-image::before,
.hero-image::after {
    display: none !important;
}
.hero-image img {
    z-index: auto !important;
    border-radius: 4px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* ============================================================
   SECONDARY BUTTON FOR SERVICE CARDS
   ============================================================ */
.btn-secondary {
    color: var(--accent-dark) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.8rem !important;
    letter-spacing: 0.08em;
    text-decoration: underline !important;
    text-underline-offset: 5px;
    transition: color 0.2s !important;
}

.btn-secondary:hover {
    color: var(--bg-dark) !important;
}

/* ============================================================
   CUSTOM LANGUAGE SELECTOR
   ============================================================ */
.lang-selector {
    position: relative;
    margin-left: auto;
    margin-right: 18px;
    z-index: 10000;
    flex-shrink: 0;
}

.lang-btn {
    display: flex !important;
    align-items: center;
    gap: 6px;
    background: rgba(197, 160, 89, 0.15) !important;
    border: 2px solid var(--accent) !important;
    border-radius: 6px;
    padding: 7px 14px;
    color: var(--accent) !important;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.lang-btn:hover {
    background: var(--accent) !important;
    color: var(--bg-dark) !important;
}

.lang-btn:hover svg {
    stroke: var(--bg-dark);
}

.lang-btn svg {
    flex-shrink: 0;
    stroke: var(--accent);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: #1c1a17;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    z-index: 10001;
}

.lang-dropdown.open {
    display: flex !important;
}

.lang-option {
    display: block !important;
    padding: 11px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
}

.lang-option:hover {
    background: rgba(197, 160, 89, 0.2);
    color: var(--accent) !important;
}

/* Hide Google Translate UI without killing the engine */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
#google_translate_element { position: absolute !important; opacity: 0 !important; height: 0 !important; overflow: hidden !important; pointer-events: none !important; }
#goog-gt-tt { display: none !important; }
.goog-te-balloon-frame { display: none !important; }
body > .skiptranslate:first-child { height: 0 !important; overflow: hidden !important; opacity: 0 !important; }

/* Mobile: show compact globe icon only */
@media (max-width: 768px) {
    .lang-selector {
        margin-left: 0;
        margin-right: 12px;
        order: 2;
    }
    .lang-btn span {
        display: none;
    }
    .lang-btn {
        padding: 7px 10px;
    }
    .lang-dropdown {
        right: -20px;
    }
}
