/* Trusted Booking Section */
.trusted-booking {
  background-color: #f8f9fa;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.trusted-booking h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

.trusted-booking p {
  font-size: 17px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.trusted-booking .country-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 15px;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  width: 120px;
}

.trusted-booking .country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.1);
}

.trusted-booking .country-card img {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.trusted-booking .country-card h4 {
  font-size: 16px;
  margin: 0;
  color: #222;
}

.trusted-booking .book-button {
  margin-top: 40px;
  padding: 14px 28px;
  background-color: #007B5E;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.trusted-booking .book-button:hover {
  background-color: #005a45;
}











/* ===== M Travel: Spirit of Burundi Section ===== */
:root{
  --mtb-brand: #12bece;         /* M Travel accent */
  --mtb-ink: #0f172a;           /* Headings / dark text */
  --mtb-body: #334155;          /* Body text */
  --mtb-bg: #ffffff;            /* Section background */
  --mtb-muted: #f1f5f9;         /* Light cards */
  --mtb-radius: 16px;
  --mtb-shadow: 0 10px 24px rgba(2, 8, 23, 0.08);
}

.mtb-soul{
  background: var(--mtb-bg);
  padding: clamp(32px, 6vw, 72px) 16px;
}

.mtb-wrap{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;   /* text | gallery */
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

.mtb-text h2{
  color: var(--mtb-ink);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.mtb-text p{
  color: var(--mtb-body);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
  margin: 0 0 14px;
}

.mtb-text .mtb-highlight{
  border-left: 4px solid var(--mtb-brand);
  padding-left: 14px;
  margin-top: 14px;
  font-weight: 600;
  color: var(--mtb-ink);
}

/* Buttons */
.mtb-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn-primary,
.btn-ghost{
  display: inline-block;
  padding: 12px 18px;
  border-radius: calc(var(--mtb-radius) - 6px);
  text-decoration: none;
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  border: 2px solid transparent;
}

.btn-primary{
  background: var(--mtb-brand);
  color: #fff;
  box-shadow: var(--mtb-shadow);
}
.btn-primary:hover{
  transform: translateY(-2px);
}

.btn-ghost{
  background: transparent;
  color: var(--mtb-ink);
  border-color: var(--mtb-brand);
}
.btn-ghost:hover{
  background: var(--mtb-muted);
}

/* Two-Image Gallery */
.mtb-gallery{
  position: relative;
  display: grid;
  gap: 16px;
}

.mtb-card{
  background: var(--mtb-muted);
  border-radius: var(--mtb-radius);
  overflow: hidden;
  box-shadow: var(--mtb-shadow);
}

.mtb-card img{
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;            /* keep a nice shape */
  object-fit: cover;
}

.mtb-card figcaption{
  padding: 10px 12px;
  font-size: 14px;
  color: var(--mtb-body);
}

/* Subtle stacked effect on large screens */
@media (min-width: 900px){
  .mtb-gallery{
    grid-template-rows: 1fr 1fr;
  }
  .mtb-card-top{
    transform: translateX(10px);
  }
  .mtb-card-bottom{
    transform: translateX(-10px);
  }
}

/* Responsive: stack on mobile */
@media (max-width: 720px){
  .mtb-wrap{
    grid-template-columns: 1fr;
  }
  .mtb-gallery{
    order: 2;            /* images after text */
  }
  .mtb-text{
    order: 1;
  }
}
