/* =============================================
   INFO HUB — Page-specific Styles
   Inspired by Co van Kessel reference design
   ============================================= */

/* ---------- HERO ---------- */
.ih-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('/assets/images/hero-bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.ih-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,32,56,.72) 0%, rgba(6,75,142,.45) 50%, rgba(0,0,0,.5) 100%);
  z-index: 1;
}
.ih-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  max-width: 800px;
}
.ih-hero-sub {
  font-family: 'Prompt', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.ih-hero-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.05;
  color: #fff;
  margin: 0 0 32px;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.ih-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--lime));
  color: var(--dark);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 32px rgba(94,201,65,.35);
  transition: .3s;
}
.ih-hero-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(94,201,65,.5);
}
.ih-hero-stripe {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, var(--green), var(--lime));
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
}

/* ---------- VALUES SECTION ---------- */
.ih-values {
  background: linear-gradient(135deg, var(--green), var(--lime));
  padding: 80px 0 60px;
}
.ih-values-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ih-values-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--dark);
  line-height: 1.05;
  margin: 0 0 16px;
}
.ih-values-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid var(--dark);
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 24px;
  background: rgba(255,255,255,.15);
}
.ih-values-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
  max-width: 520px;
  opacity: .85;
}
.ih-values-desc strong {
  text-decoration: underline;
  text-decoration-color: var(--dark);
  text-underline-offset: 3px;
}
.ih-values-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 8px;
}
.ih-value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(20px);
  transition: .5s ease-out;
}
.ih-value-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
.ih-value-item:nth-child(2) { transition-delay: .1s; }
.ih-value-item:nth-child(3) { transition-delay: .2s; }
.ih-value-item:nth-child(4) { transition-delay: .3s; }
.ih-num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--lime);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

/* ---------- REVIEWS ---------- */
.ih-reviews {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  padding: 0 24px;
  flex-wrap: wrap;
}
.ih-review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 36px;
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  min-width: 180px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: .5s ease-out;
}
.ih-review-card.revealed {
  opacity: 1;
  transform: translateY(0);
}
.ih-review-card:nth-child(2) { transition-delay: .15s; }
.ih-review-card:nth-child(3) { transition-delay: .3s; }
.ih-review-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
}
.ih-review-card strong {
  font-size: 22px;
  color: var(--dark);
}
.ih-review-stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 2px;
}
.ih-review-card small {
  color: var(--muted);
  font-size: 13px;
}

/* ---------- QUOTE SECTION ---------- */
.ih-quote {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: url('../images/riverside.png') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ih-quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,32,56,.75);
}
.ih-quote-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 800px;
}
.ih-quote-text {
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(18px, 3vw, 26px);
  line-height: 1.7;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  margin-bottom: 40px;
}
.ih-quote-text em {
  color: var(--lime);
}
.ih-quote-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 4px solid var(--lime);
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  transition: .4s;
}
.ih-quote-circle:hover {
  transform: scale(1.05);
}
.ih-quote-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ih-play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 32px;
  color: var(--lime);
  background: rgba(0,0,0,.25);
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
}
.ih-play-btn:hover {
  background: rgba(0,0,0,.4);
}

/* ---------- DESTINATIONS ---------- */
.ih-destinations {
  background: linear-gradient(180deg, #f8fdf5, #f2f9ff);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
/* Decorative tire-track pattern */
.ih-destinations::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: repeating-conic-gradient(rgba(6,75,142,.04) 0deg 10deg, transparent 10deg 20deg);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ih-destinations-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}
.ih-dest-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--dark);
  margin: 0 0 12px;
}
.ih-dest-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid var(--blue);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  margin-bottom: 50px;
}
.ih-dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  text-align: left;
}
.ih-dest-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ih-dest-card {
  display: block;
  text-decoration: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .35s;
  border: 1px solid rgba(255,255,255,.8);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .5s, transform .5s;
}
.ih-dest-card.revealed {
  opacity: 1;
  transform: translateX(0);
}
.ih-dest-card:nth-child(2) { transition-delay: .15s; }
.ih-dest-card:nth-child(3) { transition-delay: .3s; }
.ih-dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(6,75,142,.22);
}
.ih-dest-card-header {
  padding: 28px 28px 20px;
  color: #fff;
}
.ih-dest-card-header h3 {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: 28px;
  margin: 0;
}
.ih-dest-sub {
  font-size: 14px;
  color: var(--lime);
  font-weight: 600;
}
.ih-dest-card-body {
  padding: 22px 28px;
  background: #fff;
}
.ih-dest-card-body p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
  font-size: 15px;
}
.ih-dest-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--lime);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Story panel */
.ih-story-panel {
  padding: 40px;
  border-radius: 28px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(14,165,233,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.ih-story-quote {
  font-family: 'Kanit', sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
}
.ih-story-quote em {
  color: var(--muted);
}
.ih-story-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid var(--dark);
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  transition: .25s;
  margin-top: 12px;
}
.ih-story-btn:hover {
  background: var(--dark);
  color: var(--lime);
}

/* ---------- POPULAR TOURS ---------- */
.ih-tours {
  background: linear-gradient(135deg, var(--green), var(--lime));
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
/* Tire-track decorative element */
.ih-tours::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30 Q15 25 30 30 T60 30' fill='none' stroke='rgba(6,32,56,.06)' stroke-width='8'/%3E%3C/svg%3E") repeat;
  transform: rotate(-25deg);
}
.ih-tours-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.ih-tours-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  margin: 0 0 12px;
}
.ih-tours-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid var(--dark);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 50px;
}
.ih-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ih-tour-card {
  text-decoration: none;
  color: var(--text);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 50px rgba(0,0,0,.12);
  transition: .35s;
  border: 3px solid transparent;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s, transform .5s, border-color .25s, box-shadow .25s;
}
.ih-tour-card.revealed {
  opacity: 1;
  transform: translateY(0);
}
.ih-tour-card:nth-child(2) { transition-delay: .15s; }
.ih-tour-card:nth-child(3) { transition-delay: .3s; }
.ih-tour-card:hover {
  border-color: var(--dark);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.ih-tour-card.featured {
  border-color: var(--cyan);
  transform: translateY(-8px) scale(1.03);
}
.ih-tour-card.featured.revealed {
  transform: translateY(-8px) scale(1.03);
}
.ih-tour-img {
  height: 200px;
  background: url('../images/morning-local-vibe.svg') center/cover no-repeat;
  position: relative;
}
.ih-tour-img.img2 {
  background-image: url('../images/bangkok-lights-foodie.svg');
}
.ih-tour-img.img3 {
  background-image: url('../images/old-town-alleys.svg');
}
.ih-tour-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.label-green { background: var(--green); color: var(--dark); }
.label-red { background: #e53e3e; color: #fff; }
.label-yellow { background: var(--lime); color: var(--dark); }
.ih-tour-body {
  padding: 22px;
  text-align: left;
}
.ih-tour-body h3 {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  color: var(--dark);
  margin: 0 0 6px;
}
.ih-tour-duration {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 10px;
  text-transform: uppercase;
}
.ih-tour-highlights {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 14px;
}
.ih-tour-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #eef3f7;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.ih-tours-cta {
  margin-top: 50px;
}
.ih-tours-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 38px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--lime);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 12px 40px rgba(6,32,56,.25);
  transition: .3s;
}
.ih-tours-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(6,32,56,.35);
}

