* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f3f3f5;
  color: #2c2f6b;
  overflow-x: hidden;
}

/* ===== HEADER ===== */

.topbar {
  background: #2f2f6d;
  padding: 26px 0;
}

.header-inner {
  display: flex;
  align-items: center;
}

.logo {
  height: 52px;
}

/* ===== LAYOUT ===== */

.container {
  width: 88%;
  max-width: 1500px;
  margin: auto;
}

.coming-wrapper {
  padding: 80px 0 60px;
}

.grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

/* ===== LEFT VISUAL ===== */

.visual-side {
  position: relative;
}

.hero {
  width: 100%;
  max-width: 700px;
}

.fade-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(243,243,245,0) 0%, #f3f3f5 80%);
}

/* ===== RIGHT CONTENT ===== */

.content-side {
  padding-left: 40px;
}

.title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.title span {
  display: block;
}

.subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #1f1f1f;
  margin-bottom: 30px;
}

.map img {
  width: 100%;
  max-width: 480px;
  margin-bottom: 50px;
}

/* ===== ACTIVITIES ===== */

.activities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

.item {
  text-align: center;
}

.item img {
  height: 46px;
  margin-bottom: 12px;
}

.item span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
}

/* ===== FOOTER ===== */

.footer {
  background: #2f2f6d;
  color: white;
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
  .grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .content-side {
    padding-left: 0;
    margin-top: 50px;
  }

  .activities {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 42px;
  }

  .activities {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===== MAP DESIGN ===== */

.map-wrapper {
  position: relative;
  max-width: 500px;
  margin-bottom: 60px;
}

.africa-svg {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  transition: transform 0.4s ease;
}

.africa-svg:hover {
  transform: scale(1.02);
}

.africa-base {
  fill: #d9d9df;
}

.country {
  fill: #b02b2b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.country:hover {
  fill: #ff3b3b;
  r: 14;
}

/* Tooltip */
.tooltip {
  position: absolute;
  background: white;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -120%);
  transition: opacity 0.2s ease;
  font-weight: 600;
}