/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
  /* Client Primary Accent & Shades */
  --primary-accent: #5608fa;         /* Main brand violet */
  --dropdown-bg: #4904d9;            /* Dropdown background (vibrant royal purple) */
  --dropdown-hover: #3700aa;         /* Darker active/hover state */
  --light-accent: #7d3bfb;           /* Secondary violet */
  --dark-indigo: #1e084d;            /* Deep midnight indigo for titles & badges */
  
  /* Harmonized Body & Border Neutrals */
  --text-gray: #3a324a;              /* Slate-violet neutral body text */
  --border-gray: #e9e2f8;            /* Soft violet-tinted lines */
  --bg-tint: #f7f3ff;                /* Very light lavender for pills & active states */
  --font-family: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-family);
  color: var(--text-gray);
  background-color: #ffffff;
  overflow-x: hidden;
  font-size: 15px;
}

.top-strip {
  height: 4px;
  background-color: var(--primary-accent);
  width: 100%;
}

.container {
  width: 94%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Full Width Container with Consistent Mobile/Tablet Breathing Room */
.container-full {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px; /* Provides the exact matching side gap on desktop & tablet */
}

/* =========================================
   HEADER & BRAND
   ========================================= */
header {
  background: #ffffff;
  padding-top: 16px;
  position: relative;
  z-index: 100;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 16px;
}

.logo-wrapper {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.logo-img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 30px;
  font-weight: 400;
  color: var(--primary-accent);
  letter-spacing: -0.3px;
  line-height: 1.1;
  border-bottom: 1.5px solid var(--light-accent);
  padding-bottom: 3px;
  display: inline-block;
  width: fit-content;
}

.brand-tagline {
  font-size: 13.5px;
  font-weight: 400;
  color: #584c6e;
  margin-top: 5px;
  letter-spacing: 0.1px;
}

/* Header Right Contacts */
.header-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.meta-email {
  font-size: 14px;
  color: var(--dark-indigo);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.meta-email:hover {
  color: var(--primary-accent);
}

.link-subtle {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--dropdown-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.link-subtle:hover {
  color: var(--primary-accent);
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-indigo);
  margin-top: 2px;
  transition: opacity 0.2s ease;
}

.phone-badge:hover {
  opacity: 0.85;
}

.phone-badge i {
  font-size: 20px;
  color: var(--primary-accent);
}

/* =========================================
   PRIMARY NAVIGATION & DROPDOWN
   ========================================= */
.primary-nav {
  padding: 16px 0 20px 0;
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 36px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--dark-indigo);
  letter-spacing: 0.1px;
  padding: 6px 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link i.arrow-icon {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.nav-item:hover > .nav-link {
  color: var(--primary-accent);
}

.nav-item:hover > .nav-link i.arrow-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background-color: var(--dropdown-bg);
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 8px 18px rgba(86, 8, 250, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 120;
}

.nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.2px;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-menu li a:hover {
  background-color: var(--dropdown-hover);
  padding-left: 22px;
}

.mobile-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--primary-accent);
  cursor: pointer;
  padding: 6px;
}

/* =========================================
   HERO BANNER
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 64vh;
  min-height: 480px;
  max-height: 650px;
  /* background property removed from here so the inline HTML style takes over */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 8, 77, 0.16) 0%, rgba(0,0,0,0) 30%);
  pointer-events: none;
}

/* =========================================
   INTRO SECTION
   ========================================= */
.tours-intro-section {
  padding: 55px 0 65px 0;
  background-color: #ffffff;
}

.intro-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

.main-title-wrapper {
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.main-title {
  font-size: 34px;
  font-weight: 300;
  letter-spacing: -0.2px;
}

.main-title .brand-bold {
  font-weight: 700;
  color: var(--primary-accent);
}

.main-title .brand-light {
  color: var(--light-accent);
  font-weight: 300;
}

.main-title-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 860px;
  height: 1.5px;
  background-color: var(--primary-accent);
}

.intro-text-block {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 38px auto;
}

.sub-headline {
  font-size: 27px;
  font-weight: 500;
  color: var(--dark-indigo);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.award-badge {
  font-size: 14.5px;
  font-weight: 700;
  color: #2b2339;
  margin-bottom: 16px;
  letter-spacing: 0.1px;
}

.intro-description {
  font-size: 14.5px;
  line-height: 1.85;
  color: #524765;
  font-weight: 400;
  margin: 0 auto 12px auto;
}

.intro-description strong {
  font-weight: 700;
  color: #251c35;
}

.highlight-link {
  color: var(--primary-accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.highlight-link:hover {
  opacity: 0.8;
}

.more-details-toggle {
  display: inline-block;
  color: var(--primary-accent);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 8px;
  cursor: pointer;
}

/* Superimposed Banner */
.promo-banner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 420px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(86, 8, 250, 0.18);
}

.promo-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 8, 77, 0.2) 0%,
    rgba(30, 8, 77, 0.35) 40%,
    rgba(86, 8, 250, 0.45) 100%
  );
  pointer-events: none;
}

