/* ========================================
   YOGI'S ANGELS - DARK + GOLD THEME
   Inspired by client's Invitation PDF:
   Deep charcoal bg, warm gold mandala accents,
   tan/khaki body text
   ======================================== */

/* CSS Variables */
:root {
  /* Backgrounds — Espresso */
  --bg-dark: #0e0805;
  --bg-section: #16100a;
  --bg-card: #2e1f15;
  --bg-card-hover: #3e2f25;

  /* Gold Palette — softened for espresso bg */
  --gold: #c9a961;
  --gold-light: #d8bb78;
  --gold-dark: #a08842;
  --gold-glow: rgba(201, 169, 97, 0.2);

  /* Text (warm cream tones) */
  --text-white: #ffffff;
  --text-light: #ede0d0;
  --text-muted: #bda99a;
  --text-dim: #7a6a58;

  /* Borders */
  --border-subtle: #2e2218;
  --border-gold: #c9a961;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--gold);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

/* Sections - Alternating Backgrounds */
section {
  padding: var(--section-padding);
}

section:nth-child(odd) {
  background-color: var(--bg-dark);
}

section:nth-child(even) {
  background-color: var(--bg-section);
}

/* Navigation */
.navbar {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo img {
  height: 40px;
  width: auto;
}

.navbar .logo span {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 6px;
  font-size: 0.78rem;
  flex-wrap: wrap;
  max-width: 480px;
  justify-content: flex-end;
}

.lang-switcher a {
  color: var(--text-muted);
  padding: 3px 7px;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  white-space: nowrap;
}

.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #0e0805 0%, #1f1410 40%, #0e0805 70%, #1f1410 100%);
  padding-top: 80px;
}

/* Carousel */
.carousel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.85) 0%,
    rgba(10, 10, 15, 0.5) 40%,
    rgba(10, 10, 15, 0.4) 100%
  );
}

.carousel-content {
  position: absolute;
  bottom: 100px;
  left: 40px;
  z-index: 2;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.carousel-slide.active .carousel-content {
  opacity: 1;
  transform: translateY(0);
}

.carousel-content h2 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.carousel-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.carousel-content .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
  background: var(--gold);
  border-color: var(--gold-light);
  box-shadow: 0 0 8px var(--gold-glow);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 60px 40px;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 8, 5, 0.78) 0%,
    rgba(10, 8, 5, 0.55) 45%,
    rgba(10, 8, 5, 0) 78%
  );
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
  padding: 30px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn-whatsapp,
.btn-instagram,
.btn-facebook {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.btn-whatsapp svg,
.btn-instagram svg,
.btn-facebook svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn-whatsapp:hover svg,
.btn-instagram:hover svg,
.btn-facebook:hover svg {
  transform: scale(1.2);
}

.btn-whatsapp {
  background: #1a5c38;
  color: #e0e0e0;
}

.btn-whatsapp:hover {
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.btn-instagram {
  background: #5c1a4a;
  color: #e0e0e0;
}

.btn-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  box-shadow: 0 0 18px rgba(225, 48, 108, 0.5);
  transform: translateY(-2px);
}

.btn-facebook {
  background: #1a3c6e;
  color: #e0e0e0;
}

.btn-facebook:hover {
  background: #1877f2;
  color: #fff;
  box-shadow: 0 0 18px rgba(24, 119, 242, 0.5);
  transform: translateY(-2px);
}

.social-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.social-nav .btn {
  padding: 6px 12px;
  font-size: 0.8rem;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
  padding: 8px 8px 0;
}

.card:hover {
  border-color: rgba(201, 169, 97, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.card-image.is-letterbox {
  object-fit: contain;
  background: var(--bg-dark);
}

.card-image.is-text-right {
  object-fit: cover;
  object-position: right;
}

.card-content {
  padding: 12px 8px 14px;
}

.card-title {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.card-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--bg-dark);
  color: var(--gold);
  font-size: 0.75rem;
  border-radius: 999px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Acts Grid */
.acts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

/* Video Container */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 30px 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
}

/* FAQ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-white);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--text-muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.blog-card .read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--gold);
  font-weight: 600;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-item .icon {
  color: var(--gold);
  font-size: 1.3rem;
  min-width: 30px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Gold Divider (matches PDF gold line) */
.gold-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 100px 0 20px;
  background: var(--bg-dark);
}

/* Page Header (compact title for non-act pages) */
.page-header {
  padding: 30px 0 20px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 0;
}

/* Founder photo */
.founder-photo {
  float: right;
  width: 320px;
  margin: 0 0 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .founder-photo {
    float: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    display: block;
  }
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs span {
  color: var(--gold);
}

/* Acts Catalog Mosaic Hero */
.acts-hero-mosaic {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 100px 5% 60px;
  background: linear-gradient(135deg, #0e0805 0%, #1f1410 50%, #0e0805 100%);
  min-height: 420px;
}

.mosaic-grid {
  flex: 0 0 55%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
  border-radius: 12px;
  overflow: hidden;
}

.mosaic-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  aspect-ratio: 4/3;
}

.mosaic-grid img:hover {
  transform: scale(1.05);
  z-index: 1;
}

.mosaic-text {
  flex: 1;
  text-align: left;
}

.mosaic-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mosaic-text p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.mosaic-text .btn {
  margin-right: 10px;
}

.acts-hero-mosaic.compact {
  display: block;
  padding: 80px 5% 30px;
  min-height: auto;
}

.acts-hero-mosaic.compact .mosaic-text {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.acts-hero-mosaic.compact .mosaic-text h1 {
  margin-bottom: 0.6rem;
}

.acts-hero-mosaic.compact .mosaic-text p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .acts-hero-mosaic {
    flex-direction: column;
    padding: 90px 20px 40px;
    gap: 25px;
    min-height: auto;
  }

  .acts-hero-mosaic.compact {
    padding: 80px 20px 20px;
  }

  .mosaic-grid {
    flex: none;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .mosaic-text {
    text-align: center;
  }

  .mosaic-text h1 {
    font-size: 1.75rem;
  }

  .mosaic-text p {
    font-size: 1rem;
  }
}

/* Act Detail Page */
.act-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.act-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.act-hero img.pos-top {
  object-position: center 25%;
}

/* Side-by-side hero photo pair (About page) */
.act-hero .hero-photo-pair {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
}

.act-hero .hero-photo-pair img {
  /* both action shots — non-uniform fit: stretched horizontally,
     mildly squashed vertically. scaleY > 1 dials back the squash a
     bit; parent overflow clips the small top/bottom spill so the
     body + background stay visible. */
  position: relative;
  flex: 1 1 50%;
  width: 50%;
  height: 100%;
  object-fit: fill;
  transform: scaleY(1.18);
  transform-origin: center;
  opacity: 1;
}

/* Dark gradient at bottom so the white h1 reads cleanly over the photos */
.act-hero:has(.hero-photo-pair)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(14, 8, 5, 0.85) 0%, rgba(14, 8, 5, 0.55) 45%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.act-hero:has(.hero-photo-pair) .container {
  z-index: 1;
}

.act-hero:has(.hero-photo-pair) h1 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.act-hero.no-image {
  background: linear-gradient(135deg, #0e0805 0%, #1f1410 50%, #0e0805 100%);
  height: 28vh;
  min-height: 220px;
  align-items: center;
}

.act-hero.no-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.12), transparent 60%);
  pointer-events: none;
}

.act-hero.no-image .container {
  padding-bottom: 0;
  text-align: center;
}

.act-hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-dark) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  margin: 40px 0;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}


