@import url("fonts.css");

/* ==========================================================================
   HUNZA ADVENTURE TOURS - INTERIOR PAGES DESIGN SYSTEM (pages-v2.css)
   ========================================================================== */

/* Page Banner / Hero */
.page-hero {
  position: relative;
  height: 500px;
  min-height: 500px;
  background: var(--bg-dark);
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  padding: 2.5rem 0 3.5rem 0;
  overflow: hidden;
  box-sizing: border-box;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 35, 53, 0.35) 0%, rgba(6, 35, 53, 0.15) 50%, rgba(6, 35, 53, 0.55) 100%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.page-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75), 0 4px 24px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Breadcrumbs */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1rem;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-nav a:hover {
  color: var(--gold-light);
}

.breadcrumb-nav i {
  font-size: 0.7rem;
}

/* Main Content Layout */
.page-content-section {
  padding: 4.5rem 0;
  background: var(--bg-main);
}

.content-card-main {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 2.5rem;
}

/* Category Hub Intro Paragraph Box */
.category-intro-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.category-intro-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.category-intro-header i {
  font-size: 1.5rem;
  color: var(--secondary);
}

.category-intro-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.category-intro-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 1.25rem;
}

.category-intro-text p {
  margin-bottom: 0.85rem;
}

.category-intro-text p:last-child {
  margin-bottom: 0;
}

.category-intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.category-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.835rem;
  font-weight: 600;
  color: #1e293b;
}

.category-intro-badge i {
  color: var(--secondary);
}

.content-card-main h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.content-card-main h2:first-of-type {
  margin-top: 0;
}

.content-card-main h2 i {
  color: var(--secondary);
  font-size: 1.4rem;
}

.content-card-main h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-light);
  margin: 1.5rem 0 0.75rem;
}

