:root {
  /* === BRAND COLORS === */

  /* Primary – Trust / Main UI (calm & professional) */
  --primary-color: #2ca3c7;
  /* Deep Teal */

  /* Secondary – Nature / Support color (Emerald Green FIXED here) */
  --secondary-color: #1f9158;
  /* Emerald Green */

  /* Accent – Water / Links / UI accents */
  --accent-color: #2ca3c7;
  /* Soft Cyan */

  /* Highlight – Premium / Ratings / Icons */
  --highlight-color: #2ca3c7;
  /* Warm Gold */

  /* === TEXT COLORS === */
  --text-dark: #181818;
  /* Deep Slate (better than pure black) */
  --text-light: #2c2c2c;
  /* Soft Slate */

  /* === BACKGROUNDS === */
  --bg-light: #ffffff;
  --bg-muted: #f8fafc;

  /* === UI SYSTEM === */
  --border-radius: 16px;
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.bg-dark {
  background-color: var(--secondary-color) !important;
}
.bg-orange {
  background-color:#db8134 !important;
}
p {
  color: var(--text-light);
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* === Loader === */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.loader-container.loaded {
  opacity: 0;
  pointer-events: none;
}

/* Larger GIF loader with max-width control for small screens */
.loader-img {
  width: 200px;
  /* desktop default */
  max-width: 60%;
  height: auto;
  display: block;
}

/* Larger plane fallback in case GIF fails */
.plane-loader {
  font-size: 4.5rem;
  color: var(--primary-color);
  animation: fly 2s infinite ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .loader-img {
    width: 160px;
  }

  .plane-loader {
    font-size: 3rem;
  }
}

@media (min-width: 1400px) {
  .loader-img {
    width: 320px;
  }

  .plane-loader {
    font-size: 6rem;
  }
}

@keyframes fly {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

.bg-light {
  background: #fff !important;
}

.small {
  font-size: 16px !important;
}

.text-highlight {
  color: var(--highlight-color) !important;
}

/* === Navigation === */
.trans-nav {
  /* background: #00000038; Match brand primary color exactly */
  transition: var(--transition);
  padding: 15px 0;
  margin: 20px 45px 0 45px;
  border-radius: 20px;
}

.trans-nav.scrolled {
  background: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.205);
  padding: 10px 0;
  margin: 0px 45px 0 45px;
  border-radius:0 0 20px 20px;
}

@media (max-width: 991px) {
  .trans-nav,
  .trans-nav.scrolled {
    margin: 10px 20px 0 20px;
    border-radius: 15px;
  }
  .trans-nav.scrolled {
    border-radius: 0 0 15px 15px;
  }
}

@media (max-width: 576px) {
  .trans-nav,
  .trans-nav.scrolled {
    margin: 5px 10px 0 10px;
    border-radius: 10px;
  }
  .trans-nav.scrolled {
    border-radius: 0 0 10px 10px;
  }
}

.logo-img {
  height: 70px;
  width: auto;
}

.logo-text-wrapper {
  line-height: 1.1;
}

.logo-text-top {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color); /* Lime green for Travlla text */
  font-family: 'Handlee', cursive;
}

.logo-text-bottom {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
}

.trans-nav.scrolled .logo-text-bottom {
  color: #0d4a4d;
}

.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  color: #fff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Scrolled state text color */
.trans-nav.scrolled .nav-link {
  color: #333 !important;
}

/* Underline base */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: currentColor; /* Matches text color automatically */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Hover + Active */
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.phone-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.phone-box:hover {
  background: #ffffff;
  color: var(--secondary-color) !important;
}

.phone-link {
  color: #fff !important;
}

.trans-nav.scrolled .phone-link {
  color: #0d4a4d !important;
}

.trans-nav.scrolled .phone-box {
  border-color: var(--secondary-color);
  color: var(--secondary-color) !important;
}
.trans-nav.scrolled .phone-box:hover {
  background: var(--secondary-color);
  color: #ffffff !important;
}

/* === Mobile Navigation (Hamburger Menu) === */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-top: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .trans-nav.scrolled .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
  }
  
  /* Mobile nav links styling */
  .navbar-collapse .nav-link {
    color: #333 !important;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 5px;
    display: block;
  }
  
  /* Mobile nav link hover */
  .navbar-collapse .nav-link:hover {
    background: rgba(44, 163, 199, 0.1);
  }
  
  /* Mobile nav link active state */
  .navbar-collapse .nav-link.active {
    background: var(--primary-color);
    color: #fff !important;
  }
  
  .navbar-collapse .nav-link.active::after {
    display: none; /* Hide underline on mobile */
  }
  
  /* Mobile Contact Us button */
  .navbar-collapse .btn-primary {
    width: 100%;
    margin-top: 10px;
  }
  
  .navbar-collapse .btn-primary.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
  }
  
  /* Mobile phone info styling */
  .nav-right-info {
    padding: 15px;
    background: rgba(44, 163, 199, 0.1);
    border-radius: 10px;
    text-align: center;
  }
  
  .nav-right-info .phone-link {
    color: var(--primary-color) !important;
  }
}