.banner-text-overlay {
  position: absolute;
  top: 25px;
  right: 32px;
  text-align: right;
  color: #ffffff;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.banner-main-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px;
  line-height: 0.88;
  letter-spacing: 1.5px;
  color: #ffffff;
}

.banner-sub-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-top: 4px;
  display: block;
}

.banner-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: 2px;
  display: block;
  margin-top: 4px;
}

.btn-book-now {
  position: absolute;
  bottom: 35px;
  left: 45px;
  z-index: 2;
  background: linear-gradient(180deg, #ffffff 0%, #ede6ff 100%);
  color: var(--primary-accent);
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 700;
  padding: 13px 34px;
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(86, 8, 250, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(86, 8, 250, 0.45);
}

/* =========================================
   MACHU PICCHU & TOURS GRIDS
   ========================================= */
.tours-grid-section {
  padding: 50px 0 60px 0;
  background-color: #ffffff;
}

.tours-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 38px;
}

.tours-badge {
  display: inline-block;
  background-color: var(--primary-accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 11px 36px;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(86, 8, 250, 0.25);
  user-select: none;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: 100%;
}

.tour-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform 0.25s ease;
}

.tour-card:hover {
  transform: translateY(-4px);
}

.tour-thumb-link {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.tour-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.tour-card:hover .tour-thumb {
  transform: scale(1.05);
}

.tour-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 14px;
}

.tour-title {
  margin: 0 0 6px 0;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.35;
  min-height: 42px;
}

.tour-title a {
  color: var(--primary-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tour-title a:hover {
  color: var(--dropdown-hover);
  text-decoration: underline;
}

.tour-duration {
  font-size: 13px;
  color: #6a5e82;
  font-weight: 500;
  margin-bottom: 2px;
}

.tour-price {
  font-size: 14px;
  color: var(--dark-indigo);
  font-weight: 600;
}

.tours-section-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-gray);
  margin-top: 45px;
}

/* =========================================
   SUSTAINABLE TRAVEL & BOOKING SECTION
   ========================================= */
.green-content-section {
  background-color: var(--dark-indigo);
  color: #ffffff;
  padding: 60px 0 70px 0;
  font-family: var(--font-family, 'Montserrat', sans-serif);
}

.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

/* 5 TripAdvisor Badges */
.awards-badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}

.award-badge-item {
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.award-badge-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(86, 8, 250, 0.35);
}

.award-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

/* Headings & Text */
.green-sec-title {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 14px;
}

.green-sec-title u,
.green-sub-title u {
  text-underline-offset: 4px;
}

.green-sub-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.green-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #f1edfc;
  margin-bottom: 14px;
  font-weight: 400;
}

.green-text strong {
  font-weight: 700;
  color: #ffffff;
}

.green-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.green-link:hover {
  opacity: 0.8;
}

/* 4-Card Social Impact Grid */
.impact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0 35px 0;
  width: 100%;
}

.impact-card {
  position: relative;
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.impact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.impact-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.75) 60%, rgba(255, 255, 255, 0) 100%);
  text-align: center;
  color: var(--dark-indigo);
}

.impact-card-overlay h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.impact-card-overlay .script-accent {
  font-size: 11px;
  font-style: italic;
  display: block;
  margin: 2px 0;
  color: #5c4e75;
}

.impact-card-overlay h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-accent);
  margin: 0;
}

/* Step-by-Step Flow */
.steps-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 25px;
}

.step-flow-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-bullet {
  color: var(--light-accent);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #f1edfc;
}

/* Important Note Box */
.important-note-box {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--primary-accent);
  padding: 16px 20px;
  border-radius: 4px;
  margin-top: 25px;
}

.important-note-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
}

/* =========================================
   BLOGS SECTION STYLES
   ========================================= */
