body { overflow-x: clip; }

nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000;
  transition: box-shadow .3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.18);
}

.page-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(78,11,21,.82) 0%, rgba(30,5,10,.58) 55%, rgba(0,0,0,.38) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: white;
  padding: 0 20px;
  animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 66px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}

.page-hero-title span { color: var(--amber-light); }

.page-hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.hero-tab-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-tab-pill {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  color: white;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
  backdrop-filter: blur(4px);
  letter-spacing: .4px;
}

.hero-tab-pill:hover,
.hero-tab-pill.active {
  background: var(--crimson);
  border-color: var(--crimson);
  color: white;
}

.breadcrumb-bar {
  background: var(--beige-light);
  border-bottom: 1px solid rgba(176,125,40,.18);
  padding: 11px 0;
}

.breadcrumb-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}

.breadcrumb-inner a { color: var(--crimson); font-weight: 600; transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--amber); }
.breadcrumb-inner i { font-size: 10px; color: var(--amber); }
.breadcrumb-inner .bc-current { color: var(--text); font-weight: 600; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header h2 span { color: var(--crimson); }

.section-header p {
  font-size: 16.5px;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--amber);
  margin: 0 auto 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.re-intro {
  padding: 90px 0 80px;
  background: white;
}

.re-intro-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.re-intro-images {
  position: relative;
  overflow: visible;
}

.re-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px 80px 4px 4px;
  box-shadow: 0 20px 60px rgba(78,11,21,.22);
  display: block;
}

.re-img-accent {
  position: absolute;
  bottom: -36px;
  right: -28px;
  width: 200px;
  height: 185px;
  object-fit: cover;
  border-radius: 4px;
  border: 5px solid white;
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
}

.re-badge {
  position: absolute;
  top: 32px;
  left: -20px;
  background: var(--crimson);
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(78,11,21,.38);
  min-width: 110px;
  z-index: 4;
}

.re-badge-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--amber-light);
}

.re-badge-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.82);
  margin-top: 4px;
}

.re-intro-text .section-divider { margin: 0 0 18px; }

.re-intro-text .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px;
  display: block;
}

.re-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 22px;
}

.re-intro-text h2 span { color: var(--crimson); }

.re-intro-text p {
  font-size: 16.5px;
  color: var(--gray);
  line-height: 1.78;
  margin-bottom: 18px;
}

.re-check-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.re-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
color: var(--gray);
  font-weight: 500;
}

.re-check-item i {
  color: var(--amber);
  font-size: 16px;
  flex-shrink: 0;
}

.re-services {
  padding: 90px 0;
  background: var(--light-gray, #f8f5f0);
}

.re-services-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
}

.re-service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(78,11,21,.10);
  margin-bottom: 48px;
}

.re-service-block:last-child { margin-bottom: 0; }

.re-service-block-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.re-service-block-text {
  background: white;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.re-service-block-icon {
  width: 62px;
  height: 62px;
  border-radius: 15px;
  background: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.re-service-block-icon i {
  font-size: 26px;
  color: white;
}

.re-service-block-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.re-service-block-text p {
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.78;
  margin-bottom: 18px;
}

.re-service-block-text p:last-of-type { margin-bottom: 0; }

.re-service-checklist {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.re-service-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray);
  font-weight: 500;
}

.re-service-checklist li i {
  color: var(--amber);
  font-size: 15px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .re-service-block {
    grid-template-columns: 1fr;
  }
  .re-service-block-img {
    min-height: 260px;
    height: 260px;
    width: 100%;
  }
  .re-service-block.reverse .re-service-block-img {
    order: -1;
  }
  .re-service-block-text {
    padding: 36px 28px;
  }
}

.re-process {
  padding: 90px 0;
  background: var(--light-gray, #f8f5f0);
}

.re-process-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
}

.re-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.re-process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--amber));
  z-index: 0;
}

.re-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.re-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--crimson);
  transition: background .3s ease, color .3s ease;
  box-shadow: 0 6px 20px rgba(78,11,21,.12);
}

.re-step:hover .re-step-num {
  background: var(--crimson);
  color: white;
}

.re-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.re-step p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.65;
}

.re-cta {
  padding: 90px 0;
  background: #1a0a0e;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.re-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/img/kenya.jpg');
  background-size: cover;
  background-position: center;
  opacity: .45;
}

.re-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.72) 0%, rgba(20,5,8,.65) 50%, rgba(0,0,0,.72) 100%);
  z-index: 1;
}

.re-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: auto;
  padding: 0 32px;
}

.re-cta .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber-light, #e8b96a);
  margin-bottom: 16px;
  display: block;
}

.re-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: white;
  line-height: 1.18;
  margin-bottom: 18px;
}

