/* ==========================================================================
   UDAAN HOLIDAYS - Premium Single Page Website Stylesheet
   Theme Colors: Navy Blue (#0F2537), Sky Blue (#00A8FF), Vibrant Orange (#FF6B00)
   ========================================================================== */

:root {
  --primary-navy: #0f2537;
  --primary-dark: #07131e;
  --accent-orange: #ff6b00;
  --accent-orange-hover: #e05e00;
  --accent-cyan: #00a8ff;
  --accent-sky: #e6f4ff;
  --gold: #ffb703;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --card-shadow: 0 10px 30px rgba(15, 37, 55, 0.08);
  --card-shadow-hover: 0 20px 40px rgba(255, 107, 0, 0.15);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-script: 'Caveat', cursive;
}

/* Base & Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

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

.script-font {
  font-family: var(--font-script);
  color: var(--accent-orange);
  font-size: 1.5rem;
  font-weight: 700;
}

.text-orange {
  color: var(--accent-orange) !important;
}

.text-cyan {
  color: var(--accent-cyan) !important;
}

.bg-navy {
  background-color: var(--primary-navy) !important;
}

.bg-light-custom {
  background-color: var(--bg-light) !important;
}

/* Buttons */
.btn-orange {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50rem;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  transition: var(--transition);
}

.btn-orange:hover {
  background: linear-gradient(135deg, #e05e00 0%, var(--accent-orange) 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.45);
}

.btn-outline-orange {
  border: 2px solid var(--accent-orange);
  color: var(--accent-orange);
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: 50rem;
  background: transparent;
  transition: var(--transition);
}

.btn-outline-orange:hover {
  background: var(--accent-orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.btn-navy {
  background-color: var(--primary-navy);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50rem;
  border: none;
  transition: var(--transition);
}

.btn-navy:hover {
  background-color: var(--primary-dark);
  color: var(--accent-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 37, 55, 0.3);
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Glass Navbar */
.navbar-custom {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(15, 37, 55, 0.08);
  padding: 0.6rem 0;
  transition: var(--transition);
}

.navbar-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

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

.nav-link {
  font-weight: 600;
  color: var(--primary-navy) !important;
  margin: 0 0.25rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: 0.5rem;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-orange) !important;
  background: rgba(255, 107, 0, 0.06);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(7, 19, 30, 0.78) 0%, rgba(15, 37, 55, 0.88) 100%), 
              url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  padding: 6rem 0 8rem 0;
}

.hero-overlay-graphic {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  background: radial-gradient(circle at 70% 30%, rgba(0, 168, 255, 0.22) 0%, rgba(255, 107, 0, 0.12) 40%, rgba(15, 37, 55, 0) 70%);
  pointer-events: none;
}

.hero-badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.5rem 1.4rem;
  border-radius: 50rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  animation: pulseBadge 3s ease-in-out infinite alternate;
}

@keyframes pulseBadge {
  0% { transform: scale(1); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25); }
  100% { transform: scale(1.03); box-shadow: 0 10px 30px rgba(255, 107, 0, 0.35); }
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #ffffff !important; /* Fixed: High contrast white */
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-title span {
  color: #ff6b00 !important;
  text-shadow: 0 4px 20px rgba(255, 107, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95) !important;
  max-width: 620px;
  margin-bottom: 2.2rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Floating Plane Animation */
.plane-animation {
  position: absolute;
  right: 12%;
  top: 15%;
  font-size: 2.5rem;
  color: var(--accent-orange);
  opacity: 0.9;
  filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.6));
  animation: floatPlane 8s ease-in-out infinite alternate;
}

@keyframes floatPlane {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  50% { transform: translateY(-30px) rotate(8deg) scale(1.1); }
  100% { transform: translateY(15px) rotate(-4deg) scale(0.95); }
}

/* Hero Right Floating Cards Stack */
.hero-cards-wrapper {
  position: relative;
  height: 380px;
  width: 100%;
}

.hero-float-card-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 290px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 1.25rem;
  padding: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  animation: floatSlow 6s ease-in-out infinite alternate;
  z-index: 2;
}

.hero-float-card-2 {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 270px;
  background: rgba(15, 37, 55, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 168, 255, 0.4);
  border-radius: 1.25rem;
  padding: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  animation: floatReverse 7s ease-in-out infinite alternate;
  z-index: 3;
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-22px); }
}

@keyframes floatReverse {
  0% { transform: translateY(0px); }
  100% { transform: translateY(20px); }
}

@keyframes floatPlane {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
  100% { transform: translateY(10px) rotate(-2deg); }
}

/* Quick Search Card overlaying Hero */
.search-card-wrapper {
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}

.search-card {
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 15px 35px rgba(15, 37, 55, 0.12);
  padding: 1.75rem 2rem;
  border: 1px solid rgba(0, 168, 255, 0.15);
}

/* Stats Counter Bar */
.stats-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #163652 100%);
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Header */
.section-title-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-subtitle {
  color: var(--accent-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  display: block;
}

.section-main-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.section-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
  margin: 0 auto;
  border-radius: 2px;
}

