/* ═══════════════════════════════════════════════════════════════════════════
   DAY TRIPS — Kilimanjaro Legends Tours
   ═══════════════════════════════════════════════════════════════════════════ */

.d-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--obsidian);
  margin-bottom: 20px;
}

.d-section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* ─── HERO ─── */
.d-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.d-hero__bg {
  position: absolute;
  inset: 0;
}

.d-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.d-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.65) 100%);
}

.d-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
}

.d-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.d-hero__breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.d-hero__breadcrumb a:hover { color: var(--gold); }
.d-hero__breadcrumb--active { color: var(--white); }

.d-hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.d-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.d-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-bottom: 28px;
}

/* ─── INTRO ─── */
.d-intro {
  padding: 80px 0;
  background: var(--white);
}

.d-intro__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.d-intro__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.d-intro__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--obsidian);
  margin-bottom: 24px;
}

.d-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 16px;
}

/* ─── FILTER ─── */
.d-filter {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 60px;
  z-index: 100;
}

.d-filter__scroll {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.d-filter__scroll::-webkit-scrollbar { display: none; }

.d-filter__btn {
  flex-shrink: 0;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gray);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.d-filter__btn:hover { color: var(--obsidian); }

.d-filter__btn--active {
  color: var(--obsidian);
  border-bottom-color: var(--gold);
}

/* ─── CARDS ─── */
.d-cards {
  padding: 60px 0 80px;
  background: var(--cream);
}

.d-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.d-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.d-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.d-card__image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.d-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.d-card__image-wrap:hover .d-card__image {
  transform: scale(1.06);
}

.d-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
}

.d-card__content {
  padding: 24px;
}

.d-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--obsidian);
  margin-bottom: 8px;
}

.d-card__title a {
  color: var(--obsidian);
  transition: color 0.3s;
}

.d-card__title a:hover { color: var(--gold); }

.d-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}

.d-card__location svg { color: var(--gold); flex-shrink: 0; }

.d-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 16px;
}

.d-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 16px;
}

.d-card__duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
}

.d-card__duration svg { color: var(--gold); }

.d-card__price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--obsidian);
}

.d-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.3s;
}

.d-card__btn span {
  transition: transform 0.3s;
  display: inline-block;
}

.d-card__btn:hover span { transform: translateX(3px); }

/* ─── FEATURED ─── */
.d-featured {
  padding: 80px 0;
  background: var(--white);
}

.d-featured__split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.d-featured__image-col {
  display: block;
  overflow: hidden;
}

.d-featured__image-wrap { overflow: hidden; }

.d-featured__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.d-featured__image-col:hover .d-featured__image {
  transform: scale(1.04);
}

.d-featured__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.d-featured__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--obsidian);
  margin-bottom: 16px;
}

.d-featured__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 24px;
}

.d-featured__details {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.d-featured__detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray);
}

.d-featured__detail svg { color: var(--gold); }

.d-featured__link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.3s;
}

.d-featured__link span {
  transition: transform 0.3s;
  display: inline-block;
}

.d-featured__link:hover span { transform: translateX(4px); }

/* ─── WHY ─── */
.d-why {
  padding: 80px 0;
  background: var(--cream);
}

.d-why__header {
  text-align: center;
  margin-bottom: 56px;
}

.d-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.d-why__item {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.4s var(--ease);
}

.d-why__item:hover { transform: translateY(-3px); }

.d-why__item svg {
  color: var(--gold);
  margin-bottom: 16px;
}

.d-why__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 8px;
}

.d-why__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

/* ─── CUSTOM CTA ─── */
.d-custom {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.d-custom__bg {
  position: absolute;
  inset: 0;
}

.d-custom__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.d-custom__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,25,23,0.88);
}

.d-custom__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.d-custom__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.d-custom__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

.d-custom__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ─── FAQ ─── */
.d-faq {
  padding: 80px 0;
  background: var(--white);
}

.d-faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.d-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.d-faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.d-faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
}

.d-faq__toggle span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--obsidian);
  flex: 1;
}

.d-faq__icon {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.d-faq__toggle[aria-expanded="true"] .d-faq__icon {
  transform: rotate(45deg);
}

.d-faq__answer {
  display: none;
  padding: 0 0 22px;
}

.d-faq__item.is-open .d-faq__answer { display: block; }

.d-faq__answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
}

/* ─── FINAL CTA ─── */
.d-finalcta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.d-finalcta__bg {
  position: absolute;
  inset: 0;
}

.d-finalcta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.d-finalcta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.7) 100%);
}

.d-finalcta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.d-finalcta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.d-finalcta__desc {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

/* ─── ANIMATIONS ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--obsidian);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(196,162,101,0.4);
}

.back-to-top.is-visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

.nav--scrolled {
  background: rgba(10,10,10,0.95) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .d-cards__grid { grid-template-columns: repeat(2, 1fr); }
  .d-featured__split { gap: 40px; }
  .d-featured__image { height: 360px; }
  .d-why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .d-hero { height: 440px; }
  .d-hero__content { padding-bottom: 40px; }
  .d-hero__title { font-size: clamp(28px, 8vw, 40px); }
  .d-featured__split { grid-template-columns: 1fr; gap: 32px; }
  .d-featured__image { height: 280px; }
  .d-cards__grid { grid-template-columns: 1fr; gap: 24px; }
  .d-why__grid { grid-template-columns: 1fr; }
  .d-custom { padding: 80px 0; }
  .d-custom__buttons { flex-direction: column; align-items: center; }
  .d-custom__buttons .btn { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
  .d-hero { height: 400px; }
  .d-hero__desc { font-size: 14px; }
  .d-filter__btn { padding: 14px 16px; font-size: 12px; }
  .d-card__content { padding: 20px; }
  .d-card__title { font-size: 18px; }
  .d-card__meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .d-featured__details { flex-direction: column; gap: 12px; }
  .d-finalcta { padding: 100px 0; }
}
