/* ===== HERO PLP HEIGHT & STYLING ===== */
.hero--plp {
  height: 100vh !important;
  min-height: 640px !important;
}

@media (max-width: 768px) {
  .hero--plp {
    height: auto !important;
    min-height: 580px !important;
  }
}

/* ===== DMC CARD SLIDER STYLING ===== */
.slider-track.cols-3>.dmc-card {
  min-width: calc(33.333% - 11px);
  max-width: calc(33.333% - 11px);
  flex: 0 0 calc(33.333% - 11px);
}

@media (max-width: 900px) {
  .slider-track.cols-3>.dmc-card {
    min-width: calc(50% - 8px);
    max-width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 640px) {
  .slider-track.cols-3>.dmc-card {
    min-width: 78%;
    max-width: 78%;
    flex: 0 0 78%;
  }
}

.img-card .body {
  padding: 14px 16px 16px;
}

.dmc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  margin-top: 32px;
  align-items: start;
}

.dmc-card {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  padding: 0;
}

.dmc-card picture {
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.dmc-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dmc-card:hover img {
  transform: scale(1.02);
}

.dmc-card h3,
.dmc-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 16px 0 8px;
  line-height: 1.3;
}

.dmc-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .dmc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 600px) {
  .dmc-grid {
    grid-template-columns: 1fr;
    gap: 28px 16px;
  }
}

/* ===== CREATIVE BEAUTIFUL WHY PARTNER WITH US SECTION ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-us-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid #e1e6e2;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background 0.35s ease;
}

.why-us-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 77, 43, 0.25);
  box-shadow: 0 12px 32px rgba(30, 77, 43, 0.08);
}

.why-us-card:hover::before {
  background: var(--accent);
}

.why-us-card--featured {
  background: linear-gradient(145deg, #1e4d2b, #15381f);
  color: #ffffff;
  border-color: transparent;
}

.why-us-card--featured .why-us-card__title,
.why-us-card--featured .why-us-card__desc {
  color: #ffffff;
}

.why-us-card--featured .why-us-card__desc {
  opacity: 0.88;
}
.why-us-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.why-us-card__head .why-us-card__icon,
.why-us-card__head .why-us-card__title {
  margin-bottom: 0;
}

.why-us-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fdf1e6;
  color: #f37002;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.why-us-card--featured .why-us-card__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.why-us-card:hover .why-us-card__icon {
  background: #f37002;
  color: #ffffff;
}

.why-us-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.why-us-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 1100px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.affiliation-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.affiliation-logo-container {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf8f5;
  border-radius: 6px;
  padding: 12px;
}

.affiliation-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.affiliation-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .affiliations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .affiliations-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ===== BESPOKE TIMELINE WORKFLOW ===== */
.timeline-workflow {
  position: relative;
  margin-top: 40px;
  padding-left: 24px;
}

.timeline-workflow::before {
  content: '';
  position: absolute;
  top: 35px;
  bottom: 35px;
  left: 45px;
  width: 2px;
  background: linear-gradient(180deg, #f37002 0%, rgba(243, 112, 2, 0.15) 100%);
  z-index: 1;
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  z-index: 2;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fdf1e6;
  border: 2px solid #f37002;
  box-shadow: 0 0 0 4px rgba(243, 112, 2, 0.1);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #f37002;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.timeline-step:hover .timeline-node {
  background: #f37002;
  color: #ffffff;
  box-shadow: 0 0 0 6px rgba(243, 112, 2, 0.2);
}

.timeline-content {
  flex: 1;
  margin-left: 20px;
  padding: 22px 28px;
  background: var(--surface);
  border: 1px solid #e1e6e2;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .timeline-content {
  transform: translateX(6px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(30, 77, 43, 0.08);
}

.timeline-content h3,
.timeline-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px 0;
  line-height: 1.35;
}

.timeline-content p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 600px) {
  .timeline-workflow {
    padding-left: 0;
  }

  .timeline-workflow::before {
    left: 21px;
  }

  .timeline-node {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .timeline-content {
    margin-left: 14px;
    padding: 16px 18px;
  }
}

/* ===== CTA BANNER (100% full-width breakout style matching the mockup) ===== */
.cta-banner {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #f8f9fa;
  padding: 80px 24px;
  text-align: center;
  margin-top: 80px;
}

.cta-banner-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 1.6rem + 1vw, 2.4rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.cta-banner p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 0.86rem + 0.15vw, 1.05rem);
  color: #475569;
  line-height: 1.6;
  margin: 0 0 32px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.cta-btn--primary {
  background: #0f172a;
  color: #ffffff !important;
  border: 1px solid #0f172a;
}

.cta-btn--primary:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.cta-btn--secondary {
  background: #ffffff;
  color: #0f172a !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cta-btn--secondary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ===== SUSTAINABILITY & RESPONSIBLE TOURISM SECTION ===== */
.sustainability-wrapper {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.sustainability-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.sustainability-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(243, 112, 2, 0.12);
}

.sustainability-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.sustainability-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(243, 112, 2, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.sustainability-card:hover .sustainability-card__icon {
  background: var(--accent);
  color: #ffffff;
  transform: scale(1.05);
}

.sustainability-card__title {
  margin: 0;
  font-size: clamp(1.05rem, 0.98rem + 0.25vw, 1.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.sustainability-card__desc {
  margin: 0;
  font-size: clamp(0.86rem, 0.82rem + 0.15vw, 0.94rem);
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .sustainability-wrapper {
    padding: 36px 24px;
  }

  .sustainability-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Removed redundant typography block from global.css */
section.reveal > h2 {
  font-size: clamp(1.3rem, 1.15rem + 0.75vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.section-head .section-desc,
.dmc-section-head .section-desc,
.tg-panel-head .section-desc,
.section-head p,
.dmc-section-head p,
.tg-panel-head p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(.85rem, .8rem + 0.25vw, .95rem);
  line-height: 1.6;
}