:root {
  --bg: #07111f;
  --bg-soft: #0d1a2b;
  --panel: #101d2f;
  --panel-light: #15243a;
  --text: #f7f9fc;
  --muted: #aeb8c8;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #f05a28;
  --accent-2: #ffb000;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1180px;
  --font: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #07111f;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 17, 31, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #a71912);
  box-shadow: 0 14px 35px rgba(240, 90, 40, 0.28);
}

.brand-logo {
  width: 140px;
  height: 72px;
  object-fit: contain;
}

.brand-title {
  display: grid;
  line-height: 1.1;
}

.brand-title span:last-child {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span {
  opacity: 0;
}

.nav-toggle.is-open::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open::after {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.language-switcher button,
.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button.active,
.language-switcher a.active {
  color: #170801;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.95) 0%, rgba(7, 17, 31, 0.78) 45%, rgba(7, 17, 31, 0.32) 100%),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 96px 0 130px;
  animation: rise 0.7s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #ffd9c8;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.lead {
  max-width: 720px;
  color: #d8dee9;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #160702;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 18px 40px rgba(240, 90, 40, 0.3);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: 92px 0;
  background: var(--bg);
}

.section.alt {
  background: #091626;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-light), var(--panel));
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 90, 40, 0.45);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #180a03;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  min-height: 440px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 92px 0 72px;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.95), rgba(7, 17, 31, 0.78)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1800&q=80") center / cover;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.7rem);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.stat strong {
  display: block;
  color: var(--accent-2);
  font-size: 1.8rem;
}

.brand-card {
  min-height: 210px;
  display: grid;
  place-items: center;
  text-align: center;
}

.brand-logo-text {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 900;
  color: var(--text);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--panel);
  cursor: pointer;
}

.filter-btn.active {
  color: #170801;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-weight: 800;
}

.gallery-item {
  display: block;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-image {
  height: 250px;
  overflow: hidden;
  border-radius: 16px;
  margin: -6px -6px 18px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffd7c7;
  background: rgba(240, 90, 40, 0.15);
  font-weight: 800;
  font-size: 0.78rem;
}

.news-card {
  padding: 0;
}

.news-card .gallery-image {
  height: 220px;
  margin: 0;
  border-radius: 18px 18px 0 0;
}

.news-body {
  padding: 24px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-link {
  display: block;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.contact-link span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.form {
  display: grid;
  gap: 16px;
}

.form input,
.form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  outline: none;
}

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

.form input:focus,
.form textarea:focus {
  border-color: rgba(240, 90, 40, 0.7);
  box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.12);
}

.map-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(7, 17, 31, 0.72), rgba(7, 17, 31, 0.8)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.map-card {
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-light), var(--panel));
  box-shadow: var(--shadow);
}

.map-card .section-head {
  margin-bottom: 22px;
}

.map-frame {
  width: 100%;
  height: 430px;
  display: block;
  border: 0;
  border-radius: 14px;
  background: var(--bg-soft);
}

.map-link {
  width: fit-content;
  margin-top: 18px;
}

.site-footer {
  padding: 56px 0 28px;
  background: #050b14;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.32), 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 55px rgba(37, 211, 102, 0.42), 0 12px 32px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 76px 16px auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7, 17, 31, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 12px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .grid-4,
  .grid-3,
  .split,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 680px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand-title span:last-child {
    display: none;
  }

  .hero-content {
    padding: 84px 0 110px;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 70px 0 54px;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .split,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .media-frame {
    min-height: 300px;
  }

  .actions .btn {
    width: 100%;
  }

  .card {
    padding: 22px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