/* ---------- TEAM BUILDING ---------- */
.ih-team {
  padding: 90px 0;
}
.ih-team-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.ih-team-text h2 {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  margin: 8px 0 16px;
}
.ih-team-text p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}
.ih-team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ih-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: .5s;
}
.ih-stat.revealed {
  opacity: 1;
  transform: translateY(0);
}
.ih-stat:nth-child(2) { transition-delay: .1s; }
.ih-stat:nth-child(3) { transition-delay: .2s; }
.ih-stat-num {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: 36px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ih-stat span:last-child {
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- CTA ---------- */
.ih-cta {
  text-align: center;
  padding: 80px 24px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(6,75,142,.92), rgba(14,165,233,.84), rgba(94,201,65,.82));
  color: #fff;
  box-shadow: var(--shadow);
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 80px;
}
.ih-cta h2 {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin: 0 0 12px;
}
.ih-cta p {
  font-size: 18px;
  opacity: .9;
  margin: 0 0 30px;
}
.ih-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .ih-hero { min-height: 70vh; }
  .ih-hero-content { padding: 0 24px; }
  .ih-values-inner { grid-template-columns: 1fr; }
  .ih-values-right { grid-template-columns: 1fr 1fr; }
  .ih-dest-grid { grid-template-columns: 1fr; }
  .ih-tours-grid { grid-template-columns: 1fr; }
  .ih-tour-card.featured { transform: none; }
  .ih-tour-card.featured.revealed { transform: none; }
  .ih-team-inner { grid-template-columns: 1fr; }
  .ih-team-stats { grid-template-columns: repeat(3, 1fr); }
  .ih-quote-circle { width: 220px; height: 220px; }
}
@media (max-width: 560px) {
  .ih-values-right { grid-template-columns: 1fr; }
  .ih-reviews { flex-direction: column; align-items: center; }
  .ih-team-stats { grid-template-columns: 1fr; }
  .ih-dest-card-header h3 { font-size: 22px; }
}

/* ---------- CREATING MEMORIES ---------- */
.ih-memories {
  background: #f8fdf5;
  padding: 90px 0;
  position: relative;
}
.ih-memories-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}
.ih-memories-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--dark);
  margin: 0 0 12px;
}
.ih-memories-badge {
  display: inline-block;
  padding: 8px 18px;
  background: var(--lime);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 50px;
}
.ih-memories-mascot {
  font-size: 80px;
  margin-bottom: 40px;
}
.ih-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.ih-testimonial {
  background: #fff;
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: .5s;
}
.ih-testimonial.revealed {
  opacity: 1;
  transform: translateY(0);
}
.ih-testimonial-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.ih-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.ih-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}
.ih-testimonial-name {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  font-size: 14px;
}
.ih-testimonial-flag {
  font-size: 20px;
  margin-left: auto;
}
.ih-testimonial-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
}

/* ---------- SUPPORTING LOCAL COMMUNITIES ---------- */
.ih-community {
  background: var(--lime);
  padding: 100px 0;
  position: relative;
}
.ih-community-stripe-top {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #f8fdf5;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
  z-index: 3;
}
.ih-community-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ih-community-text h2 {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  margin: 0 0 16px;
}
.ih-community-badge {
  display: inline-block;
  padding: 8px 18px;
  background: #fff;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 24px;
}
.ih-community-text p {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.8;
  margin: 0 0 14px;
  opacity: .85;
}
.ih-community-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid var(--dark);
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  transition: .25s;
  margin-top: 12px;
}
.ih-community-btn:hover {
  background: var(--dark);
  color: var(--lime);
}
.ih-community-img {
  border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  height: 400px;
}
.ih-community-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .ih-testimonials { grid-template-columns: 1fr; }
  .ih-testimonial { grid-column: 1 !important; grid-row: auto !important; }
  .ih-community-inner { grid-template-columns: 1fr; }
  .ih-community-img { height: 300px; }
}