/* === Hero Section === */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 45px;
  right: 45px;
  border-radius: 20px;
  background: #00000060;
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-overlay {
    left: 20px;
    right: 20px;
    border-radius: 15px;
  }
}

@media (max-width: 576px) {
  .hero-overlay {
    left: 10px;
    right: 10px;
    top: 15px;
    bottom: 15px;
    border-radius: 10px;
  }
}

.hero-right-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
    background-size: 400px;
    background-repeat: no-repeat;
    background-position: center right;
    mix-blend-mode: overlay;
    opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 5;
  color: #fff;
  max-width: 800px;
  top: 70px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px 0;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-description {
        font-size: 15px;
    }
    .hero-footer-content {
        align-items: center !important;
        text-align: center;
    }
    .hero-footer-content .d-flex {
        flex-direction: column;
        width: 100%;
    }
    .hero-footer-content .btn {
        width: 100%;
        max-width: 280px;
    }
    .hero-content {
        text-align: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 2rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    .hero-description {
        font-size: 14px;
    }
}

.btn-lime {
  background-color: #a4d41c;
  color: #004d4d;
  font-weight: 700;
  border: none;
  padding: 12px 35px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-lime:hover {
  background-color: #fff;
  color: #004d4d;
  transform: translateY(-3px);
}

.trans-nav .btn-primary {
    padding: 8px 25px !important;
    font-size: 0.95rem;
}

.trans-nav.scrolled .btn-primary {
    box-shadow: 0 4px 15px rgba(44, 163, 199, 0.3);
}

/* Decorative Elements */
.deco-chameleon {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 275px;
  z-index: 10;
  animation: floatSmall 5s infinite ease-in-out;
  will-change: transform;
}

.deco-butterfly {
  position: absolute;
  top: 25%;
  right: 35%;
  width: 135px;
  z-index: 6;
  animation: butterflyMove 10s infinite linear;
  will-change: transform;
}

.deco-cloud {
  position: absolute;
  width: 400px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 2;
  will-change: transform;
}

.cloud-1 { top: 20%; left: -100px; animation: cloudMove 60s infinite linear; }
.cloud-2 { bottom: 10%; right: -100px; animation: cloudMove 45s infinite linear reverse; }

@keyframes floatSmall {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes butterflyMove {
  0% { transform: translate(0, 0) rotate(0); }
  25% { transform: translate(20px, -20px) rotate(10deg); }
  50% { transform: translate(0, -40px) rotate(-5deg); }
  75% { transform: translate(-20px, -20px) rotate(-10deg); }
  100% { transform: translate(0, 0) rotate(0); }
}

@keyframes cloudMove {
  from { transform: translateX(-100px); }
  to { transform: translateX(110vw); }
}

/* === Rain Animation === */
.rain-drop {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  width: 1px;
  height: 60px;
  top: -60px;
  z-index: 4;
  animation: fall linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

@keyframes fall {
  to {
    transform: translateY(110vh);
  }
}

/* === Hero Circle Animation === */
.twm-img-bg-circle-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}

.twm-img-bg-circle1-wrap,
.twm-img-bg-circle2-wrap,
.twm-img-bg-circle3-wrap {
    position: absolute;
    border-radius: 50%;
}

/* Position them on the right side */
.twm-img-bg-circle1-wrap {
    width: 600px;
    height: 600px;
    right: -150px;
    top: -50px;
}

.twm-img-bg-circle2-wrap {
    width: 800px;
    height: 800px;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.twm-img-bg-circle3-wrap {
    width: 1000px;
    height: 1000px;
    right: -350px;
    bottom: -200px;
}

.twm-img-bg-circle1,
.twm-img-bg-circle2,
.twm-img-bg-circle3 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.twm-img-bg-circle1 span,
.twm-img-bg-circle2 span,
.twm-img-bg-circle3 span {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    /* Correct dot alignment on the line */
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.twm-img-bg-circle1 span {
    background: #a4d41c; /* Lime Green Dot */
}

.twm-img-bg-circle2 span {
    background: #fff; /* White Dot */
}

.twm-img-bg-circle3 span {
    background: var(--primary-color); /* Brand Teal Dot */
}

/* Rotations with better performance */
.rotate-center {
    animation: rotate-center 40s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.rotate-center-reverse {
    animation: rotate-center-reverse 60s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes rotate-center {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate-center-reverse {
    0% { transform: rotate(0); }
    100% { transform: rotate(-360deg); }
}

/* === Components & Buttons === */
.btn-primary {
  font-size: 16px;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(6, 97, 104, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 50px;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--secondary-color);
  transition: var(--transition);
  z-index: -1;
}

.btn-primary:hover,
.btn-primary.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
}

.btn-primary:hover::before {
  width: 100%;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }
}

.bg-cloud {
  background-color: #ffffff;
}

.bg-pattern-2 {
    background-image: url('../img/home/patern-2.png');
    background-repeat: repeat;
    background-position: center;
}

.section-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.bg-muted-custom {
    background-color: #f1f5f9;
}

/* === Utilities === */
.shadow-bx {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
  transition: var(--transition);
}

.shadow-bx:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12) !important;
}

.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.transition {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* 1. Image Zoom & Subtle Tilt */
.img-hover-creative {
    transition: var(--transition);
}
.img-hover-creative:hover {
    transform: scale(1.03) rotate(-1deg);
}

/* 2. Badge Pulse Glow */
.badge-glow-hover {
    transition: var(--transition);
}
.badge-glow-hover:hover {
    box-shadow: 0 0 20px rgba(44, 163, 199, 0.4) !important;
    transform: scale(1.05) translateY(-5px);
}

/* 3. Planning Card Icon Pop */
.planning-card:hover .icon-box {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    transform: scale(1.2) rotate(15deg);
}
.planning-card:hover h5 {
    color: var(--secondary-color);
}

/* 4. Journey Badge Shine */
.journey-badge {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.journey-badge:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-5px);
    color:#fff;
}
.journey-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255,255,255,0.2);
    transform: rotate(30deg);
    transition: 0.5s;
}
.journey-badge:hover::after {
    left: 120%;
}

/* 5. Expert Icon Flip */
.expert-box:hover .icon-box {
    transform: rotateY(180deg);
    background-color: var(--secondary-color) !important;
    color: #fff !important;
}

.icon-box:hover {
  transform: rotateY(180deg);
}

.text-primary {
  color: var(--text-dark) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--text-dark) !important;
}

