/* CSS Variables for Premium Design */
:root {
  --primary-color: #e91e63;
  --primary-hover: #c2185b;
  --secondary-color: #4caf50;
  --secondary-hover: #388e3c;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f3f4f6;
  --bg-white: #ffffff;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --card-hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 16px;
  --transition: all 0.3s ease;
  --font-main: 'Inter', sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}

.logo-img {
  height: 64px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

/* Layout Containers */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.pb-80 {
  padding-bottom: 80px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-10 {
  margin-top: 10px;
}

.section {
  padding: 80px 0 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-icon {
  background: white;
  border: 1px solid #e5e7eb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  margin-left: 10px;
}

.btn-icon:hover {
  background: var(--bg-light);
}

.actions {
  display: flex;
  align-items: center;
}

/* Horizontal Scroll Container */
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scrollbar-width: none;
  /* Firefox */
}

.scroll-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* Cards */
.card {
  min-width: 300px;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  cursor: pointer;
  background-color: var(--bg-white);
}

.card:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 30px 20px 20px;
  color: white;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 5px;
}

.card-subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Image Filters for Demo purposes */
.filter-hue-45 {
  filter: hue-rotate(45deg);
}

.filter-hue-90 {
  filter: hue-rotate(90deg);
}

.filter-hue-180 {
  filter: hue-rotate(180deg);
}

.filter-hue-270 {
  filter: hue-rotate(270deg);
}

.filter-sepia {
  filter: sepia(0.5);
}

.filter-sepia-light {
  filter: sepia(0.3);
}

.filter-gray {
  filter: grayscale(0.2);
}

/* Placeholder Card Background */
.placeholder-bg {
  background: #e5e7eb;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 600;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background-color: var(--secondary-color);
  width: auto;
  padding: 0 20px;
  border-radius: 30px;
  gap: 10px;
  font-weight: 600;
}

.float-call {
  background-color: var(--primary-color);
}

/* Main Content Padding */
main {
  padding-top: 70px;
}

/* Destination Template specific */
.hero {
  height: 36vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ── Hero backgrounds: use ::before so CSS filter only tints the bg image,
      not the text overlay. The dark ::after overlay and ::hero-content
      sit above via z-index and are unaffected by the filter. ── */

.hero-varanasi::before,
.hero-prayagraj::before,
.hero-ayodhya::before,
.hero-chitrakoot::before,
.hero-bodhgaya::before,
.hero-lucknow::before,
.hero-naimisharanya::before,
.hero-chhapiya::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/varanasi_ghat.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-prayagraj::before {
  filter: hue-rotate(90deg) brightness(1.05);
}

.hero-ayodhya::before {
  filter: hue-rotate(45deg) saturate(1.3);
}

.hero-chitrakoot::before {
  filter: sepia(0.6) saturate(1.2) brightness(0.95);
}

.hero-bodhgaya::before {
  filter: grayscale(0.5) brightness(0.9);
}

.hero-lucknow::before {
  filter: hue-rotate(270deg) brightness(1.05);
}

.hero-naimisharanya::before {
  filter: hue-rotate(200deg) brightness(1.0);
}

.hero-chhapiya::before {
  filter: hue-rotate(310deg) brightness(1.05);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-content p {
  color: rgba(255, 255, 255, .88);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
  /* override h1 { color: var(--text-dark) } */
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: -30px auto 40px;
  position: relative;
  z-index: 10;
  background: white;
  padding: 10px;
  border-radius: 30px;
  box-shadow: var(--card-shadow);
  max-width: fit-content;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: transparent;
  font-weight: 600;
  font-family: var(--font-main);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-light);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary-color);
  color: white;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* New Header Styles */
.main-header {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  color: #a17937;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link .icon {
  margin-right: 5px;
}

.nav-link .arrow {
  margin-left: 5px;
  font-size: 0.7rem;
}

.nav-link-highlight {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #4b5563;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover {
  background: #f3f4f6;
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-warning {
  background: #a17a38;
  color: white;
}

.btn-warning:hover {
  background: #d97706;
}

.dark-mode-toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Footer Styles */
.site-footer {
  margin-top: 50px;
}

/* SEO Footer Top */
.footer-seo {
  background: ##c0c0c082;
  padding: 50px 0;
  border-top: 1px solid #e5e7eb;
}

.seo-group {
  margin-bottom: 30px;
}

.seo-title {
  color: #111827;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.seo-links {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.8;
  text-align: justify;
}

.seo-links a {
  color: #6b7280;
  transition: color 0.2s;
}

.seo-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Main Footer Bottom */
.footer-main {
  background: #002d46;
  color: #e5e7eb;
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-heading {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
  text-align: justify;
}

.contact-info p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-info .icon {
  margin-right: 10px;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  font-size: 0.9rem;
  color: #a17937;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.footer-list a:hover {
  color: white;
}

.social-list .icon {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* Sub Footer */
.footer-sub {
  background: #001e30;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-sub-text {
  text-align: center;
  font-size: 0.82rem;
  color: #9ca3af;
  letter-spacing: 0.03em;
}

.text-green {
  color: #22c55e;
}

/* NEW DESIGN UPDATES */

/* Hero Search */
.hero-search {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-search-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-search-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.hero-search-title {
  color: white;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.15;
}

.hero-dest-word {
  display: inline-block;
  color: #ffb300;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-dest-word.fade-out {
  opacity: 0;
  transform: translateY(-14px);
}

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

.hero-search-subtitle {
  color: #e5e7eb;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.search-bar-container {
  display: flex;
  background: white;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.search-icon {
  padding: 15px;
  color: #6b7280;
  display: flex;
  align-items: center;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.1rem;
  color: #1f2937;
  font-family: var(--font-main);
  background: transparent;
}

.btn-search {
  background: #dc2626;
  /* Deep Red from reference */
  color: white;
  border: none;
  padding: 0 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-search:hover {
  background: #b91c1c;
}

/* Search Wrapper & Live Dropdown */
.search-wrapper {
  position: relative;
  width: 100%;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  z-index: 999;
  overflow: hidden;
  max-height: 480px;
  overflow-y: auto;
}

.search-dropdown-group {
  padding: 8px 0 4px;
}

.search-dropdown-group-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 4px 16px 6px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}

.search-result-item:hover {
  background: #f3f4f6;
}

.search-result-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-sub {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: #dc2626;
  flex-shrink: 0;
}

.search-result-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 6px;
  margin-right: 4px;
  vertical-align: middle;
}

.search-result-badge.pkg {
  background: #fef3c7;
  color: #92400e;
}

.search-result-badge.cab {
  background: #dbeafe;
  color: #1e40af;
}

.search-result-badge.boat {
  background: #d1fae5;
  color: #065f46;
}

.search-no-results {
  padding: 20px 16px;
  text-align: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

.search-dropdown-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 2px 0;
}

/* Circular Destinations */
.justify-center {
  justify-content: center !important;
}

.text-center {
  text-align: center;
}

.circle-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -30px;
}

.circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  width: 150px;
}

.circle-box {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 4px solid white;
}

.circle-item:hover .circle-box {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

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

.circle-item:hover .circle-img {
  transform: scale(1.1);
}

.circle-label {
  font-weight: 600;
  color: #1f2937;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.circle-item:hover .circle-label {
  color: var(--primary-color);
}

/* Enquiry Form Styling */
.form-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.form-wrapper {
  background: white;
  width: 100%;
  max-width: 600px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-title {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 10px;
}

.form-subtitle {
  color: #6b7280;
  font-size: 0.95rem;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.half-width {
  flex: 1;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #374151;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: #1f2937;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.btn-block {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  /* WhatsApp Green */
  color: white;
}

.btn-block:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   SERVICES SECTION – Homepage
═══════════════════════════════════════════ */
/* ── Services Section ── */
.services-section {
  padding: 80px 0 60px;
  background: #dfdfdf;
}

.services-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.services-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #e91e63;
  margin-bottom: 10px;
}

.services-title {
  font-size: 32px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.svc-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.svc-card:hover .svc-img {
  transform: scale(1.07);
}

.svc-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
  transition: opacity .3s ease;
}

.svc-grad-pink {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(191, 191, 191, 0.2) 55%, transparent 100%);
}

.svc-grad-blue {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(191, 191, 191, 0.2) 55%, transparent 100%);
}

.svc-grad-teal {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(191, 191, 191, 0.2) 55%, transparent 100%);
}

.svc-grad-orange {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(191, 191, 191, 0.2) 55%, transparent 100%);
}

.svc-grad-green {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(191, 191, 191, 0.2) 55%, transparent 100%);
}

.svc-card:hover .svc-grad {
  opacity: .85;
}

.svc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.svc-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 2px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .4));
}