.blog-grid-section {
  padding: 50px 0 65px 0;
  background-color: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-thumb-link {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.blog-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-thumb {
  transform: scale(1.05);
}

.thumb-badge-overlay {
  position: absolute;
  inset: 0;
  background: rgba(86, 8, 250, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  z-index: 2;
  padding: 10px;
}

.thumb-badge-overlay span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 1;
}

.thumb-badge-overlay small {
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
}

.blog-content {
  display: flex;
  flex-direction: column;
  padding: 14px 4px 0 4px;
  flex-grow: 1;
}

.blog-date {
  font-size: 12px;
  color: #7b6f95;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.blog-title {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  min-height: 40px;
}

.blog-title a {
  color: var(--primary-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-title a:hover {
  color: var(--dropdown-hover);
  text-decoration: underline;
}

.blog-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: #554a6c;
  margin-bottom: 12px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-accent);
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.blog-read-more:hover {
  color: var(--dropdown-hover);
  transform: translateX(3px);
}

/* =========================================
   SITE FOOTER STYLES
   ========================================= */
.site-footer {
  position: relative;
  width: 100%;
  background: url('imgs/footer.jpg') center bottom / cover no-repeat;
  padding: 70px 0 25px 0;
  color: var(--text-gray);
  overflow: hidden;
}

.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(247, 243, 255, 0.90) 50%,
    rgba(242, 235, 255, 0.82) 100%
  );
  backdrop-filter: blur(1.5px);
  pointer-events: none;
  z-index: 1;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.7fr;
  gap: 40px;
  width: 100%;
}

.footer-col-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-accent);
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-links li a {
  font-size: 14.5px;
  font-weight: 400;
  color: #493b62;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(86, 8, 250, 0.25);
  line-height: 1.4;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-links li a:hover {
  color: var(--primary-accent);
  text-decoration-color: var(--primary-accent);
}

.footer-card-col {
  display: flex;
  justify-content: flex-end;
}

.footer-brand-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(86, 8, 250, 0.1), 0 1px 3px rgba(0, 0, 0, 0.04);
  max-width: 440px;
  width: 100%;
  border: 1px solid rgba(233, 226, 248, 0.8);
}

.card-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.card-logo-img {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}

.card-title-group {
  display: flex;
  flex-direction: column;
}

.card-brand-name {
  font-size: 19px;
  font-weight: 600;
  color: var(--primary-accent);
  line-height: 1.2;
}

.card-tagline {
  font-size: 12px;
  color: #7b6f95;
  margin-top: 3px;
}

.card-bio {
  font-size: 13.5px;
  line-height: 1.65;
  color: #554a6c;
  margin-bottom: 18px;
}

.card-divider {
  border: none;
  height: 1px;
  background-color: var(--border-gray);
  margin-bottom: 18px;
}

