/* Base styles */
:root {
  --accent: #e10a86; /* Contact button color */
  --text: #1c274c; /* Deep navy-like text color for links */
  --bg: #ffffff;
  --muted: #6b7280;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Satoshi", system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container {
  margin: 0 40px;
  padding: 0 24px;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 200px;
  object-fit: contain;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-primary {
  color: var(--text);
}
.brand-secondary {
  color: var(--accent);
}

/* Menu */
.primary-nav {
  margin-left: 24px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
}

/* Active underline similar to screenshot */
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  margin: 0 auto;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}

.nav-link:hover {
  color: #172037;
}

/* Contact button */
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(225, 10, 134, 0.25);
  transition: transform 0.12s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-btn:hover {
  filter: brightness(1.06);
}
.contact-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(225, 10, 134, 0.25);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none; /* shown on small screens */
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.menu-toggle .bar {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
}
.menu-toggle i.fa-bars,
.menu-toggle i.fa-xmark {
  font-size: 18px;
  color: var(--text);
}
.menu-toggle i.fa-xmark {
  display: none;
}
.mobile-open .menu-toggle i.fa-bars {
  display: none;
}
.mobile-open .menu-toggle i.fa-xmark {
  display: inline-block;
}

/* Responsive */
@media (max-width: 900px) {
  .primary-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  /* Hide standalone contact button, show compact one inside nav */
  .nav .contact-btn:not(.small) {
    display: none;
  }
  .nav-contact {
    display: block;
  }
}

/* Hide mobile-only contact entry on desktop */
.nav-contact {
  display: none;
}

/* Removed brand-text responsive rule: text is no longer in the markup */

/* Mobile drawer styles when open */
.mobile-open .primary-nav {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: block;
}

.mobile-open .nav-list {
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px;
}
/* Compact contact button inside mobile drawer */
.nav-contact .contact-btn.small {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
}

/* Hero */
.hero {
  padding: 0 0 24px;
}
.hero-frame {
  margin: 30px 64px;
  border-radius: 28px 28px 0 0; /* top-left & top-right rounded only */
  overflow: hidden;
  background: #ddd;
}
.hero-slide {
  position: relative;
  min-height: 80vh;
  background-position: center;
  background-size: cover;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 60px;
}
.hero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}
.hero-desc {
  font-family: "Satoshi", sans-serif;
  max-width: 760px;
  font-size: clamp(14px, 2.2vw, 16px);
  line-height: 1.6;
  color: #f0f1f3;
}

/* Dots */
.hero-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  opacity: 0.6;
  cursor: pointer;
}
.dot.active {
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(225, 10, 134, 0.25);
}

@media (max-width: 900px) {
  .hero-slide {
    min-height: 60vh;
  }
  .hero-content {
    padding-top: 60px;
  }
}

@media (max-width: 560px) {
  .hero-frame {
    margin: 16px;
  }
  .hero-title {
    font-size: clamp(28px, 8vw, 44px);
  }
  .hero-desc {
    max-width: none;
  }
}

/* Arrows using PNG asset */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}
.hero-arrow.prev {
  left: 18px;
}
.hero-arrow.next {
  right: 18px;
}
.hero-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-image: url("arrow_forward.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.hero-arrow.prev::before {
  transform: translate(-50%, -50%) scaleX(-1);
}

@media (max-width: 560px) {
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  .hero-arrow.prev {
    left: 12px;
  }
  .hero-arrow.next {
    right: 12px;
  }
}

/* Shared page header */
.page-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
}

.nav-links a {
  margin: 0 10px;
  color: #334155;
  text-decoration: none;
}
.nav-links a.active {
  color: #ea62a6;
  font-weight: 700;
}
.cta {
  background: #ea62a6;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
}