.svc-label {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  line-height: 1.2;
}

.svc-desc {
  color: rgba(255, 255, 255, 0);
  font-size: .75rem;
  line-height: 1.4;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, color .35s ease;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
}

.svc-card:hover .svc-desc {
  color: rgba(255, 255, 255, .9);
  max-height: 60px;
}

.svc-cta {
  color: rgba(255, 255, 255, 0);
  font-size: .78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 4px 14px;
  border-radius: 20px;
  transition: color .3s ease, opacity .3s ease;
  opacity: 0;
  backdrop-filter: blur(4px);
}

.svc-card:hover .svc-cta {
  color: #fff;
  opacity: 1;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 580px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ══════════════════════════════════════════
   Explore Sections (TripAdvisor-style)
══════════════════════════════════════════ */
.explore-section {
  padding: 60px 0;
  background: #fff;
}

.explore-section-alt {
  background: #dbdbdb;
}

.explore-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.explore-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 4px;
}

.explore-sub {
  font-size: .9rem;
  color: #6b7280;
  margin: 0;
}

.explore-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.enav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  color: #374151;
}

.enav-btn:hover {
  background: #e91e63;
  border-color: #e91e63;
  color: #fff;
}

/* Scroll row */
.explore-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.explore-scroll::-webkit-scrollbar {
  display: none;
}

/* Individual card */
.ecard {
  flex: 0 0 280px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .25s ease, transform .25s ease;
}

.ecard:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, .12);
  transform: translateY(-4px);
}

/* Image wrapper */
.ecard-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}

.ecard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.ecard:hover .ecard-img {
  transform: scale(1.05);
}