.re-cta h2 span { color: var(--amber-light, #e8b96a); }

.re-cta p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 38px;
}

.re-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-cta {
  background: var(--amber, #b07d28);
  color: white;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  letter-spacing: .5px;
  transition: background .2s ease, transform .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-cta:hover { background: #8f6420; transform: translateY(-2px); }

.btn-outline-cta {
  background: transparent;
  color: white;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  font-family: var(--font-display);
  letter-spacing: .5px;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-cta:hover {
  background: white;
  color: var(--crimson);
  border-color: white;
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .re-process-grid { grid-template-columns: repeat(2, 1fr); }
  .re-process-grid::before { display: none; }
}

@media (max-width: 960px) {
  .re-intro-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .re-img-accent { right: 0; bottom: -20px; }
}

@media (max-width: 768px) {
  .page-hero { height: 360px; }
}

@media (max-width: 640px) {
  .re-intro-inner,
  .re-services-inner,
  .re-process-inner,
  .re-cta-inner,
  .breadcrumb-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .re-process-grid { grid-template-columns: 1fr; }

  .re-img-main { height: 280px; border-radius: 6px; }
  .re-img-accent { display: none; }

  .re-intro,
  .re-services,
  .re-process { padding-top: 60px; padding-bottom: 60px; }

  .re-cta { padding: 60px 0; }
}

.re-showcase {
  padding: 80px 0 60px;
  background: white;
}
.re-showcase-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
}
.re-showcase-header {
  text-align: center;
  margin-bottom: 40px;
}

.re-sl-wrap { width: 100%; }

.re-sl-stage {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 16px 56px rgba(78,11,21,.20);
  aspect-ratio: 16/7;
}
@media (max-width: 768px) { .re-sl-stage { aspect-ratio: 4/3; } }
@media (max-width: 480px) { .re-sl-stage { aspect-ratio: 3/4; } }

.re-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.re-slide.active { opacity: 1; pointer-events: auto; }
.re-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.re-sl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,3,6,.82) 0%, rgba(10,3,6,.22) 50%, transparent 100%);
  pointer-events: none;
}

.re-sl-caption {
  position: absolute;
  bottom: 60px;
  left: 36px;
  right: 36px;
  color: white;
  z-index: 5;
}
.re-sl-caption-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--crimson, #4e0b15);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.re-sl-caption-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
  margin-bottom: 6px;
  transition: opacity .4s;
}
.re-sl-caption-sub {
  font-size: clamp(13px, 1.4vw, 15.5px);
  color: rgba(255,255,255,.78);
  max-width: 480px;
  line-height: 1.55;
  transition: opacity .4s;
}
@media (max-width: 480px) {
  .re-sl-caption { bottom: 48px; left: 18px; right: 18px; }
}

.re-sl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.28);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(4px);
}
.re-sl-arrow:hover { background: var(--crimson, #4e0b15); border-color: var(--crimson, #4e0b15); transform: translateY(-50%) scale(1.08); }
.re-sl-prev { left: 18px; }
.re-sl-next { right: 18px; }
@media (max-width: 480px) { .re-sl-arrow { width: 36px; height: 36px; font-size: 13px; } .re-sl-prev { left: 10px; } .re-sl-next { right: 10px; } }

.re-sl-progress-track {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.18);
  z-index: 8;
}
.re-sl-progress-bar {
  height: 100%;
  background: var(--amber, #b07d28);
  width: 0%;
}

.re-sl-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px 10px;
  gap: 12px;
}
.re-sl-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.re-sl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
}
.re-sl-dot.active { background: var(--crimson, #4e0b15); transform: scale(1.35); }
.re-sl-counter {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
  white-space: nowrap;
}
.re-sl-pause {
  background: transparent;
  border: 1.5px solid #ddd;
  color: var(--gray);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 11px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.re-sl-pause:hover { border-color: var(--crimson, #4e0b15); color: var(--crimson, #4e0b15); }

.re-sl-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-behavior: smooth;
}
.re-sl-thumbs::-webkit-scrollbar { height: 3px; }
.re-sl-thumbs::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
.re-sl-thumb {
  flex-shrink: 0;
  width: 110px; height: 70px;
  border-radius: 8px;
  overflow: hidden;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  background: #eee;
  position: relative;
}
.re-sl-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.re-sl-thumb:hover { transform: translateY(-2px); border-color: rgba(78,11,21,.4); }
.re-sl-thumb.active { border-color: var(--crimson, #4e0b15); }
.re-sl-thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.55);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) { .re-sl-thumb { width: 80px; height: 54px; } }

@media (max-width: 640px) {
  .re-showcase-inner { padding: 0 16px; }
}
