/* ==========================================================================
   Tour Tech India — Stylesheet
   ========================================================================== */

:root {
  --navy: #0B1B4B;
  --navy-light: #16296e;
  --orange: #F7941D;
  --orange-dark: #e07f0a;
  --sky: #5AA6DB;
  --bg: #FFFFFF;
  --light: #F4F9FF;
  --text-muted: #5b6478;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 30px rgba(11, 27, 75, 0.08);
  --shadow-hover: 0 20px 40px rgba(11, 27, 75, 0.15);
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  background-color: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--navy);
}

p { color: var(--text-muted); }

a { text-decoration: none; }

.section-pad { padding: 90px 0; }

@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
}

.bg-light-section { background-color: var(--light); }

/* ---------- Eyebrow / subtitle tag ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* ---------- Buttons ---------- */
.btn-brand-primary {
  background-color: var(--orange);
  border: 2px solid var(--orange);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-brand-primary:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-brand-outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-brand-outline:hover {
  background-color: #fff;
  color: var(--navy);
  transform: translateY(-3px);
}

.btn-enquiry {
  background-color: var(--orange);
  color: #fff !important;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-enquiry:hover {
  background-color: var(--sky);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   Top Info Bar
   ========================================================================== */
.top-bar {
  background-color: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar a {
  color: #fff;
  transition: color 0.25s ease;
}

.top-bar a:hover { color: var(--orange); }

.top-bar .divider {
  opacity: 0.3;
  margin: 0 10px;
}

.top-bar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  margin-left: 8px;
  font-size: 0.85rem;
}

.top-bar .social-icons a:hover {
  background-color: var(--orange);
  border-color: var(--orange);
}

/* ==========================================================================
   Main Header / Navigation
   ========================================================================== */
.main-header {
  background-color: #fff;
  padding: 14px 0;
  transition: var(--transition);
  z-index: 1030;
}

.main-header.scrolled {
  padding: 8px 0;
  box-shadow: 0 6px 24px rgba(11,27,75,0.10);
}

.navbar-brand img {
  height: 52px;
  transition: var(--transition);
}

.main-header.scrolled .navbar-brand img { height: 42px; }

.navbar-nav .nav-link {
  color: var(--navy);
  font-weight: 500;
  padding: 10px 16px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange);
}

/* ==========================================================================
   Hero Carousel
   ========================================================================== */
.hero-carousel { margin-top: 0; }

.hero-slide {
  height: 650px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,27,75,0.88) 0%, rgba(11,27,75,0.55) 55%, rgba(11,27,75,0.35) 100%);
}

.hero-slide .container { position: relative; z-index: 2; }

.hero-content { max-width: 640px; color: #fff; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,148,29,0.15);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-heading {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.carousel-indicators [data-bs-target] {
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255,255,255,0.4);
}

.carousel-indicators .active { background-color: var(--orange); }

.carousel-control-prev,
.carousel-control-next {
  width: 56px;
  height: 56px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  opacity: 0.85;
}

.carousel-control-prev { left: 30px; }
.carousel-control-next { right: 30px; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--orange);
  border-color: var(--orange);
  opacity: 1;
}

@media (max-width: 767px) {
  .hero-slide { height: 560px; }
  .carousel-control-prev, .carousel-control-next { display: none; }
}

/* Flight path signature divider */
.flight-divider {
  width: 100%;
  height: 46px;
  display: block;
  margin: 0 auto;
}

.flight-divider path {
  stroke-dasharray: 8 10;
  animation: dash-move 8s linear infinite;
}

@keyframes dash-move {
  to { stroke-dashoffset: -180; }
}

/* ==========================================================================
   Why Choose Us Cards
   ========================================================================== */
.feature-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 38px 28px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sky);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(247,148,29,0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 22px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.feature-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.93rem; margin-bottom: 0; }

/* ==========================================================================
   Services Strip
   ========================================================================== */
.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

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

.service-card:hover img { transform: scale(1.08); }

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,27,75,0.92) 10%, rgba(11,27,75,0.15) 60%, rgba(11,27,75,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.service-overlay h5 { color: #fff; margin-bottom: 6px; }
.service-overlay p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 12px; }
.service-overlay a { color: var(--orange); font-weight: 600; font-size: 0.85rem; }
.service-overlay a i { transition: transform 0.25s ease; }
.service-overlay a:hover i { transform: translateX(4px); }

/* ==========================================================================
   About Section
   ========================================================================== */
.about-img-wrap { position: relative; }

.about-img-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--navy);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  text-align: center;
}

.about-badge .num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  line-height: 1;
}

.about-badge .label { font-size: 0.78rem; letter-spacing: 0.5px; }

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 500;
}

.about-list li i {
  color: var(--sky);
  background: rgba(90,166,219,0.12);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .about-badge { right: 10px; bottom: -24px; padding: 16px 18px; }
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
}

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