/* Heart button */
.ecard-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: color .2s, background .2s;
  z-index: 2;
  line-height: 1;
}

.ecard-heart:hover {
  background: #fff;
  color: #e91e63;
}

/* Location badge */
.ecard-loc {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, .92);
  color: #374151;
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}

/* Card body */
.ecard-body {
  padding: 14px 4px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ecard-cat {
  font-size: .75rem;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
}

.ecard-title {
  font-size: .98rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ecard-stars {
  font-size: .8rem;
  color: #f59e0b;
  margin: 2px 0;
}

.ecard-count {
  color: #9ca3af;
  font-size: .75rem;
}

.ecard-price {
  font-size: .82rem;
  color: #374151;
  margin: 0;
}

.ecard-price strong {
  color: #111827;
}

/* Responsive */
@media (max-width: 768px) {
  .explore-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .explore-title {
    font-size: 1.25rem;
  }

  .ecard {
    flex: 0 0 230px;
  }

  .ecard-img-wrap {
    height: 180px;
  }
}

/* ══════════════════════════════════════════
   Package Detail Page
══════════════════════════════════════════ */

/* Breadcrumb */
.pkg-breadcrumb {
  background: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
  margin-top: 72px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  font-size: .82rem;
  color: #6b7280;
}

.breadcrumb-list a {
  color: #e91e63;
  text-decoration: none;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-list .sep {
  color: #d1d5db;
}

/* Hero */
.pkg-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.pkg-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .15) 60%, transparent 100%);
}

.pkg-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-bottom: 48px;
}

.pkg-badge {
  display: inline-block;
  background: #e91e63;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.pkg-hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #fff;
}

.pkg-hero-sub {
  font-size: 1.05rem;
  opacity: .88;
  margin-bottom: 16px;
}

.pkg-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .87rem;
  font-weight: 600;
}

/* Layout */
.pkg-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 80px;
  align-items: start;
}

/* Sections */
.pkg-section {
  margin-bottom: 52px;
}

.pkg-h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f3f4f6;
}

.pkg-h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin: 20px 0 8px;
}

.pkg-h6 {
  font-size: .82rem;
  font-weight: 500;
  color: #6b7280;
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  padding: 10px 14px;
  border-radius: 4px;
  margin-top: 16px;
}

.pkg-para {
  font-size: .95rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Highlights */
.pkg-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pkg-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: #374151;
  background: #f9fafb;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #f3f4f6;
  line-height: 1.5;
}

.hl-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* List */
.pkg-list {
  padding-left: 20px;
  margin: 10px 0 16px;
}

.pkg-list li {
  font-size: .93rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 4px;
}

/* Itinerary */
.itin-day {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.itin-day-head {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #1f2937, #374151);
  padding: 18px 24px;
}

.itin-day-num {
  background: #e91e63;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.itin-day-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.itin-day-sub {
  font-size: .78rem;
  color: rgba(255, 255, 255, .65);
  margin: 0;
}

.itin-body {
  padding: 24px 28px;
}

.itin-h4 {
  font-size: .97rem;
  font-weight: 700;
  color: #111827;
  margin: 20px 0 8px;
}

.itin-h4:first-child {
  margin-top: 0;
}

.itin-h5 {
  font-size: .88rem;
  font-weight: 700;
  color: #4b5563;
  margin: 18px 0 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.itin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.itin-tags span {
  background: #fce7f3;
  color: #be185d;
  font-size: .73rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* Inclusions / Exclusions */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.inc-box,
.exc-box {
  border-radius: 14px;
  padding: 20px 22px;
}

.inc-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.exc-box {
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.inc-title {
  font-size: 1rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 12px;
}

.exc-title {
  font-size: 1rem;
  font-weight: 700;
  color: #9f1239;
  margin-bottom: 12px;
}

.inc-list,
.exc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inc-list li,
.exc-list li {
  font-size: .88rem;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
  color: #374151;
}

.inc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.exc-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #f3f4f6;
  padding: 18px 0;
}

.faq-q {
  font-size: .98rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.faq-a {
  font-size: .9rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.pkg-inline-link {
  color: #e91e63;
  text-decoration: underline;
}

/* Sidebar Booking Card */
.pkg-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pkg-book-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.pkg-price-wrap {
  margin-bottom: 20px;
}

.pkg-price-from {
  font-size: .78rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.pkg-price {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin: 4px 0;
}

.pkg-per {
  font-size: .9rem;
  font-weight: 500;
  color: #6b7280;
}

.pkg-price-note {
  font-size: .78rem;
  color: #9ca3af;
  margin: 4px 0 0;
}

.pkg-quick-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
}

.pkg-quick-facts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: #374151;
  line-height: 1.4;
}

.qf-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pkg-book-btn {
  display: block;
  text-align: center;
  background: #25d366;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
  transition: background .2s, transform .2s;
}

.pkg-book-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.pkg-call-btn {
  display: block;
  text-align: center;
  background: #fff;
  color: #e91e63;
  font-size: .88rem;
  font-weight: 700;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid #e91e63;
  text-decoration: none;
  margin-bottom: 12px;
  transition: background .2s, color .2s;
}

.pkg-call-btn:hover {
  background: #e91e63;
  color: #fff;
}

.pkg-book-note {
  font-size: .75rem;
  color: #9ca3af;
  text-align: center;
  margin: 0;
}

/* Trust box */
.pkg-trust {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 20px;
}

.pkg-trust-title {
  font-size: .9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.pkg-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pkg-trust-list li {
  font-size: .83rem;
  color: #374151;
  line-height: 1.4;
}

/* Related */
.pkg-related {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 20px;
}

.pkg-related-title {
  font-size: .9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.pkg-related-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  transition: opacity .2s;
}

.pkg-related-item:last-child {
  border-bottom: none;
}

.pkg-related-item:hover {
  opacity: .8;
}

.pkg-related-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.pkg-related-name {
  font-size: .85rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 3px;
}

.pkg-related-dur {
  font-size: .75rem;
  color: #9ca3af;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .pkg-layout {
    grid-template-columns: 1fr;
  }

  .pkg-sidebar {
    position: static;
    order: -1;
  }

  .pkg-hero-title {
    font-size: 1.8rem;
  }

  .pkg-highlights {
    grid-template-columns: 1fr;
  }

  .inc-exc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pkg-hero {
    height: 360px;
  }

  .pkg-hero-title {
    font-size: 1.4rem;
  }

  .pkg-hero-meta {
    gap: 10px;
    font-size: .78rem;
  }

  .itin-body {
    padding: 16px;
  }
}

/* ═══════════════════════════════════════════════
   HOTELS LISTING PAGE  (htl-*)
═══════════════════════════════════════════════ */

/* Hero */
.htl-hero {
  background: linear-gradient(135deg, #7b1313 0%, #c0392b 60%, #e67e22 100%);
  padding: 64px 0 48px;
  text-align: center;
  color: #fff;
}

.htl-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

.htl-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin: 0 0 12px;
}

.htl-h1 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 50px;
  color: #fff;
}

.htl-h1 span {
  color: #fcd34d;
}

.htl-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .82);
  margin: 0;
  line-height: 1.6;
}

/* Breadcrumb */
.htl-bc {
  padding: 14px 0 4px;
}

.htl-bc-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .82rem;
  color: var(--text-muted);
}

