/* ============================================================
   Karmana Travels — Custom Stylesheet
   ============================================================ */

/* --- Google Fonts & Root Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;700&display=swap');

:root {
  --primary:        #1a6fc4;
  --primary-dark:   #0a3d7c;
  --primary-light:  #4a9de8;
  --accent:         #f5a623;
  --accent-dark:    #d4881a;
  --dark:           #12263a;
  --dark-soft:      #1e3a5f;
  --light:          #f4f8fd;
  --text-muted:     #6b7a8d;
  --white:          #ffffff;
  --gradient-blue:  linear-gradient(135deg, #1a6fc4 0%, #0a3d7c 100%);
  --gradient-hero:  linear-gradient(160deg, rgba(10,61,124,0.82) 0%, rgba(26,111,196,0.65) 100%);
  --shadow-card:    0 8px 30px rgba(26,111,196,0.12);
  --shadow-hover:   0 16px 48px rgba(26,111,196,0.22);
  --radius:         14px;
  --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base --- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* --- Utility --- */
.section-padding  { padding: 90px 0; }
.section-title    { font-size: 2.2rem; font-weight: 800; margin-bottom: 0.4rem; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 50px; }
.accent-line {
  display: inline-block;
  width: 60px; height: 4px;
  background: var(--gradient-blue);
  border-radius: 2px;
  margin-bottom: 16px;
}
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom  { background: var(--gradient-blue); }
.bg-light-custom    { background-color: var(--light); }

/* --- Buttons --- */
.btn-primary-custom {
  background: var(--gradient-blue);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(26,111,196,0.3);
  display: inline-block;
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, #0a3d7c 0%, #1a6fc4 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,111,196,0.4);
}

.btn-accent-custom {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245,166,35,0.35);
  display: inline-block;
}
.btn-accent-custom:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,166,35,0.45);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 11px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-main {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(26,111,196,0.1);
  padding: 0.75rem 0;
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar-main.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(26,111,196,0.18);
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Logo image in navbar & footer */
.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-brand .brand-logo-img {
  height: 46px;
  filter: brightness(0) invert(1); /* make logo white on dark footer */
}

.navbar-brand-custom .brand-icon {
  width: 42px; height: 42px;
  background: var(--gradient-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.navbar-brand-custom .brand-text {
  line-height: 1.15;
}
.navbar-brand-custom .brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: block;
}
.navbar-brand-custom .brand-tagline {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.9rem;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 2rem);
}

.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.navbar-nav .dropdown-item {
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}
.navbar-nav .dropdown-item:hover {
  background: var(--light);
  color: var(--primary);
}

.navbar-cta {
  margin-left: 0.5rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-title .highlight {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}
.hero-stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.hero-stat-item .stat-label {
  font-size: 0.82rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll-indicator a {
  color: white;
  font-size: 1.5rem;
  opacity: 0.7;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* Hero slide dots */
.hero-dots {
  position: absolute;
  bottom: 60px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: var(--accent);
  height: 24px;
  border-radius: 4px;
}

/* ============================================================
   SEARCH BAR (Hero)
   ============================================================ */
.hero-search-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}
.hero-search-bar .form-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.hero-search-bar .form-control,
.hero-search-bar .form-select {
  border: 1px solid #e0eaf5;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--light);
}
.hero-search-bar .form-control:focus,
.hero-search-bar .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.12);
}

/* ============================================================
   FEATURED PACKAGES
   ============================================================ */
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(26,111,196,0.08);
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.package-card .card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.package-card .card-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}
.package-card .card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gradient-blue);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.package-card .card-price {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 5px 14px;
  border-radius: 50px;
}
.package-card .card-body {
  padding: 1.4rem;
}
.package-card .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.package-card .card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.package-card .card-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.package-card .card-meta span i {
  color: var(--primary);
}
.package-card .card-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.package-card .card-footer-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  border-top: 1px solid rgba(26,111,196,0.08);
  background: var(--light);
}
.package-card .card-footer-custom .price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.package-card .card-footer-custom .price-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(26,111,196,0.06);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.feature-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}
.feature-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section { background: var(--light); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  margin: 10px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); }