.card-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-gray);
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.contact-item i {
  font-size: 15px;
  color: var(--primary-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item.link-green {
  color: var(--primary-accent);
  text-decoration: underline;
  text-underline-offset: 2.5px;
}

.contact-item.link-green:hover {
  color: var(--dropdown-hover);
}

.footer-bottom-bar {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid rgba(86, 8, 250, 0.15);
}

.footer-bottom-bar p {
  font-size: 13px;
  color: #6b5f85;
  margin: 0;
}

/* =========================================
   MOBILE DRAWER NAVIGATION
   ========================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 8, 77, 0.5);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -330px;
  width: 310px;
  height: 100%;
  background: #ffffff;
  z-index: 999;
  box-shadow: -4px 0 20px rgba(86, 8, 250, 0.2);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(-330px);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gray);
}

.drawer-brand {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-accent);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 26px;
  color: #333;
  cursor: pointer;
}

.drawer-nav-list {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-item {
  display: flex;
  flex-direction: column;
}

.drawer-item.divider-top {
  margin-top: 12px;
  border-top: 1px dashed var(--border-gray);
  padding-top: 10px;
}

.drawer-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-indigo);
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.drawer-link:active,
.drawer-link:hover {
  background-color: var(--bg-tint);
  color: var(--primary-accent);
}

.drawer-link i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.drawer-submenu {
  display: none;
  list-style: none;
  background: var(--bg-tint);
  border-radius: 6px;
  padding: 8px 0;
  margin: 4px 0;
  border-left: 3px solid var(--primary-accent);
}

.drawer-submenu.open {
  display: block;
}

.drawer-submenu li a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--dark-indigo);
  text-decoration: none;
}

.drawer-submenu li a:hover {
  color: var(--primary-accent);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-gray);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-email-badge {
  font-size: 13px;
  color: var(--dropdown-hover);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: var(--bg-tint);
  border-radius: 6px;
  word-break: break-all;
}

.drawer-footer .phone-badge {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-accent);
  justify-content: center;
  background: var(--bg-tint);
  padding: 12px;
  border-radius: 8px;
  margin-top: 0;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */
@media (max-width: 1080px) {
  .nav-list {
    gap: 22px;
  }
  .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .primary-nav,
  .header-top-right {
    display: none;
  }

  .mobile-hamburger {
    display: block;
  }

  .header-top {
    padding-bottom: 14px;
  }

  .brand-title {
    font-size: 24px;
  }

  .brand-tagline {
    font-size: 12px;
  }

  .logo-wrapper {
    width: 60px;
    height: 60px;
  }

  .hero {
    height: 48vh;
    min-height: 320px;
  }

  .main-title {
    font-size: 28px;
  }
  .sub-headline {
    font-size: 22px;
  }
  .promo-banner {
    height: 340px;
  }
  .banner-main-title {
    font-size: 50px;
  }
  .banner-sub-title {
    font-size: 22px;
  }
  .banner-year {
    font-size: 54px;
  }
  .btn-book-now {
    font-size: 17px;
    padding: 11px 24px;
    bottom: 25px;
    left: 25px;
  }

  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .tour-title {
    min-height: auto;
  }

  .impact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .impact-card {
    height: 320px;
  }

  .green-sec-title {
    font-size: 21px;
  }

  .green-sub-title {
    font-size: 17px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .blog-title {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-card-col {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .footer-brand-card {
    max-width: 100%;
  }
}

@media (max-width: 580px) {
  .brand-title {
    font-size: 20px;
  }
  .brand-tagline {
    font-size: 11px;
  }
  .logo-wrapper {
    width: 50px;
    height: 50px;
  }
  .main-title {
    font-size: 22px;
  }
  .sub-headline {
    font-size: 19px;
  }
  .intro-description {
    font-size: 13.5px;
  }
  .promo-banner {
    height: 280px;
  }
  .banner-text-overlay {
    top: 16px;
    right: 16px;
  }
  .banner-main-title {
    font-size: 38px;
  }
  .banner-sub-title {
    font-size: 17px;
  }
  .banner-year {
    font-size: 42px;
  }
  .btn-book-now {
    font-size: 15px;
    padding: 9px 20px;
    bottom: 18px;
    left: 18px;
  }

  .tours-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    gap: 32px;
  }
  .tour-title {
    font-size: 16px;
  }
  .tour-duration {
    font-size: 13.5px;
  }
  .tour-price {
    font-size: 14.5px;
  }

  .green-content-section {
    padding: 45px 16px 55px 16px;
  }

  .awards-badge-row {
    gap: 10px;
  }

  .award-badge-item {
    width: 78px;
    height: 78px;
    padding: 4px;
  }

  .impact-cards-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .impact-card {
    height: 300px;
  }

  .green-sec-title {
    font-size: 19px;
  }

  .green-sub-title {
    font-size: 15.5px;
  }

  .green-text {
    font-size: 13.5px;
  }

  .blog-grid-section {
    padding: 35px 0 45px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    gap: 30px;
  }

  .blog-title {
    font-size: 16px;
  }

  .blog-excerpt {
    font-size: 13.5px;
  }

  .site-footer {
    padding: 45px 16px 20px 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col-title {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .footer-links li a {
    font-size: 14px;
  }

  .footer-brand-card {
    padding: 22px 18px;
  }

  .card-brand-name {
    font-size: 17px;
  }

  .card-bio,
  .contact-item {
    font-size: 13px;
  }
}


/* =========================================
   REFINED LOGO & HEADER BRAND CSS
   ========================================= */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 0;
}

/* Fluid, high-resolution logo container */
.logo-wrapper {
  height: 90px;             /* Increases overall vertical presence */
  width: auto;              /* Lets horizontal/tall logos define their own natural width */
  max-width: 240px;         /* Gives ample room for the logo and brand text */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.logo-img {
  height: 100%;             /* Fills container height */
  width: auto;              /* Retains strict 1:1 aspect ratio */
  max-width: 100%;
  object-fit: contain;      /* Never squishes or stretches */
  display: block;
}

/* =========================================
   RESPONSIVE LOGO ADJUSTMENTS
   ========================================= */
@media (max-width: 960px) {
  .logo-wrapper {
    height: 72px;
    max-width: 180px;
  }
}

@media (max-width: 580px) {
  .logo-wrapper {
    height: 58px;
    max-width: 150px;
  }
}


/* ===============================Blog===================================== */

/* ========================================================
   UNIVERSAL HERO BANNER & BREADCRUMB (DYNAMIC IMAGE SUPPORT)
   ======================================================== */
.page-hero-banner {
  position: relative;
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dynamic background image rendered via HTML <img> tag */
.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 6, 48, 0.78) 0%,
    rgba(45, 10, 115, 0.62) 50%,
    rgba(86, 8, 250, 0.45) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Centered Content Wrapper */
.page-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 0;
}

.page-hero-title {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

/* Universal Breadcrumb Pill */
.page-breadcrumb .breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
  padding: 8px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13.5px;
  color: #f1edfc;
  margin: 0;
}

.page-breadcrumb .breadcrumb-list a {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}

.page-breadcrumb .breadcrumb-list a:hover {
  opacity: 0.8;
}

.page-breadcrumb .breadcrumb-list .separator {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustment */
@media (max-width: 640px) {
  .page-hero-banner {
    min-height: 200px;
  }
  .page-hero-title {
    font-size: 28px;
  }
}

/* =========================================
   EDITORIAL INTRO & FEATURED MEDIA
   ========================================= */
.blog-intro-section {
  padding: 50px 0 30px 0;
  background-color: #ffffff;
}

.intro-textbox {
  max-width: 960px;
  margin: 0 auto 35px auto;
  text-align: center;
}

.intro-textbox p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #4b415e;
}

.inline-purple-link {
  color: var(--primary-accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 16:9 Video/Media Card */
.featured-media-card {
  position: relative;
  width: 100%;
  max-width: 980px;
  height: 440px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(86, 8, 250, 0.16);
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 8, 77, 0.3) 0%, rgba(30, 8, 77, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 20px;
}

.video-badge {
  background: var(--primary-accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 20px;
}

.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding-left: 4px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s;
}

.play-btn:hover {
  transform: scale(1.12);
  background: var(--bg-tint);
}

.video-caption {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* =========================================
   3-COLUMN ARTICLES GRID
   ========================================= */
.blog-listing-section {
  padding: 40px 0 70px 0;
  background-color: #ffffff;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 26px;
  width: 100%;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(86, 8, 250, 0.12);
}

.article-thumb-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.article-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.article-card:hover .article-thumb {
  transform: scale(1.06);
}

/* Category Badge on Top-Right of Card */
.category-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(30, 8, 77, 0.82);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  z-index: 2;
  letter-spacing: 0.3px;
}

.category-tag.tag-alert {
  background: #d92438;
}

/* Content */
.article-body {
  padding: 18px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-date {
  font-size: 12px;
  color: #7b6f95;
  font-weight: 500;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.post-title {
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.38;
  margin-bottom: 10px;
  min-height: 46px;
}

.post-title a {
  color: var(--dark-indigo);
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-title a:hover {
  color: var(--primary-accent);
}

.post-snippet {
  font-size: 13.5px;
  line-height: 1.65;
  color: #554a6c;
  margin-bottom: 16px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-more-info {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-accent);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
  width: fit-content;
}

.btn-more-info:hover {
  color: var(--dropdown-hover);
  transform: translateX(4px);
}

/* =========================================
   PAGINATION BAR
   ========================================= */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}

.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--border-gray);
  color: var(--dark-indigo);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s;
}

.page-link:hover {
  background-color: var(--bg-tint);
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}

.page-link.active {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
  color: #ffffff;
}

.page-link.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.page-dots {
  color: #8b7d9f;
  padding: 0 4px;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */
@media (max-width: 992px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .post-title {
    min-height: auto;
  }

  .featured-media-card {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .page-main-title {
    font-size: 28px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 26px;
  }

  .featured-media-card {
    height: 250px;
  }

  .play-btn {
    width: 54px;
    height: 54px;
    font-size: 18px;
  }

  .video-caption {
    font-size: 12px;
  }
}


/* =================blog details =============== */
/* =========================================
   BLOG DETAILS & DYNAMIC CONTENT STYLES
   ========================================= */
.blog-details-section {
  padding: 55px 0 70px 0;
  background-color: #ffffff;
}

/* Two-Column Grid (Main Content + Sticky Sidebar) */
.blog-details-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* --- Article Header --- */
.article-header {
  margin-bottom: 24px;
}

.detail-category-badge {
  display: inline-block;
  background-color: var(--bg-tint);
  color: var(--primary-accent);
  border: 1px solid rgba(86, 8, 250, 0.2);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.detail-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--dark-indigo);
  line-height: 1.28;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.detail-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: #72668a;
  border-bottom: 1px solid var(--border-gray);
  padding-bottom: 16px;
}

.detail-meta-bar .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.detail-meta-bar i {
  color: var(--primary-accent);
}

/* --- Featured Image --- */
.article-featured-image {
  width: 100%;
  margin-bottom: 35px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(86, 8, 250, 0.08);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.image-caption {
  display: block;
  font-size: 12.5px;
  color: #7b6f95;
  font-style: italic;
  padding: 10px 14px;
  background: #fbf9ff;
  border-left: 3px solid var(--primary-accent);
}

/* =========================================
   DYNAMIC RICH CONTENT STYLES
   Formats any HTML rendered inside .rich-content
   ========================================= */
.rich-content {
  font-size: 16px;
  line-height: 1.85;
  color: #3e354f;
}

.rich-content p {
  margin-bottom: 22px;
}

.rich-content .lead-paragraph {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--dark-indigo);
  margin-bottom: 26px;
}

.rich-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-indigo);
  margin: 38px 0 16px 0;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.rich-content h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--dark-indigo);
  margin: 28px 0 14px 0;
  line-height: 1.35;
}

.rich-content a {
  color: var(--primary-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.rich-content a:hover {
  color: var(--dropdown-hover);
}

.rich-content strong {
  color: var(--dark-indigo);
  font-weight: 700;
}

.rich-content ul,
.rich-content ol {
  margin: 0 0 24px 20px;
  padding-left: 10px;
}

.rich-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.rich-content blockquote {
  position: relative;
  background: #fbf9ff;
  border-left: 4px solid var(--primary-accent);
  padding: 22px 28px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
  font-size: 17px;
  font-style: italic;
  color: var(--dark-indigo);
  line-height: 1.7;
}

/* Dynamic Content Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 28px 0 32px 0;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  text-align: left;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-gray);
}

.content-table th {
  background-color: var(--dark-indigo);
  color: #ffffff;
  font-weight: 600;
  padding: 14px 18px;
}

.content-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-gray);
  color: #4b415e;
}

.content-table tbody tr:last-child td {
  border-bottom: none;
}

.content-table tbody tr:nth-child(even) {
  background-color: #faf8ff;
}

/* Alert / Advisory Callout Box */
.content-alert-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8f5ff;
  border: 1px solid rgba(86, 8, 250, 0.2);
  border-left: 5px solid var(--primary-accent);
  padding: 20px 22px;
  border-radius: 6px;
  margin: 32px 0;
}

.content-alert-box .alert-icon {
  font-size: 22px;
  color: var(--primary-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.content-alert-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-indigo);
  margin: 0 0 6px 0;
}

.content-alert-box p {
  font-size: 14px;
  line-height: 1.65;
  color: #554a6c;
  margin: 0;
}

/* --- Article Footer (Tags & Social Sharing) --- */
.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 25px;
  margin-top: 40px;
  border-top: 1px solid var(--border-gray);
}

.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark-indigo);
}

.tag-pill {
  background: var(--bg-tint);
  color: var(--primary-accent);
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 16px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.tag-pill:hover {
  background: var(--primary-accent);
  color: #ffffff;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark-indigo);
}

.share-links {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0ecf9;
  color: var(--dark-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s, color 0.2s;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn.share-fb:hover { background: #1877f2; color: #ffffff; }
.share-btn.share-x:hover { background: #000000; color: #ffffff; }
.share-btn.share-wa:hover { background: #25d366; color: #ffffff; }
.share-btn.share-mail:hover { background: var(--primary-accent); color: #ffffff; }

/* =========================================
   STICKY SIDEBAR WIDGETS
   ========================================= */
.article-sidebar {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

/* 1. Direct WhatsApp Booking Widget */
.widget-booking-card {
  background: linear-gradient(145deg, #ffffff 0%, #fbf9ff 100%);
  border: 1.5px solid rgba(86, 8, 250, 0.25);
  text-align: center;
}

.widget-booking-card .widget-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark-indigo);
  margin-bottom: 8px;
}

.widget-booking-card .widget-subtitle {
  font-size: 13.5px;
  line-height: 1.6;
  color: #554a6c;
  margin-bottom: 18px;
}

.btn-whatsapp-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25d366;
  color: #ffffff;
  padding: 13px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

.widget-footnote {
  display: block;
  font-size: 11.5px;
  color: #7b6f95;
  margin-top: 12px;
}

/* 2. Featured Tour Widget */
.widget-featured-tour {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.featured-tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  z-index: 2;
}

.featured-tour-thumb {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.featured-tour-content {
  padding: 20px;
}

.featured-tour-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-indigo);
  line-height: 1.35;
  margin-bottom: 6px;
}

.featured-tour-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-accent);
  display: block;
  margin-bottom: 8px;
}

.featured-tour-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #554a6c;
  margin-bottom: 16px;
}

.btn-tour-detail {
  display: block;
  text-align: center;
  background: var(--bg-tint);
  color: var(--primary-accent);
  border: 1px solid rgba(86, 8, 250, 0.25);
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.btn-tour-detail:hover {
  background: var(--primary-accent);
  color: #ffffff;
}

/* 3. Categories Widget */
.widget-heading {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-indigo);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-gray);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4b415e;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.category-list li a:hover {
  color: var(--primary-accent);
  transform: translateX(4px);
}

.category-list li a span {
  font-size: 12px;
  color: #8b7d9f;
}

/* =========================================
   RELATED ARTICLES SECTION
   ========================================= */
.related-articles-section {
  padding: 60px 0 70px 0;
  background-color: #faf8ff;
  border-top: 1px solid var(--border-gray);
}


/* =========================================
   TABLET RESPONSIVE FIX (<= 992px)
   ========================================= */
@media (max-width: 992px) {
  .container,
  .container-full {
    padding: 0 20px; /* Retains clean side margins across all screens */
  }

  .blog-details-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* =========================================
   MOBILE RESPONSIVE FIX (<= 640px / 580px)
   ========================================= */
@media (max-width: 640px) {
  .container,
  .container-full {
    padding: 0 16px; /* Exactly matches the home page side gutter */
  }

  /* Ensures blog cards never stretch to the edge */
  .articles-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
    gap: 24px;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  /* Prevents tour images & article images from overflowing */
  .article-featured-image {
    margin-bottom: 24px;
    border-radius: 6px;
  }

  .tour-card,
  .article-card {
    width: 100%;
  }
}

/* =========================================
   RESPONSIVE LAYOUT
   ========================================= */
@media (max-width: 992px) {
  .blog-details-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .widget-categories {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .blog-details-section {
    padding: 35px 0 50px 0;
  }

  .detail-title {
    font-size: 24px;
  }

  .rich-content {
    font-size: 15px;
  }

  .rich-content .lead-paragraph {
    font-size: 16px;
  }

  .rich-content h2 {
    font-size: 21px;
    margin: 28px 0 12px 0;
  }

  .rich-content h3 {
    font-size: 18px;
  }

  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }
}

/* =================contact /======= */

/* =========================================
   CONTACT MAIN SECTION STYLES
   ========================================= */
.contact-main-section {
  padding: 55px 0 65px 0;
  background-color: #ffffff;
}

.contact-intro-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 38px auto;
}

.contact-page-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-indigo);
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin: 12px 0 8px 0;
}

.contact-page-subtitle {
  font-size: 14.5px;
  color: #6a5e82;
  line-height: 1.6;
}

/* 2-Column Balanced Grid: Form vs Info */
.contact-grid-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch; /* Forces equal height */
  margin-bottom: 45px;
}

/* Base style for Form & Directory Cards */
.contact-form-card,
.contact-directory-card {
  background: #ffffff;
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 18px rgba(86, 8, 250, 0.04);
  display: flex;
  flex-direction: column;
}

.form-title,
.directory-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--dark-indigo);
  margin-bottom: 5px;
}

.form-desc,
.directory-desc {
  font-size: 13px;
  color: #6a5e82;
  margin-bottom: 20px;
}

/* Left Form Area */
.site-form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.site-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.site-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.site-form label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark-indigo);
  margin-bottom: 5px;
}