/* About hero */
.about-hero {
  padding: 24px 0 12px;
  position: relative;
}
.about-hero-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  padding: 40px 250px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  height: 60vh;
}
.about-hero-card::before,
.about-hero-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  background-image: url("about-texture.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.about-hero-card::before {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 72% 50%, 100% 100%, 0 100%);
  opacity: 1;
}
.about-hero-card::after {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 72% 50%, 100% 100%, 0 100%);
  transform: scaleX(-1);
  transform-origin: center;
  opacity: 1;
}
.about-hero-logo {
  width: 200px;
  margin: 0 auto 12px;
  display: block;
}
.about-hero-intro {
  color: #334155;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .about-hero-card::before,
  .about-hero-card::after {
    display: none;
  }
  .about-hero-card {
    padding: 28px;
  }
}
/* Features */
.section-heading {
  color: #197982;
  font-weight: 700;
  margin: 24px 0;
}
.section-heading-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 100px;
}
.section-badge {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}
.section-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, #ee81b7 0%, #e195bb 100%);
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
.section-badge::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 4px;
  border-radius: 50%;
  background: linear-gradient(90deg, #e10f87 0%, #ffc9e8 100%);
}

/* Features layout */
.features-list {
  display: grid;
  gap: 60px;
  margin: 0 275px;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
}
.feature-row.left .feature-item {
  grid-column: 1;
}
.feature-row.left .feature-arrow {
  grid-column: 2;
  justify-self: end;
}
.feature-row.right {
  grid-template-columns: 220px 1fr;
}
.feature-row.right .feature-arrow {
  grid-column: 1;
  justify-self: start;
}
.feature-row.right .feature-item {
  grid-column: 2;
}

/* Feature item */
.feature-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.feature-icon.pink {
  background: #ea62a6;
}
.feature-icon.teal {
  background: #197982;
}
.feature-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}
.feature-copy h3 {
  margin: 0;
}
.feature-row.left .feature-copy h3 {
  color: #ea62a6;
}
.feature-row.right .feature-copy h3 {
  color: #197982;
}
.feature-copy p {
  margin: 6px 0 0;
  color: #475569;
}

/* Decorative dashed arrows */
.feature-arrow {
  --arrow-color: #ea62a6;
  position: relative;
  width: 150px;
  height: 88px;
  margin-top: 0;
}
.feature-arrow.right::before {
  content: "";
  position: absolute;
  right: 40%;
  top: 85%;
  transform: translateY(-50%);
  width: 100%;
  height: 44px;
  border-right: 3px dashed var(--arrow-color);
  border-top: 3px dashed var(--arrow-color);
  border-top-right-radius: 22px;
}
.feature-arrow.right::after {
  content: "";
  position: absolute;
  right: 37%;
  top: calc(50% + 44px - -7px);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 11px solid var(--arrow-color);
}
.feature-arrow.left::before {
  content: "";
  position: absolute;
  left: 40%;
  top: 85%;
  transform: translateY(-50%);
  width: 100%;
  height: 44px;
  border-left: 3px dashed #197982;
  border-top: 3px dashed #197982;
  border-top-left-radius: 22px;
}
.feature-arrow.left::after {
  content: "";
  position: absolute;
  left: 37%;
  top: calc(50% + 44px - -7px);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 11px solid #197982;
}

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
  }
  .feature-arrow {
    display: none;
  }
  .feature-row.right {
    grid-template-columns: 1fr;
  }
  .about-gallery .container {
    margin: 0;
  }
}

/* About page responsiveness */
@media (max-width: 1100px) {
  .section-heading-wrap {
    margin: 20px 40px;
  }
  .features-list {
    margin: 0 100px;
    gap: 40px;
  }
  .gallery-grid {
    margin: 20px 40px;
  }
  .section-sub {
    margin: 0 40px;
  }
}
@media (max-width: 768px) {
  .about-hero-card {
    height: auto;
    padding: 22px;
  }
  .section-heading-wrap {
    margin: 12px 16px;
  }
  .section-heading {
    margin: 16px 0;
  }
  .features-list {
    margin: 0 16px;
    gap: 24px;
  }
  .feature-item {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }
  .feature-icon,
  .feature-icon img {
    width: 48px;
    height: 48px;
  }
  .gallery-grid {
    margin: 12px 16px;
  }
  .section-sub {
    margin: 0 16px;
  }
  .nav-contact {
    display: block;
  }
}

