/* Global */
:root {
  --color-neutral: #15324b;
  --color-primary: #64a5ce;
  --color-primary-hover: #568eb1;
  --font-sans:
    "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-mono:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  --font-heading:
    "Manrope", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --default-font-family: var(--font-sans);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--default-font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: var(--font-heading);
  margin-top: 0;
}

.bg-liquid-200 {
  background-attachment: fixed;
  background-size: cover;
}

/* =========================
   LANDING PAGE
   ========================= */

/* Header */
header {
  width: 100%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.075) !important;
  padding: 1rem 0 !important;
  background: #fff !important;
  position: relative;
}

header .container {
  width: 100%;
}

header .content {
  display: flex;
  gap: 24px;
  padding: 0 36px;
}

header img {
  width: auto;
  height: auto;
  max-height: 40px;
}

/* Main */
main {
  padding: 32px 0;
  color: #404040;
}
main .content {
  background-color: #fff;
  max-width: 800px;
  width: 100%;
  margin: auto;
  border-radius: 0.5rem;
  padding: 40px;
}

/* Footer */
footer {
  background-color: var(--color-neutral);
  padding-top: 2rem;
}

footer .content {
  padding: 0 36px;
}

footer .logos {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 30px;
}

footer .logos img {
  height: auto;
  width: auto;
  max-height: 60px;
}

footer .copyright hr {
  height: 1px;
  border: none;
  background-color: #2d465c;
  margin-top: 30px;
}

footer .copyright .container {
  padding-top: 12px;
  padding-bottom: 20px;
}

footer .copyright .row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  align-items: center;
}

footer .copyright a {
  text-decoration: none;
  color: #d0dfec;
}

footer .copyright a:hover {
  color: #fff;
}

footer .company {
  font-size: 12px;
}

footer .socials,
footer .links {
  display: flex;
  align-items: center;
  gap: 12px;
}

footer .socials a,
footer .links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 4px;
  color: #93acc2;
  font-weight: 600;
}

footer .socials a:hover,
footer .links a:hover {
  background-color: #29455e;
  color: #fff;
}

footer .socials img {
  height: auto;
  width: 100%;
  max-width: 16px;
}

/* Landing Page Responsiveness */
@media (max-width: 991px) {
  main .content {
    padding: 40 16px;
  }
  footer .logos {
    align-items: center;
  }
  footer .copyright .row {
    flex-direction: column-reverse;
    gap: 24px;
  }
  footer .socials,
  footer .links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   REGION SELECTOR STYLES
   ═══════════════════════════════════════════════════════════ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: #fff;
  padding: 48px 0;
  text-align: center;
}

.hero .hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--color-neutral);
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero h1 .accent {
  color: var(--color-primary);
}

.hero h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-neutral);
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-description {
  font-size: 16px;
  color: #6c6c6c;
  margin-bottom: 28px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-cta {
  background: var(--color-primary);
  color: #fff;
  padding: 11px 28px;
  border-radius: 7px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.18s,
    transform 0.18s;
}

.btn-cta:hover {
  background: var(--color-primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

/* Divider */
.divider {
  height: 1px;
  background: #d7dde4;
}

/* Region Selector Section */
.region-selector {
  background: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.region-selector::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(100, 165, 206, 0.1) 0%,
    transparent 68%
  );
  pointer-events: none;
}

.selector-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.selector-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -2px;
  color: var(--color-neutral);
  margin-bottom: 20px;
  line-height: 1.2;
}

.selector-header h2 .accent {
  color: var(--color-primary);
}

.selector-header p {
  font-size: 16px;
  color: #6c6c6c;
  line-height: 1.7;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.region-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 12px;
  row-gap: 24px;
}

.region-grid .col-4,
.region-grid .col-sm-2 {
  text-align: center;
}

/* Region Card & Link */
.region-card {
  background-color: #ffffff;
  margin-bottom: 5px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 175px;
  text-align: center;
  box-shadow: 0px 5px 10px 2px rgba(195, 195, 195, 0.375);
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-block;
}

.region-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 15px 3px rgba(195, 195, 195, 0.5);
}

.region-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  text-align: center;
  min-height: 120px;
}

/* Region Label & Icon */
.region-label {
  padding: 10px 8px;
  text-align: center;
}

.region-label p {
  color: #999;
  text-decoration: none !important;
  font-size: 11px;
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
}

.region-link:hover .region-label p {
  color: #222;
}

.region-icon-wrapper {
  text-align: center;
  padding: 8px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Flag Images */
.region-card img {
  display: block;
  margin: auto;
  opacity: 0.9;
  width: 100%;
  height: auto;
  transition: opacity 0.2s ease;
}

.region-link:hover img {
  opacity: 1;
}

/* Utilities */
.bold {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 576px) {
  header .content {
    flex-direction: column;
    padding: 0;
  }
  header img {
    width: 100%;
    max-width: 140px;
  }
  .region-selector {
    padding: 40px 0;
  }

  .selector-header p {
    padding: 0;
  }

  .selector-header {
    margin-bottom: 36px;
  }

  .region-link {
    padding: 20px 12px;
    min-height: 120px;
  }
}
