@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Manrope:wght@500;600;700&display=swap');

:root {
  --green: #0e9b72;
  --green-dark: #0b7b5a;
  --green-soft: #d7efe6;
  --ink: #0b1b15;
  --muted: #667279;
  --bg: #f3f7f4;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
  font-family:
    'Cairo',
    'Manrope',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Noto Color Emoji",
    sans-serif;
}


body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

img {
  max-width: 100%;
  height: auto;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(120deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 10px 30px rgba(11, 123, 90, 0.18);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  flex-wrap: wrap;
}

.logo {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.2px;
  color: inherit;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

nav a {
  color: #fff;
  margin: 0 6px;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  transition: background 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.lang {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* HERO */
.hero {
  background: linear-gradient(140deg, rgba(14, 155, 114, 0.1), rgba(11, 123, 90, 0.08));
  color: var(--ink);
  padding: clamp(60px, 10vw, 110px) 20px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 10px;
}

.hero p {
  font-size: clamp(15px, 2.2vw, 19px);
  margin-bottom: 30px;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(11, 123, 90, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* BOOKING CALLOUT */
.booking-callout {
  max-width: 1200px;
  margin: 40px auto 10px;
  padding: 0 20px;
}

.callout-card {
  background: linear-gradient(115deg, rgba(14, 155, 114, 0.08), rgba(255, 255, 255, 0.8));
  border: 2px solid rgba(11, 123, 90, 0.2);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 12px 30px rgba(11, 123, 90, 0.08);
}

.callout-card > div {
  flex: 1 1 260px;
}

.callout-kicker {
  color: var(--green-dark);
  margin: 0 0 6px;
  font-weight: 700;
}

.callout-card h2 {
  margin: 0 0 8px;
  font-size: 26px;
  color: var(--ink);
}

.callout-body {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.callout-btn {
  background: var(--green);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(11, 123, 90, 0.24);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.callout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(11, 123, 90, 0.3);
  background: var(--green-dark);
}

/* NATIONALITIES */
.nationalities {
  max-width: 1200px;
  margin: 40px auto 10px;
  padding: 0 20px 10px;
  text-align: center;
}

.nationalities h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #1e1e1e;
}

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

.nation-card {
  background: var(--card);
  border: 2px solid rgba(14, 155, 114, 0.25);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(11, 123, 90, 0.08);
  display: grid;
  gap: 6px;
  align-content: start;
}

.nation-flag {
  width: 62px;
  height: 62px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid rgba(14, 155, 114, 0.75);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.flag-bd {
  background:
    radial-gradient(circle at 50% 50%, #d21034 0 38%, transparent 38%),
    #006a4e;
}

.nation-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nation-card h3 {
  margin: 4px 0;
  color: var(--ink);
  font-size: 20px;
}

.nation-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* FEATURES */
.features {
  max-width: 1200px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.feature {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

/* CTA */
.cta {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.btn-secondary {
  background: #0b1324;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
}

/* FOOTER */
.footer {
  background: linear-gradient(120deg, var(--green-dark), #0a5f45);
  color: #e3f4ed;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
  }

  html[dir='ltr'] .menu-toggle {
    order: 1;
  }

  html[dir='ltr'] .logo {
    order: 2;
  }

  html[dir='ltr'] .lang {
    order: 3;
  }

  html[dir='rtl'] .menu-toggle {
    order: 1;
  }

  html[dir='rtl'] .logo {
    order: 2;
  }

  html[dir='rtl'] .lang {
    order: 3;
  }

  nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    inset-inline: 20px;
    background: #fff;
    color: var(--ink);
    flex-direction: column;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(11, 123, 90, 0.18);
  }

  .navbar.nav-open nav {
    display: flex;
  }

  nav a {
    color: var(--ink);
    margin: 0;
    padding: 12px;
  }

  nav a:hover {
    background: rgba(14, 155, 114, 0.12);
    color: var(--green-dark);
  }

  .callout-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
  }

  .callout-btn {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 70px 16px;
  }
}

@media (max-width: 480px) {
  nav a {
    width: 100%;
    text-align: center;
  }

  .callout-card {
    padding: 22px;
  }
}

.lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0;
  text-decoration: none;
}

.lang img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  margin: 0;
  display: block;
}

@media (min-width: 992px) {
  .nation-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