.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text  { font-size: 0.9rem; color: var(--text-muted); font-style: italic; margin-bottom: 1.2rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}
.testimonial-name  { font-weight: 700; font-size: 0.9rem; margin: 0; }
.testimonial-place { font-size: 0.78rem; color: var(--text-muted); }

/* Swiper overrides */
.swiper-pagination-bullet-active { background: var(--primary) !important; }
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary) !important;
  background: white;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 14px !important; font-weight: 900; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-section {
  background: var(--gradient-blue);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: white; font-size: 2.2rem; }
.cta-section p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: 490px;           /* 420px visible + ~70px behind transparent navbar */
  margin-top: -70px;       /* pull up behind sticky navbar so hero image shows */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,15,45,0.88) 0%,
    rgba(10,45,100,0.72) 40%,
    rgba(10,61,124,0.85) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
  color: white;
}
.page-hero-content h1 { color: white; font-size: 2.8rem; }
.page-breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.page-breadcrumb a { color: rgba(255,255,255,0.75); }
.page-breadcrumb a:hover { color: white; }
.page-breadcrumb .separator { opacity: 0.5; }
.page-breadcrumb .current { color: var(--accent); font-weight: 600; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image-wrapper img { border-radius: var(--radius); }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 130px; height: 130px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  box-shadow: 0 8px 30px rgba(26,111,196,0.35);
}
.about-badge .badge-number { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge .badge-text   { font-size: 0.72rem; opacity: 0.9; }

.stat-box {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
  text-align: center;
  border-left: 4px solid var(--primary);
}
.stat-box .number { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-box .label  { font-size: 0.82rem; color: var(--text-muted); }

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-card img {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-light);
  margin-bottom: 1rem;
}
.team-card h5 { font-size: 1rem; margin-bottom: 0.25rem; }
.team-card p  { font-size: 0.82rem; color: var(--primary); font-weight: 600; }

/* ============================================================
   TOURS PAGE
   ============================================================ */
.tour-filter-bar {
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: transparent;
  border: 1.5px solid #d0dff0;
  color: var(--dark);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-blue);
  border-color: transparent;
  color: white;
}

.tour-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  background: var(--white);
  height: 100%;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.tour-card .tour-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.tour-card .tour-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-img-wrap img { transform: scale(1.08); }

.tour-card .tour-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gradient-blue);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.tour-card .tour-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  background: white;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.tour-card .tour-wishlist:hover { background: #ff4757; color: white; }
.tour-card .tour-wishlist i { font-size: 0.9rem; color: #ff4757; }
.tour-card .tour-wishlist:hover i { color: white; }

.tour-card .tour-body { padding: 1.4rem; }
.tour-card .tour-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.tour-card .tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}
.tour-card .tour-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.tour-card .tour-meta i { color: var(--primary); font-size: 0.85rem; }
.tour-card .tour-desc { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 1rem; }
.tour-card .tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  border-top: 1px solid rgba(26,111,196,0.08);
  background: var(--light);
}
.tour-card .tour-price { font-size: 0.75rem; color: var(--text-muted); }
.tour-card .tour-price strong { display: block; font-size: 1.1rem; color: var(--primary); font-weight: 800; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26,111,196,0.06);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-icon {
  width: 64px; height: 64px;
  background: var(--light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gradient-blue);
  color: white;
  transform: rotate(-5deg) scale(1.08);
}
.service-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card p  { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 1rem; }
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li i { color: var(--primary); font-size: 0.8rem; }

