:root {
  --primary: #0056b8;
  --primary-dark: #003d80;
  --accent: #ffb100;
  --bg: #f5f7fb;
  --text: #1f2933;
  --muted: #4a5568;
  --border-subtle: #e2e8f0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top bar removed – social + language now in footer */

.social-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--muted);
  text-decoration: none;
}

.social-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-link-fb {
  color: #1877f2;
}

.social-link-ig {
  color: #e1306c;
}

.social-link-yt {
  color: #ff0000;
}

.social-link-x {
  color: #111827;
}

.social-link:hover {
  border-color: currentColor;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.05);
}

/* Language switcher */

.language-switcher {
  position: relative;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  font-size: 0.8rem;
  cursor: pointer;
}

.lang-chevron {
  font-size: 0.6rem;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 110%;
  min-width: 8rem;
  background: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  padding: 0.25rem 0;
  list-style: none;
  display: none;
  z-index: 10;
}

.lang-menu.lang-menu-open {
  display: block;
}

.lang-menu li a {
  display: block;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--muted);
}

.lang-menu li a:hover {
  background: var(--bg);
  color: var(--primary);
}

/* Main header */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-marks {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.logo-mark {
  display: block;
  height: 32px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

.logo-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--primary);
}

/* Hero */

.hero {
  position: relative;
  color: #ffffff;
  padding: 5.5rem 0 5rem;
  min-height: 60vh;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Very light neutral gradient: keeps text readable but video colors intact */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.28) 38%,
    rgba(0, 0, 0, 0.06) 75%,
    rgba(0, 0, 0, 0.0) 100%
  );
  z-index: 0;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}

.hero-copy {
  max-width: 40rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.3vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
}

.hero p {
  line-height: 1.7;
  margin-bottom: 2rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #1a202c;
}

.btn-primary:hover {
  background: #ffcb44;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: #ffffff;
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.section-intro {
  max-width: 32rem;
  color: var(--muted);
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-header p {
  color: var(--muted);
}

.narrow {
  max-width: 40rem;
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  line-height: 1.6;
  color: var(--muted);
}

/* Contact section */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  color: var(--muted);
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.contact-form {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #cbd5e0;
  font: inherit;
}

textarea {
  resize: vertical;
  margin-bottom: 1rem;
}

/* Footer */

.site-footer {
  padding: 2.5rem 0 2rem;
  font-size: 0.9rem;
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.footer-brand strong {
  font-weight: 600;
}

.footer-contact {
  list-style: none;
}

.footer-contact li + li {
  margin-top: 0.2rem;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer-language {
  position: relative;
}

.footer-bottom {
  margin-top: 1.75rem;
  text-align: center;
}

/* Responsive adjustments */

@media (max-width: 768px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 3.75rem;
    padding-bottom: 3.5rem;
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .site-header-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
