/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #1a1a2e; background: #F8F9FC; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Brand Colors ── */
:root {
  --navy:         #1B2D5F;
  --navy-dark:    #111e3d;
  --pink:         #FF7A00;
  --orange:       #FF6B35;
  --purple:       #7B2DA5;
  --gold:         #F59E0B;
  --grad:         linear-gradient(135deg, #FF7A00, #FF6B35);
  --grad-hover:   linear-gradient(135deg, #e06d00, #e85a27);
  --bg:           #F8F9FC;
  --bg-light:     #ffffff;
  --text:         #1a1a2e;
  --text-muted:   #6B7280;
  --border:       #E5E7EB;
  --shadow:       0 2px 16px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.13);
  --radius:       12px;
}

/* ── Utility ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-centered { text-align: center; }
.section-centered p { max-width: 520px; margin-left: auto; margin-right: auto; }
.section-title { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 10px; }
.section-sub { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ── Mobile Nav ── */
@media (max-width: 768px) {
  #siteNav { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: #fff; padding: 16px 24px; box-shadow: 0 6px 20px rgba(0,0,0,.1); z-index: 998; gap: 14px; }
  #siteNav.mobile-open { display: flex; }
  #siteNav .nav-cta { align-self: flex-start; }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 18px rgba(255,122,0,.3);
  letter-spacing: 0.3px;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--grad-hover); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,122,0,.4); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: 0.78rem;
  padding: 7px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,.85); transition: color 0.2s; }
.top-bar a:hover { color: #fff; }
.top-bar-right .socials { display: flex; gap: 8px; align-items: center; }
.top-bar-right .socials a { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: rgba(255,255,255,.12); border-radius: 50%; transition: background 0.2s; }
.top-bar-right .socials a:hover { background: var(--pink); }

/* ── Site Header ── */
.site-header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.site-logo img { height: 87px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 24px; overflow: visible; }
.site-nav a {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--navy); }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }
.nav-cta { margin-left: 6px; display: inline-flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0; white-space: nowrap; padding: 12px 28px !important; line-height: 1 !important; }
.site-nav a.nav-cta::after { display: none; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── Dropdown Nav ── */
.has-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 32px rgba(0,0,0,.14);
  min-width: 480px;
  padding: 0 0 12px;
  z-index: 1000;
  border-top: 3px solid var(--orange);
}
.dropdown-menu::before {
  content: '';
  display: block;
  height: 12px;
}
.has-dropdown:hover .dropdown-menu { display: flex; gap: 0; }
.dropdown-col { flex: 1; padding: 0 20px; }
.dropdown-col:first-child { border-right: 1px solid var(--border); }
.dropdown-col-header {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 0 8px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}
.dropdown-menu a {
  display: block;
  padding: 7px 0;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
  transition: all 0.15s;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown-menu a:hover { color: var(--pink); padding-left: 6px; }
.dropdown-menu a::after { display: none !important; }
.has-dropdown > a .chevron { transition: transform 0.2s; display: inline-block; margin-left: 3px; }
.has-dropdown:hover > a .chevron { transform: rotate(180deg); }

/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,45,95,.85) 0%, rgba(27,45,95,.4) 55%, rgba(0,0,0,.1) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 36px 0;
  width: 100%;
}
.breadcrumb { font-size: 0.78rem; opacity: 0.8; margin-bottom: 8px; }
.breadcrumb a { color: #fff; }
.breadcrumb span { margin: 0 6px; }
.page-hero-content h1 { font-size: 2.2rem; font-weight: 800; line-height: 1.2; }
.page-hero-content p { font-size: 0.95rem; opacity: 0.85; margin-top: 6px; }

/* ─────────────────────────────────────────
   TRIPS LISTING
───────────────────────────────────────── */
.trips-section { padding: 48px 0 64px; }
.trips-layout { display: grid; grid-template-columns: 270px 1fr; gap: 28px; align-items: start; }

/* Filter Sidebar */
.filter-sidebar {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 86px;
}
.filter-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.filter-header h3 { font-size: 0.9rem; font-weight: 700; display: flex; align-items: center; gap: 7px; color: var(--text); }
.clear-btn { font-size: 0.78rem; color: var(--pink); font-weight: 600; cursor: pointer; background: none; border: none; }
.clear-btn:hover { color: var(--orange); }
.filter-group { margin-bottom: 18px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 10px; }
.filter-search { position: relative; }
.filter-search input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px 9px 34px;
  font-family: inherit;
  font-size: 0.83rem;
  outline: none;
  transition: border-color 0.2s;
}
.filter-search input:focus { border-color: var(--pink); }
.filter-search input::placeholder { color: #b5b5c3; }
.filter-search .s-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: #b5b5c3; pointer-events: none; }
.filter-check-list { display: flex; flex-direction: column; gap: 9px; }
.filter-check-list label { display: flex; align-items: center; gap: 9px; font-size: 0.82rem; color: var(--text); cursor: pointer; line-height: 1.4; }
.filter-check-list input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--pink); flex-shrink: 0; cursor: pointer; }
.price-label { font-size: 0.82rem; margin-bottom: 7px; }
.price-label strong { color: var(--pink); }
.price-range { width: 100%; accent-color: var(--pink); cursor: pointer; }
.filter-divider { border: none; border-top: 1px solid var(--border); margin: 14px 0; }