.htl-bc-list a {
  color: var(--primary);
  text-decoration: none;
}

.htl-bc-list a:hover {
  text-decoration: underline;
}

.htl-bc-sep {
  color: #9ca3af;
  font-size: .75rem;
}

/* Listing section */
.htl-listing-section {
  padding: 32px 0 60px;
}

.htl-count-bar {
  margin-bottom: 20px;
}

.htl-count {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}

.htl-empty {
  padding: 60px 0;
  text-align: center;
  color: var(--text-muted);
}

/* Grid */
.htl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* Card */
.htl-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  border: 1px solid var(--border-color);
  transition: box-shadow 0.25s, transform 0.25s;
}

.htl-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  transform: translateY(-3px);
}

.htl-card-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  height: 210px;
}

.htl-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.htl-card:hover .htl-card-img {
  transform: scale(1.04);
}

.htl-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .4px;
}

/* Card body */
.htl-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.htl-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.htl-card-cat {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin: 0 0 4px;
}

.htl-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.3;
  color: var(--text-dark);
}

.htl-card-name a {
  color: inherit;
  text-decoration: none;
}

.htl-card-name a:hover {
  color: var(--primary);
}

.htl-card-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
}

.htl-card-loc svg {
  flex-shrink: 0;
  color: var(--primary);
}

/* Rating pill */
.htl-rating-pill {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 4px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

[data-theme="dark"] .htl-rating-pill {
  background: #052e16;
  border-color: #166534;
}

.htl-star {
  color: #f59e0b;
  font-size: .9rem;
}

.htl-rating-val {
  font-size: .82rem;
  font-weight: 700;
  color: #166534;
}

.htl-reviews {
  font-size: .7rem;
  color: var(--text-muted);
}

[data-theme="dark"] .htl-rating-val {
  color: #4ade80;
}

/* Tagline */
.htl-card-tagline {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  font-style: italic;
}

/* Amenity chips */
.htl-amenity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.htl-amenity-chip {
  font-size: .72rem;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3px 9px;
  color: var(--text-dark);
  white-space: nowrap;
}

/* Card footer */
.htl-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
  margin-top: 2px;
}

.htl-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.htl-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.htl-per {
  font-size: .72rem;
  color: var(--text-muted);
}

/* Card action buttons */
.htl-card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.htl-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.htl-wa-btn:hover {
  background: #128c4a;
}

.htl-detail-btn {
  display: inline-block;
  padding: 8px 14px;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.htl-detail-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* Why section */
.htl-why-section {
  background: var(--bg-light);
  padding: 56px 0;
  border-top: 1px solid var(--border-color);
}

.htl-why-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 36px;
  color: var(--text-dark);
}

.htl-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.htl-why-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--card-bg);
  border-radius: 14px;
  border: 1px solid var(--border-color);
}

.htl-why-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.htl-why-item h3 {
  font-size: .95rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-dark);
}

.htl-why-item p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Hotel Detail extras (htl-det-*) ── */
.htl-det-cat {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  margin: 0 0 4px;
}