/* Process steps */
.process-step {
  text-align: center;
  padding: 1rem;
}
.step-circle {
  width: 60px; height: 60px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  margin: 0 auto 1rem;
  position: relative;
}
.step-circle .step-number {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h6 { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.4rem; }
.process-step p  { font-size: 0.8rem; color: var(--text-muted); }
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  color: var(--primary);
  opacity: 0.4;
  font-size: 1.3rem;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,61,124,0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: white; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
  transform: translateY(10px);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox-modal .modal-dialog { max-width: 900px; }
.lightbox-modal .modal-content {
  background: #111;
  border: none;
  border-radius: var(--radius);
}
.lightbox-modal .modal-body { padding: 0; position: relative; }
.lightbox-modal img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-modal .modal-header {
  border: none;
  padding: 0.75rem 1rem;
  position: absolute;
  top: 0; right: 0;
  z-index: 10;
}
.lightbox-modal .btn-close { filter: invert(1); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.contact-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-item h6 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-info-item p  { font-size: 0.9rem; color: var(--dark); margin: 0; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.contact-form-card .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1.5px solid #dce8f5;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--light);
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.12);
  background: white;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-btn:hover {
  background: #1fb659;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
  animation: none;
}
.whatsapp-btn i { font-size: 1.4rem; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.65); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-main {
  background: var(--dark);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.75);
}
.footer-brand .brand-icon {
  width: 46px; height: 46px;
  background: var(--gradient-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.footer-brand h5 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
.footer-social { display: flex; gap: 10px; margin-top: 1.2rem; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
.footer-heading {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}
.footer-links a i { font-size: 0.65rem; color: var(--primary); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.footer-contact-item i {
  color: var(--primary-light);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { margin: 0; font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ============================================================
   ANIMATIONS (AOS-like fallback)
   ============================================================ */
[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"]    { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="zoom-in"]    { transform: scale(0.9); }
[data-aos].aos-animate  { opacity: 1 !important; transform: none !important; }

/* ============================================================
   UTILITIES / MISC
   ============================================================ */
.bg-gradient-primary { background: var(--gradient-blue); }
.text-accent { color: var(--accent); }

/* ============================================================
   PRELOADER — Travel themed
============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(145deg, #060e28 0%, #0b2255 50%, #0a3d7c 100%);
  overflow: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Floating background circles */
.preloader::before,
.preloader::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,196,0.18) 0%, transparent 70%);
  animation: plBlobFloat 6s ease-in-out infinite alternate;
}
.preloader::before {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
}
.preloader::after {
  width: 500px; height: 500px;
  bottom: -180px; right: -100px;
  animation-delay: -3s;
}
@keyframes plBlobFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

/* Stars */
.pl-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.pl-star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: plStarTwinkle var(--dur, 2s) ease-in-out infinite alternate;
}
@keyframes plStarTwinkle {
  from { opacity: 0.1; transform: scale(1); }
  to   { opacity: 0.9; transform: scale(1.4); }
}

/* Main content wrapper */
.pl-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Logo */
.pl-logo {
  width: 90px; height: 90px;
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 1.2rem;
  animation: plLogoPulse 2s ease-in-out infinite;
  backdrop-filter: blur(10px);
}
.pl-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
@keyframes plLogoPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(56,148,255,0.4), 0 0 30px rgba(26,111,196,0.2); }
  50%      { box-shadow: 0 0 0 12px rgba(56,148,255,0), 0 0 50px rgba(26,111,196,0.5); }
}

/* Brand name */
.pl-brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: .04em;
  margin-bottom: .25rem;
  text-shadow: 0 2px 20px rgba(56,148,255,0.5);
}
.pl-brand-tag {
  font-size: .72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}

/* Flight track */
.pl-track-wrap {
  position: relative;
  width: min(320px, 80vw);
  height: 48px;
  margin-bottom: 1.8rem;
}
.pl-track-line {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.25) 0px,
    rgba(255,255,255,0.25) 6px,
    transparent 6px,
    transparent 14px
  );
  transform: translateY(-50%);
}
/* Start and end destination dots */
.pl-track-dot {
  position: absolute;
  top: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(255,184,0,0.7);
}
.pl-track-dot.start { left: 6px; }
.pl-track-dot.end   { right: -4px; }
/* Plane */
.pl-plane {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: white;
  text-shadow: 0 0 20px rgba(56,148,255,0.9);
  animation: plPlaneRun 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(56,148,255,0.8));
}
@keyframes plPlaneRun {
  0%   { left: 0%;   top: 55%; opacity: 0; }
  10%  { opacity: 1; }
  50%  { top: 42%; }
  90%  { opacity: 1; }
  100% { left: 88%;  top: 55%; opacity: 0; }
}

