/* ==========================================================================
   RITHISH TOURS & TRAVELS — PACKAGE DETAIL & ITINERARY PAGE STYLES
   Provides dedicated, clean, responsive styling for all tour packages.
   ========================================================================== */

/* 1. Page Hero Section */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark, #081624) 0%, var(--navy-deep, #0B1F33) 60%, #1769AA 100%);
  color: var(--white, #ffffff);
  padding: 56px 0 44px;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(63, 169, 245, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.page-hero .breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-pill, 9999px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.page-hero .breadcrumbs a {
  color: var(--white, #ffffff);
  text-decoration: none;
  transition: color var(--transition-fast, 0.18s ease);
}

.page-hero .breadcrumbs a:hover {
  color: var(--sky-blue, #3FA9F5);
}

.page-hero .breadcrumbs i {
  font-size: 10px;
  opacity: 0.6;
}

.page-hero .breadcrumbs span {
  color: var(--sky-blue, #3FA9F5);
  font-weight: 600;
}

.page-hero h1 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--white, #ffffff);
  line-height: 1.22;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.page-hero p.lead {
  font-size: clamp(14.5px, 1.6vw, 17px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin: 0;
  max-width: 760px;
}

/* 2. Main Two-Column Layout */
.pkg-detail-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: start;
  margin: 28px 0 48px;
}

.pkg-main-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* 3. Hero Visual Banner */
.pkg-hero-banner {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.12);
  border: 1px solid var(--border-light, #E2E8F0);
}

.pkg-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 36, 0.1) 0%, rgba(8, 22, 36, 0.45) 50%, rgba(8, 22, 36, 0.88) 100%);
  z-index: 1;
}

.pkg-hero-banner-content {
  position: relative;
  z-index: 2;
  padding: 24px 28px;
  color: var(--white, #ffffff);
  width: 100%;
}

.pkg-hero-banner-content h3 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.pkg-hero-banner-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* 4. Quick Summary Bar */
.pkg-quick-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.summary-box {
  background: var(--white, #ffffff);
  border: 1px solid var(--border-light, #E2E8F0);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(11, 31, 51, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.summary-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(23, 105, 170, 0.1);
  border-color: var(--sky-blue, #3FA9F5);
}

.summary-box i {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--sky-blue-light, #EBF6FE);
  color: var(--royal-blue, #1769AA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.summary-box .label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted, #64748B);
  font-weight: 600;
  margin-bottom: 2px;
}

.summary-box .value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep, #0B1F33);
  line-height: 1.3;
}

/* 5. General Package Box Cards */
.pkg-card-box {
  background: var(--white, #ffffff);
  border: 1px solid var(--border-light, #E2E8F0);
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 4px 16px rgba(11, 31, 51, 0.04);
}

.pkg-card-box h2 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-deep, #0B1F33);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.pkg-card-box h2 i {
  color: var(--royal-blue, #1769AA);
  font-size: 18px;
}

.pkg-card-box p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-secondary, #334155);
  margin-bottom: 14px;
}

.pkg-card-box p:last-child {
  margin-bottom: 0;
}

.pkg-card-box strong {
  color: var(--navy-deep, #0B1F33);
  font-weight: 600;
}

/* 6. Visual Highlights Gallery */
.pkg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.pkg-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  background: #E2E8F0;
}

.pkg-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pkg-gallery-item:hover img {
  transform: scale(1.05);
}

.pkg-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 22, 36, 0.85) 100%);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* 7. Sightseeing Highlights Grid */
.highlights-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.highlight-spot-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light, #E2E8F0);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.25s ease;
}

.highlight-spot-card:hover {
  background: #ffffff;
  border-color: var(--sky-blue, #3FA9F5);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(23, 105, 170, 0.08);
}

.highlight-spot-card i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--royal-blue-light, #EBF4FC);
  color: var(--royal-blue, #1769AA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-spot-card h4 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-deep, #0B1F33);
  margin-bottom: 4px;
  line-height: 1.35;
}

.highlight-spot-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted, #64748B);
  margin: 0;
}

/* 8. Suggested Itinerary */
.itinerary-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.itinerary-card {
  background: var(--white, #ffffff);
  border: 1px solid var(--border-light, #E2E8F0);
  border-left: 4px solid var(--royal-blue, #1769AA);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 2px 8px rgba(11, 31, 51, 0.03);
  transition: all 0.25s ease;
}

.itinerary-card:hover {
  border-left-color: var(--orange-accent, #F97316);
  box-shadow: 0 6px 20px rgba(11, 31, 51, 0.07);
}

.itinerary-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.itinerary-day-badge {
  background: var(--royal-blue-light, #EBF4FC);
  color: var(--royal-blue, #1769AA);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(23, 105, 170, 0.2);
}

.itinerary-card:hover .itinerary-day-badge {
  background: var(--orange-subtle, #FFF7ED);
  color: var(--orange-accent, #F97316);
  border-color: rgba(249, 115, 22, 0.25);
}

.itinerary-header h3 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep, #0B1F33);
  margin: 0;
  line-height: 1.35;
}

.itinerary-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary, #334155);
  margin-bottom: 12px;
}

.itinerary-spots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.itinerary-spots span {
  font-size: 12px;
  font-weight: 500;
  background: #F1F5F9;
  color: var(--text-secondary, #334155);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-light, #E2E8F0);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.itinerary-spots span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--royal-blue, #1769AA);
  display: inline-block;
}

/* 9. Route & Highway Facts */
.route-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.route-info-item {
  background: #F8FAFC;
  border: 1px solid var(--border-light, #E2E8F0);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.route-info-item .r-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted, #64748B);
  font-weight: 600;
}

.route-info-item .r-val {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy-deep, #0B1F33);
}

/* 10. Inclusions & Exclusions Grid */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.inc-box {
  border-radius: 12px;
  padding: 20px 22px;
  border: 1px solid var(--border-light, #E2E8F0);
}

.inc-box.included {
  background: #F0FDF4;
  border-color: #BBF7D0;
  border-top: 4px solid #16A34A;
}

.inc-box.excluded {
  background: #FFF7ED;
  border-color: #FED7AA;
  border-top: 4px solid #EA580C;
}

.inc-box h4 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inc-box.included h4 {
  color: #15803D;
}

.inc-box.excluded h4 {
  color: #C2410C;
}

.inc-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inc-box li {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary, #334155);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.inc-box.included li i {
  color: #16A34A;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.inc-box.excluded li i {
  color: #EA580C;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* 11. FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.faq-item {
  border: 1px solid var(--border-light, #E2E8F0);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white, #ffffff);
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: var(--royal-blue, #1769AA);
  box-shadow: 0 4px 14px rgba(23, 105, 170, 0.08);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-deep, #0B1F33);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-q:hover {
  background: #F8FAFC;
  color: var(--royal-blue, #1769AA);
}

.faq-item.active .faq-q {
  background: #F8FAFC;
  color: var(--royal-blue, #1769AA);
}

.faq-q i {
  font-size: 12px;
  color: var(--text-muted, #64748B);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-q i {
  transform: rotate(180deg);
  color: var(--royal-blue, #1769AA);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  background: var(--white, #ffffff);
}

.faq-item.active .faq-a {
  max-height: 500px;
  padding: 8px 20px 18px 20px;
}

.faq-a p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary, #334155);
  margin: 0;
}

/* 12. Related Packages Grid */
.related-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 14px;
}

.related-packages-grid .tour-card {
  background: var(--white, #ffffff);
  border: 1px solid var(--border-light, #E2E8F0);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(11, 31, 51, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.related-packages-grid .tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.09);
  border-color: var(--border-mid, #CBD5E1);
}

.related-packages-grid .tour-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #E2E8F0;
}

.related-packages-grid .tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.related-packages-grid .tour-card:hover .tour-img img {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(11, 31, 51, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.tour-body h4 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
}

.tour-body h4 a {
  color: var(--navy-deep, #0B1F33);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tour-body h4 a:hover {
  color: var(--royal-blue, #1769AA);
}

.tour-body p {
  font-size: 12.5px;
  color: var(--text-muted, #64748B);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.tour-body .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* 13. Sticky Booking Sidebar */
.pkg-sidebar {
  position: relative;
}

.pkg-sidebar-card {
  position: sticky;
  top: 96px;
  z-index: 20;
  background: var(--white, #ffffff);
  border: 1px solid var(--border-light, #E2E8F0);
  border-top: 4px solid var(--orange-accent, #F97316);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 8px 30px rgba(11, 31, 51, 0.08);
}

.pkg-sidebar-card h3 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-deep, #0B1F33);
  margin-bottom: 4px;
}

.pkg-sidebar-card p.sub {
  font-size: 13px;
  color: var(--text-muted, #64748B);
  margin-bottom: 18px;
  line-height: 1.45;
}

.pkg-sidebar-form .form-grid {
  display: grid;
  gap: 12px;
}

.pkg-sidebar-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pkg-sidebar-form .form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary, #334155);
}

.pkg-sidebar-form .form-group input,
.pkg-sidebar-form .form-group select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1.5px solid var(--border-light, #E2E8F0);
  border-radius: 8px;
  font-size: 13.5px;
  font-family: var(--font-body, 'Inter', sans-serif);
  color: var(--navy-deep, #0B1F33);
  background: #F8FAFC;
  transition: all 0.2s ease;
  outline: none;
}

.pkg-sidebar-form .form-group input:focus,
.pkg-sidebar-form .form-group select:focus {
  border-color: var(--royal-blue, #1769AA);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.12);
}

.pkg-sidebar-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.pkg-sidebar-cta-btns .btn-gold,
.pkg-sidebar-cta-btns .btn-submit {
  width: 100%;
  height: 46px;
  background: linear-gradient(135deg, var(--orange-accent, #F97316) 0%, var(--orange-hover, #EA580C) 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 14.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.28);
}

.pkg-sidebar-cta-btns .btn-gold:hover,
.pkg-sidebar-cta-btns .btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.38);
}

.pkg-sidebar-cta-btns .btn-wa {
  width: 100%;
  height: 44px;
  background: var(--wa-green, #25D366);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.2);
}

.pkg-sidebar-cta-btns .btn-wa:hover {
  background: var(--wa-hover, #20BA5A);
  transform: translateY(-1px);
  color: #ffffff;
}

.pkg-sidebar-cta-btns .btn-outline {
  width: 100%;
  height: 44px;
  background: transparent;
  border: 1.5px solid var(--border-mid, #CBD5E1);
  color: var(--navy-deep, #0B1F33);
  border-radius: 8px;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pkg-sidebar-cta-btns .btn-outline:hover {
  border-color: var(--royal-blue, #1769AA);
  color: var(--royal-blue, #1769AA);
  background: var(--royal-blue-light, #EBF4FC);
}

.pkg-trust-list {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light, #E2E8F0);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pkg-trust-list-item {
  font-size: 12.5px;
  color: var(--text-secondary, #334155);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.pkg-trust-list-item i {
  color: var(--success, #16A34A);
  font-size: 13px;
  flex-shrink: 0;
}

/* 14. Responsive Breakpoints */
@media (max-width: 1024px) {
  .pkg-detail-wrap {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
  }

  .summary-box {
    padding: 12px 14px;
  }

  .summary-box .value {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .pkg-detail-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pkg-sidebar-card {
    position: static;
    max-width: 540px;
    margin: 0 auto;
  }

  .pkg-quick-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pkg-hero-banner {
    height: 240px;
  }

  .pkg-hero-banner-content {
    padding: 18px 20px;
  }

  .pkg-card-box {
    padding: 22px 18px;
    border-radius: 12px;
  }

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

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

  .route-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .page-hero {
    padding: 40px 0 28px;
  }

  .pkg-quick-summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pkg-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pkg-gallery-item {
    height: 180px;
  }

  .route-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .related-packages-grid {
    grid-template-columns: 1fr;
  }

  .pkg-sidebar-card {
    padding: 20px 16px;
    width: 100%;
    max-width: 100%;
  }

  .itinerary-card {
    padding: 16px 18px;
  }
}

/* 15. Unified Footer Links & Hover Effects */
.site-footer .footer-links a,
.site-footer .footer-col ul li a,
.site-footer .footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: inline-block;
  transition: color var(--transition-fast, 0.2s ease), padding-left var(--transition-fast, 0.2s ease), transform var(--transition-fast, 0.2s ease);
}

.site-footer .footer-links a:hover,
.site-footer .footer-col ul li a:hover,
.site-footer .footer-col a:hover {
  color: var(--orange-accent, #F97316);
  padding-left: 6px;
  transform: translateX(2px);
}

.site-footer .footer-contact-list a,
.site-footer .footer-contact-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast, 0.2s ease);
}

.site-footer .footer-contact-list a:hover,
.site-footer .footer-contact-item a:hover {
  color: var(--orange-accent, #F97316);
}

.site-footer .footer-bottom a,
.site-footer .footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition-fast, 0.2s ease);
}

.site-footer .footer-bottom a:hover,
.site-footer .footer-legal a:hover {
  color: var(--orange-accent, #F97316);
}

/* Company Name Highlighting */
.footer-company-title {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white, #ffffff);
  margin-top: 10px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-company-title span,
.footer-company-highlight,
.site-footer .footer-company-highlight,
.site-footer .footer-bottom span strong,
.site-footer .footer-bottom span b {
  color: var(--sky-blue, #3FA9F5);
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-block;
  transition: color var(--transition-fast, 0.2s ease), text-shadow var(--transition-fast, 0.2s ease);
}

.footer-company-title:hover span,
.footer-company-highlight:hover,
.site-footer .footer-company-highlight:hover,
.site-footer .footer-bottom span strong:hover,
.site-footer .footer-bottom span b:hover {
  color: var(--orange-accent, #F97316);
  text-shadow: 0 0 12px rgba(249, 115, 22, 0.4);
}

/* 16. Footer Brand & Company Logo Card */
.footer-brand,
.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-link,
.site-footer .footer-logo-link,
.footer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.footer-logo-link:hover,
.site-footer .footer-logo-link:hover,
.footer-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(63, 169, 245, 0.4);
  background: #ffffff;
}

.site-footer .footer-brand img,
.site-footer .footer-logo {
  height: 64px !important;
  width: auto !important;
  max-width: 215px !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 4px;
}

.site-footer .footer-brand > img:not(.footer-logo-link img) {
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-sizing: content-box;
}

.site-footer .footer-tagline {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold, #C9A227) !important;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 2px;
  margin-bottom: 10px;
}



/* ==========================================================================
   28. RATE NOTICE BOX
   ========================================================================== */
.rate-notice-box {
  background: #FFFDF5;
  border: 1px solid #FDE68A;
  border-left: 4px solid #3FA9F5;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13.5px;
  color: #451A03;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(11, 31, 51, 0.04);
  box-sizing: border-box;
}

.rate-notice-box strong {
  color: #92400E;
  font-weight: 700;
}

.rate-notice-box.listing-notice {
  max-width: 960px;
  margin: 0 auto 24px;
  text-align: left;
}

.rate-notice-box.compact {
  background: #FFFDF5;
  border: 1px solid #FDE68A;
  border-left: 3.5px solid #3FA9F5;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 1.45;
  margin: 12px 0 16px;
  border-radius: 6px;
}

@media (max-width: 640px) {
  .rate-notice-box {
    padding: 9px 12px;
    font-size: 12.5px;
    line-height: 1.45;
    margin-bottom: 18px;
  }
  
  .rate-notice-box.compact {
    padding: 7px 10px;
    font-size: 11.5px;
    margin: 10px 0 14px;
  }
}

/* ==========================================================================
   29. ITINERARY TIME-SLOT UX & DETAILED STRUCTURE (Requirement #32)
   ========================================================================== */
.itinerary-slots {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.itinerary-slot {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary, #334155);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  transition: all 0.2s ease;
}

.itinerary-slot:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.slot-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.slot-morning {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FCD34D;
}

.slot-afternoon {
  background: #E0F2FE;
  color: #0369A1;
  border: 1px solid #BAE6FD;
}

.slot-evening {
  background: #EDE9FE;
  color: #6D28D9;
  border: 1px solid #DDD6FE;
}

.slot-overnight {
  background: #F1F5F9;
  color: #0F172A;
  border: 1px solid #CBD5E1;
}

.slot-travel-note {
  background: #F0FDF4;
  border: 1px dashed #86EFAC;
  color: #166534;
  font-size: 12.5px;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.slot-travel-note i {
  color: #16A34A;
  font-size: 14px;
  flex-shrink: 0;
}

/* ==========================================================================
   30. TRAVEL INFORMATION & BEST TIME TO TRAVEL CARDS (Req #15 & #16)
   ========================================================================== */
.travel-info-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-left: 4px solid var(--royal-blue, #1769AA);
  border-radius: 12px;
  padding: 20px 22px;
  margin-top: 14px;
}

.travel-info-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.travel-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary, #334155);
}

.travel-info-list li i {
  color: var(--royal-blue, #1769AA);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.best-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.best-time-pill {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 14px 16px;
  transition: all 0.2s ease;
}

.best-time-pill:hover {
  border-color: var(--sky-blue, #3FA9F5);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.best-time-pill .season-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.season-peak { background: #DCFCE7; color: #15803D; }
.season-moderate { background: #FEF3C7; color: #B45309; }
.season-monsoon { background: #E0F2FE; color: #0284C7; }

.best-time-pill h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep, #0B1F33);
  margin-bottom: 4px;
}

.best-time-pill p {
  font-size: 12.5px;
  color: var(--text-muted, #64748B);
  line-height: 1.45;
  margin: 0;
}

/* ==========================================================================
   31. GOOGLE REVIEWS & TRUST SECTION (Req #30)
   ========================================================================== */
.google-reviews-box {
  background: linear-gradient(135deg, #0B1F33 0%, #1769AA 100%);
  color: #ffffff;
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 24px 0;
  box-shadow: 0 6px 20px rgba(11, 31, 51, 0.12);
}

.google-reviews-left {
  max-width: 540px;
}

.google-reviews-left h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-reviews-left h3 i {
  color: #FBBC05;
}

.google-reviews-left p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.5;
}

.google-reviews-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-g-review {
  background: #ffffff;
  color: #0B1F33;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-g-review:hover {
  background: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: #1769AA;
}

.btn-g-share {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-g-share:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  color: #ffffff;
}

/* ==========================================================================
   32. BOTTOM BOOKING SECTION (Req #18)
   ========================================================================== */
.booking-section-block {
  background: #ffffff;
  border: 1.5px solid var(--border-light, #E2E8F0);
  border-radius: 14px;
  padding: 28px 30px;
  margin: 32px 0;
  box-shadow: 0 4px 20px rgba(11, 31, 51, 0.05);
}

.booking-section-head {
  text-align: center;
  margin-bottom: 24px;
}

.booking-section-head h2 {
  font-size: clamp(20px, 3vw, 26px);
  color: var(--navy-deep, #0B1F33);
  margin-bottom: 8px;
}

.booking-section-head p {
  font-size: 14px;
  color: var(--text-muted, #64748B);
  max-width: 620px;
  margin: 0 auto;
}

.booking-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ==========================================================================
   31. PLACES YOU WILL VISIT SYSTEM (Requirement #9)
   ========================================================================== */
.places-visit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.place-visit-card {
  background: var(--white, #ffffff);
  border: 1px solid var(--border-light, #E2E8F0);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(11, 31, 51, 0.04);
  transition: all 0.28s ease;
}

.place-visit-card:hover {
  transform: translateY(-3px);
  border-color: var(--sky-blue, #3FA9F5);
  box-shadow: 0 8px 22px rgba(23, 105, 170, 0.1);
}

.place-visit-img-wrap {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: #E2E8F0;
}

.place-visit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.place-visit-card:hover .place-visit-img {
  transform: scale(1.05);
}

.place-visit-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.place-visit-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.place-visit-title {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep, #0B1F33);
  margin: 0;
  line-height: 1.3;
}

.place-visit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.place-badge-type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--royal-blue-light, #EBF4FC);
  color: var(--royal-blue, #1769AA);
  padding: 3px 8px;
  border-radius: 4px;
}

.place-badge-time {
  font-size: 11px;
  font-weight: 600;
  background: #FEF3C7;
  color: #B45309;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.place-visit-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary, #334155);
  margin: 0 0 10px;
}

.place-visit-why {
  font-size: 12.5px;
  line-height: 1.5;
  color: #0369A1;
  background: #F0F9FF;
  border-left: 3px solid var(--sky-blue, #3FA9F5);
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
  margin-top: auto;
}

.place-visit-why strong {
  color: var(--navy-deep, #0B1F33);
}

@media (max-width: 768px) {
  .places-visit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .itinerary-slot {
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
  }
  
  .google-reviews-box {
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .google-reviews-actions {
    width: 100%;
  }
  
  .btn-g-review, .btn-g-share {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
  
  .booking-section-block {
    padding: 20px 16px;
  }
}