.bg-secondary {
  background-color: var(--text-dark) !important;
}

/* === Premium Carousel & Cards === */
.popular-tours-carousel .item {
  margin: 10px;
  padding-bottom: 20px;
}

.destination-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 450px;
  /* Increased height */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Removed transition for better performance during autoplay */
}

/* Hover effect disabled to prevent lag during carousel autoplay */
/* .destination-card:hover img {
  transform: scale(1.1);
} */

/* NEW CARD STYLE (PROFILE-LIKE) */
.tour-card {
  background: #ffffff;
  height: 100%;
  transition: var(--transition);
}

.tour-card:hover {
  transform: translateY(-6px);
}

/* IMAGE BLOCK */
.tour-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-image img {
  transform: scale(1.08);
}

/* CONTENT BLOCK */
.tour-card-body {
  background: #ffffff;
}

.tour-card-body h4 {
  font-size: 1.25rem;
  color: var(--text-dark);
}

.tour-card-body p {
  color: var(--text-light);
  line-height: 1.6;
}

.card-content {
  position: absolute;
  bottom: 0px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: #fff;
  /* Removed transform and transition for better performance */
}

/* Hover animation disabled for performance */
/* .destination-card:hover .card-content {
  transform: translateY(0);
} */

.card-content h4 {
  font-weight: 800;
  margin-bottom: 5px;
  font-size: 1.5rem;
}

/* Owl Carousel Styling */
.owl-nav {
  position: absolute;
  top: -80px;
  right: 0;
  display: flex;
  gap: 10px;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  background: #fff !important;
  color: var(--primary-color) !important;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 20px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.owl-nav button:hover {
  background: var(--secondary-color) !important;
  color: #fff !important;
  transform: scale(1.1);
}

.owl-dots {
  text-align: center;
  margin-top: 30px;
}

.owl-dot span {
  width: 12px;
  height: 12px;
  background: #e0e0e0 !important;
  margin: 5px;
  border-radius: 50%;
  display: block;
  transition: var(--transition);
}

.owl-dot.active span {
  background: var(--secondary-color) !important;
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--secondary-color);
}