/* Loading text */
.pl-loading-text {
  font-size: .82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 2px;
}
.pl-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: plDotBounce 1.2s ease-in-out infinite;
  margin-left: 3px;
}
.pl-dot:nth-child(2) { animation-delay: .2s; }
.pl-dot:nth-child(3) { animation-delay: .4s; }
@keyframes plDotBounce {
  0%,80%,100% { transform: translateY(0);   opacity: .5; }
  40%          { transform: translateY(-5px); opacity: 1;  }
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 42px; height: 42px;
  background: var(--gradient-blue);
  color: white;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-card);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .section-padding  { padding: 60px 0; }
  .hero-section     { min-height: 85vh; }
  .hero-stats       { gap: 1.5rem; }
  .hero-dots        { display: none; }
  .navbar-cta       { margin: 0.75rem 0 0; }
  .page-hero        { height: 390px; }
  .page-hero-content h1 { font-size: 2rem; }
  .process-connector { display: none; }
}

@media (max-width: 767.98px) {
  .section-title    { font-size: 1.75rem; }
  .hero-title       { font-size: 2rem; }
  .hero-subtitle    { font-size: 0.95rem; }
  .hero-stats       { gap: 1rem; }
  .hero-stat-item .stat-number { font-size: 1.4rem; }
  .cta-section h2   { font-size: 1.6rem; }
  .about-badge      { width: 100px; height: 100px; bottom: -10px; right: -10px; }
  .about-badge .badge-number { font-size: 1.5rem; }
  .contact-form-card { padding: 1.5rem; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 12px; border-radius: 50%; }
  .whatsapp-btn i { font-size: 1.6rem; }
}

@media (max-width: 575.98px) {
  .hero-search-bar  { padding: 1rem; }
  .page-hero        { height: 350px; }
  .gallery-item img { height: 200px; }
}

/* ============================================================
   SCROLL PROGRESS BAR  (shared)
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  z-index: 99999;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ============================================================
   NAV SEARCH BUTTON  (shared across all pages)
   ============================================================ */
.nav-search-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
  flex-shrink: 0;
}
.nav-search-btn:hover {
  background: rgba(255,255,255,0.28);
  transform: scale(1.05);
}
/* Solid navbar state */
.navbar-main.nav-solid .nav-search-btn {
  background: var(--light);
  border-color: #dce8f5;
  color: var(--primary);
}
.navbar-main.nav-solid .nav-search-btn:hover {
  background: var(--gradient-blue);
  border-color: transparent;
  color: white;
}

/* ============================================================
   SEARCH POPUP MODAL
   ============================================================ */
#searchModal .modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.38);
}
#searchModal .sm-header {
  background: var(--gradient-blue);
  padding: 1.8rem 2rem 0;
  position: relative;
}
#searchModal .sm-header-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}
#searchModal .sm-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
#searchModal .sm-title-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0;
}
#searchModal .sm-title {
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0;
}
#searchModal .sm-close {
  position: absolute;
  top: 1rem; right: 1rem;
}
/* Destination tabs inside modal header */
.sm-dest-tab {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  padding: 8px 18px 11px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  position: relative;
  transition: var(--transition);
}
.sm-dest-tab:hover,
.sm-dest-tab.active {
  color: white;
  background: rgba(255,255,255,0.1);
}
.sm-dest-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}
/* Form body */
#searchModal .sm-body {
  padding: 1.8rem 2rem 2rem;
  background: white;
}
.sm-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sm-label i { color: var(--primary); }
.sm-field {
  width: 100%;
  border: 1.5px solid #dce8f5;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  background: var(--light);
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  font-family: 'Poppins', sans-serif;
}
.sm-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.12);
  background: white;
}
/* Popular tags */
.sm-popular-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pop-srch-tag {
  background: var(--light);
  border: 1.5px solid #dce8f5;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}
.pop-srch-tag:hover {
  background: var(--gradient-blue);
  border-color: transparent;
  color: white;
  transform: scale(1.04);
}
.sm-search-btn {
  background: var(--gradient-blue);
  color: white;
  border: none;
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(26,111,196,0.3);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}
.sm-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26,111,196,0.4);
  background: linear-gradient(135deg, #0a3d7c, #1a6fc4);
}