.htl-det-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .85rem;
  color: var(--text-muted);
  margin: 6px 0 0;
}

.htl-det-star {
  color: #f59e0b;
}

.htl-det-rev {
  color: var(--text-muted);
  font-size: .78rem;
}

/* Amenities strip on detail page */
.htl-amenities-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
}

.htl-am-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Sidebar price on detail page */
.htl-sidebar-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 12px 0 4px;
}

.htl-sp-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.htl-sp-per {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── Responsive: Hotels ── */
@media (max-width: 1024px) {
  .htl-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .htl-h1 {
    font-size: 1.9rem;
  }

  .htl-hero {
    padding: 48px 0 36px;
  }

  .htl-grid {
    grid-template-columns: 1fr;
  }

  .htl-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .htl-card-img-wrap {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .htl-h1 {
    font-size: 1.55rem;
  }

  .htl-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .htl-card-actions {
    width: 100%;
  }

  .htl-wa-btn,
  .htl-detail-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  .htl-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   CAB BOOKING PAGE  (cab-*)
═══════════════════════════════════════════════ */

/* Hero override: dark teal gradient for cabs */
.cab-hero {
  background: linear-gradient(135deg, #0c2340 0%, #1a4f7a 55%, #2196f3 100%);
}

/* Hero stats row */
.cab-hero-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cab-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.cab-stat-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fcd34d;
  line-height: 1;
}

.cab-stat-lbl {
  font-size: .7rem;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Seat count chip on card image */
.cab-seat-chip {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* "from" prefix on price */
.cab-from {
  font-size: .72rem;
  color: var(--text-muted);
  margin-right: 2px;
}

/* Cab grid: 3-col on desktop, shrinks to 2 then 1 */
.cab-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ── Popular Routes section ── */
.cab-routes-section {
  background: var(--bg-light);
  padding: 52px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cab-routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.cab-route-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.cab-route-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.cab-route-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.cab-route-name {
  font-size: .88rem;
  font-weight: 600;
  margin: 0 0 3px;
  color: var(--text-dark);
}

.cab-route-note {
  font-size: .75rem;
  color: var(--text-muted);
  margin: 0;
}

.cab-route-arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--primary);
  opacity: 0.6;
}

.cab-route-card:hover .cab-route-arrow {
  opacity: 1;
}

/* ── Detail page: Route pricing table ── */
.cab-route-table {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

.cab-rt-head {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 12px;
  padding: 10px 16px;
  background: var(--bg-light);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}

.cab-rt-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s;
}

.cab-rt-row:last-child {
  border-bottom: none;
}

.cab-rt-row:hover {
  background: var(--bg-light);
}

.cab-rt-route {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-dark);
}

.cab-rt-km {
  font-size: .78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.cab-rt-price {
  font-size: .92rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.cab-rt-book {
  display: inline-block;
  padding: 5px 12px;
  background: #25d366;
  color: #fff;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.cab-rt-book:hover {
  background: #128c4a;
}

/* ── Detail sidebar: km rate box ── */
.cab-km-rate {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--bg-light);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.cab-km-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.cab-km-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cab-km-note {
  font-size: .75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ── Responsive: Cabs ── */
@media (max-width: 768px) {
  .cab-hero-stats {
    gap: 18px;
  }

  .cab-stat-val {
    font-size: 1.1rem;
  }

  .cab-grid {
    grid-template-columns: 1fr;
  }

  .cab-routes-grid {
    grid-template-columns: 1fr;
  }

  .cab-rt-head {
    display: none;
  }

  .cab-rt-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 6px 12px;
    padding: 12px 14px;
  }

  .cab-rt-route {
    grid-column: 1;
    grid-row: 1;
  }

  .cab-rt-km {
    grid-column: 1;
    grid-row: 2;
    font-size: .74rem;
  }

  .cab-rt-price {
    grid-column: 2;
    grid-row: 1;
  }

  .cab-rt-book {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 480px) {
  .cab-stat {
    min-width: 60px;
  }

  .cab-hero-stats {
    gap: 12px;
  }
}

/* =========================================================
   CDL — Cab Detail (vehicle package listing) styles
   ========================================================= */

/* Hero */
.cdl-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cdl-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.cdl-hero:hover .cdl-hero-bg {
  transform: scale(1);
}

.cdl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 40, .82) 0%, rgba(5, 10, 25, .72) 100%);
}

.cdl-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 48px;
}

.cdl-hero-content {
  max-width: 660px;
}

.cdl-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
}

.cdl-h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin: 0 0 10px;
}

.cdl-type {
  font-size: .88rem;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 20px;
  font-weight: 400;
}

.cdl-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 0 20px;
}

.cdl-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
}

.cdl-spec svg {
  flex-shrink: 0;
  opacity: .75;
}

.cdl-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
  margin: 0 0 24px;
}

.cdl-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cdl-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.cdl-wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.cdl-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background .2s;
}

.cdl-call-btn:hover {
  background: rgba(255, 255, 255, .22);
}

.cdl-price-hint {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
}

/* Amenities bar */
.cdl-amenities-bar {
  background: #f8f7f4;
  border-bottom: 1px solid #e8e4dc;
}