/* === Footer === */
.footer-links a {
  color: #fff !important;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: var(--transition);
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--bg-light);
  padding-left: 15px;
}

.footer-links a::before {
  content: "\F285";
  /* Bootstrap Icon arrow */
  font-family: "bootstrap-icons";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: var(--transition);
  color: #fff;
}

.footer-links a:hover::before {
  left: 0;
  opacity: 1;
}

/* === Contact Form === */
.form-control,
.form-select {
  border: 1px solid #7fbb7b !important;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(255, 170, 13, 0.1);
  background-color: #fff !important;
}

/* about home starts  */

/* =========================================================
   TRAVEL STYLE SECTION BACKGROUND (IMAGE INSPIRED)
   ========================================================= */
.travel-bg {
  position: relative;
  background: #71d0ed5d;
}

@keyframes waveAnimation {
  0%,
  100% {
    transform: translateX(0) translateY(0) scale(1);
  }

  50% {
    transform: translateX(-8px) translateY(-3px) scale(1.08);
  }
}

/* Wave top */
/* .travel-bg::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 78px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0,40 C120,70 320,0 520,20 720,40 920,80 1120,60 1320,40 1440,20 1440,20 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center top;
  background-size: cover;
  z-index: 1;
} */

/* Wave bottom */
/* .travel-bg::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 78px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0,30 C160,80 360,60 560,40 760,20 960,10 1160,30 1360,50 1440,60 1440,60 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: cover;
  z-index: 1;
} */

/* =========================================================
   FLOATING DECORATIVE SHAPES
   ========================================================= */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation: floatY 10s infinite ease-in-out;
  z-index: 0;
}

.shape-1 {
  width: 180px;
  height: 180px;
  background: rgba(22, 163, 74, 0.15);
  top: 12%;
  left: -60px;
}

.shape-2 {
  width: 260px;
  height: 260px;
  background: rgba(225, 29, 72, 0.15);
  bottom: 18%;
  right: -80px;
  animation-duration: 14s;
}

.shape-3 {
  width: 120px;
  height: 120px;
  background: rgba(8, 145, 178, 0.15);
  top: 55%;
  right: 15%;
  animation-duration: 8s;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================================================
   IMAGE GRID
   ========================================================= */
.creative-image-grid {
  position: relative;
  z-index: 2;
}

.main-image-wrapper {
  position: relative;
}

.main-image-wrapper img {
  border-radius: 24px;
}

.main-image-wrapper {
  position: relative;
}

/* Image overlay */
.image-overlay-pattern {
  position: absolute;
  inset: 0;
  border-radius: 24px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Decorative circle */
.decorative-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 6px dashed #2ca3c794 !important;
  border-radius: 50%;
  top: -30px;
  right: -30px;
  animation: spin 20s linear infinite;
  z-index: -1;
}

/* =========================================================
   CONTENT SIDE
   ========================================================= */
.content-wrapper {
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }
}

.section-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .section-main-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .section-main-heading {
    font-size: 1.9rem;
  }
}

@media (max-width: 576px) {
  .section-main-heading {
    font-size: 1.6rem;
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 142, 167, 0.1);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.gradient-text {
  color: var(--primary-color);
}

/* =========================================================
   FEATURES
   ========================================================= */
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 142, 167, 0.15);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =========================================================
   BUTTONS (MATCH YOUR SYSTEM)
   ========================================================= */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .decorative-circle {
    display: none;
  }
}

/* about-home ends */

/* =========================================================
   FRESH DESTINATIONS & SERVICES SECTION
   ========================================================= */

.destinations-services-zone {
  position: relative;
  background: var(--primary-color);
  overflow: hidden;
  padding: 100px 0;
}

/* =========================================================
   FLOATING DECORATIVE ORBS
   ========================================================= */
.zone-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.float-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  animation: orbFloat 12s infinite ease-in-out;
}

.orb-alpha {
  width: 300px;
  height: 300px;
  background: rgba(22, 163, 74, 0.15);
  top: 10%;
  left: -100px;
}

.orb-beta {
  width: 400px;
  height: 400px;
  background: rgba(8, 145, 178, 0.15);
  bottom: 5%;
  right: -120px;
  animation-duration: 16s;
  animation-delay: -4s;
}

.orb-gamma {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.15);
  top: 50%;
  right: 20%;
  animation-duration: 10s;
  animation-delay: -2s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* =========================================================
   LEFT PANEL: DESTINATIONS
   ========================================================= */