/* Mission & Vision Cards */
.info-card {
  background: var(--bg-white);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent-orange);
  transition: var(--transition);
}

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

.info-card:hover::before {
  width: 8px;
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  background: var(--accent-sky);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

/* Service Card */
.service-card {
  background: var(--bg-white);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 168, 255, 0.15);
  border-color: rgba(0, 168, 255, 0.3);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(0, 168, 255, 0.1) 100%);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;

}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Filter Nav Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: var(--primary-navy);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50rem;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary-navy);
  color: #fff;
  border-color: var(--primary-navy);
  box-shadow: 0 4px 15px rgba(15, 37, 55, 0.2);
}

/* Destination Package Card */
.pkg-card {
  background: var(--bg-white);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 37, 55, 0.15);
}

.pkg-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2537 0%, #163652 100%);
}

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

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

.pkg-badge-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 37, 55, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 50rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.pkg-badge-price span {
  color: var(--accent-orange);
}

.pkg-badge-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--accent-orange);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

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

.pkg-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pkg-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}

.pkg-meta i {
  color: var(--accent-orange);
  margin-right: 0.3rem;
}

.pkg-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Inclusions Pills Grid */
.inclusion-pill-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  min-height: 160px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.inclusion-pill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.12);
  border-color: var(--accent-orange);
}

.inclusion-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-sky);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 0.75rem auto;
}

/* Process Steps Timeline */
.process-step-card {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-navy) 0%, #1e3a5f 100%);
  color: var(--accent-orange);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 6px 15px rgba(15, 37, 55, 0.2);
  border: 3px solid #ffffff;
  transition: var(--transition);
}

.process-step-card:hover .step-number {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%);
  color: #fff;
  transform: scale(1.15);
}

/* Testimonials */
.testimonial-card {
  background: var(--bg-white);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: rgba(255, 107, 0, 0.2);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}

.stars {
  color: #ffc107;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Contact Card */
.contact-info-box {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #163652 100%);
  color: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: var(--card-shadow);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Form inputs */
.form-control, .form-select {
  border-radius: 0.75rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.15);
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 1.5rem 0;
  font-size: 0.925rem;
}

footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 3px;
  background: var(--accent-orange);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 5px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon-btn:hover {
  background: var(--accent-orange);
  color: #fff;
  transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-navy);
  color: var(--accent-orange);
  transform: translateY(-4px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1da851;
  color: #fff;
  transform: scale(1.1);
}

/* Media Queries & Mobile Responsiveness */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
}

body > * {
  max-width: 100% !important;
}

.main-wrapper {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
}

p, span, h1, h2, h3, h4, h5, h6, a, div, button {
  overflow-wrap: break-word;
  word-break: break-word;
}

.container, .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.row {
  margin-left: -10px !important;
  margin-right: -10px !important;
}

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

/* Force Reset AOS transform translation on mobile devices (< 768px) to stop 100px translate overflow */
@media (max-width: 767.98px) {
  [data-aos], [data-aos="fade-left"], [data-aos="fade-right"], [data-aos="fade-up"], [data-aos="zoom-in"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 4rem 0 6rem 0;
    min-height: auto;
    text-align: center;
  }

  .hero-overlay-graphic {
    width: 100%;
  }

  .hero-badge-glow {
    margin: 0 auto 1.25rem auto;
  }

  .hero-title {
    font-size: 2.6rem;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 1.75rem auto;
    text-align: center;
    font-size: 1.1rem;
  }

  .hero-section .d-flex {
    justify-content: center;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 0;
  }

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

  .plane-animation {
    display: none;
  }

  .search-card-wrapper {
    margin-top: -3rem;
  }

  .search-card {
    padding: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .top-bar {
    font-size: 0.8rem;
    padding: 0.5rem 0;
  }

  .top-bar .container {
    justify-content: center !important;
    flex-direction: column;
    gap: 0.4rem !important;
    text-align: center;
  }

  .top-bar .d-flex {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem !important;
  }

  .navbar-custom {
    padding: 0.4rem 0;
  }

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

  .navbar-brand span.fs-4 {
    font-size: 1.25rem !important;
  }

  .hero-section {
    padding: 3rem 0 5rem 0;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .search-card-wrapper {
    margin-top: -2rem;
  }

  .search-card {
    padding: 1rem;
    border-radius: 1rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

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

  .section-subtitle {
    font-size: 0.8rem;
  }

  .service-card, .info-card, .pkg-card, .testimonial-card {
    padding: 1.25rem;
  }

  .filter-tabs {
    gap: 0.4rem;
    margin-bottom: 1.75rem;
  }

  .filter-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

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

  .contact-info-box {
    padding: 1.75rem 1.25rem;
  }

  .contact-item {
    gap: 0.85rem;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn-lg {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .hero-section .d-flex.flex-wrap {
    flex-direction: column;
    gap: 0.75rem !important;
  }

  .hero-section .d-flex.flex-wrap a {
    width: 100%;
    text-align: center;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 4.5rem;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .modal-dialog {
    margin: 0.5rem;
  }
}
