:root {
  --bg: #040406;
  --bg-card: rgba(255, 255, 255, 0.04);
  --panel: rgba(255, 255, 255, 0.07);
  --brand: #e60012;
  --brand-dark: #c3000f;
  --text: #f6f6f6;
  --muted: rgba(246, 246, 246, 0.75);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  --radius: 1.5rem;
  --radius-sm: 0.85rem;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #12121c 0%, #040406 60%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  z-index: 0;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  background: rgba(4, 4, 6, 0.75);
}

.site-header.scrolled {
  background: rgba(4, 4, 6, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  gap: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.primary-nav a {
  color: var(--muted);
  transition: color var(--transition);
}

.primary-nav a:hover {
  color: var(--text);
}

.cta-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border var(--transition);
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 10px 30px rgba(230, 0, 18, 0.45);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.btn.outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
  background: transparent;
}

.btn.outline:hover {
  border-color: var(--text);
}

.btn.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.5);
  box-shadow: none;
}

.btn.whatsapp:hover {
  transform: translateY(-2px);
  background: rgba(37, 211, 102, 0.2);
  color: #1e8c55;
}

.btn.whatsapp i {
  color: #25d366;
}

.btn.full {
  width: 100%;
  justify-content: center;
}

.btn.small {
  padding: 0.4rem 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

.hero {
  padding: 4rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.6rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hero-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
}

.hero-highlights i {
  color: var(--brand);
}

.hero-panel {
  display: grid;
  gap: 1.5rem;
}

.panel-card {
  background: var(--panel);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.panel-card.secondary {
  background: rgba(230, 0, 18, 0.08);
  border-color: rgba(230, 0, 18, 0.3);
}

.panel-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.panel-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.metrics {
  padding: 2rem 0 1rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.metrics-grid article {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.metric-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.cards {
  padding: 2rem 0 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.cards-grid article {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.cards-grid i {
  font-size: 1.6rem;
  color: var(--brand);
}

.locations {
  padding: 3rem 0;
}

.section-heading h2 {
  margin: 0.5rem 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.locations-grid {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border var(--transition), transform var(--transition), background var(--transition);
}

.location-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.badge {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.2rem 0.9rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.location-card .address {
  color: var(--muted);
}

.location-card .hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.location-card.active {
  border-color: rgba(230, 0, 18, 0.7);
  background: rgba(230, 0, 18, 0.08);
  transform: translateY(-4px);
}

.map-wrapper {
  background: rgba(0, 0, 0, 0.45);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-header {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.map-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.map-actions .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.map-header > div:first-child {
  flex: 1 1 260px;
}

.map-wrapper {
  margin-top: 2rem;
}

.map-frame {
  border-top: 1px solid var(--border);
  height: 420px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.ticketing {
  padding: 3rem 0;
}

.ticketing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.ticketing-card {
  background: rgba(230, 0, 18, 0.08);
  border: 1px solid rgba(230, 0, 18, 0.35);
  border-radius: var(--radius);
  padding: 2rem;
}

.ticketing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.ticketing-card i {
  color: var(--brand);
  margin-right: 0.5rem;
}

.careers-preview {
  padding: 3rem 0;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.careers-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
}

.seo-copy {
  padding: 2rem 0 4rem;
}

.seo-copy p {
  color: var(--muted);
}

.employee-access {
  padding: 2rem 0 4rem;
}

.employee-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  background: rgba(0, 0, 0, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.footer-logo {
  width: 70px;
  margin-bottom: 0.75rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

.footnote {
  text-align: center;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 20;
}

.chat-toggle {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 20px 35px rgba(230, 0, 18, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-panel {
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  width: min(350px, 80vw);
  background: rgba(5, 5, 8, 0.97);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  max-height: 70vh;
}

.chat-panel.open {
  display: flex;
}

.chat-panel header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-close {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
}

.chat-body {
  padding: 1.25rem;
  overflow-y: auto;
  display: grid;
  gap: 0.75rem;
}

.chat-message {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
}

.chat-question {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  text-align: left;
  transition: border var(--transition), transform var(--transition);
}

.chat-question:hover {
  border-color: var(--text);
  transform: translateX(4px);
}

.chat-footer {
  border-top: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
}

.chat-footer input {
  flex: 1;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
}

@media (max-width: 900px) {
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(4, 4, 6, 0.95);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
  }

  .primary-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .cta-group {
    display: none;
  }
}

@media (max-width: 640px) {
  .map-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .chat-widget {
    right: 1rem;
    left: 1rem;
  }

  .chat-panel {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