.destinations-panel {
  position: relative;
  z-index: 2;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.panel-heading {
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1.3;
}

.gradient-highlight {
  color: var(--primary-color);
}

.panel-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.dest-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.dest-chip i {
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dest-chip:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Customization Box */
.custom-travel-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.custom-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--secondary-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.3);
}

.custom-icon-wrap i {
  font-size: 1.6rem;
  color: #ffffff;
}

.custom-content h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.custom-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* =========================================================
   RIGHT PANEL: AIRPORT SERVICES
   ========================================================= */
.airport-service-showcase {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Header */
.showcase-header {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 142, 167, 0.1);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(30, 142, 62, 0.1);
  color: var(--secondary-color);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

.showcase-title {
  font-size: 2rem;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.showcase-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.price-display {
  text-align: right;
  background: var(--accent-color);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.25);
  min-width: 120px;
}

.price-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  margin-top: 4px;
}

/* Locations Matrix */
.locations-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.location-tile {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(8, 145, 178, 0.15);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.location-tile i {
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.location-tile:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(8, 145, 178, 0.25);
}

.location-tile:hover i {
  color: var(--secondary-color);
}

/* Tourist Highlight */
.tourist-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 163, 74, 0.08);
  padding: 12px 18px;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
}

.tourist-highlight i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.tourist-highlight p {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.95rem;
  font-style: italic;
}

/* Policy Highlight */
.policy-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fef3c7;
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid var(--highlight-color);
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.15);
}

.policy-icon-circle {
  width: 48px;
  height: 48px;
  background: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.policy-icon-circle i {
  font-size: 1.4rem;
  color: #ffffff;
}

.policy-text h6 {
  font-size: 1.1rem;
  color: #795548;
  margin-bottom: 6px;
}

.policy-text p {
  font-size: 0.9rem;
  color: #6d4c41;
  line-height: 1.5;
}

/* Action Buttons */
.action-buttons-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid transparent;
  font-family: "Outfit", sans-serif;
}

.btn-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.btn-action-primary {
  background: var(--secondary-color);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.3);
}

.btn-action-primary::before {
  background: var(--primary-color);
}

.btn-action-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 142, 167, 0.4);
}

.btn-action-primary:hover::before {
  width: 100%;
}

.btn-action-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-action-outline::before {
  background: var(--primary-color);
}

.btn-action-outline:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 142, 167, 0.25);
}

.btn-action-outline:hover::before {
  width: 100%;
}

/* =========================================================
   SECTION 1: ADDITIONAL DESTINATIONS WE COVER
   ========================================================= */
/* =========================================================
   FRESH DESTINATIONS HUB - CREATIVE MAP STYLE
   ========================================================= */

.explore-destinations-hub {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding: 100px 0;
}

/* Background decoration */
.explore-destinations-hub::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(8, 145, 178, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.explore-destinations-hub::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(22, 163, 74, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

/* =========================================================
   LEFT SIDE - CONTENT
   ========================================================= */
.hub-content-wrapper {
  position: relative;
  z-index: 2;
}

/* Journey Badge */
.journey-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 163, 74, 0.1);
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid rgba(0, 142, 167, 0.2);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 142, 167, 0.1);
  transition: all 0.3s ease;
}

.journey-badge i {
  font-size: 1.2rem;
}

.journey-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 142, 167, 0.2);
}

/* Heading */
.hub-heading {
  font-size: 3rem;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-family: "Outfit", sans-serif;
}

.gradient-text-effect {
  color: var(--primary-color);
  display: inline-block;
}

/* Description */
.hub-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* =========================================================
   DESTINATION PILLS - INTERACTIVE GRID
   ========================================================= */
.destination-pills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 50px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.pill-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: left 0.5s ease;
}

.pill-item:hover::before {
  left: 100%;
}

.pill-item i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

/* Category-based colors */
.pill-item[data-category="temple"] {
  border-color: rgba(255, 152, 0, 0.3);
}

.pill-item[data-category="temple"]:hover {
  background: #f97316;
  color: #ffffff;
  border-color: #f97316;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.pill-item[data-category="temple"]:hover i {
  transform: scale(1.15);
  color: #ffffff;
}

.pill-item[data-category="coastal"] {
  border-color: rgba(0, 142, 167, 0.3);
}

.pill-item[data-category="coastal"]:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}

.pill-item[data-category="coastal"]:hover i {
  transform: scale(1.15);
  color: #ffffff;
}

.pill-item[data-category="spiritual"] {
  border-color: rgba(156, 39, 176, 0.3);
}

