/* ══════════════════════════════════════════════════════════════
   PAGES — Page-Specific Styles
   ══════════════════════════════════════════════════════════════ */

/* ── About Page ─────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-story__img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.value-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.value-card i {
  font-size: var(--fs-3xl);
  color: var(--teal);
  margin-bottom: var(--space-md);
  display: block;
}

/* ── Taxi Services Page ─────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail__img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.service-detail__content h3 {
  margin-bottom: var(--space-md);
}

.service-detail__features {
  list-style: none;
  margin: var(--space-lg) 0;
}

.service-detail__features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: var(--fs-sm);
  color: var(--charcoal);
}

.service-detail__features li i {
  color: var(--teal);
  flex-shrink: 0;
}

/* ── Fleet Page ─────────────────────────────────────────────── */
.fleet-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-xl);
}

/* ── Tours Listing ──────────────────────────────────────────── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.no-results {
  text-align: center;
  padding: var(--space-3xl);
  color: var(--muted-text);
}

.no-results i {
  font-size: var(--fs-4xl);
  display: block;
  margin-bottom: var(--space-md);
  color: var(--border);
}

/* ── Book Guide Page ────────────────────────────────────────── */
.guide-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.guide-service-card {
  text-align: center;
  padding: var(--space-xl);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal);
}

.guide-service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.guide-service-card i {
  font-size: var(--fs-2xl);
  color: var(--teal);
  margin-bottom: var(--space-md);
  display: block;
}

.guide-languages {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.language-tag {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: var(--charcoal);
  font-weight: var(--fw-medium);
}

.language-tag--available {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
}

/* ── Custom Tour Page ───────────────────────────────────────── */
.custom-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  margin: 0 auto var(--space-md);
}

/* ── Contact Page ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  transition: border-color var(--duration-fast);
}

.contact-info-card:hover {
  border-color: var(--teal);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card__icon i {
  color: var(--teal);
  font-size: var(--fs-md);
}

.contact-info-card h5 {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.contact-info-card p,
.contact-info-card a {
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

.contact-map {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: var(--space-xl);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── FAQ Page ───────────────────────────────────────────────── */
.faq-categories {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

/* ── Legal Pages ────────────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--fs-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-content h3 {
  font-size: var(--fs-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--muted-text);
}

/* ── 404 Page ───────────────────────────────────────────────── */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page h1 {
  font-size: 8rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-page h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-full);
  background: rgba(17, 168, 160, 0.1);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.cta-banner .btn + .btn {
  margin-left: var(--space-md);
}

/* ══════════════════════════════════════════════════════════════
   BLOG LISTING PAGE STYLES
   ══════════════════════════════════════════════════════════════ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-2xl);
  align-items: start;
  margin-top: var(--space-xl);
}

/* ── Main Content Area & Cards Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  border-color: var(--teal-light);
}

.blog-card__thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--light-bg);
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__thumb img {
  transform: scale(1.06);
}

.blog-date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.blog-date-badge .day {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
}

.blog-date-badge .month {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.blog-card__content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-category-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--teal);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--teal);
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.blog-read-more:hover {
  color: var(--navy);
  gap: 10px;
}

/* ── Pagination UI ── */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.pagination-btn,
.pagination-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.pagination-num.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 10px rgba(17, 168, 160, 0.3);
}

.pagination-btn:hover:not(:disabled),
.pagination-num:hover:not(.active) {
  background: var(--light-bg);
  border-color: var(--teal);
  color: var(--teal);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Sticky Sidebar ── */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: sticky;
  top: calc(var(--topbar-height, 42px) + var(--navbar-height, 70px) + 20px);
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.widget-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal-light);
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--teal);
}

/* Search Widget */
.sidebar-search-box {
  display: flex;
  align-items: center;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 4px 6px 4px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-search-box:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(17, 168, 160, 0.15);
  background: var(--white);
}

.sidebar-search-box input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
}

.sidebar-search-box button {
  background: var(--teal);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.sidebar-search-box button:hover {
  background: var(--teal-dark);
}

/* Categories List */
.sidebar-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-categories li {
  border-bottom: 1px dashed var(--border);
}

.sidebar-categories li:last-child {
  border-bottom: none;
}

.sidebar-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.sidebar-categories a:hover {
  color: var(--teal);
  padding-left: 6px;
}

.sidebar-categories .category-count {
  background: var(--light-bg);
  color: var(--muted-text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
}

/* Recent Posts List */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-post-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  group: true;
}

.recent-post-thumb {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--light-bg);
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-thumb img {
  transform: scale(1.1);
}

.recent-post-info {
  min-width: 0;
}

.recent-post-date {
  font-size: 0.75rem;
  color: var(--muted-text);
  display: block;
  margin-bottom: 4px;
}

.recent-post-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.recent-post-item:hover .recent-post-title {
  color: var(--teal);
}

/* Sidebar Call to Action Box */
.sidebar-cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2847 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-cta-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(17, 168, 160, 0.2);
  border-radius: 50%;
}

.sidebar-cta-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-cta-title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.sidebar-cta-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.sidebar-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-btn-call {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.sidebar-btn-call:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.sidebar-btn-wa {
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.sidebar-btn-wa:hover {
  background: #20ba5c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ── Responsive Media Queries ── */
@media (max-width: 991px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
  .blog-sidebar {
    position: static;
    margin-top: var(--space-xl);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card__thumb {
    height: 200px;
  }
  .blog-card__content {
    padding: 18px;
  }
}

/* ══════════════════════════════════════════════════════════════
   ENHANCED TAXI SERVICES & ASSOCIATED TOUR CARDS STYLING
   ══════════════════════════════════════════════════════════════ */
.services-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-3xl);
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.services-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  transition: all 0.25s ease;
}

.services-nav-link:hover,
.services-nav-link.active {
  background: var(--navy);
  color: var(--white);
}

.services-nav-link i {
  color: var(--gold);
}

/* Individual Service Section Card */
.service-master-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  scroll-margin-top: 100px;
}

.service-master-card:hover {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.service-header-row {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
}

.service-hero-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-master-card:hover .service-hero-img-wrap img {
  transform: scale(1.04);
}

.service-rate-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--teal);
  background: rgba(13, 148, 136, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.service-title-h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-desc-text {
  font-size: 0.96rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
}

.service-feature-item i {
  color: var(--teal);
  flex-shrink: 0;
}

.service-actions-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Embedded Tours By Need Section Inside Each Service */
.service-embedded-tours {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.embedded-tours-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.embedded-tours-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.embedded-tours-title i {
  color: var(--gold);
}

.embedded-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Micro Tour Card */
.sub-tour-card {
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  position: relative;
}

.sub-tour-card:hover {
  background: var(--white);
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.sub-tour-thumb {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.sub-tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sub-tour-card:hover .sub-tour-thumb img {
  transform: scale(1.05);
}

.sub-tour-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.sub-tour-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sub-tour-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.sub-tour-desc {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.45;
  margin-bottom: 12px;
  flex: 1;
}

.sub-tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
}

.sub-tour-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
}

.sub-tour-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.sub-tour-btn:hover {
  color: var(--teal);
  gap: 7px;
}

@media (max-width: 991px) {
  .service-header-row {
    grid-template-columns: 1fr;
  }
  .service-hero-img-wrap {
    height: 220px;
  }
}