.cdl-amenities-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cdl-am-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #e0dbd0;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: #3d3226;
  white-space: nowrap;
}

/* Packages section */
.cdl-packages-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 60px;
}

.cdl-pkg-header {
  margin-bottom: 32px;
}

.cdl-pkg-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1a1209;
  margin: 0 0 6px;
}

.cdl-pkg-sub {
  font-size: .93rem;
  color: #6b5c45;
  margin: 0;
}

.cdl-pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}

/* Package card */
.cdl-pkg-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

.cdl-pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .14);
}

.cdl-pkg-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.cdl-pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.cdl-pkg-card:hover .cdl-pkg-img {
  transform: scale(1.06);
}

.cdl-pkg-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
}

.cdl-pkg-icon-chip {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 1.1rem;
  color: #fff;
}

.cdl-pkg-body {
  padding: 18px 18px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cdl-pkg-name {
  font-size: 1.06rem;
  font-weight: 700;
  color: #1a1209;
  text-decoration: none;
  margin-bottom: 5px;
  display: block;
  line-height: 1.3;
}

.cdl-pkg-name:hover {
  color: #b5451b;
}

.cdl-pkg-tagline {
  font-size: .8rem;
  color: #7a6a52;
  margin: 0 0 12px;
}

.cdl-pkg-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 12px;
}

.cdl-pkg-spec {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  color: #5a4a35;
  font-weight: 500;
}

.cdl-pkg-spec svg {
  opacity: .65;
  flex-shrink: 0;
}

.cdl-pkg-highlights {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cdl-pkg-highlights li {
  font-size: .78rem;
  color: #4a3d2a;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.cdl-pkg-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #25a244;
  font-size: .72rem;
  top: 1px;
}

.cdl-pkg-foot {
  padding: 14px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #f0ece4;
  margin-top: auto;
}

.cdl-pkg-price-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.cdl-pkg-from {
  font-size: .68rem;
  color: #9e8c70;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cdl-pkg-price {
  font-size: 1.22rem;
  font-weight: 800;
  color: #b5451b;
}

.cdl-pkg-actions {
  display: flex;
  gap: 8px;
}

.cdl-wa-sm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #25d366;
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  padding: 8px 13px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}

.cdl-wa-sm:hover {
  background: #1ebe5d;
}

.cdl-detail-sm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f5f0e8;
  color: #3d3226;
  font-size: .76rem;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}

.cdl-detail-sm:hover {
  background: #e8e0d0;
}

/* Other vehicles section */
.cdl-others-section {
  background: #f8f7f4;
  border-top: 1px solid #e8e4dc;
  padding: 48px 0 56px;
}

.cdl-others-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.cdl-others-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1209;
  margin: 0 0 24px;
}

.cdl-others-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.cdl-other-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .07);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

.cdl-other-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

.cdl-other-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.cdl-other-body {
  padding: 10px 12px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cdl-other-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #b5451b;
}

.cdl-other-name {
  font-size: .82rem;
  font-weight: 700;
  color: #1a1209;
  line-height: 1.3;
}

.cdl-other-meta {
  font-size: .72rem;
  color: #7a6a52;
}

.cdl-other-price {
  font-size: .78rem;
  font-weight: 700;
  color: #b5451b;
  margin-top: 2px;
}

/* ── Responsive: cdl-* ── */
@media (max-width: 1024px) {
  .cdl-pkg-grid {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 22px;
  }

  .cdl-others-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 768px) {
  .cdl-hero {
    min-height: 340px;
  }

  .cdl-hero-inner {
    padding: 44px 16px 36px;
  }

  .cdl-h1 {
    font-size: 1.6rem;
  }

  .cdl-specs-row {
    gap: 8px 14px;
  }

  .cdl-packages-section {
    padding: 32px 16px 48px;
  }

  .cdl-pkg-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .cdl-pkg-img-wrap {
    height: 170px;
  }

  .cdl-others-inner {
    padding: 0 16px;
  }

  .cdl-others-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .cdl-hero {
    min-height: 280px;
  }

  .cdl-h1 {
    font-size: 1.35rem;
  }

  .cdl-pkg-grid {
    grid-template-columns: 1fr;
  }

  .cdl-pkg-img-wrap {
    height: 190px;
  }

  .cdl-pkg-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cdl-pkg-actions {
    width: 100%;
  }

  .cdl-wa-sm,
  .cdl-detail-sm {
    flex: 1;
    justify-content: center;
  }

  .cdl-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .cdl-wa-btn,
  .cdl-call-btn {
    width: 100%;
    justify-content: center;
  }

  .cdl-others-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .cdl-other-img {
    height: 80px;
  }
}

/* ── Site-wide CTA strip (above footer) ── */
.site-cta-strip {
  background: linear-gradient(90deg, #e67e22, #d35400);
  padding: 44px 0;
  text-align: center;
  color: #fff;
}

.site-cta-strip h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.site-cta-strip p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .85);
  margin: 0 0 24px;
}

.site-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-cta-btn-primary {
  background: #fff;
  color: #d35400;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: .95rem;
  transition: transform .2s;
}

.site-cta-btn-primary:hover {
  transform: translateY(-2px);
}