.pill-item[data-category="spiritual"]:hover {
  background: #ac2ef0;
  color: #ffffff;
  border-color: #ac2ef0;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(172, 46, 240, 0.3);
}

.pill-item[data-category="spiritual"]:hover i {
  transform: scale(1.15);
  color: #ffffff;
}

.pill-item[data-category="metro"] {
  border-color: rgba(30, 142, 62, 0.3);
}

.pill-item[data-category="metro"]:hover {
  background: var(--secondary-color);
  color: #ffffff;
  border-color: var(--secondary-color);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
}

.pill-item[data-category="metro"]:hover i {
  transform: scale(1.15);
  color: #ffffff;
}

/* =========================================================
   CTA ROW
   ========================================================= */
.hub-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: "Outfit", sans-serif;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--secondary-color);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 142, 167, 0.4);
}

.cta-button:hover::before {
  width: 100%;
}

.cta-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(4px);
}

.cta-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-info i {
  font-size: 1.1rem;
}

/* =========================================================
   RIGHT SIDE - MAP VISUALIZATION
   ========================================================= */
.destinations-map-visual {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background decoration */
.map-bg-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: rgba(8, 145, 178, 0.06);
  border-radius: 50%;
  animation: mapPulse 4s ease-in-out infinite;
}

@keyframes mapPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

/* Central Hub */
.map-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.hub-core {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
  position: relative;
  z-index: 2;
}

.hub-core i {
  font-size: 2rem;
  color: #ffffff;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.hub-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* Map Points */
.map-point {
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.map-point:hover {
  transform: scale(1.15);
  z-index: 20;
}

.point-dot {
  width: 16px;
  height: 16px;
  background: var(--secondary-color);
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(30, 142, 62, 0.4);
  animation: pointPulse 2s ease-in-out infinite;
}

@keyframes pointPulse {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(30, 142, 62, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(30, 142, 62, 0.7);
  }
}

.point-label {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-point:hover .point-label {
  opacity: 1;
}

/* Point Positions */
.point-1 {
  top: 15%;
  right: 25%;
}

.point-2 {
  top: 30%;
  left: 10%;
}

.point-3 {
  bottom: 25%;
  left: 20%;
}

.point-4 {
  bottom: 15%;
  right: 30%;
}

.point-5 {
  top: 45%;
  right: 15%;
}

/* Connection Lines */
.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.line-path {
  stroke: rgba(0, 142, 167, 0.2);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 5, 5;
  animation: lineDash 20s linear infinite;
}

@keyframes lineDash {
  to {
    stroke-dashoffset: -100;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .hub-heading {
    font-size: 2.5rem;
  }

  .destination-pills-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .destinations-map-visual {
    height: 400px;
    margin-top: 40px;
  }

  .hub-core {
    width: 70px;
    height: 70px;
  }

  .hub-core i {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hub-heading {
    font-size: 2rem;
  }

  .hub-description {
    font-size: 1rem;
  }

  .destination-pills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pill-item {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .destinations-map-visual {
    height: 350px;
  }

  .hub-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .explore-destinations-hub {
    padding: 60px 0;
  }

  .hub-heading {
    font-size: 1.8rem;
  }

  .destination-pills-grid {
    gap: 8px;
  }

  .pill-item {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .destinations-map-visual {
    height: 300px;
  }

  .hub-core {
    width: 60px;
    height: 60px;
  }

  .hub-core i {
    font-size: 1.5rem;
  }

  .point-dot {
    width: 12px;
    height: 12px;
  }

  .point-label {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}

/* =========================================================
   SECTION 2: AIRPORT & RAILWAY PICKUP SERVICES
   ========================================================= */
/* =========================================================
   PROFESSIONAL AIRPORT PICKUP SECTION
   ========================================================= */

.professional-pickup-section {
  position: relative;
  background-image: url("./../img/home/patern-2.png");
  /* change path */
  overflow: hidden;
  padding: 100px 0;
}

/* =========================================================
   SUBTLE BACKGROUND DECORATION
   ========================================================= */
.pickup-subtle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bg-gradient-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.orb-left {
  width: 500px;
  height: 500px;
  background: rgba(22, 163, 74, 0.15);
  top: 10%;
  left: -200px;
}

.orb-right {
  width: 600px;
  height: 600px;
  background: rgba(225, 29, 72, 0.15);
  bottom: -100px;
  right: -250px;
}

/* =========================================================
   SECTION HEADER
   ========================================================= */

/* Professional Availability Badge */
.service-availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 142, 167, 0.08);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(0, 142, 167, 0.15);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 142, 167, 0.08);
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
  position: relative;
  animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.status-indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
  animation: statusRipple 2s ease-out infinite;
}

@keyframes statusRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

/* Main Heading */
.section-main-heading {
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--text-dark);
  font-family: "Outfit", sans-serif;
}

.text-highlight {
  color: var(--highlight-color);
}

.text-white-50 {
  color: #fff !important;
}

/* Lead Text */
.section-lead-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* =========================================================
   PROFESSIONAL LOCATION CARDS
   ========================================================= */
.professional-locations-grid:not(.owl-loaded) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.professional-locations-grid {
  position: relative;
  z-index: 2;
}

.professional-locations-grid .owl-stage {
  display: flex !important;
}

.professional-locations-grid .owl-item {
  display: flex !important;
  height: auto !important;
}

.professional-locations-grid .pro-location-card {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.pro-location-card {
  background: #ffffff;
  border: 2px solid rgba(0, 142, 167, 0.12);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.pro-location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary-color);
  transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.pro-location-card:hover::before {
  height: 100%;
}

.pro-location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 142, 167, 0.15);
  border-color: transparent;
}

.location-icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.location-icon-circle i {
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.pro-location-card:hover .location-icon-circle {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.pro-location-card:hover .location-icon-circle i {
  color: #ffffff;
}

.location-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  transition: color 0.4s ease;
}

.pro-location-card:hover .location-title {
  color: #ffffff;
}

.location-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  display: block;
  transition: color 0.4s ease;
}

.pro-location-card:hover .location-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.card-hover-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.pro-location-card:hover .card-hover-line {
  width: 80%;
}

/* =========================================================
   PRICING INFO BOX
   ========================================================= */
.pricing-info-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 142, 167, 0.1);
}

.pricing-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(0, 142, 167, 0.1);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: "Outfit", sans-serif;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-dark);
}