.blog-card img { width: 100%; height: 210px; object-fit: cover; }

.blog-card-body { padding: 26px; }

.blog-meta {
  font-size: 0.78rem;
  color: var(--sky);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blog-card h5 { font-size: 1.05rem; margin-bottom: 12px; }

.blog-card a.read-more {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
}

.blog-card a.read-more:hover { color: var(--orange); }

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(247,148,29,0.25) 0%, rgba(247,148,29,0) 70%);
  right: -80px;
  top: -100px;
  border-radius: 50%;
}

.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 0; }

@media (max-width: 991px) {
  .cta-banner { padding: 42px 26px; text-align: center; }
  .cta-banner .cta-btns { justify-content: center; margin-top: 22px; }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 32px;
  color: #fff;
  height: 100%;
}

.contact-info-card .info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.contact-info-card .info-item i {
  background: rgba(247,148,29,0.15);
  color: var(--orange);
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-card .info-item h6 { color: #fff; margin-bottom: 4px; font-size: 0.9rem; }
.contact-info-card .info-item p { color: rgba(255,255,255,0.75); margin-bottom: 0; font-size: 0.88rem; }

.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.form-control, .form-select {
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 0.2rem rgba(90,166,219,0.18);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.site-footer h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 22px;
  font-size: 1rem;
}

.site-footer .footer-logo { height: 48px; margin-bottom: 18px; }

.site-footer p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.site-footer ul { list-style: none; padding: 0; margin: 0; }

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

.site-footer ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.site-footer ul li a:hover { color: var(--orange); padding-left: 4px; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  margin-right: 10px;
  transition: var(--transition);
}

.footer-social a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding: 22px 0;
  font-size: 0.85rem;
}

.footer-bottom a { color: var(--orange); }

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--navy); color: #fff; }

/* ==========================================================================
   Scroll reveal animation (lightweight, no external lib)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Stats Counter Bar
   ========================================================================== */
.stats-bar {
  background: var(--navy);
  padding: 46px 0;
  margin-top: -1px;
  position: relative;
  z-index: 3;
}

.stat-item {
  text-align: center;
  color: #fff;
  padding: 10px 12px;
}

.stat-item .icon {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.stat-item .num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-item .num .plus { color: var(--orange); }

.stat-item .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.stats-divider {
  border-left: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 767px) {
  .stats-divider { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; margin-top: 10px; }
}

/* ==========================================================================
   Detail / Feature-split sections (Flight, Seaman, Visa, IT)
   ========================================================================== */
.detail-section img.detail-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.detail-checklist { list-style: none; padding: 0; margin: 26px 0; }

.detail-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--navy);
}

.detail-checklist li .tick {
  background: var(--orange);
  color: #fff;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90,166,219,0.12);
  color: var(--sky);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* Visa type / IT sub-service mini cards */
.mini-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
  border-bottom: 3px solid transparent;
}

.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--orange);
}

.mini-card .mini-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(11,27,75,0.06);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.mini-card h6 { font-size: 1rem; margin-bottom: 8px; font-weight: 600; }
.mini-card p { font-size: 0.87rem; margin-bottom: 0; }