.site-cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .6);
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-size: .95rem;
  transition: border-color .2s;
}

.site-cta-btn-secondary:hover {
  border-color: #fff;
}

/* ── YouTube Videos Section ─────────────────────────────────────── */
.yt-section {
  padding: 60px 0;
  background: #fff;
}

.yt-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.yt-section-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 4px;
}

.yt-section-sub {
  font-size: .9rem;
  color: #6b7280;
  margin: 0;
}

.yt-section-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.yt-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ff0000;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .3px;
  transition: background .2s, transform .2s;
}

.yt-channel-link:hover {
  background: #cc0000;
  color: #fff;
  transform: translateY(-1px);
}

.yt-channel-link svg {
  flex-shrink: 0;
}

.yt-nav {
  display: flex;
  gap: 8px;
}

.yt-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.yt-scroll::-webkit-scrollbar {
  display: none;
}

.yt-card {
  flex: 0 0 300px;
  border-radius: 14px;
  overflow: hidden;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .13);
}

.yt-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
}

.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.yt-card:hover .yt-thumb {
  transform: scale(1.04);
}

.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .22);
  transition: background .2s;
}

.yt-card:hover .yt-play-btn {
  background: rgba(0, 0, 0, .35);
}

.yt-play-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 0, 0, .92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(255, 0, 0, .45);
  transition: transform .2s;
}

.yt-card:hover .yt-play-icon {
  transform: scale(1.12);
}

.yt-play-icon svg {
  margin-left: 4px;
}

.yt-card-body {
  padding: 12px 14px 14px;
}

.yt-card-title {
  font-size: .9rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* iframe embed state */
.yt-thumb-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 640px) {
  .yt-card {
    flex: 0 0 260px;
  }

  .yt-section-title {
    font-size: 1.25rem;
  }
}

/* ── Instagram Reels Section ─────────────────────────────────────── */
.ig-section {
  padding: 60px 0 70px;
  background: #fafafa;
}

.ig-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 14px;
}

.ig-section-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 4px;
}

.ig-section-sub {
  font-size: .9rem;
  color: #6b7280;
  margin: 0;
}

.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .3px;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}

.ig-follow-btn:hover {
  opacity: .88;
  color: #fff;
  transform: translateY(-1px);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ig-reel-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #111;
  display: block;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .10);
  transition: transform .28s, box-shadow .28s;
}

.ig-reel-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
}

.ig-reel-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.ig-reel-card:hover .ig-reel-thumb {
  transform: scale(1.06);
}

.ig-reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .1) 45%, rgba(0, 0, 0, 0) 70%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  transition: background .25s;
}

.ig-reel-card:hover .ig-reel-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .2) 50%, rgba(0, 0, 0, 0.05) 70%);
}

.ig-reel-top {
  display: flex;
  justify-content: flex-end;
}

.ig-reel-badge {
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.ig-reel-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ig-reel-play {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}

.ig-reel-card:hover .ig-reel-play {
  background: rgba(255, 255, 255, .35);
  transform: scale(1.1);
}

.ig-reel-caption {
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

/* Bottom CTA strip */
.ig-cta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  gap: 12px;
}

.ig-cta-text {
  font-size: .92rem;
  color: #6b7280;
}

.ig-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}

.ig-cta-btn:hover {
  opacity: .88;
  transform: translateY(-2px);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ig-section-title {
    font-size: 1.25rem;
  }

  .ig-reel-caption {
    font-size: .72rem;
  }
}

/* ═══════════════════════════════════════════════════════
   DESTINATION EXPLORER SLIDER
   ═══════════════════════════════════════════════════════ */
.dest-slider-section {
  padding: 50px 0 56px;
  background: #fff;
}
.dest-slider-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.dest-slider-title {
  font-size: 1.65rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 5px;
  letter-spacing: -.02em;
}
.dest-slider-sub {
  font-size: .9rem;
  color: #64748b;
  margin: 0;
}
.dest-slider-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.dest-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, border-color .18s, color .18s;
  line-height: 1;
}
.dest-arrow:hover {
  background: #f43f5e;
  border-color: #f43f5e;
  color: #fff;
}
.dest-arrow:disabled {
  opacity: .35;
  cursor: default;
}
.dest-slider-track-wrap {
  overflow: hidden;
}
.dest-slider-track {
  display: flex;
  gap: 14px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.dest-card {
  position: relative;
  flex: 0 0 180px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.dest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}
.dest-card:hover .dest-card-img {
  transform: scale(1.07);
}
.dest-card-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.12) 55%, transparent 100%);
  transition: background .3s;
  z-index: 1;
}
.dest-card:hover .dest-card-grad {
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.25) 55%, transparent 100%);
}
/* gradient background alternative to <img> */
.dest-card-bg {
  position: absolute;
  inset: 0;
  transition: transform .45s ease;
  z-index: 0;
}
.dest-card:hover .dest-card-bg {
  transform: scale(1.07);
}