.feature-row i {
  font-size: 1.2rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}

/* =========================================================
   CTA CONTENT AREA
   ========================================================= */
.cta-content-area {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.cta-description {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-action-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-trust-text {
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-trust-text i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.cta-trust-text strong {
  color: var(--text-dark);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .section-main-heading {
    font-size: 2.3rem;
  }

  .professional-locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 16px;
  }

  .cta-title {
    font-size: 1.9rem;
  }

  .price-value {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .section-main-heading {
    font-size: 2rem;
  }

  .professional-locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
  }

  .pro-location-card {
    padding: 20px 16px;
  }

  .location-icon-circle {
    width: 56px;
    height: 56px;
  }

  .location-icon-circle i {
    font-size: 1.5rem;
  }

  .location-title {
    font-size: 1rem;
  }

  .location-subtitle {
    font-size: 0.8rem;
  }

  .pro-benefit-card {
    padding: 28px 20px;
  }

  .pricing-info-box {
    padding: 28px 24px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-action-buttons {
    flex-direction: column;
  }

  .cta-action-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .section-main-heading {
    font-size: 1.7rem;
  }

  .section-lead-text {
    font-size: 1rem;
  }

  .professional-locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pro-location-card {
    padding: 18px 12px;
  }

  .location-icon-circle {
    width: 50px;
    height: 50px;
  }

  .location-icon-circle i {
    font-size: 1.3rem;
  }

  .location-title {
    font-size: 0.95rem;
  }

  .location-subtitle {
    font-size: 0.75rem;
  }

  .benefit-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .benefit-icon-wrapper i {
    font-size: 1.7rem;
  }

  .benefit-heading {
    font-size: 1.15rem;
  }

  .benefit-text {
    font-size: 0.9rem;
  }

  .pricing-info-box {
    padding: 24px 20px;
  }

  .price-value {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-description {
    font-size: 0.95rem;
  }

  .cta-trust-text {
    font-size: 0.85rem;
  }
}

/* =========================================================
   CUSTOM PACKAGE HIGHLIGHT SECTION
   ========================================================= */

.custom-package-highlight {
  position: relative;
  background: var(--accent-color);
  overflow: hidden;
}

/* Decorative blur */
.highlight-bg-decor {
  position: absolute;
  inset: 0;
  background: var(--accent-color);
  z-index: 0;
}

/* Cards */
.highlight-card {
  position: relative;
  z-index: 2;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 40px 36px;
  transition: var(--transition);
  border: 2px solid rgba(0, 142, 167, 0.12);
}

.highlight-card:hover {
  transform: translateY(-8px);
}

/* Icon */
.highlight-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.highlight-icon.green {
  background: var(--secondary-color);
}

.highlight-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

/* Text */
.highlight-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.highlight-title span {
  color: var(--primary-color);
}

.highlight-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {
  .custom-package-highlight {
    padding: 70px 0;
  }

  .highlight-card {
    padding: 32px 28px;
  }

  .highlight-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .highlight-title {
    font-size: 1.45rem;
  }

  .highlight-text {
    font-size: 0.95rem;
  }
}

/*  */

/* WHY CHOOSE SECTION – FIXED BG WITH OVERLAY */
.why-choose-section {
  position: relative;
  background-image: url("./../img/home/why-choose-us.png");
  /* change path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* KEY */
}

/* Dark overlay */
.why-choose-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* Ensure content stays above overlay */
.why-choose-section > .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .why-choose-section {
    background-attachment: scroll !important;
  }
}

/* WHY CHOOSE LIST ALIGNMENT */
.why-list {
  max-width: 360px;
  margin: 0 auto;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.why-list i {
  color: #ffc107;
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* why-choose ends */

/* cta home */
/* LEFT IMAGE BOX */
.pickup-image-box {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  background-image: url("./../img/home/cta.jpg");
  /* change path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* DARK OVERLAY (optional but recommended) */
.pickup-image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* OPTIONAL CONTENT ON IMAGE */
.image-overlay-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

/* FIX: Make package cards image + content (NOT overlay) */
#packages .card-content {
  position: static;
  background: #ffffff;
  color: var(--text-dark);
  padding: 20px;
  flex-grow: 1;
  /* KEY: equal card height */
}

#packages .owl-stage-outer {
  background: var(--bg-muted) !important;
  border-radius: 20px;
}

#packages .owl-stage,
#packages .owl-item {
  display: flex;
}

#packages .item {
  display: flex;
  height: 100%;
}

#packages .destination-card img {
  height: 240px;
  /* adjust if needed */
  width: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.destination-card {
  height: 450px;
}

#packages .destination-card {
  height: auto;
}

/* Ensure equal-height cards */
#packages .destination-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.destination-card,
.pro-location-card {
  contain: layout style paint;
}

/*  */
/* footer bg starts*/
.footer-bg {
  position: relative;
  background:
    linear-gradient(rgb(6 100 41 / 75%), rgba(22, 163, 74, 0.75)),
    url(./../img/home/footer.png) center bottom / cover no-repeat;
}

/* Ensure content stays above background */
.footer-bg > .container {
  position: relative;
  z-index: 2;
}
.footer-bg > .container {
  font-size: 16px;
}
@media (min-width: 992px) and (max-width: 1250px) {
  .footer-bg > .container {
    font-size: 13px;
  }
}

/* Footer links styling */
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* footer bg ends */

/* =========================================================
   STICKY CONTACT ICONS
   ========================================================= */
.sticky-contact-icons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  animation: pulse 2s infinite;
  position: relative;
  overflow: hidden;
}