.site-form input,
.site-form select,
.site-form textarea {
  font-family: var(--font-family);
  font-size: 13.5px;
  color: var(--text-gray);
  background-color: #faf8ff;
  border: 1px solid #dfd8f0;
  border-radius: 7px;
  padding: 10px 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  background-color: #ffffff;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(86, 8, 250, 0.12);
}

.btn-submit-form {
  margin-top: auto;
  width: 100%;
  background-color: var(--primary-accent);
  color: #ffffff;
  border: none;
  border-radius: 7px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-family);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(86, 8, 250, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-submit-form:hover {
  background-color: var(--dropdown-hover);
  transform: translateY(-2px);
}

/* Right Directory Area */
.dept-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 10px;
}

.dept-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background-color: #faf9fd;
  border: 1px solid rgba(86, 8, 250, 0.07);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.dept-row:hover {
  background-color: #f2ecfe;
  transform: translateX(3px);
}

.dept-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(86, 8, 250, 0.1);
}

.dept-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-indigo);
  margin-bottom: 2px;
  line-height: 1.3;
}

.dept-team {
  font-size: 11.5px;
  color: #7b6f95;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 5px;
}

.dept-action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dept-action-links a {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.dept-action-links a:hover {
  color: var(--dropdown-hover);
}

/* =========================================
   HEAD OFFICE & MAP STYLES (PRESERVED)
   ========================================= */
.office-map-container {
  background: #ffffff;
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.office-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: #faf8ff;
  border-bottom: 1px solid var(--border-gray);
}

.office-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.map-marker-icon {
  font-size: 22px;
  color: var(--primary-accent);
}

.office-title-wrap h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--dark-indigo);
  margin-bottom: 2px;
}