/* Gallery */
.about-gallery {
  padding: 16px 0 40px;
}
.section-sub {
  color: #6b7280;
  margin-top: -16px;
  margin: 0 100px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 100px;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 8px 16px;
  }
  .gallery-grid img {
    height: 140px;
  }
  .section-sub {
    margin: 0 16px;
  }
}

@media (max-width: 1100px) {
  .gallery-grid {
    margin: 12px 40px;
  }
  .section-sub {
    margin: 0 40px;
  }
}

/* Tours page — refined to match screenshot */
.tours-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin: 30px 100px;
}
.tours-content {
  display: grid;
  gap: 28px;
}
.filters-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.filter-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e961a6;
  color: #fff;
  padding: 12px 14px;
  cursor: pointer;
}
.filter-head h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.filter-head .caret {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #fff;
  opacity: 0.9;
  transition: transform 200ms ease;
}
.filter-card.collapsed .caret {
  transform: rotate(180deg);
}
.filter-list {
  list-style: none;
  margin: 12px 0 10px;
  padding: 0 14px 14px;
}
.filter-card.collapsed .filter-list {
  display: none;
}
.filter-list li {
  margin-bottom: 10px;
  color: #334155;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
}
.filter-list input[type="checkbox"] {
  accent-color: #ea62a6;
  margin-right: 8px;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tour-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.tour-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.tour-body {
  padding: 14px;
}
.tour-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tour-head h3 {
  margin: 0;
  font-size: 16px;
  color: #0f172a;
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #f5b301;
}
.rating .score {
  color: #334155;
  font-weight: 700;
}
.tour-meta {
  margin: 6px 0 12px;
  color: #9ca3af;
  font-size: 14px;
}
.tour-features {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 8px 0 10px;
  color: #334155;
  font-size: 11px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.feature .icon {
  font-size: 20px;
  line-height: 1;
  color: #6b7280;
}
.tour-points {
  margin: 0 0 10px;
  padding-left: 18px;
  color: #334155;
  font-size: 13px;
}
.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-wrap .old {
  text-decoration: line-through;
  color: #94a3b8;
}
.price-wrap .new {
  font-weight: 800;
  color: #0f172a;
}
.price-wrap .per {
  color: #6b7280;
}

.recently-viewed {
  margin-top: 28px;
}
.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.recent-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.recent-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.recent-body {
  padding: 12px;
}
.recent-points {
  margin: 0 0 10px;
  padding-left: 18px;
  color: #334155;
  font-size: 13px;
}

/* Tours no-results */
.no-results {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  color: #334155;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 24px;
  font-size: 16px;
}

/* Promo card */
.promo {
  position: relative;
  background: url("summer.png") center/cover no-repeat;
  color: #fff;
  display: grid;
  place-items: center;
}
.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.45) 100%
  );
}
.promo .promo-body {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 16px;
}
.promo .promo-body h3 {
  margin: 0 0 8px;
}