/* name + optional sub line at card bottom */
.dest-card-info {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dest-card-name {
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .01em;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  line-height: 1.2;
}
/* standalone name (no .dest-card-info wrapper) stays absolutely positioned */
.dest-card > .dest-card-name {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
}
.dest-card-sub {
  font-size: .66rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  text-transform: uppercase;
  letter-spacing: .5px;
}
[data-theme="dark"] .dest-slider-section { background: #0f172a; }
[data-theme="dark"] .dest-slider-title   { color: #f1f5f9; }
[data-theme="dark"] .dest-slider-sub     { color: #94a3b8; }
[data-theme="dark"] .dest-arrow          { background: #1e293b; border-color: #334155; color: #94a3b8; }
[data-theme="dark"] .dest-arrow:hover    { background: #f43f5e; border-color: #f43f5e; color: #fff; }

@media (max-width: 768px) {
  .dest-slider-title { font-size: 1.25rem; }
  .dest-card         { flex: 0 0 145px; height: 195px; border-radius: 12px; }
  .dest-slider-head  { margin-bottom: 16px; }
}
@media (max-width: 480px) {
  .dest-card         { flex: 0 0 130px; height: 174px; }
}

/* ═══════════════════════════════════════════════════════
   CHAR DHAM YATRA 2026 — PROMO PACKAGES
   ═══════════════════════════════════════════════════════ */

.cdp-section {
  padding: 56px 0 64px;
  background: #fff;
}
[data-theme="dark"] .cdp-section { background: #0f172a; }

/* ── Section header ── */
.cdp-head {
  text-align: center;
  margin-bottom: 40px;
}
.cdp-eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8941f;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.3);
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}
[data-theme="dark"] .cdp-eyebrow {
  color: #d4af37;
  background: rgba(212,175,55,.12);
  border-color: rgba(212,175,55,.3);
}
.cdp-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 10px;
  letter-spacing: -.03em;
}
[data-theme="dark"] .cdp-title { color: #f1f5f9; }
.cdp-title-gold {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cdp-sub {
  font-size: .92rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
[data-theme="dark"] .cdp-sub { color: #94a3b8; }

/* ── Slider track ── */
.cdp-track-wrap {
  overflow: hidden;
}
.cdp-track {
  display: flex;
  gap: 20px;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

/* ── Individual card ── */
.cdp-card {
  flex: 0 0 calc((100% - 40px) / 3);
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;
  background: #1e293b;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  transition: transform .28s ease, box-shadow .28s ease;
}
.cdp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.cdp-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  z-index: 0;
}
.cdp-card:hover .cdp-card-img { transform: scale(1.06); }
.cdp-card-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0f2244 0%, #1a3a6a 50%, #0a1830 100%);
  z-index: 0;
}
.cdp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.05) 100%);
  z-index: 1;
  transition: background .28s ease;
}
.cdp-card:hover .cdp-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.1) 100%);
}

/* Badge */
.cdp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Card body */
.cdp-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cdp-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.cdp-card-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cdp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 700;
  color: #0f172a;
  background: linear-gradient(135deg, #f0d060, #d4af37);
  padding: 7px 16px;
  border-radius: 20px;
  width: fit-content;
  margin-top: 6px;
  transition: opacity .2s, transform .2s;
  letter-spacing: .2px;
}
.cdp-card:hover .cdp-card-cta {
  opacity: .9;
  transform: translateX(3px);
}

/* Arrows (shown only when > 3 items) */
.cdp-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.cdp-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: background .18s, border-color .18s, color .18s;
}
.cdp-arrow:hover:not(:disabled) {
  background: #d4af37;
  border-color: #d4af37;
  color: #fff;
}
.cdp-arrow:disabled { opacity: .35; cursor: default; }
[data-theme="dark"] .cdp-arrow { background: #1e293b; border-color: #334155; color: #94a3b8; }
[data-theme="dark"] .cdp-arrow:hover:not(:disabled) { background: #d4af37; border-color: #d4af37; color: #fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cdp-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 640px) {
  .cdp-section { padding: 40px 0 48px; }
  .cdp-card { flex: 0 0 80vw; height: 300px; }
  .cdp-track-wrap { overflow: auto; scrollbar-width: none; }
  .cdp-track-wrap::-webkit-scrollbar { display: none; }
  .cdp-track { flex-wrap: nowrap; overflow: visible; }
  .cdp-arrows { display: none; }
}

/* ═══════════════════════════════════════════════════════
   INTERNATIONAL DESTINATIONS SLIDER
   ═══════════════════════════════════════════════════════ */
.intl-section {
  padding: 50px 0 56px;
  background: #f8fafc;
}
[data-theme="dark"] .intl-section { background: #0f172a; }

/* Reuses .dest-slider-head, .dest-slider-arrows, .dest-arrow,
   .dest-slider-track-wrap, .dest-slider-track from above */

.intl-card {
  position: relative;
  flex: 0 0 180px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 16px 16px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.intl-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
  transition: background .3s;
}
.intl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.intl-card:hover::after {
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.intl-card-flag {
  font-size: 2rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.intl-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.intl-card-name {
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .01em;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  line-height: 1.2;
}
.intl-card-region {
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  text-transform: uppercase;
  letter-spacing: .6px;
}

@media (max-width: 768px) {
  .intl-card { flex: 0 0 145px; height: 195px; border-radius: 12px; padding: 14px 12px 12px; }
  .intl-card-flag { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .intl-card { flex: 0 0 130px; height: 174px; }
}