.office-title-wrap p {
  font-size: 13px;
  color: #6a5e82;
  margin: 0;
}

.btn-open-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.btn-open-map:hover {
  color: var(--dropdown-hover);
}

.map-iframe-wrapper {
  width: 100%;
  line-height: 0;
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .contact-grid-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .contact-page-title {
    font-size: 24px;
  }

  .site-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-card,
  .contact-directory-card {
    padding: 22px 18px;
  }

  .office-header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}



/* =========================== */

/* =========================================
   WHY US / STORY SHOWCASE STYLES
   ========================================= */
.why-story-section {
  padding: 60px 0 70px 0;
  background-color: #ffffff;
}

.why-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

/* Photo Wrapper & Experience Badge */
.why-media-wrap {
  display: flex;
  flex-direction: column;
}

.why-image-card {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(86, 8, 250, 0.12);
}

.why-main-photo {
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.why-badge-experience {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(30, 8, 77, 0.92);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 4px solid var(--primary-accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.why-badge-experience .exp-years {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  line-height: 1;
  color: #ffffff;
}

.why-badge-experience .exp-text {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  color: #f1edfc;
  max-width: 130px;
}

.why-media-caption {
  font-size: 12.5px;
  color: #7b6f95;
  font-style: italic;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Story Content */
.why-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-indigo);
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin: 12px 0 16px 0;
}

.why-lead-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-indigo);
  font-weight: 500;
  margin-bottom: 16px;
}

