.map-hero {
  padding: 110px 20px 35px;
  background: #AD6745;
  text-align: center;
  color: white;
}

.map-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-family: "Playfair Display", serif;
}

.map-hero p {
  margin-top: 10px;
  color: rgba(255,255,255,0.85);
}

.map-section {
  padding: 28px clamp(16px, 5vw, 60px) 35px;
  background: #f7f2ee;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 35px;
  align-items: start;
}

.map-preview {
  min-height: 550px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15)),
    url("../images/kenya-map.jpg")
    center/cover no-repeat;

  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.map-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}

.map-pin {
  position: absolute;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 8px;

  background: white;
  padding: 10px 14px;
  border-radius: 30px;

  font-weight: 800;
  color: #111;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
   transition: 0.5s ease;
  cursor: pointer;
}

.map-pin:hover {
  transform: translateY(-6px) scale(1.05);
}

.map-pin i {
  color: #AD6745;
}

.nairobi {
  top: 62%;
  left: 37%;
}

.kitui {
  top: 55%;
  left: 55%;
}

.mombasa {
  top: 82%;
  left: 60%;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-card {
  background: white;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: 0.35s ease;
   border: 1px solid rgba(0,0,0,0.04);
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  cursor: pointer;
}

.location-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.location-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
}

.location-card a {
  display: inline-block;
  background: #111;
  color: white;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 30px;
  font-weight: 800;
  transition: 0.5s ease;
}

.location-card a:hover {
  transform: translateY(-3px);
  background: white;
  color: black;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {
  .map-container {
    grid-template-columns: 1fr;
  }

  .map-preview {
    min-height: 400px;
  }
}

/* REMOVE MOBILE TAP HIGHLIGHT */

*{
    -webkit-tap-highlight-color: transparent;
}

button,
a,
input,
textarea,
select{
    outline:none;
    -webkit-tap-highlight-color: transparent;
}

html{
    -webkit-touch-callout:none;
}