@media (max-width: 1100px) {
  .tours-layout {
    grid-template-columns: 1fr;
    margin: 24px 40px;
  }
  .filters-sidebar {
    grid-template-columns: repeat(2, 1fr);
    position: static;
    top: auto;
  }
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .recent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .tours-layout {
    margin: 16px 0;
  }
  .filters-sidebar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .filter-head {
    padding: 10px 12px;
  }
  .filter-head h4 {
    font-size: 16px;
  }
  .filter-list {
    padding: 0 12px 12px;
  }
  .tours-grid {
    grid-template-columns: 1fr;
  }
  .recent-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------ */
/* Trending Destinations section   */
/* ------------------------------ */
.trending {
  padding: 8px 0 48px;
  margin: 10px 100px;
}

.trend-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  margin: 0 40px;
  padding: 0 24px;
  background: linear-gradient(
    90deg,
    rgba(234, 98, 166, 0.16) 0%,
    rgba(234, 98, 166, 0.08) 40%,
    rgba(234, 98, 166, 0) 100%
  );
  border-radius: 999px;
}
.trend-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trend-title {
  font-size: 24px;
  font-weight: 700;
}
.see-all {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid #ea62a6;
  color: #ea62a6;
  text-decoration: none;
  font-weight: 600;
  background: #fff;
}

.trend-frame {
  margin: 18px 64px;
  overflow: hidden;
}
.trend-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 400ms ease;
}
.trend-card {
  flex: 0 0 calc(100% / 6);
  text-align: center;
}
.trend-thumb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.trend-meta {
  margin: 6px 0 12px;
  color: #9ca3af;
  font-size: 14px;
}
.trend-name {
  font-weight: 600;
}
.trend-count {
  font-size: 12px;
  color: var(--muted);
}

.trend-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.trend-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: #ea62a6;
  opacity: 0.4;
}
.trend-dot.active {
  width: 18px;
  opacity: 1;
}

/* Responsive cards per view */
@media (max-width: 1100px) {
  .trend-card {
    flex-basis: calc(100% / 4);
  }
}
@media (max-width: 768px) {
  .trend-card {
    flex-basis: calc(100% / 2);
  }
  .trend-thumb {
    width: 96px;
    height: 96px;
  }
  .trend-header {
    height: 54px;
  }
  .trend-title {
    font-size: 20px;
  }
  /* reduce external margins/padding on mobile */
  .trending {
    margin: 10px 0;
  }
  .trend-header {
    margin: 0 16px;
    padding: 0 12px;
  }
  .trend-frame {
    margin: 12px 16px;
  }
  .trend-track {
    gap: 16px;
  }
  /* fixed stray token */
}

/* ------------------------------ */
/* Popular Tours section          */
/* ------------------------------ */
.popular {
  padding: 8px 0 56px;
  margin: 10px 100px;
}

.popular-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  margin: 0 40px;
  padding: 0 24px;
  background: linear-gradient(
    90deg,
    rgba(234, 98, 166, 0.16) 0%,
    rgba(234, 98, 166, 0.08) 40%,
    rgba(234, 98, 166, 0) 100%
  );
  border-radius: 999px;
}
.popular-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.popular-title {
  font-size: 24px;
  font-weight: 700;
}

.popular-desc {
  margin: 16px 40px 0;
  padding: 0 24px;
  color: var(--muted);
  max-width: 960px;
  line-height: 1.6;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 40px 0;
  padding: 0 24px;
}

/* Make popular cards fully clickable without affecting visual style */
.popular-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.popular-card {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #7dc7ce 35.58%, #197982 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  color: #fff;
  padding: 24px;
}
.popular-image-wrap {
  position: relative;
}
.popular-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: block;
  border-radius: 18px;
}
.popular-flag {
  position: absolute;
  right: 16px;
  bottom: -18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  font-size: 22px;
}
.popular-body {
  padding: 24px 8px 8px;
}
.popular-country {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}
.popular-name {
  margin: 6px 0 10px;
  font-weight: 600;
}
.popular-divider {
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin: 16px 0;
}
.popular-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.popular-days {
  opacity: 0.9;
}
.popular-price {
  opacity: 0.95;
}

@media (max-width: 1100px) {
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .popular-header {
    height: 54px;
  }
  .popular-title {
    font-size: 20px;
  }
  .popular-grid {
    grid-template-columns: 1fr;
  }
  .popular-image {
    height: 180px;
  }
  /* tighten margins for mobile */
  .popular {
    margin: 10px 0;
  }
  .popular-header {
    margin: 0 16px;
    padding: 0 12px;
  }
  .popular-grid {
    margin: 16px 16px 0;
    padding: 0;
  }
}