.why-body-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #554a6c;
  margin-bottom: 14px;
}

.why-inline-link {
  color: var(--primary-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.why-inline-link:hover {
  color: var(--dropdown-hover);
}

/* Checklist Items */
.why-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 30px 0;
  padding: 16px 20px;
  background: #faf8ff;
  border-radius: 8px;
  border-left: 3px solid var(--primary-accent);
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-indigo);
}

.check-item i {
  color: #25d366;
  font-size: 16px;
  flex-shrink: 0;
}

/* Buttons */
.why-action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary-purple {
  background-color: var(--primary-accent);
  color: #ffffff;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(86, 8, 250, 0.25);
  transition: background-color 0.2s, transform 0.2s;
}

.btn-primary-purple:hover {
  background-color: var(--dropdown-hover);
  transform: translateY(-2px);
}

.btn-whatsapp-pill {
  background-color: #25d366;
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.btn-whatsapp-pill:hover {
  background-color: #1eb956;
  transform: translateY(-2px);
}

/* =========================================
   PILLARS GRID STYLES
   ========================================= */
.why-pillars-section {
  padding: 60px 0 75px 0;
  background-color: #faf9fd;
  border-top: 1px solid var(--border-gray);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: 100%;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  padding: 30px 24px;
  box-shadow: 0 4px 14px rgba(86, 8, 250, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(86, 8, 250, 0.3);
  box-shadow: 0 10px 24px rgba(86, 8, 250, 0.08);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--bg-tint);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-indigo);
  margin-bottom: 10px;
  line-height: 1.35;
}

.pillar-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #6a5e82;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .why-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-main-photo {
    min-height: 320px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .why-title {
    font-size: 24px;
  }

  .why-lead-text {
    font-size: 15px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-purple,
  .btn-whatsapp-pill {
    justify-content: center;
  }
}


/* ======= */

/* =========================================
   TOUR LIST INTRO STYLES
   ========================================= */
.tour-list-intro {
  padding: 50px 0 35px 0;
  background-color: #ffffff;
}

.tour-intro-box {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.tour-intro-headline {
  font-size: 30px;
  font-weight: 700;
  color: var(--dark-indigo);
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin: 12px 0 16px 0;
}

.tour-intro-p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #554a6c;
  margin-bottom: 14px;
}

.intro-link {
  color: var(--primary-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.intro-link:hover {
  color: var(--dropdown-hover);
}

@media (max-width: 640px) {
  .tour-intro-headline {
    font-size: 22px;
  }
  .tour-intro-p {
    font-size: 13.5px;
  }
}