/* Call Icon - Green */
.call-icon {
  background: linear-gradient(135deg, #1f9158 0%, #16a34a 100%);
}

.call-icon:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 30px rgba(31, 145, 88, 0.4);
}

/* WhatsApp Icon - Brand Color */
.whatsapp-icon {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-icon:hover {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

/* Ripple Effect */
.contact-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.contact-icon:hover::before {
  width: 100%;
  height: 100%;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  50% {
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.15),
      0 0 0 10px rgba(31, 145, 88, 0.1);
  }

  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
}

/* WhatsApp specific pulse */
.whatsapp-icon {
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  50% {
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.15),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }

  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sticky-contact-icons {
    right: 15px;
    bottom: 20px;
    gap: 12px;
  }

  .contact-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .sticky-contact-icons {
    right: 10px;
    bottom: 15px;
    gap: 10px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* Accessibility - Focus states */
.contact-icon:focus {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

/* Prevent icons from overlapping with footer on scroll */
@media (min-width: 769px) {
  .sticky-contact-icons {
    bottom: 40px;
  }
}

/* === Footer Styles === */
.footer-logo {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 991.98px) {
    .footer-bg .col-lg-4, 
    .footer-bg .col-lg-2, 
    .footer-bg .col-lg-3 {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem !important;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-bg .list-unstyled li {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        max-height: 80px;
    }
}


@media (min-width: 992px) and (max-width: 1199.98px){
    .px-lg-5 {
         padding-right: 0 !important; 
         padding-left: 0 !important; 
    }
    .nav-right-info{
        padding-right:10px;
    }
}
.breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
}