.bg-navy-soft { background: linear-gradient(180deg, var(--light) 0%, #fff 100%); }

/* ==========================================================================
   Tour Package Cards (Domestic / International)
   ========================================================================== */
.package-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

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

.package-img-wrap { position: relative; height: 220px; overflow: hidden; }

.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .package-img-wrap img { transform: scale(1.1); }

.package-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.package-price {
  position: absolute;
  bottom: -1px;
  right: 16px;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px 10px 0 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.package-price small { display: block; font-weight: 400; opacity: 0.75; font-size: 0.68rem; }

.package-body { padding: 22px; }

.package-body h5 { font-size: 1.08rem; margin-bottom: 10px; }

.package-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.package-meta span { display: flex; align-items: center; gap: 6px; }
.package-meta i { color: var(--sky); }

.package-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.85rem;
}

.package-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.package-body ul li i { color: var(--orange); margin-top: 3px; font-size: 0.75rem; }

.package-book-btn {
  display: block;
  text-align: center;
  background: var(--light);
  color: var(--navy);
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.88rem;
  transition: var(--transition);
}

.package-book-btn:hover { background: var(--orange); color: #fff; }

/* ==========================================================================
   Popular Destinations Gallery
   ========================================================================== */
.dest-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.dest-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.dest-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-tile:hover img { transform: scale(1.1); }

.dest-tile .dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,27,75,0.85) 15%, rgba(11,27,75,0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.dest-tile h5 { color: #fff; margin-bottom: 2px; font-size: 1.05rem; }
.dest-tile span { color: rgba(255,255,255,0.75); font-size: 0.8rem; }
.dest-tile .dest-count {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
}

.dest-tile.dest-lg { height: 400px; }

@media (max-width: 767px) {
  .dest-tile.dest-lg { height: 280px; }
}

/* ==========================================================================
   Working Process
   ========================================================================== */
.process-step { text-align: center; position: relative; padding: 0 14px; }

.process-num {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #fff;
  border: 2px dashed var(--sky);
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  transition: var(--transition);
}

.process-step:hover .process-num {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: scale(1.08);
}

.process-step h5 { font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { font-size: 0.87rem; }

.process-connector {
  position: absolute;
  top: 39px;
  left: 60%;
  width: 80%;
  height: 2px;
  border-top: 2px dashed rgba(90,166,219,0.4);
  z-index: 0;
}

@media (max-width: 991px) {
  .process-connector { display: none; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  position: relative;
}

.testimonial-card .quote-icon {
  color: rgba(247,148,29,0.18);
  font-size: 2.6rem;
  position: absolute;
  top: 20px;
  right: 26px;
}

.testimonial-stars { color: var(--orange); font-size: 0.85rem; margin-bottom: 14px; }

.testimonial-card p.quote-text {
  color: var(--navy);
  font-size: 0.94rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-author h6 { margin-bottom: 2px; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ==========================================================================
   Latest Offers
   ========================================================================== */
.offer-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  color: #fff;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.offer-card:hover { transform: translateY(-8px); }

.offer-card.offer-1 { background: linear-gradient(135deg, #0B1B4B 0%, #16296e 100%); }
.offer-card.offer-2 { background: linear-gradient(135deg, #F7941D 0%, #e07f0a 100%); }
.offer-card.offer-3 { background: linear-gradient(135deg, #5AA6DB 0%, #3d84b8 100%); }

.offer-card .offer-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.offer-card h4 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.offer-card p { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin-bottom: 20px; }

.offer-card .offer-icon {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 6rem;
  color: rgba(255,255,255,0.1);
}

.offer-card a.offer-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  border-bottom: 1.5px solid rgba(255,255,255,0.5);
  padding-bottom: 3px;
}

.offer-card a.offer-link:hover { border-color: #fff; }

/* ==========================================================================
   Partner Airlines & Brands
   ========================================================================== */
.partner-strip { overflow: hidden; position: relative; }

.partner-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: partner-scroll 28s linear infinite;
}

.partner-strip:hover .partner-track { animation-play-state: paused; }

@keyframes partner-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #e9edf5;
  border-radius: var(--radius-sm);
  padding: 16px 26px;
  min-width: 200px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.partner-badge:hover { border-color: var(--sky); transform: translateY(-4px); }

.partner-badge i { font-size: 1.4rem; color: var(--navy); }
.partner-badge span { font-weight: 600; color: var(--navy); font-size: 0.92rem; white-space: nowrap; }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 14px;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--navy);
  padding: 20px 24px;
  font-size: 0.96rem;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--navy);
  color: #fff;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus { box-shadow: none; }

.faq-accordion .accordion-button::after {
  filter: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(1) brightness(2);
}

.faq-accordion .accordion-body {
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: #fff;
}

/* ==========================================================================
   Google Map
   ========================================================================== */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 420px;
  line-height: 0;
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(15%) contrast(1.05); }

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
  background: linear-gradient(120deg, var(--navy) 0%, #142559 100%);
  border-radius: var(--radius);
  padding: 54px 40px;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(90,166,219,0.25) 0%, rgba(90,166,219,0) 70%);
  left: -60px;
  bottom: -100px;
  border-radius: 50%;
}

.newsletter-section h3 { color: #fff; margin-bottom: 8px; }
.newsletter-section p { color: rgba(255,255,255,0.75); margin-bottom: 0; }

.newsletter-form { position: relative; z-index: 2; }

.newsletter-form .form-control {
  border-radius: 50px 0 0 50px;
  border: none;
  padding: 14px 22px;
}

.newsletter-form .btn-nl {
  border-radius: 0 50px 50px 0;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  padding: 0 28px;
  border: none;
  white-space: nowrap;
}

.newsletter-form .btn-nl:hover { background: #fff; color: var(--navy); }

@media (max-width: 991px) {
  .newsletter-section { text-align: center; padding: 40px 24px; }
  .newsletter-form { margin-top: 24px; }
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
  z-index: 999;
  animation: wa-pulse 2.2s infinite;
}

.whatsapp-float:hover { color: #fff; transform: scale(1.08); }

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ==========================================================================
   Section divider wave (alternate signature element)
   ========================================================================== */
.section-tag-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 14px; }

/* Testimonial carousel controls (custom, small) */
.testi-controls { display: flex; gap: 12px; justify-content: center; margin-top: 30px; }

.testi-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #dfe6f2;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testi-controls button:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