/* Tablet */
@media (max-width: 1024px) {
  .lang-switcher {
    font-size: 0.72rem;
    gap: 4px;
    max-width: 400px;
  }

  .lang-switcher a {
    padding: 2px 6px;
  }

  .nav-links {
    gap: 15px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 1rem; }

  .hero-content {
    padding: 30px 20px;
  }

  .carousel-content {
    display: none;
  }

  .navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding-top: 8px;
    padding-bottom: 0;
  }

  .navbar .container > .logo {
    flex: 1;
    min-width: 0;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
    padding: 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    order: 3;
    width: 100%;
    margin-top: 8px;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links li {
    flex-shrink: 0;
  }

  .nav-links li a {
    font-size: 0.78rem;
    padding: 10px 12px;
    white-space: nowrap;
    display: block;
  }

  .nav-links li.social-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: none;
  }

  .lang-switcher {
    position: relative;
    flex-wrap: nowrap;
    justify-content: flex-end;
    max-width: none;
    gap: 0;
    font-size: 0.75rem;
    margin-top: 0;
    order: 0;
  }

  .lang-switcher a {
    display: none;
    padding: 10px 14px;
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    text-align: left;
  }

  .lang-switcher a.active {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    width: auto;
    cursor: pointer;
  }

  .lang-switcher a.active::after {
    content: '\25BE';
    font-size: 0.7em;
    margin-left: 2px;
  }

  .lang-switcher.open a {
    display: flex;
  }

  .lang-switcher.open {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    min-width: 140px;
    z-index: 1001;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  }

  .lang-switcher.open a.active {
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(201, 169, 97, 0.15);
  }

  .lang-switcher.open a.active::after {
    content: '\25B4';
  }

  .lang-switcher.open a:last-child {
    border-bottom: none;
  }

  .lang-switcher.open a:hover {
    background: rgba(201, 169, 97, 0.1);
  }

  .stats-bar {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .acts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero .cta-buttons {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .hero .cta-buttons .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 14px;
    font-size: 0.9rem;
    text-align: center;
  }

  .act-hero {
    height: 35vh;
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.3rem; }

  .hero h1 { font-size: 1.5rem; }

  .stats-bar {
    gap: 15px;
    padding: 20px;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .acts-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* Touch-friendly targets */
@media (pointer: coarse) {
  .nav-links a {
    padding: 12px 4px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .lang-switcher a {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn {
    min-height: 48px;
    padding: 14px 28px;
  }

  .faq-question {
    min-height: 48px;
  }
}
