@font-face {
  font-family: "Poppins";
  src: url("../libs/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../libs/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: rgb(108, 99, 255);
  --color-primary-shadow: rgba(108, 99, 255, 0.5);
  --color-bg: #090e19;
  --color-text: #e5e7eb;
  --color-p: #bcbec1;
  --color-muted: #9ca3af;
}

body {
  margin: 0;
  font-family: "Poppins";
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

p {
  color: var(--color-p);
}

.main-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: linear-gradient(
    to bottom,
    rgba(9, 14, 25, 0.92),
    rgba(9, 14, 25, 0.35)
  );
}

.main-navbar .navbar-brand img {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

.main-navbar .nav-link {
  color: var(--color-p);
  font-size: 16px;
  margin-left: 28px;
}

.main-navbar .nav-link:hover {
  color: var(--color-text);
}

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 120px 0 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  z-index: 0;
  transform: scale(1.05);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.22), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(9,14,25,0.92) 0%, rgba(9,14,25,0.75) 55%, rgba(9,14,25,0.92) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.12;
  font-weight: 600;
  margin: 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;

}

.hero p {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.8;
  max-width: 720px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .hero {
    padding: 110px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 100px 0 50px;
  }

  .hero h1 {
    font-size: 32px;
  }
}

.site-footer {
  padding: 48px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-logo {
  width: 220px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
}

.footer-desc {
  margin-top: 12px;
  max-width: 320px;
  color: var(--color-p);
  line-height: 1.7;
  font-size: 14px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  justify-items: start;
}

.footer-col h5 {
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--color-text);
  font-size: 16px;
}

.footer-col a {
  display: block;
  color: var(--color-p);
  text-decoration: none;
  padding: 6px 0;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  color: var(--color-text);
  transform: translateX(2px);
}

.footer-social {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--color-text);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-social i {
  font-size: 18px;
  color: var(--color-primary);
}

.footer-social:hover {
  transform: translateY(-2px);
  border-color: rgba(108,99,255,0.35);
  color: var(--color-text);
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: var(--color-muted);
  font-size: 13px;
}

.footer-dot {
  opacity: 0.5;
}

.footer-mail {
  color: var(--color-muted);
  text-decoration: none;
}

.footer-mail:hover {
  color: var(--color-text);
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-dot {
    display: none;
  }
}

.legal-section {
  padding: 80px 0;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.legal-card h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}

.legal-block {
  margin-bottom: 28px;
}

.legal-block h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.legal-block p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-p);
}

.legal-list {
  margin-top: 12px;
  padding-left: 18px;
}

.legal-list li {
  font-size: 15px;
  color: var(--color-p);
  margin-bottom: 6px;
}

.legal-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 40px 0;
}

.legal-contact {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  text-align: center;
}

.legal-contact a {
  color: var(--color-text);
  text-decoration: none;
}

.legal-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 575px) {
  .legal-card {
    padding: 26px;
  }

  .legal-card h2 {
    font-size: 26px;
  }
}
.lang-switch img {
    width: 22px;
    height: auto;
    display: block;
}

.lang-flag {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.lang-flag:hover {
    opacity: 1;
}