/* ------------------------------ */
/* Representative Office section   */
/* ------------------------------ */
.representative {
  padding: 24px 0 64px;
  margin: 10px 100px;
}

.rep-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: stretch;
}

.rep-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.rep-title {
  margin: 0;
  line-height: 1.2;
  font-size: 28px;
  color: #1aa0a9; /* teal tone matching screenshot */
}
.rep-title .rep-sub {
  color: #1aa0a9;
  font-weight: 700;
}

.rep-intro {
  color: var(--muted);
  margin-top: 14px;
}

.rep-section-label {
  margin-top: 14px;
  color: #ea62a6;
  font-weight: 700;
}

.rep-list {
  margin: 8px 0 14px;
  padding-left: 18px;
}
.rep-list li {
  margin-bottom: 8px;
  color: #334155;
}
.rep-list li strong {
  color: #14233f;
}
.rep-list li::marker {
  color: #ea62a6;
  font-weight: 700;
}

.rep-note {
  color: #6b7280;
  font-style: italic;
  margin-top: 10px;
}

.rep-media {
  margin: 0;
  height: 100%;
}
.rep-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1200px) {
  .rep-image {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .representative {
    margin: 10px 0;
  }
  .rep-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rep-image {
    height: auto;
  }
}
@media (max-width: 1000px) {
  .rep-wrap {
    grid-template-columns: 1fr;
    margin: 0px;
  }
  .rep-media {
    order: -1;
  }
  .rep-image {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .rep-image {
    height: 100%;
  }
}
@media (max-width: 480px) {
  .rep-image {
    height: 100%;
  }
}

/* ------------------------------ */
/* Footer                         */
/* ------------------------------ */
.site-footer {
  margin-top: 64px;
  background: radial-gradient(
      102.83% 289.02% at 54.13% 88.88%,
      #ea62a6 0%,
      #3d1e34 97.42%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

  color: #ffffff;
  padding: 64px 0 48px;
}

.footer-inner {
  position: relative;
}

.footer-brand {
  margin-bottom: 24px;
}
.footer-logo {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}
.footer-brand-name {
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
}

.footer-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}
.footer-address {
  font-style: normal;
  opacity: 0.9;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 10px;
}
.footer-link {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}
.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-note {
  opacity: 0.9;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 420px;
}
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 12px 0 0 12px;
  background: #ffffff;
  color: #0f172a;
}
.newsletter-input::placeholder {
  color: #6b7280;
}
.newsletter-btn {
  padding: 12px 18px;
  border: none;
  border-radius: 0 12px 12px 0;
  background: #197982;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}
.newsletter-btn:hover {
  filter: brightness(1.05);
}

.footer-bottom {
  margin-top: 36px;
  opacity: 0.8;
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .newsletter-form {
    max-width: 100%;
  }
}

/* Destinations page rebuild */
.destinations-page {
  padding: 40px 0;
}
.destinations-page .container {
  max-width: 1100px;
  margin: 0 auto;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

.destination-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  overflow: visible;
}

.destination-card::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -14px;
  height: 43px;
  border-radius: 12px;
  background: #197982;
  box-shadow: 0 10px 18px rgba(27, 189, 177, 0.3);
  z-index: -1;
}

.destination-media {
  position: relative;
  margin-bottom: 10px;
}
.destination-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.image-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 5px;
  background: #ffffff33;
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.destination-body {
  padding: 18px 20px 24px;
}

.destination-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.section-badge.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 20px;
  background: linear-gradient(180deg, #ea62a6 0%, #f8a2c8 100%);
  box-shadow: 0 8px 16px rgba(234, 98, 166, 0.28);
}

.country-title {
  color: #ea62a6;
  font-size: 28px;
  font-weight: 500;
}

.destination-body h3 {
  margin: 12px 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.destination-body p {
  margin-bottom: 30px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 200;
}

/* Contact Page */
.contact-hero {
  padding: 40px 0 60px;
  margin: 30px 0;
}
.contact-card {
  margin: 0 auto;
  max-width: 1100px;
  border-radius: 16px;
  padding: 28px;
  background: linear-gradient(180deg, #ae4a7f 0%, #e195bb 100%);
  color: #fff;
  box-shadow: 0 20px 35px rgba(185, 60, 134, 0.25);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}
.contact-left .contact-title {
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  margin-bottom: 12px;
}
.contact-intro {
  color: #ffe6f1;
  margin: 20px 130px 20px 0px;
}
.contact-info {
  list-style: none;
  margin: 20px 10px;
  padding: 0;
  display: grid;
  gap: 40px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-item i {
  color: #fff;
}
.phone-pill {
  background: #fff;
  color: #b93c86;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
}
.contact-social {
  margin-top: 30px;
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 2px solid #e5e7eb;
  padding: 8px 2px 10px;
  font-size: 14px;
}
.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: #0f766e; /* teal */
}
.send-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f766e;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}
.send-btn i {
  font-size: 14px;
}

/* Contact responsiveness */
@media (max-width: 1100px) {
  .contact-card {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 22px;
  }
  .contact-intro {
    margin: 16px 0;
  }
}
@media (max-width: 768px) {
  .contact-hero {
    margin: 20px;
    padding: 24px 0 40px;
  }
  .contact-card {
    padding: 16px;
    gap: 16px;
  }
  .contact-left .contact-title {
    font-size: 26px;
  }
  .contact-intro {
    margin: 12px 0;
  }
  .contact-info {
    gap: 20px;
    margin: 16px 0;
  }
  .phone-pill {
    padding: 8px 12px;
  }
  .contact-form {
    padding: 16px;
  }
  .form-field {
    margin-bottom: 12px;
  }
}

/* Footer gradient variant for contact page */
.site-footer.footer-gradient {
  background: radial-gradient(
      102.83% 289.02% at 54.13% 88.88%,
      #ea62a6 0%,
      #3d1e34 97.42%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  color: #fff;
}
.site-footer.footer-gradient .footer-title,
.site-footer.footer-gradient .footer-link,
.site-footer.footer-gradient .footer-note,
.site-footer.footer-gradient .footer-address {
  color: #ffe6f1;
}
.site-footer.footer-gradient .newsletter-form {
  display: flex;
  gap: 10px;
}
.site-footer.footer-gradient .newsletter-input {
  flex: 1;
  border-radius: 10px;
  border: none;
  padding: 10px 12px;
}
.site-footer.footer-gradient .newsletter-btn {
  background: #0f766e;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
}

/* Tour Detail Page */
.tour-detail.container {
  padding: 28px 0 60px;
}
.tour-header {
  margin-bottom: 18px;
}
.tour-title {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  color: #174e63;
}
.tour-meta-row {
  margin-top: 6px;
}
.meta-item {
  color: #0f766e;
  font-weight: 600;
}
.tour-sub {
  color: #374151;
  margin-top: 10px;
}
.tour-mini-meta {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  color: #6b7280;
}
.tour-mini-meta .mini i {
  color: #ef4444;
}

.tour-detail .tour-body {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
}
.tour-gallery {
  position: relative;
}
.tour-gallery .hero {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  padding: 0 0 5px;
  cursor: zoom-in;
  aspect-ratio: 16 / 9;
}
.tour-gallery .hero-wrap {
  position: relative;
}
.tour-gallery .thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
.tour-gallery .thumbs img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.tour-gallery .thumbs img:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.tour-gallery .thumbs img.active {
  outline: 3px solid var(--accent);
  outline-offset: 0;
}

/* Gallery nav buttons over hero */
.hero-wrap .gallery-nav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.hero-wrap .gallery-prev,
.hero-wrap .gallery-next {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 22px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.hero-wrap .gallery-prev {
  margin-left: 8px;
}
.hero-wrap .gallery-next {
  margin-right: 8px;
}
.hero-wrap .gallery-prev:hover,
.hero-wrap .gallery-next:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: scale(1.05);
}
.hero-wrap .gallery-prev:focus,
.hero-wrap .gallery-next:focus {
  outline: 2px solid var(--accent);
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 21px;
  display: grid;
  place-items: center;
  font-size: 22px;
  cursor: pointer;
}
.lightbox-close {
  top: 24px;
  right: 24px;
}
.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0, 0, 0, 0.75);
}
.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus {
  outline: 2px solid var(--accent);
}

.section-title {
  font-size: 20px;
  color: #174e63;
  margin: 18px 0 12px;
}

.day-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.day-tab {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #374151;
  border-radius: 999px;
  padding: 8px 12px;
}
.day-tab.active {
  background: #0f766e;
  color: #fff;
  border-color: #0f766e;
}
.day-content {
  margin-top: 16px;
}
.day-heading {
  color: #be185d;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Day panels visibility */
.day-panels {
  margin-top: 16px;
}
.day-panel {
  display: none;
}
.day-panel.active {
  display: block;
}

.booking-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  align-self: start;
}
.booking-title {
  color: #be185d;
  font-weight: 700;
  margin-bottom: 12px;
}
.booking-field label {
  display: block;
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 6px;
}
.booking-field {
  position: relative;
}
.select-fake {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #374151;
  cursor: pointer;
}
.select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 10;
}
.select-menu.open {
  display: block;
}
.select-menu .option {
  padding: 10px 12px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  color: #111827;
}
.select-menu .option:last-child {
  border-bottom: none;
}
.select-menu .option:hover {
  background: #f8fafc;
}
.subtotal {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin: 14px 0;
}
.subtotal .label {
  color: #6b7280;
}
.subtotal .price {
  color: #be185d;
  font-size: 28px;
  font-weight: 800;
}
.cta-primary {
  width: 100%;
  background: #be185d;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
}
.cta-secondary {
  width: 100%;
  background: #fff;
  color: #374151;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

@media (max-width: 960px) {
  .tour-detail .tour-body {
    grid-template-columns: 1fr;
  }
  .tour-gallery .hero {
    height: auto;
  }
}

/* Tours listing card title styling */
.tour-card .tour-head h3 a {
  color: #174e63;
  text-decoration: none;
  font-weight: 700;
}
.tour-card .tour-head h3 a:hover {
  color: #be185d;
  text-decoration: underline;
}

/* ==============================
   Animations & Hover Enhancements
   ============================== */
/* Animation variables */
:root {
  --anim-fast: 150ms;
  --anim-normal: 300ms;
  --anim-slow: 600ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Navbar & brand */
.brand-logo {
  transition: filter var(--anim-fast) var(--ease-out),
    transform var(--anim-fast) var(--ease-out);
}
.brand-logo:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.nav-link {
  transition: color var(--anim-fast) var(--ease-out),
    transform var(--anim-fast) var(--ease-out);
}
.nav-link:hover {
  transform: translateY(-1px);
}
.menu-toggle {
  transition: box-shadow var(--anim-fast) var(--ease-out),
    transform var(--anim-fast) var(--ease-out);
}
.menu-toggle:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* Hero */
.hero-frame {
  transition: box-shadow var(--anim-fast) var(--ease-out),
    transform var(--anim-fast) var(--ease-out);
}
.hero-frame:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Buttons/links */
.see-all {
  transition: background-color var(--anim-fast) var(--ease-out),
    color var(--anim-fast) var(--ease-out),
    transform var(--anim-fast) var(--ease-out),
    box-shadow var(--anim-fast) var(--ease-out);
}
.see-all:hover {
  background: #ea62a6;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(234, 98, 166, 0.2);
}
.contact-btn {
  transition: transform var(--anim-fast) var(--ease-out),
    box-shadow var(--anim-fast) var(--ease-out),
    filter var(--anim-fast) var(--ease-out);
}

/* Trending cards */
.trend-card {
  transition: transform var(--anim-fast) var(--ease-out),
    box-shadow var(--anim-fast) var(--ease-out);
  will-change: transform;
}
.trend-card:hover {
  transform: translateY(-4px);
}
.trend-thumb {
  transition: transform var(--anim-fast) var(--ease-out),
    box-shadow var(--anim-fast) var(--ease-out);
}
.trend-card:hover .trend-thumb {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* Popular cards */
.popular-card {
  transition: transform var(--anim-fast) var(--ease-out),
    box-shadow var(--anim-fast) var(--ease-out);
  will-change: transform;
}
.popular-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* ------------------------------ */
/* Blog Coming Soon               */
/* ------------------------------ */
.coming-hero {
  margin: 24px 40px;
  padding: 40px 0 60px;
}
.coming-card {
  border-radius: 16px;
  padding: 32px;
  background: linear-gradient(180deg, #ae4a7f 0%, #e195bb 100%);
  color: #fff;
  box-shadow: 0 20px 35px rgba(185, 60, 134, 0.25);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
}
.coming-title {
  font-family: "DM Serif Display", serif;
  font-size: 36px;
  margin: 0 0 12px;
}
.coming-desc {
  color: #ffe6f1;
  margin: 0 0 20px;
}
.coming-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
}
.coming-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.coming-actions .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #b93c86;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  text-decoration: none;
}
.coming-media img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

/* Centered variant for blog Coming Soon card (no image) */
.coming-card.center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.coming-card.center .coming-actions {
  justify-content: center;
}

@media (max-width: 1100px) {
  .coming-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 22px;
  }
  .coming-hero {
    margin: 20px;
  }
}
@media (max-width: 768px) {
  .coming-card {
    padding: 16px;
    gap: 16px;
  }
  .coming-title {
    font-size: 28px;
  }
  .coming-actions .cta {
    padding: 8px 12px;
  }
}
.popular-image {
  transition: transform var(--anim-fast) var(--ease-out),
    filter var(--anim-fast) var(--ease-out);
}
.popular-card:hover .popular-image {
  transform: scale(1.06);
  filter: brightness(1.02);
}

/* Tour cards */
.tour-card {
  transition: transform var(--anim-fast) var(--ease-out),
    box-shadow var(--anim-fast) var(--ease-out);
  will-change: transform;
}
.tour-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}
.tour-media img {
  transition: transform var(--anim-fast) var(--ease-out),
    filter var(--anim-fast) var(--ease-out);
}
.tour-card:hover .tour-media img {
  transform: scale(1.05);
  filter: brightness(1.02);
}

/* Recently viewed cards */
.recent-card {
  transition: transform var(--anim-fast) var(--ease-out),
    box-shadow var(--anim-fast) var(--ease-out);
  will-change: transform;
}
.recent-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}
.recent-media img {
  transition: transform var(--anim-fast) var(--ease-out),
    filter var(--anim-fast) var(--ease-out);
}
.recent-card:hover .recent-media img {
  transform: scale(1.05);
  filter: brightness(1.02);
}

/* Reveal on scroll utilities */
.reveal {
  opacity: 0;
  transform: translateY(16px);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
  transition: opacity var(--anim-normal) var(--ease-out),
    transform var(--anim-normal) var(--ease-out);
}

/* Day panel fade/slide when switching */
.day-panel {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--anim-fast) var(--ease-out),
    transform var(--anim-fast) var(--ease-out);
}
.day-panel.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