/* Trips Main */
.trips-main-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }
.trips-count { font-size: 0.88rem; color: var(--text-muted); }
.trips-count strong { color: var(--text); font-weight: 700; }
.sort-wrap { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; }
.sort-wrap select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 32px 8px 12px;
  font-family: inherit;
  font-size: 0.83rem;
  outline: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.sort-wrap select:focus { border-color: var(--pink); outline: none; }

/* Trip Cards */
.trips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }

.trip-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.trip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.trip-card-img {
  position: relative;
  height: 195px;
  overflow: hidden;
}
.trip-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.trip-card:hover .trip-card-img img { transform: scale(1.05); }

.badge-group { position: absolute; top: 10px; left: 10px; right: 10px; display: flex; justify-content: space-between; align-items: flex-start; }
.badge {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}
.badge-curated { background: rgba(27,45,95,.88); color: #fff; }
.badge-request  { background: rgba(255,107,53,.9); color: #fff; }
.badge-custom   { background: rgba(233,30,140,.9); color: #fff; }

.trip-card-body { padding: 15px 17px 0; flex: 1; display: flex; flex-direction: column; }
.trip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.trip-meta span { display: flex; align-items: center; gap: 4px; }
.trip-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 7px; line-height: 1.35; }
.trip-card-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; flex: 1; }

.trip-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 17px 15px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
}
.trip-altitude { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.trip-altitude strong { color: var(--text); font-weight: 700; }
.view-details {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
}
.view-details:hover { gap: 8px; color: var(--pink); }

/* ─────────────────────────────────────────
   SINGLE TRIP
───────────────────────────────────────── */
.trip-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.trip-hero .hero-bg {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
.trip-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,45,95,.85) 0%, rgba(27,45,95,.35) 55%, rgba(0,0,0,.1) 100%);
}
.trip-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 36px 0;
  width: 100%;
}
.hero-badge { display: inline-block; background: var(--pink); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 4px 14px; border-radius: 50px; margin-bottom: 12px; }
.trip-hero-content h1 { font-size: 2.4rem; font-weight: 800; line-height: 1.15; max-width: 720px; margin-bottom: 8px; }
.trip-hero-content .subtitle { font-size: 0.95rem; opacity: 0.85; max-width: 580px; margin-bottom: 18px; }
.trip-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tag {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

/* Stats Bar */
.trip-stats { background: #fff; box-shadow: var(--shadow); }
.trip-stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.stat-item { text-align: center; padding: 18px 12px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 1.5rem; margin-bottom: 4px; line-height: 1; }
.stat-value { font-size: 0.95rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.stat-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.6px; margin-top: 2px; }

/* Trip Content */
.trip-content-section { padding: 44px 0 60px; }
.trip-content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }

/* Tabs */
.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 11px 18px;
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--pink); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.about-trip h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.about-trip p { font-size: 0.88rem; line-height: 1.8; color: #444; margin-bottom: 12px; }

/* Itinerary */
.itinerary-list { display: flex; flex-direction: column; }
.itinerary-item { display: grid; grid-template-columns: 70px 1fr; position: relative; }
.itinerary-item::before { content: ''; position: absolute; left: 33px; top: 36px; bottom: 0; width: 2px; background: var(--border); }
.itinerary-item:last-child::before { display: none; }
.itinerary-day { display: flex; flex-direction: column; align-items: center; padding-top: 4px; z-index: 1; position: relative; }
.day-circle {
  width: 34px; height: 34px;
  background: var(--grad);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 800; flex-shrink: 0;
}
.itinerary-body { padding: 2px 0 26px 14px; }
.itinerary-body h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.itinerary-body p { font-size: 0.82rem; color: #555; line-height: 1.7; }

/* Inclusions */
.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.inc-col h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 7px; }
.inc-col h3.included { color: #2E7D32; }
.inc-col h3.excluded { color: #c0392b; }
.inc-list { display: flex; flex-direction: column; gap: 8px; }
.inc-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: #444; line-height: 1.5; }
.inc-icon { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; font-size: 0.7rem; }
.inc-icon.yes { background: #e8f5e9; color: #2E7D32; }
.inc-icon.no  { background: #fdecea; color: #c0392b; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-grid img { border-radius: 8px; height: 170px; object-fit: cover; width: 100%; cursor: pointer; transition: transform 0.2s, opacity 0.2s; }
.gallery-grid img:hover { transform: scale(1.02); opacity: 0.9; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 15px 0; font-family: inherit; font-size: 0.88rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-question .faq-icon { flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-question .faq-icon { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 15px; font-size: 0.83rem; color: #555; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* Booking Sidebar */
.booking-sidebar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: sticky;
  top: 86px;
}
.booking-header {
  background: var(--grad);
  color: #fff;
  padding: 22px;
  text-align: center;
}
.booking-header .starting-from { font-size: 0.74rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.6px; }
.booking-header .price-on-request { font-size: 1.6rem; font-weight: 800; line-height: 1.15; margin: 4px 0; }
.booking-header .price-sub { font-size: 0.72rem; opacity: 0.8; }
.booking-form { padding: 18px 20px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 0.74rem; font-weight: 600; color: var(--text-muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.4px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 0.83rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { resize: vertical; min-height: 72px; }
.booking-form .btn-primary { width: 100%; text-align: center; padding: 13px; font-size: 0.9rem; border-radius: 8px; margin-top: 4px; }
.booking-note { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin-top: 8px; }

/* ─────────────────────────────────────────
   BLOG LISTING
───────────────────────────────────────── */
.blog-section { padding: 48px 0 64px; }
.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: 36px; align-items: start; }
.blog-grid { display: flex; flex-direction: column; gap: 24px; }

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 240px 1fr;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.blog-card-img { overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 20px 22px; display: flex; flex-direction: column; }
.blog-cat { display: inline-block; background: rgba(233,30,140,.1); color: var(--pink); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; padding: 3px 10px; border-radius: 50px; margin-bottom: 9px; align-self: flex-start; }
.blog-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 7px; }
.blog-card-body h3 a { color: inherit; transition: color 0.2s; }
.blog-card-body h3 a:hover { color: var(--navy); }
.blog-card-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.blog-meta { display: flex; gap: 14px; align-items: center; margin-top: 12px; font-size: 0.76rem; color: var(--text-muted); flex-wrap: wrap; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-read-more { margin-top: 12px; }
.blog-read-more a { font-size: 0.8rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 4px; transition: gap 0.2s, color 0.2s; }
.blog-read-more a:hover { gap: 8px; color: var(--pink); }

/* Blog Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 86px; }
.sidebar-widget { background: #fff; border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.sidebar-widget h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 9px; border-bottom: 2px solid var(--pink); display: inline-block; }
.widget-search { display: flex; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.widget-search input { flex: 1; border: none; padding: 9px 12px; font-family: inherit; font-size: 0.83rem; outline: none; }
.widget-search button { background: var(--grad); border: none; color: #fff; padding: 0 14px; cursor: pointer; }
.recent-post { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--border); }
.recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post img { width: 58px; height: 58px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.recent-post-text h5 { font-size: 0.8rem; font-weight: 600; line-height: 1.35; color: var(--text); }
.recent-post-text h5 a:hover { color: var(--navy); }
.recent-post-text .date { font-size: 0.7rem; color: var(--text-muted); margin-top: 3px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-cloud a { font-size: 0.76rem; padding: 4px 11px; background: var(--bg); border-radius: 50px; color: var(--text); border: 1px solid var(--border); transition: all 0.2s; }
.tag-cloud a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.cat-list { display: flex; flex-direction: column; }
.cat-list li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.cat-list li:last-child { border-bottom: none; }
.cat-list a { color: var(--text); transition: color 0.2s; }
.cat-list a:hover { color: var(--navy); }
.cat-list .count { background: rgba(233,30,140,.1); color: var(--pink); border-radius: 50px; padding: 2px 8px; font-size: 0.7rem; font-weight: 600; }

/* ─────────────────────────────────────────
   BLOG SINGLE
───────────────────────────────────────── */
.blog-single-section { padding: 48px 0 64px; }
.blog-single-layout { display: grid; grid-template-columns: 1fr 280px; gap: 36px; align-items: start; }
.blog-article {}
.article-header { margin-bottom: 22px; }
.article-header .blog-cat { font-size: 0.76rem; padding: 4px 14px; }
.article-header h1 { font-size: 1.9rem; font-weight: 800; line-height: 1.25; color: var(--navy); margin: 10px 0 9px; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.8rem; color: var(--text-muted); align-items: center; }
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-meta .author-img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.blog-featured-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 26px; }
.blog-featured-img img { width: 100%; max-height: 440px; object-fit: cover; }
.blog-content { font-size: 0.9rem; line-height: 1.85; color: #333; }
.blog-content h2 { font-size: 1.25rem; font-weight: 700; margin: 26px 0 11px; color: var(--navy); }
.blog-content h3 { font-size: 1.05rem; font-weight: 700; margin: 20px 0 9px; color: var(--navy); }
.blog-content p { margin-bottom: 14px; }
.blog-content ul, .blog-content ol { padding-left: 20px; margin-bottom: 14px; }
.blog-content li { margin-bottom: 6px; }
.blog-content blockquote { border-left: 4px solid var(--pink); padding: 12px 18px; margin: 22px 0; background: rgba(233,30,140,.04); border-radius: 0 8px 8px 0; font-style: italic; color: #555; }
.blog-content img { border-radius: 8px; margin: 18px 0; }
.blog-content a { color: var(--navy); text-decoration: underline; }
.blog-tags { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.blog-tags strong { font-size: 0.82rem; }
.author-box { display: flex; gap: 14px; align-items: flex-start; background: #f0f4ff; border-radius: var(--radius); padding: 18px; margin-top: 28px; border: 1px solid rgba(27,45,95,.1); }
.author-box img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-info h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 5px; color: var(--navy); }
.author-info p { font-size: 0.8rem; color: #555; line-height: 1.6; }
.related-posts { margin-top: 36px; }
.related-posts h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 18px; color: var(--navy); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; }
.related-card:hover { transform: translateY(-3px); }
.related-card img { width: 100%; height: 140px; object-fit: cover; }
.related-card-body { padding: 11px 13px 13px; }
.related-card-body .blog-cat { font-size: 0.63rem; }
.related-card-body h5 { font-size: 0.83rem; font-weight: 700; line-height: 1.4; margin-top: 5px; }
.related-card-body h5 a { color: var(--text); transition: color 0.2s; }
.related-card-body h5 a:hover { color: var(--navy); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 5px; margin-top: 36px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  transition: all 0.2s;
  cursor: pointer;
}
.pagination a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination span.current { background: var(--grad); color: #fff; border: none; }

/* ── Footer ── */
.site-footer { background: var(--navy-dark); color: #adb5bd; padding: 52px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand img { height: 44px; margin-bottom: 12px; background: #fff; padding: 6px 12px; border-radius: 6px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; color: #888; }
.footer-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: rgba(255,255,255,.07); border-radius: 50%; color: #adb5bd; transition: background 0.2s; font-size: 0.85rem; text-decoration: none; }
.footer-socials a:hover { background: var(--pink); color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.86rem; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.6px; }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: 0.82rem; color: #888; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 14px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.76rem; color: #666; }
.footer-bottom a { font-size: 0.76rem; color: #888; }
.footer-bottom a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .trips-layout { grid-template-columns: 230px 1fr; }
  .trip-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .trip-content-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .trips-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .trips-grid { grid-template-columns: 1fr; }
  .trip-hero { height: 360px; }
  .trip-hero-content h1 { font-size: 1.7rem; }
  .trip-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .inc-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-img img { min-height: 200px; }
  .blog-single-layout { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { height: 240px; }
  .page-hero-content h1 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .trip-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-btn { padding: 9px 12px; font-size: 0.76rem; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-single-layout { grid-template-columns: 1fr; }
}