/* Navbar solid state helper class */
.navbar-main.nav-solid {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 2px 20px rgba(26,111,196,0.12) !important;
  backdrop-filter: blur(12px);
}
.navbar-main.nav-solid .brand-name    { color: var(--primary-dark) !important; }
.navbar-main.nav-solid .brand-tagline { color: var(--text-muted) !important; }
.navbar-main.nav-solid .navbar-nav .nav-link:not(.dropdown-item) {
  color: var(--dark) !important;
}
.navbar-main.nav-solid .navbar-toggler { filter: none !important; }

/* Transparent navbar base (for pages with hero images) */
.navbar-main.nav-transparent {
  background: transparent !important;
  box-shadow: none !important;
}
.navbar-main.nav-transparent .brand-name {
  color: white !important;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
}
.navbar-main.nav-transparent .brand-tagline {
  color: rgba(255,255,255,0.75) !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.navbar-main.nav-transparent .navbar-nav .nav-link:not(.dropdown-item) {
  color: rgba(255,255,255,0.95) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  font-weight: 600;
}
.navbar-main.nav-transparent .navbar-toggler { filter: invert(1) !important; }

@media (max-width: 991.98px) {
  .navbar-main.nav-transparent .navbar-collapse {
    background: rgba(10,40,90,0.95);
    padding: 1rem;
    border-radius: 0 0 16px 16px;
    margin-top: 0.5rem;
    backdrop-filter: blur(12px);
  }
}

/* ============================================================
   GLOBAL REACH SECTION
============================================================ */
.global-reach-section {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
}
.global-reach-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.global-reach-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,60,0.96) 0%, rgba(10,61,124,0.92) 100%);
}
.global-reach-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: .75rem;
}
.global-reach-sub {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}
.global-stat-box {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.global-stat-box:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.global-stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: .4rem;
}
.global-stat-label {
  color: var(--accent);
  font-weight: 600;
  font-size: .9rem;
}
.country-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
  white-space: nowrap;
}
.country-tag:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  color: white;
}
.global-testimonial {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
}
.global-testimonial p {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}
.global-testimonial p::before { content: '\201C'; font-size: 1.4rem; color: var(--accent); line-height: 0; vertical-align: -6px; margin-right: 3px; }
.global-testimonial p::after  { content: '\201D'; font-size: 1.4rem; color: var(--accent); line-height: 0; vertical-align: -6px; margin-left: 3px; }
.gt-author { display: flex; align-items: center; gap: .75rem; }
.gt-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.gt-author strong { color: white; font-size: .9rem; display: block; }
.gt-author span   { color: rgba(255,255,255,.5); font-size: .78rem; }

/* ============================================================
   FLIGHT & HOTEL SPOTLIGHT
============================================================ */
.spotlight-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,111,196,.2);
}
.spotlight-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.spotlight-img-wrap:hover .spotlight-img { transform: scale(1.04); }
.spotlight-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gradient-blue);
  color: white;
  padding: .5rem 1.1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(10,61,124,.4);
}
.spotlight-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient-blue);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 24px rgba(26,111,196,.3);
}
.spotlight-content h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}
.spotlight-feature {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.spotlight-feature i { color: var(--primary); font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }
.spotlight-feature span { line-height: 1.4; }

/* Other Services Strip */
.other-services-strip {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--light-blue) 0%, #f0f7ff 100%);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.os-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.os-items {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  flex: 1;
}
.os-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: white;
  border: 1.5px solid #dce8f8;
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: var(--transition);
}
.os-item:hover {
  background: var(--gradient-blue);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}
.os-item i { font-size: .85rem; }

@media (max-width: 767.98px) {
  .global-reach-title { font-size: 1.8rem; }
  .global-stat-num    { font-size: 2rem; }
  .other-services-strip { flex-direction: column; align-items: flex-start; }
  .spotlight-img      { height: 240px; }
  .spotlight-content h3 { font-size: 1.4rem; }
}