.content-card-main p {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Feature / Icon Box Lists */
.icon-list {
  list-style: none;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-main);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.icon-list-item i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

/* Team Grid */
.team-section {
  margin: 3rem 0;
}

.team-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.team-card-v2 {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.team-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

.team-img-wrapper {
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

.team-card-v2:hover .team-img-wrapper img {
  transform: scale(1.06);
}

.team-card-info {
  padding: 1.25rem 1rem;
}

.team-card-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.team-card-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
}

/* Contact Grid */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.contact-info-panel {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-channel-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-channel-details strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.contact-channel-details span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-panel {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-form-panel h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ==========================================================================
   FAQS KNOWLEDGE HUB & ACCORDION SYSTEM
   ========================================================================== */
.faq-hub-container {
  max-width: 1080px;
  margin: 0 auto;
}

/* FAQ Search & Filter Bar */
.faq-search-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.75rem 2rem;
  box-shadow: 0 10px 35px rgba(1, 60, 116, 0.08);
  border: 1px solid #e2e8f0;
  margin-top: -3.5rem;
  position: relative;
  z-index: 30;
  margin-bottom: 2.5rem;
}

.faq-search-input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-search-input-box i.search-icon {
  position: absolute;
  left: 1.25rem;
  font-size: 1.15rem;
  color: #94a3b8;
  pointer-events: none;
}

.faq-search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 3.2rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1.05rem;
  font-family: inherit;
  color: #0f172a;
  background: #f8fafc;
  transition: all 0.25s ease;
  outline: none;
  box-sizing: border-box;
}

.faq-search-input:focus {
  background: #ffffff;
  border-color: var(--primary, #013c74);
  box-shadow: 0 0 0 4px rgba(1, 60, 116, 0.12);
}

.faq-search-clear-btn {
  position: absolute;
  right: 1.25rem;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
}

.faq-search-clear-btn:hover {
  color: #0f172a;
}

/* Category Filter Pills */
.faq-category-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.faq-cat-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.faq-cat-btn i {
  color: var(--gold-light, #bb832a);
  font-size: 0.8rem;
}

.faq-cat-btn:hover {
  border-color: var(--primary, #013c74);
  color: var(--primary, #013c74);
  background: rgba(1, 60, 116, 0.04);
}

.faq-cat-btn.active {
  background: var(--primary, #013c74);
  border-color: var(--primary, #013c74);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(1, 60, 116, 0.25);
}

.faq-cat-btn.active i {
  color: #fce79a;
}

/* Control Bar (Stats + Expand All) */
.faq-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.faq-stats-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #475569;
}

.faq-stats-text strong {
  color: var(--primary, #013c74);
}

.faq-toggle-all-btn {
  background: none;
  border: 1px solid #cbd5e1;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--primary, #013c74);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.faq-toggle-all-btn:hover {
  background: #f1f5f9;
  border-color: var(--primary, #013c74);
}

/* FAQ Group */
.faq-group {
  margin-bottom: 3.25rem;
}

.faq-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.faq-group-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary, #013c74);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.faq-group-title i {
  color: var(--secondary, #087e8b);
  font-size: 1.25rem;
}

.faq-group-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: rgba(1, 60, 116, 0.08);
  color: var(--primary, #013c74);
}

/* FAQ Item Card */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.faq-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(1, 60, 116, 0.08);
}

.faq-card.active {
  border-color: rgba(1, 60, 116, 0.4);
  box-shadow: 0 8px 24px rgba(1, 60, 116, 0.1);
  border-left: 4px solid var(--primary, #013c74);
}

.faq-question-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}

.faq-card.active .faq-question-btn {
  background: #f8fafc;
}

.faq-q-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
}

.faq-card.active .faq-q-text {
  color: var(--primary, #013c74);
}

.faq-indicator {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--primary, #013c74);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.faq-card:hover .faq-indicator {
  background: rgba(1, 60, 116, 0.1);
}

.faq-card.active .faq-indicator {
  background: var(--primary, #013c74);
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-answer-panel {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-card.active .faq-answer-panel {
  padding: 1rem 1.5rem 1.5rem;
  max-height: 800px;
}

.faq-answer-panel p {
  margin: 0 0 0.85rem;
}

.faq-answer-panel p:last-child {
  margin-bottom: 0;
}

.faq-highlight-box {
  background: rgba(1, 60, 116, 0.05);
  border-left: 3px solid var(--primary, #013c74);
  padding: 0.85rem 1.15rem;
  border-radius: 0 8px 8px 0;
  margin: 0.85rem 0;
  font-size: 0.9rem;
  color: #1e293b;
}

.faq-highlight-box strong {
  color: var(--primary, #013c74);
}

.faq-tip-box {
  background: #ecfdf5;
  border-left: 3px solid #10b981;
  padding: 0.85rem 1.15rem;
  border-radius: 0 8px 8px 0;
  margin: 0.85rem 0;
  font-size: 0.9rem;
  color: #065f46;
}

.faq-list {
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

.faq-list li {
  margin-bottom: 0.4rem;
}

/* Bottom CTA Card */
.faq-help-card {
  background: linear-gradient(135deg, #0c1e33 0%, #013c74 100%);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  color: #ffffff;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(1, 60, 116, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.faq-help-card h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: #ffffff;
}

.faq-help-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.faq-help-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* No Results State */
.faq-no-results {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px dashed #cbd5e1;
  margin: 2rem 0;
}

.faq-no-results i {
  font-size: 3rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.faq-no-results h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.faq-no-results p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0 0 1.5rem;
}

@media (max-width: 768px) {
  .faq-search-wrapper {
    padding: 1.25rem 1.25rem;
    margin-top: -2rem;
  }
  .faq-help-card {
    padding: 2.5rem 1.5rem;
  }
  .faq-question-btn {
    padding: 1rem 1.15rem;
  }
  .faq-answer-panel {
    padding: 0 1.15rem;
  }
  .faq-card.active .faq-answer-panel {
    padding: 0.75rem 1.15rem 1.25rem;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .team-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
  .icon-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .page-hero {
    height: 440px;
    min-height: 440px;
    padding: 2rem 0 2.5rem 0;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: auto;
    min-height: 360px;
    padding: 3.5rem 0 2rem 0;
  }
  .content-card-main, .contact-form-panel, .contact-info-panel {
    padding: 1.5rem;
  }
  .team-grid-v2 {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .page-hero-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: auto;
    min-height: 300px;
    padding: 2.5rem 0 1.75rem 0;
  }
  .page-hero-title {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   ENHANCED FIXED DEPARTURES CONTROLS & MASTER TABLE (PRO EDITION)
   ========================================================================== */

.fixed-departures-page-section .container,
.departures-container-wide {
  max-width: 1440px !important;
  width: 100%;
}

.departures-controls-bar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 20px rgba(11, 57, 84, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.departures-search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.departures-search-box {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.departures-search-box .search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 1rem;
  pointer-events: none;
}

.departures-search-input {
  width: 100%;
  padding: 0.75rem 2.75rem 0.75rem 2.75rem;
  font-size: 0.95rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  transition: all 0.2s ease;
  font-family: inherit;
}

.departures-search-input:focus {
  outline: none;
  border-color: var(--primary, #013c74);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(1, 60, 116, 0.12);
}

.clear-search-btn {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clear-search-btn:hover {
  color: #0f172a;
}

.departures-filter-tabs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.filter-tab-btn i {
  font-size: 0.9rem;
  color: var(--primary, #013c74);
  transition: color 0.2s;
}

.filter-tab-btn .tab-count {
  background: #e2e8f0;
  color: #475569;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-left: 0.25rem;
}

.filter-tab-btn:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
  color: #0f172a;
}

.filter-tab-btn.active {
  background: #0b3954;
  border-color: #0b3954;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(11, 57, 84, 0.2);
}

.filter-tab-btn.active i {
  color: #38bdf8;
}

.filter-tab-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Master Departures Table Design (Full Frame, No Scrollbar on Desktop) */
.page-content-section .departures-table-wrapper {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(11, 57, 84, 0.05);
  overflow-x: visible;
  width: 100%;
}

.page-content-section .departures-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  table-layout: auto;
  min-width: 0;
}

.page-content-section .departures-table th {
  background: linear-gradient(135deg, #072538 0%, #0b3954 100%) !important;
  color: #ffffff !important;
  padding: 1rem 1.15rem !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border-bottom: 3px solid #d4af37 !important;
  white-space: nowrap;
}

.page-content-section .departures-table th.th-tour { width: 33%; }
.page-content-section .departures-table th.th-duration { width: 11%; }
.page-content-section .departures-table th.th-dates { width: 19%; }
.page-content-section .departures-table th.th-status { width: 10%; }
.page-content-section .departures-table th.th-price { width: 10%; }
.page-content-section .departures-table th.th-actions { width: 17%; }

.page-content-section .departures-table td {
  padding: 1rem 1.15rem;
  font-size: 0.94rem;
  color: #1e293b;
  border-bottom: 1px solid #eef2f6;
  vertical-align: middle;
  transition: background 0.15s ease;
}

.page-content-section .departures-table tr.departure-row:hover td {
  background: #f8fafc;
}

@media (max-width: 991px) {
  .page-content-section .departures-table-wrapper {
    overflow-x: auto;
  }
  .page-content-section .departures-table {
    min-width: 800px;
  }
}

.departures-controls-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.departures-view-switcher {
  display: inline-flex;
  background: #f1f5f9;
  padding: 0.25rem;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  gap: 0.25rem;
}

.view-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  background: transparent;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.view-switch-btn:hover {
  color: #0f172a;
}

.view-switch-btn.active {
  background: #0b3954;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(11, 57, 84, 0.2);
}

.view-switch-btn.active i {
  color: #38bdf8;
}

/* Specific Columns */
.page-content-section .departures-table .col-tour-name {
  min-width: 0;
}

.table-tour-card-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.table-tour-photo-slider {
  position: relative;
  width: 96px;
  height: 68px;
  min-width: 96px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  border: 1.5px solid #e2e8f0;
  background: #0b253a;
  flex-shrink: 0;
  cursor: pointer;
}

.table-slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.table-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.4s ease;
  pointer-events: none;
}

.table-slide-img.active {
  opacity: 1;
  pointer-events: auto;
}

.table-tour-photo-slider:hover .table-slide-img.active {
  transform: scale(1.08);
}

.table-slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 3;
}

.table-slide-nav:hover {
  background: var(--secondary, #d4af37);
  color: #062335;
}

.table-slide-nav.prev {
  left: 3px;
}

.table-slide-nav.next {
  right: 3px;
}

.table-tour-photo-slider:hover .table-slide-nav {
  opacity: 1;
}

.table-slide-counter {
  position: absolute;
  bottom: 3px;
  right: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  z-index: 2;
  pointer-events: none;
}

.table-tour-info-wrap {
  flex: 1;
  min-width: 0;
}

.table-tour-meta {
  margin-bottom: 0.35rem;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}

.cat-pill.cat-karakoram {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.cat-pill.cat-himalaya {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.cat-pill.cat-blossom {
  background: #fdf2f8;
  color: #be185d;
  border: 1px solid #fbcfe8;
}

.cat-pill.cat-expedition {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.cat-pill.cat-cultural {
  background: #f5f3ff;
  color: #6d28d9;
  border: 1px solid #ddd6fe;
}

.table-tour-title {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  color: #0b3954;
  line-height: 1.35;
  text-decoration: none;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}

.table-tour-title:hover {
  color: #d4af37;
  text-decoration: underline;
}

.table-tour-sub {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.table-tour-sub i {
  color: var(--secondary, #d4af37);
}

.table-duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #f1f5f9;
  color: #334155;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.86rem;
  white-space: nowrap;
}

.table-dates-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: #0f172a;
  white-space: nowrap;
}

.table-dates-badge i {
  color: var(--secondary, #d4af37);
  font-size: 1rem;
}

.table-price-wrap {
  display: flex;
  flex-direction: column;
}

.table-price-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0b3954;
}

.table-price-per {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
}

.table-action-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.btn-table-view {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0b3954;
  background: #f0f7fc;
  border: 1.5px solid #bee3f8;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-table-view:hover {
  background: #0b3954;
  color: #ffffff;
  border-color: #0b3954;
  box-shadow: 0 4px 12px rgba(11, 57, 84, 0.2);
  transform: translateY(-1px);
}

.btn-table-book {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(1, 60, 116, 0.15);
  transition: all 0.2s ease;
}

.btn-table-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(1, 60, 116, 0.25);
}

.departures-empty-state {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px dashed #cbd5e1;
  margin-top: 1rem;
}

.departures-empty-state i {
  font-size: 2.5rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.departures-empty-state h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0b3954;
  margin-bottom: 0.35rem;
}

.departures-empty-state p {
  color: #64748b;
  font-size: 0.9rem;
  max-width: 450px;
  margin: 0 auto 1.25rem;
}

/* ==========================================================================
   ENLARGED PRO RESERVATION / INQUIRY MODAL (BIGGER & PROPORTIONAL)
   ========================================================================== */

#inquiryModal .modal-dialog {
  max-width: 680px;
  width: 94%;
  padding: 2.75rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(6, 35, 53, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: #ffffff;
}

#inquiryModal .modal-dialog h3 {
  font-size: 1.6rem !important;
  font-weight: 800;
  color: var(--primary, #013c74);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

#modalTourNameDisplay {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem !important;
  font-weight: 700;
  color: #0b3954 !important;
  background: #f0f7fc !important;
  padding: 0.6rem 1.15rem !important;
  border-radius: 10px !important;
  margin: 0.6rem 0 1rem !important;
  border: 1.5px solid #bee3f8 !important;
  width: 100%;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

@media (max-width: 640px) {
  .modal-form-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.modal-form .form-group {
  margin-bottom: 0.35rem;
}

.modal-form .form-group label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0b3954;
  margin-bottom: 0.4rem;
}

.modal-form .form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #0f172a;
  background: #f8fafc;
  transition: all 0.2s ease;
  font-family: inherit;
}

.modal-form .form-control:focus {
  outline: none;
  border-color: var(--primary, #013c74);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(1, 60, 116, 0.12);
}

.btn-modal-submit {
  width: 100%;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 12px;
  background: linear-gradient(135deg, #013c74 0%, #0b3954 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(1, 60, 116, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.btn-modal-submit:hover {
  background: linear-gradient(135deg, #d4af37 0%, #aa8514 100%);
  color: #062335;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS EDITORIAL PAGE (RESPLENDENT TRAVEL STYLE)
   ========================================================================== */
.testimonials-page-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-row-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin-bottom: 2.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-row-card.reverse {
  grid-template-columns: 1.15fr 1fr;
}

.testimonial-row-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(8, 126, 139, 0.3);
  transform: translateY(-4px);
}

.testimonial-image-col {
  height: 100%;
  min-height: 380px;
  max-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #0b3954;
}

.testimonial-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-row-card:hover .testimonial-image-col img {
  transform: scale(1.06);
}

.testimonial-content-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.author-avatar-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.author-meta .stars {
  color: #f59e0b;
  font-size: 0.95rem;
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.25rem;
}

.author-meta .author-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.15rem;
  font-family: Georgia, 'Plus Jakarta Sans', serif;
}

.author-meta .author-location {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.author-meta .author-location i {
  color: var(--secondary);
  font-size: 0.85rem;
}

.testimonial-headline {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.85rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.testimonial-body-text {
  font-size: 0.96rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

.testimonial-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--secondary);
  padding: 0.65rem 1.4rem;
  border: 1.5px solid var(--secondary);
  border-radius: var(--radius-full);
  transition: var(--transition);
  text-decoration: none;
  width: fit-content;
}

.testimonial-card-cta:hover {
  background: var(--secondary);
  color: #ffffff;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(8, 126, 139, 0.25);
}

/* Reach Out / Specialists Showcase Section */
.specialists-cta-section {
  background: linear-gradient(135deg, #061724 0%, #0a2235 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  color: #ffffff;
  margin: 4.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: 0 15px 35px rgba(6, 23, 36, 0.25);
}

.specialists-left-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  display: block;
}

.specialists-left-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.specialists-left-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
}

.specialists-right-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-align: center;
  font-family: Georgia, 'Plus Jakarta Sans', serif;
}

.specialists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}

.specialist-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.specialist-photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold);
  margin: 0 auto 0.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.specialist-item:hover .specialist-photo {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.specialist-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.specialist-role {
  font-size: 0.72rem;
  color: var(--gold-light);
  margin-top: 0.2rem;
}

@media (max-width: 1024px) {
  .testimonial-row-card, .testimonial-row-card.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .testimonial-image-col {
    min-height: 320px;
    max-height: 360px;
  }
  .specialists-cta-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
  }
  .specialists-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonial-row-card {
    padding: 1.5rem;
  }
  .specialists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .testimonial-headline {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   PHOTO SLIDE GALLERY COMPONENT FOR HUB & CONTENT PAGES
   ========================================================================== */
.tour-gallery-full-section {
  padding: 4.5rem 0 5rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.tour-gallery-full-section .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.photo-gallery-slider {
  position: relative;
  border-radius: var(--radius-xl, 20px);
  overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border-color, #e2e8f0);
  background: #08111a;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.gallery-slider-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.gallery-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  width: 100%;
}

.gallery-slide {
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  position: relative;
  aspect-ratio: 16 / 9;
  height: clamp(520px, 55vw, 720px);
  max-height: 720px;
  background: #08111a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.gallery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4.5rem 2.5rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 35, 53, 0.4) 40%, rgba(6, 35, 53, 0.95) 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
  pointer-events: none;
}

.gallery-slide-caption .caption-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.825rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--secondary, #087e8b);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  pointer-events: auto;
}

.gallery-slide-caption .caption-title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  pointer-events: auto;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary, #0b3954);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  z-index: 5;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.gallery-nav-btn:hover {
  background: var(--secondary, #087e8b);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(8, 126, 139, 0.5);
}

.gallery-prev {
  left: 1.75rem;
}

.gallery-next {
  right: 1.75rem;
}

.gallery-dots {
  position: absolute;
  bottom: 1.75rem;
  right: 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 6;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.gallery-dot.active {
  background: var(--gold, #d4af37);
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 1200px) {
  .tour-gallery-full-section .container {
    max-width: 100%;
    padding: 0 1.25rem;
  }
  .gallery-slide {
    height: clamp(460px, 50vw, 620px);
    max-height: 620px;
  }
}

@media (max-width: 1024px) {
  .gallery-slide {
    height: clamp(420px, 54vw, 560px);
    max-height: 560px;
  }
  .gallery-prev {
    left: 1rem;
  }
  .gallery-next {
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .tour-gallery-full-section {
    padding: 3rem 0 3.5rem;
  }
  .gallery-slide {
    aspect-ratio: 16 / 10;
    height: clamp(320px, 70vw, 480px);
    max-height: 480px;
  }
  .gallery-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .gallery-prev {
    left: 0.65rem;
  }
  .gallery-next {
    right: 0.65rem;
  }
  .gallery-dots {
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .gallery-slide-caption {
    padding: 2.75rem 1.25rem 1.25rem;
  }
  .gallery-slide-caption .caption-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-slide {
    aspect-ratio: 4 / 3;
    height: clamp(280px, 75vw, 380px);
    max-height: 380px;
  }
  .gallery-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   INTRODUCING PAKISTAN CINEMATIC VIDEO BANNER (BOUT INDIA STYLE)
   ========================================================================== */
.introducing-pakistan-section {
  padding: 5rem 0;
  background: var(--bg-main, #f8fafc);
}

.introducing-banner-box {
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.5rem 4rem;
  box-shadow: 0 20px 50px rgba(1, 60, 116, 0.22);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-sizing: border-box;
}

.introducing-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.introducing-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.introducing-banner-box:hover .introducing-banner-bg img {
  transform: scale(1.08);
}

.introducing-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 35, 53, 0.94) 0%, rgba(6, 35, 53, 0.75) 55%, rgba(6, 35, 53, 0.5) 100%);
}

.introducing-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  color: #ffffff;
}

.intro-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(220, 38, 38, 0.25);
  border: 1px solid rgba(239, 68, 68, 0.6);
  color: #fca5a5;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.intro-pill-tag i {
  color: #ef4444;
  font-size: 0.75rem;
}

.introducing-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 1rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.introducing-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
}

.introducing-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.introducing-play-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 2rem;
}

.intro-pulse-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.95);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7), 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: playPulse 2.4s infinite cubic-bezier(0.66, 0, 0, 1);
  padding-left: 5px;
}

.introducing-play-wrapper:hover .intro-pulse-btn {
  background: #dc2626;
  transform: scale(1.15);
  box-shadow: 0 0 0 15px rgba(220, 38, 38, 0.3), 0 15px 40px rgba(0, 0, 0, 0.6);
}

.intro-play-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   WHERE CAN WE TAKE YOU (PROVINCES GRID - BOUT INDIA STYLE)
   ========================================================================== */
.where-can-take-you-section {
  padding: 5.5rem 0 5rem;
  background: #ffffff;
}

.provinces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.province-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.province-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(1, 60, 116, 0.16);
  border-color: rgba(1, 60, 116, 0.3);
}

.province-card-media {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #0f172a;
}

.province-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.province-card:hover .province-card-media img {
  transform: scale(1.1);
}

.province-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(6, 35, 53, 0.7) 100%);
  transition: all 0.3s ease;
}

.province-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(6, 35, 53, 0.85);
  backdrop-filter: blur(6px);
  color: #fce79a;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  z-index: 2;
}

.province-badge i {
  color: var(--gold-light, #d4af37);
  margin-right: 0.25rem;
}

.province-card-content {
  padding: 1.5rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.province-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary, #013c74);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.province-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  flex-grow: 1;
}

.province-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}

.province-highlights span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
  background: #f1f5f9;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.province-highlights span i {
  color: #10b981;
  font-size: 0.7rem;
}

.province-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1.25rem;
  background: rgba(1, 60, 116, 0.06);
  border: 1px solid rgba(1, 60, 116, 0.15);
  color: var(--primary, #013c74);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.province-card:hover .province-link-btn {
  background: var(--primary, #013c74);
  color: #ffffff;
  border-color: var(--primary, #013c74);
  box-shadow: 0 4px 14px rgba(1, 60, 116, 0.25);
}

@media (max-width: 991px) {
  .introducing-banner-box {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    gap: 2.5rem;
  }
  .introducing-banner-overlay {
    background: rgba(6, 35, 53, 0.85);
  }
  .introducing-title {
    font-size: 2.1rem;
  }
  .introducing-cta-row {
    justify-content: center;
  }
  .introducing-play-wrapper {
    margin-left: 0;
  }
  .provinces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .provinces-grid {
    grid-template-columns: 1fr;
  }
  .introducing-title {
    font-size: 1.75rem;
  }
}

/* ==========================================================================
   POLICY & LEGAL DOCUMENT PAGES (PRIVACY POLICY / TERMS)
   ========================================================================== */
.policy-page-container {
  padding: 3.5rem 0 5rem;
}

.policy-grid-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.policy-sidebar-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary, #013c74);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.policy-toc-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.35;
}

.policy-toc-link i {
  color: var(--gold-light, #bb832a);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.policy-toc-link:hover {
  color: var(--primary, #013c74);
  background: #f1f5f9;
}

.policy-toc-link.active {
  color: var(--primary, #013c74);
  background: rgba(1, 60, 116, 0.08);
  font-weight: 700;
}

.policy-sidebar-help {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

.policy-sidebar-help h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary, #013c74);
  margin: 0 0 0.35rem;
}

.policy-sidebar-help p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0 0 0.85rem;
  line-height: 1.5;
}

.btn-whatsapp-sidebar,
.policy-sidebar-help .btn-whatsapp,
.policy-sidebar-help .btn-whatsapp-sidebar {
  background: #25d366 !important;
  color: #ffffff !important;
  border: 1px solid #25d366 !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: var(--radius-md, 8px);
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-sidebar:hover,
.policy-sidebar-help .btn-whatsapp:hover,
.policy-sidebar-help .btn-whatsapp-sidebar:hover {
  background: #1eb954 !important;
  border-color: #1eb954 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.policy-sidebar-help .btn-outline {
  background: #ffffff !important;
  color: var(--primary, #013c74) !important;
  border: 1.5px solid var(--primary, #013c74) !important;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: var(--radius-md, 8px);
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.policy-sidebar-help .btn-outline:hover {
  background: var(--primary, #013c74) !important;
  color: #ffffff !important;
  border-color: var(--primary, #013c74) !important;
  transform: translateY(-2px);
}

.policy-content-panel {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 3rem 3.5rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
}

.policy-meta-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  margin-bottom: 2.25rem;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

.policy-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

.policy-meta-item i {
  color: var(--gold-light, #bb832a);
}

.policy-section-block {
  margin-bottom: 2.75rem;
  scroll-margin-top: 110px;
}

.policy-section-block:last-child {
  margin-bottom: 0;
}

.policy-section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary, #013c74);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.3;
}

.policy-section-title i {
  color: var(--secondary, #087e8b);
  font-size: 1.2rem;
}

.policy-content-panel p {
  font-size: 0.96rem;
  color: #334155;
  line-height: 1.75;
  margin: 0 0 1rem;
}

.policy-content-panel ul, .policy-content-panel ol {
  padding-left: 1.35rem;
  margin: 0.75rem 0 1.25rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.7;
}

.policy-content-panel li {
  margin-bottom: 0.5rem;
}

.policy-callout-box {
  background: #f8fafc;
  border-left: 4px solid var(--primary, #013c74);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  color: #1e293b;
  line-height: 1.65;
}

.policy-callout-box.security {
  background: #f0fdf4;
  border-left-color: #16a34a;
  color: #14532d;
}

.policy-callout-box strong {
  color: var(--primary, #013c74);
}

.policy-callout-box.security strong {
  color: #166534;
}

}

/* Enhanced Terms & Conditions Styles */
.terms-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.terms-trust-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.terms-trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.terms-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(1, 60, 116, 0.08);
  color: var(--primary, #013c74);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.terms-trust-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary, #013c74);
  margin-bottom: 0.35rem;
}

.terms-trust-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

/* Toolbar & Search Controls */
.terms-toolbar-wrap {
  background: #f1f5f9;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.terms-search-box {
  position: relative;
  flex: 1;
  min-width: 240px;
}

.terms-search-box input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.88rem;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.terms-search-box input:focus {
  border-color: var(--secondary, #087e8b);
  box-shadow: 0 0 0 3px rgba(8, 126, 139, 0.15);
}

.terms-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.9rem;
}

.terms-search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 0.85rem;
  display: none;
}

.terms-action-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terms-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.terms-tool-btn:hover {
  background: #e2e8f0;
  color: var(--primary, #013c74);
  border-color: #94a3b8;
}

.terms-tool-btn i {
  color: var(--secondary, #087e8b);
}

/* Cancellation Schedule Table */
.terms-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.75rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.terms-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.terms-table th {
  background: #013c74;
  color: #ffffff;
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.terms-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  vertical-align: middle;
}

.terms-table tr:last-child td {
  border-bottom: none;
}

.terms-table tr:nth-child(even) td {
  background: #f8fafc;
}

.terms-table tr:hover td {
  background: #f1f5f9;
}

.badge-green {
  background: #dcfce7;
  color: #15803d;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  font-size: 0.78rem;
  display: inline-block;
}

.badge-yellow {
  background: #fef9c3;
  color: #854d0e;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  font-size: 0.78rem;
  display: inline-block;
}

.badge-red {
  background: #fee2e2;
  color: #b91c1c;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  font-size: 0.78rem;
  display: inline-block;
}

.badge-blue {
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  font-size: 0.78rem;
  display: inline-block;
}

/* Interactive Refund & Cancellation Calculator */
.terms-calc-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 1.75rem;
  margin: 2rem 0;
}

.terms-calc-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #e2e8f0;
}

.terms-calc-header i {
  color: var(--secondary, #087e8b);
  font-size: 1.4rem;
}

.terms-calc-header h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--primary, #013c74);
  font-weight: 800;
}

.terms-calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.calc-control-group {
  margin-bottom: 1.25rem;
}

.calc-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.4rem;
}

.calc-input, .calc-select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.9rem;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
}

.calc-input:focus, .calc-select:focus {
  border-color: var(--secondary, #087e8b);
}

.calc-quick-pills {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.calc-pill-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calc-pill-btn:hover, .calc-pill-btn.active {
  background: var(--primary, #013c74);
  color: #ffffff;
  border-color: var(--primary, #013c74);
}

.calc-results-box {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 0.88rem;
}

.calc-result-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.calc-result-val {
  font-weight: 700;
  font-size: 1rem;
}

.calc-result-val.refund {
  color: #16a34a;
}

.calc-result-val.charge {
  color: #dc2626;
}

.calc-result-val.credit {
  color: #0284c7;
}

.calc-note-box {
  background: #eff6ff;
  border-radius: 8px;
  padding: 0.75rem;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: #1e40af;
  line-height: 1.45;
}

/* FAQ Accordion */
.terms-faq-wrap {
  margin-top: 2rem;
}

.terms-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.terms-faq-item.active {
  border-color: var(--secondary, #087e8b);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.terms-faq-question {
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: var(--primary, #013c74);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #ffffff;
  user-select: none;
  transition: background 0.2s ease;
}

.terms-faq-question:hover {
  background: #f8fafc;
}

.terms-faq-question i {
  color: var(--secondary, #087e8b);
  transition: transform 0.3s ease;
}

.terms-faq-item.active .terms-faq-question i {
  transform: rotate(180deg);
}

.terms-faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.65;
  border-top: 1px solid #f1f5f9;
}

.terms-faq-item.active .terms-faq-answer {
  display: block;
}

/* Highlight Search Matching Text */
.search-highlight {
  background: #fef08a;
  padding: 0 2px;
  border-radius: 2px;
}

/* Toast Message */
.terms-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #013c74;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.terms-toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .terms-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .terms-calc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .terms-trust-grid {
    grid-template-columns: 1fr;
  }
  .terms-toolbar-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .terms-action-btns {
    justify-content: space-between;
  }
}

/* Print Optimization */
@media print {
  .top-bar, .site-header, .page-hero, .policy-sidebar, .terms-toolbar-wrap, .terms-calc-card, .floating-actions, .site-footer, .modal-overlay, #inquiryModal {
    display: none !important;
  }
  .policy-page-container {
    padding: 0;
  }
  .policy-grid-layout {
    display: block;
  }
  .policy-content-panel {
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .policy-section-block {
    page-break-inside: avoid;
  }
  body {
    background: #ffffff;
    color: #000000;
    font-size: 11pt;
  }
}

/* ==========================================================================
   BOUT INDIA STYLE VISION, MISSION & QUOTE DESIGN
   ========================================================================== */
.bg-cream {
  background: #f8f5f0 !important;
}

.about-quote-section {
  padding: 3.5rem 0 2.5rem;
  background: #ffffff;
  text-align: center;
}

.about-quote-box {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem 2rem;
}

.vis_text {
  font-size: 1.45rem;
  font-weight: 600;
  color: #013c74;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.vis_text i {
  color: #aa8453;
  font-size: 1.15rem;
  vertical-align: middle;
}

.vis_text i.fa-quote-left {
  margin-right: 0.5rem;
}

.vis_text i.fa-quote-right {
  margin-left: 0.5rem;
}

.about-vision {
  padding: 4.5rem 0;
  border-top: 1px solid #ede8de;
  border-bottom: 1px solid #ede8de;
}

.about-vision .vision-mission-row {
  display: flex;
  flex-wrap: wrap;
}

.about-vision .vision-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 2.5rem;
  box-sizing: border-box;
}

.about-vision .mission-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 2.5rem;
  box-sizing: border-box;
}

.about-vision .border-right {
  border-right: 1px solid #aa8453;
}

.about-vision .vm-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-vision .vm-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aa8453;
  margin-bottom: 0.4rem;
}

.about-vision .vm-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #013c74;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.about-vision .vm-divider {
  width: 50px;
  height: 2.5px;
  background: #aa8453;
  margin: 0 auto;
  border-radius: 2px;
}

.about-vision .vm-content p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1.15rem;
  text-align: justify;
}

.about-vision .vm-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .about-vision .vision-col,
  .about-vision .mission-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .about-vision .border-right {
    border-right: none;
    border-bottom: 1px solid #aa8453;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .vis_text {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   BOUT INDIA STYLE TESTIMONIALS & TRIPADVISOR SHOWCASE
   ========================================================================== */
.testimonials-hero-banner {
  background: #062335;
  color: #fff;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.testimonials-trust-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.trust-bar-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #00aa6c; /* TripAdvisor green */
}

.trust-badge-icon.google {
  color: #ea4335;
}

.trust-badge-icon.award {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
}

.trust-badge-text h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.trust-badge-text p {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trust-stars {
  color: #00aa6c;
  font-size: 0.85rem;
}

.filter-pills-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 3rem;
}

.filter-pill {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-pill:hover,
.filter-pill.active {
  background: #013c74;
  color: #ffffff;
  border-color: #013c74;
  box-shadow: 0 4px 12px rgba(1,60,116,0.2);
}

/* Bout India Alternating Testimonial List */
.testimonial-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.testimonial-split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e8e2d8;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-split-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.testimonial-split-card.reverse {
  direction: rtl;
}

.testimonial-split-card.reverse > * {
  direction: ltr;
}

.testimonial-media-side {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: #0f172a;
}

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

.testimonial-split-card:hover .testimonial-media-img {
  transform: scale(1.05);
}

.testimonial-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.testimonial-media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: rgba(225, 29, 72, 0.9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 3px solid rgba(255,255,255,0.85);
  z-index: 10;
}

.testimonial-media-play:hover {
  background: #e11d48;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(225,29,72,0.5);
}

.testimonial-content-side {
  background: #f8f5f0;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-client-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #aa8453;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  background: #fff;
}

.testimonial-client-meta h4 {
  margin: 0 0 0.2rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #013c74;
}

.testimonial-client-geo {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.testimonial-star-rating {
  color: #d4af37;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  display: flex;
  gap: 2px;
}

.testimonial-tour-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #aa8453;
  background: rgba(170, 132, 83, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  width: fit-content;
}

.testimonial-headline {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.85rem;
  line-height: 1.35;
}

.testimonial-quote-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-quote-text::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(170, 132, 83, 0.3);
  position: absolute;
  top: -10px;
  left: -15px;
}

.testimonial-card-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-watch-story {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  background: #013c74;
  padding: 0.55rem 1.15rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-watch-story:hover {
  background: #aa8453;
  color: #ffffff;
}

.verified-tripadvisor-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: #00aa6c;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Call To Action Review Banner */
.review-cta-banner {
  background: linear-gradient(135deg, #013c74 0%, #062335 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 3.5rem 2.5rem;
  margin-top: 4rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(1,60,116,0.2);
  position: relative;
  overflow: hidden;
}

.review-cta-banner h3 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: #ffffff;
}

.review-cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

.review-cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-tripadvisor-write {
  background: #00aa6c;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-tripadvisor-write:hover {
  background: #008f5a;
  transform: translateY(-2px);
  color: #ffffff;
}

@media (max-width: 991px) {
  .testimonial-split-card {
    grid-template-columns: 1fr;
  }
  .testimonial-split-card.reverse {
    direction: ltr;
  }
  .testimonial-media-side {
    min-height: 260px;
    height: 260px;
  }
  .testimonial-headline {
    font-size: 1.25rem;
  }
}

/* Itinerary Day Badge with Location Icon */
.itinerary-day-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--primary, #013C74);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.itinerary-day-badge::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  font-size: 0.72rem;
  display: inline-block;
  opacity: 0.95;
}

.itinerary-item.active .itinerary-day-badge {
  background: var(--secondary, #c19a6b);
}

/* ==========================================================================
   ABOUT US - OUR PROMISE & UNIQUE FEATURES ENHANCEMENTS
   ========================================================================== */
.about-promise-container {
  background: linear-gradient(135deg, #fbfaf8 0%, #f4efe6 100%);
  border: 1px solid #e5dcce;
  border-radius: var(--radius-lg, 16px);
  padding: 2.75rem 2.5rem;
  margin: 2.75rem 0;
  box-shadow: 0 8px 30px rgba(1, 60, 116, 0.05);
  position: relative;
  overflow: hidden;
}

.about-promise-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary, #c19a6b) 0%, var(--primary, #013c74) 100%);
}

.promise-header {
  margin-bottom: 2rem;
}

.promise-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8c6838;
  background: rgba(193, 154, 107, 0.18);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.promise-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #013c74;
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.promise-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 0.75rem;
}

.promise-sublead {
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 1.75rem;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.promise-card {
  background: #ffffff;
  border: 1px solid #e7ded0;
  border-radius: 12px;
  padding: 1.5rem 1.65rem;
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.promise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(1, 60, 116, 0.08);
  border-color: #c19a6b;
}

.promise-num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #013c74 0%, #062335 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(1, 60, 116, 0.25);
}

.promise-card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #013c74;
  margin: 0 0 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.promise-card-body h4 i {
  color: #c19a6b;
  font-size: 0.95rem;
}

.promise-card-body p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.promise-note-box {
  background: #ffffff;
  border-left: 4px solid #c19a6b;
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.65rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.promise-note-icon {
  font-size: 1.8rem;
  color: #c19a6b;
  flex-shrink: 0;
}

.promise-note-text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  color: #334155;
  margin: 0;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.75rem 0 2.5rem;
}

.about-feature-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.2s ease;
}

.about-feature-box:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(1, 60, 116, 0.08);
  color: #013c74;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #013c74;
  margin: 0 0 0.35rem;
}

.about-feature-info p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
}

@media (max-width: 768px) {
  .promise-grid,
  .about-features-grid {
    grid-template-columns: 1fr;
  }
  .about-promise-container {
    padding: 1.75rem 1.25rem;
  }
}



