:root {
    --primary: #1a6bba;
    --primary-dark: #145496;
    --secondary: #00b4d8;
    --accent: #ffd60a;
    --dark: #0f172a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --card-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --hover-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #f8fafc;
    background-image: 
        radial-gradient(at 0% 0%, hsla(190, 100%, 92%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 100%, 95%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(43, 100%, 90%, 1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(190, 100%, 95%, 1) 0px, transparent 50%);
    background-attachment: fixed;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, #1a6bba 0%, #145496 100%);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #ffd60a;
}

.top-bar i {
    margin-right: 5px;
}

.trust-badge {
    background: #ffd60a;
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
}

/* ===== MAIN NAVBAR ===== */
.main-navbar {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    line-height: 1;
}

.brand-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.brand-tagline {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 14px;
    color: #444;
    padding: 8px 16px !important;
    border-radius: 25px;
    transition: all 0.3s;
    margin: 0 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: var(--accent);
    color: #333;
}

/* ===== RESPONSIVE NAVBAR FIX ===== */
/* Mobile: collapsed hamburger menu */
@media (max-width: 991.98px) {
    .main-navbar .d-flex {
        flex-wrap: wrap;
    }
    .main-navbar .navbar-collapse {
        flex-basis: 100%;
        order: 3;
    }
    .main-navbar .navbar-collapse:not(.show) {
        display: none !important;
    }
    .main-navbar .navbar-collapse.show {
        display: block !important;
    }
    .main-navbar .navbar-nav {
        flex-direction: column;
        padding: 15px 0;
        gap: 5px;
    }
    .main-navbar .navbar-nav .nav-link {
        padding: 10px 16px !important;
    }
    .main-navbar .navbar-toggler {
        background: none;
        border: 1px solid #ddd;
        padding: 6px 10px;
        border-radius: 6px;
        font-size: 20px;
        color: var(--primary);
        cursor: pointer;
    }
}

/* Desktop: horizontal nav */
@media (min-width: 992px) {
    .main-navbar .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .main-navbar .navbar-nav {
        flex-direction: row;
        align-items: center;
    }
}

.btn-book-now {
    background: #fff;
    color: rgb(37, 37, 37) !important;
    padding: 10px 24px !important;
    border-radius: 10rem;
    font-weight: 400;
    border: 0;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    z-index: 0;
    cursor: pointer;
    box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.02s;
}

/* ===== CATEGORY BAR ===== */
.category-bar {
    background: linear-gradient(90deg, #00b4d8 0%, #0096c7 100%);
    padding: 0;
}

.category-bar .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 20px !important;
    position: relative;
    transition: all 0.3s;
}

.category-bar .nav-link:hover {
    background: rgba(255,255,255,0.15);
}

.category-bar .nav-link .new-badge {
    background: var(--accent);
    color: #333;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 5px;
    vertical-align: top;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?w=1920') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.typing-text {
    color: var(--accent);
    font-weight: 700;
}

.hero-search-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-search-form .form-control {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px;
    color: #fff;
    transition: all 0.3s;
}

.hero-search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-search-form .form-control:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

.btn-search {
    background: #fff;
    color: rgb(37, 37, 37);
    font-weight: 700;
    padding: 13px 50px;
    border: 0;
    border-radius: 10rem;
    width: auto;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    cursor: pointer;
    box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.02s;
}

@media (max-width: 767px) {
    .btn-search {
        width: 100%;
    }
}
/* ===== PROMO BANNER CAROUSEL ===== */
.promo-carousel-wrap {
    position: relative;
    max-width: 100%;
}
.promo-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 12px;
}
.promo-track::-webkit-scrollbar {
    display: none;
}
.promo-slide {
    flex: 0 0 100%;
    position: relative;
    scroll-snap-align: start;
    height: 425px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    overflow: hidden;
}
.promo-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.promo-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
}
.promo-top-text {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}
.promo-main-text {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0px;
}
.promo-cursive-text {
    font-family: 'Great Vibes', cursive;
    color: #ffd700;
    font-size: 80px;
    line-height: 0.8;
    margin-bottom: 30px;
    margin-left: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.promo-price-box {
    border: 2px solid #fff;
    display: inline-block;
    padding: 10px 20px;
    position: relative;
}
.promo-price-label {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #fff;
    color: #000;
    font-weight: 800;
    font-size: 12px;
    padding: 2px 8px;
}
.promo-price-val {
    color: #ffd700;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}
.promo-price-sub {
    font-size: 12px;
    text-align: right;
    margin-top: -5px;
}
.promo-price-duration {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-weight: 800;
    font-size: 12px;
    padding: 2px 10px;
}

/* Nav Buttons */
.promo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.promo-nav:hover {
    background: #0097a7;
}
.promo-nav.prev {
    left: -20px;
}
.promo-nav.next {
    right: -20px;
}

/* Dots */
.promo-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.promo-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}
.promo-dots .dot.active {
    background: #888;
    width: 24px;
    border-radius: 4px;
}


/* ===== RATINGS BAR ===== */
.ratings-bar {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.rating-item img {
    height: 28px;
}

.rating-score {
    font-weight: 700;
    color: #333;
}

.rating-count {
    font-size: 12px;
    color: var(--gray);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
}

/* ===== CATEGORY SHOWCASE ===== */
.category-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 400px;
}

.category-showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.category-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
}

.category-showcase-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
}

.category-showcase-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.category-showcase-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
}

.btn-explore {
    background: #fff;
    color: rgb(37, 37, 37);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 10rem;
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 0;
    cursor: pointer;
    box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.02s;
}

/* ===== CAROUSEL CARDS ===== */
.carousel-wrapper {
    position: relative;
}

.carousel-container {
    overflow: hidden;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.destination-card {
    min-width: calc(20% - 16px);
    width: calc(20% - 16px);
    flex-shrink: 0;
    height: 280px; /* Adjusted height for travel card */
}

.uiverse-card {
  --card-bg: #ffffff;
  --card-accent: #1a6bba; /* using primary color */
  --card-text: #333;
  --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);

  background: var(--card-bg);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.uiverse-card .card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  background-size: 200% auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
  pointer-events: none;
}

.uiverse-card .card__glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(26, 107, 186, 0.3) 0%,
    rgba(26, 107, 186, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.uiverse-card .card__content {
  padding: 1.25em;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  position: relative;
  z-index: 2;
}

.uiverse-card .card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #10b981;
  color: white;
  padding: 0.25em 0.5em;
  border-radius: 999px;
  font-size: 0.7em;
  font-weight: 600;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
  z-index: 3;
}

.uiverse-card .card__image {
  width: 100%;
  height: 150px;
  background: linear-gradient(45deg, #a78bfa, #8b5cf6);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.uiverse-card .card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 30%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(139, 92, 246, 0.1) 0px,
      rgba(139, 92, 246, 0.1) 2px,
      transparent 2px,
      transparent 4px
    );
  opacity: 0.5;
}

.uiverse-card .card__text {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  flex-grow: 1;
}

.uiverse-card .card__title {
  color: var(--card-text);
  font-size: 1.1em;
  margin: 0;
  font-weight: 700;
  transition: all 0.3s ease;
}

.uiverse-card .card__description {
  color: var(--card-text);
  font-size: 0.75em;
  margin: 0;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.uiverse-card .card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.uiverse-card .card__price {
  color: var(--card-text);
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
}

.uiverse-card .card__button {
  width: 28px;
  height: 28px;
  background: var(--card-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(0.9);
}

/* Hover Effects */
.uiverse-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(26, 107, 186, 0.2);
}

.uiverse-card:hover .card__shine {
  opacity: 1;
  animation: shine 3s infinite;
}

.uiverse-card:hover .card__glow {
  opacity: 1;
}

.uiverse-card:hover .card__badge {
  transform: scale(1);
  opacity: 1;
  z-index: 3;
}

.uiverse-card:hover .card__image {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.uiverse-card:hover .card__title {
  color: var(--card-accent);
  transform: translateX(2px);
}

.uiverse-card:hover .card__description {
  opacity: 1;
  transform: translateX(2px);
}

.uiverse-card:hover .card__price {
  color: var(--card-accent);
  transform: translateX(2px);
}

.uiverse-card:hover .card__button {
  transform: scale(1);
  box-shadow: 0 0 0 4px rgba(26, 107, 186, 0.2);
}

.uiverse-card:hover .card__button svg {
  animation: pulse 1.5s infinite;
}

/* Active State */
.uiverse-card:active {
  transform: translateY(-5px) scale(0.98);
}

/* Animations */
@keyframes shine {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Package Cards */
.package-card {
    min-width: calc(33.333% - 14px);
    width: calc(33.333% - 14px);
    flex-shrink: 0;
    background: #000;
    color: #fff;
    border-radius: 12px;
    position: relative;
    height: 480px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.package-card-img {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}
.package-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.package-card:hover .package-card-img img {
    transform: scale(1.05);
}
.package-card-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.9) 75%, #000 90%);
}
.hot-deal-badge {
    display: none;
}
.package-price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffd700;
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.package-price-tag .from,
.package-price-tag small {
    display: none;
}
.package-price-tag .price {
    font-size: 14px;
    font-weight: 800;
    color: #000;
}
.package-price-tag .price::before {
    content: '~~₹1,05,999/-~~ ';
    color: #cc0000;
    font-weight: 500;
    font-size: 11px;
    text-decoration: line-through;
    margin-right: 5px;
}
.package-price-tag .price::after {
    content: '/- Onwards';
    font-weight: 500;
    font-size: 11px;
}
.package-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.package-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}
.package-meta {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #ddd;
    margin-bottom: 0;
}
.package-meta i {
    color: #00bcd4;
    margin-right: 5px;
}
.package-rating {
    font-size: 12px;
    font-weight: 600;
    color: #ddd;
    margin-top: 5px;
}
.package-rating .stars {
    display: none;
}
.package-rating .rating-text {
    display: none;
}
.package-rating::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #00bcd4;
    margin-right: 5px;
}
.package-rating::after {
    content: '24 Jul';
}
.package-card-actions {
    display: none;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    color: var(--primary);
    font-size: 16px;
}

.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
}

.carousel-btn.prev {
    left: -22px;
}

.carousel-btn.next {
    right: -22px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--secondary);
    width: 24px;
    border-radius: 4px;
}

/* ===== SECTION BAR ===== */
.section-bar {
    background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 0;
    margin-bottom: 30px;
}

.section-bar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.btn-view-all {
    background: #fff;
    color: rgb(37, 37, 37);
    padding: 8px 20px;
    border-radius: 10rem;
    font-weight: 400;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
    cursor: pointer;
    box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.02s;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%);
    padding: 60px 0;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 35px; /* Room for overlapping image */
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    position: relative;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: calc(100% - 35px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-card-img {
    position: absolute;
    top: -25px;
    left: 20px;
    right: 20px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-body {
    padding: 0;
    margin-top: 155px; /* Clears the overlapping image */
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3748;
}

.service-card-desc {
    font-size: 14px;
    color: #718096;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-service-readmore {
    background: #3b82f6 !important;
    color: #fff !important;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.5px;
    box-shadow: none;
}
.btn-service-readmore:hover {
    background: #2563eb !important;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.accordion-button {
    padding: 18px 25px;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    background: #fff;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: #e0f2fe;
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: none;
}

.accordion-body {
    padding: 18px 25px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    background: #fff;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    width: calc(33.333% - 14px);
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    text-align: center;
    height: 100%;
}

.quote-icon {
    font-size: 40px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.testimonial-location {
    font-size: 12px;
    color: var(--gray);
}

/* ===== INDIA TRIPS ===== */
.tours-section {
    padding: 50px 0 40px;
    background: linear-gradient(180deg, #f0f8ff 0%, #e8f4fd 100%);
}

.tours-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.tours-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tours-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

.tours-hero-content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    z-index: 2;
}

.tours-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.1;
}

.tours-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 22px;
    line-height: 1.6;
}

.tours-explore-btn {
    display: inline-block;
    background: #f5c800;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 26px;
    border-radius: 24px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.tours-explore-btn:hover {
    background: #e0b800;
    transform: translateY(-2px);
    color: #1a1a1a;
}

/* Cards carousel — overlaps the hero banner */
.tours-cards-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 10px;
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.tours-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
    padding: 10px 5px 10px;
    scroll-snap-type: x mandatory;
    align-items: flex-end;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

.tours-cards::-webkit-scrollbar {
    display: none;
}

/* Portrait overlay card */
.tour-card {
    position: relative;
    flex: 0 0 calc(20% - 13px);
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.22);
}

.tour-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.tour-card:hover > img {
    transform: scale(1.06);
}

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.08) 50%, transparent 100%);
}

.tour-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 2;
}

.tour-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.tour-card-price {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-style: italic;
}

/* Nav arrows */
.tours-nav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #1a6bba;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 3px 12px rgba(26,107,186,0.4);
}

.tours-nav:hover {
    background: #0d4f8a;
    transform: scale(1.1);
}

/* Dots */
.tours-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 20px 0 0;
}

.tours-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c8dff0;
    cursor: pointer;
    transition: all 0.2s;
}

.tours-dots .dot.active {
    width: 28px;
    border-radius: 5px;
    background: #1a6bba;
}

/* ===== CTA SECTION ===== */

.cta-section {
    background: linear-gradient(135deg, #1a6bba 0%, #00b4d8 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

.callback-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
}

.callback-form .form-control {
    background: rgba(255,255,255,0.95);
    border: none;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
}

.btn-connect {
    background: #fff;
    color: rgb(37, 37, 37);
    font-weight: 400;
    padding: 14px 30px;
    border: 0;
    border-radius: 10rem;
    position: relative;
    overflow: hidden;
    z-index: 0;
    cursor: pointer;
    box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.02s;
}

/* ===== BLOG SECTION ===== */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.blog-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #22c55e;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.blog-card-body {
    padding: 25px;
}

.blog-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #22c55e;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.read-more:hover {
    color: #16a34a;
}

/* ===== TRUSTED SECTION ===== */
.trusted-section {
    background: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}

.trusted-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.affiliation-img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.affiliation-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 0 0;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.payment-icons img {
    height: 30px;
    margin-right: 8px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 12px 15px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.btn-subscribe {
    background: #fff;
    color: rgb(37, 37, 37);
    font-weight: 400;
    padding: 12px 20px;
    border: 0;
    border-radius: 10rem;
    position: relative;
    overflow: hidden;
    z-index: 0;
    cursor: pointer;
    box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.02s;
}

.office-list {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.office-list i {
    color: var(--secondary);
    margin-right: 8px;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.floating-btn.whatsapp {
    background: #25d366;
}

.floating-btn.scroll-top {
    background: var(--primary);
    opacity: 0;
    visibility: hidden;
}

.floating-btn.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.floating-btn:hover {
    transform: translateY(-4px);
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .destination-card {
        width: calc(25% - 15px);
        min-width: calc(25% - 15px);
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 38px;
    }
    .destination-card {
        width: calc(33.333% - 14px);
        min-width: calc(33.333% - 14px);
    }
    .package-card {
        width: calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    .testimonial-card {
        width: calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    .carousel-btn.prev {
        left: 10px;
    }
    .carousel-btn.next {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }
    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 60px 0;
    }
    .section-title {
        font-size: 26px;
    }
    /* Promo Banner Mobile */
    .promo-slide {
        height: 250px;
        padding: 0 20px;
    }
    .promo-top-text {
        font-size: 16px;
    }
    .promo-main-text {
        font-size: 28px;
    }
    .promo-cursive-text {
        font-size: 48px;
        margin-bottom: 20px;
        margin-left: 10px;
    }
    .promo-price-val {
        font-size: 20px;
    }
    .promo-nav {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .promo-nav.prev {
        left: 5px;
    }
    .promo-nav.next {
        right: 5px;
    }
    .destination-card {
        width: calc(85% - 20px);
        min-width: calc(85% - 20px);
        height: 360px;
    }
    .uiverse-card .card__image {
        height: 220px;
    }
    .uiverse-card .card__title {
        font-size: 1.5em;
    }
    .uiverse-card .card__description {
        font-size: 1em;
    }
    .uiverse-card .card__price {
        font-size: 1.3em;
    }
    .btn-view-all {
        font-size: 12px;
        padding: 6px 14px;
        white-space: nowrap;
    }
    .services-mobile-carousel {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        scrollbar-width: none;
    }
    .services-mobile-carousel::-webkit-scrollbar {
        display: none;
    }
    .services-mobile-carousel > div {
        flex: 0 0 85% !important;
        max-width: 85% !important;
        scroll-snap-align: center;
    }
    .package-card {
        width: calc(85% - 20px);
        min-width: calc(85% - 20px);
    }
    .testimonial-card {
        width: calc(85% - 20px);
        min-width: calc(85% - 20px);
    }
    .category-showcase {
        height: 300px;
    }
    .category-showcase-content {
        padding: 30px;
    }
    .category-showcase-title {
        font-size: 28px;
    }
    .top-bar .trust-badge {
        display: none;
    }

    /* Mobile Headers */
    .india-tours-hero, .intl-tours-hero {
        display: none !important;
    }
    .india-mobile-header {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: flex-end !important;
        height: auto;
        padding: 0 20px;
        margin-bottom: 30px;
        background: transparent;
        width: 100%;
    }
    .mobile-tours-title {
        font-size: 20px;
        font-weight: 800;
        color: #2b2b2b;
        margin: 0;
        padding-bottom: 8px;
        flex-shrink: 1;
    }
    .mobile-tours-graphic {
        width: 250px;
        height: auto;
        flex-shrink: 0;
    }
    .graphic-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: bottom right;
        mix-blend-mode: multiply;
        display: block;
    }
    .tours-section {
        padding: 30px 0 25px;
    }
    .tours-hero {
        height: 220px;
        border-radius: 14px;
    }
    .tours-hero-content {
        left: 18px;
    }
    .tours-title {
        font-size: 22px;
        margin-bottom: 6px;
    }
    .tours-subtitle {
        font-size: 11px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    .tours-explore-btn {
        font-size: 11px;
        padding: 7px 18px;
    }
    .tours-cards-wrap {
        margin-top: -30px;
        gap: 6px;
        padding: 0 0 5px;
    }
    .tours-cards {
        gap: 10px;
        padding: 8px 2px;
    }
    .tour-card {
        flex: 0 0 45%;
        height: 180px;
    }
    .tour-card-name {
        font-size: 14px;
    }
    .tour-card-price {
        font-size: 10px;
    }
    .tour-card-info {
        padding: 10px;
    }
    .tours-nav {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    .tours-dots {
        padding: 10px 0 0;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== GALLERY CAROUSEL ===== */
.gallery-card {
    min-width: calc(25% - 15px);
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 300px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.gallery-tag i {
    color: var(--secondary);
    margin-right: 5px;
}

@media (max-width: 991px) {
    .gallery-card {
        min-width: calc(50% - 10px);
    }
}

/* ===== SHARED BUTTON STYLES ===== */
.btn-book-now,
.btn-search,
.btn-explore,
.btn-view-details,
.btn-book-now-sm,
.btn-view-all,
.btn-service-book,
.btn-connect,
.btn-subscribe {
    background: #FFF093 !important;
    color: #000 !important;
    transition: all 0.3s ease;
    font-weight: 400 !important;
    text-decoration: none !important;
}

.btn-book-now:hover,
.btn-search:hover,
.btn-explore:hover,
.btn-view-details:hover,
.btn-book-now-sm:hover,
.btn-view-all:hover,
.btn-service-book:hover,
.btn-connect:hover,
.btn-subscribe:hover {
    background: #FFA701 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 167, 1, 0.4);
}

.btn-book-now:active,
.btn-search:active,
.btn-explore:active,
.btn-view-details:active,
.btn-book-now-sm:active,
.btn-view-all:active,
.btn-service-book:active,
.btn-connect:active,
.btn-subscribe:active {
    transform: scale(0.97);
}

/* ===== CUSTOM FAQ ACCORDION ===== */
.custom-faq {
    counter-reset: faq-count;
    max-width: 900px;
    margin: 0 auto;
}

.custom-faq .accordion-item {
    counter-increment: faq-count;
    background-color: #e5e7eb; /* Light gray base */
    border-radius: 40px;
    margin-bottom: 15px;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

/* The gradient border trick: wrapper padding + gradient backgrounds */
.custom-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #a78bfa, #3b82f6, #fbc2eb) border-box;
    border: 2px solid transparent;
    border-radius: 30px;
}

.custom-faq .accordion-button {
    background-color: transparent !important;
    border: none;
    box-shadow: none !important;
    font-weight: 500;
    font-size: 16px;
    color: #111;
    border-radius: 40px;
}
/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
animation: fadeInUp 0.6s ease forwards;
}

/* ===== SERVICES SECTION ===== */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 35px; /* Room for overlapping image */
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    position: relative;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: calc(100% - 35px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-card-img {
    position: absolute;
    top: -25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 3px solid #fff;
    left: 20px;
}
/* ===== GALLERY CAROUSEL ===== */
.gallery-card {
    min-width: calc(25% - 15px);
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 300px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.gallery-tag i {
    color: var(--secondary);
    margin-right: 5px;
}

@media (max-width: 991px) {
    .gallery-card {
        min-width: calc(50% - 10px);
    }
}

/* ===== SHARED BUTTON STYLES ===== */
.btn-book-now,
.btn-search,
.btn-explore,
.btn-view-details,
.btn-book-now-sm,
.btn-view-all,
.btn-service-book,
.btn-connect,
.btn-subscribe {
    background: #FFF093 !important;
    color: #000 !important;
    transition: all 0.3s ease;
    font-weight: 400 !important;
    text-decoration: none !important;
}

.btn-book-now:hover,
.btn-search:hover,
.btn-explore:hover,
.btn-view-details:hover,
.btn-book-now-sm:hover,
.btn-view-all:hover,
.btn-service-book:hover,
.btn-connect:hover,
.btn-subscribe:hover {
    background: #FFA701 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 167, 1, 0.4);
}

.btn-book-now:active,
.btn-search:active,
.btn-explore:active,
.btn-view-details:active,
.btn-book-now-sm:active,
.btn-view-all:active,
.btn-service-book:active,
.btn-connect:active,
.btn-subscribe:active {
    transform: scale(0.97);
}

/* ===== CUSTOM FAQ ACCORDION ===== */
.custom-faq {
    counter-reset: faq-count;
    max-width: 900px;
    margin: 0 auto;
}

.custom-faq .accordion-item {
    counter-increment: faq-count;
    background-color: #e5e7eb; /* Light gray base */
    border-radius: 40px;
    margin-bottom: 15px;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

/* The gradient border trick: wrapper padding + gradient backgrounds */
.custom-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #a78bfa, #3b82f6, #fbc2eb) border-box;
    border: 2px solid transparent;
    border-radius: 30px;
}

.custom-faq .accordion-button {
    background-color: transparent !important;
    border: none;
    box-shadow: none !important;
    padding: 18px 25px;
    font-weight: 500;
    font-size: 16px;
    color: #111;
    border-radius: 40px;
}

/* Remove default Bootstrap arrow */
.custom-faq .accordion-button::after {
    display: none;
}

/* Number bubble */
.custom-faq .accordion-button::before {
    content: counter(faq-count);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    color: #4b5563;
    margin-right: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

/* Custom + / x Button */
.custom-faq .accordion-button::after {
    display: flex;
    content: "\f067"; /* FontAwesome Plus */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 32px;
    height: 32px;
    background-color: #000;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    margin-left: auto;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background-image: none !important; /* Forces default chevron removal */
}

/* Expanded state icon (x) */
.custom-faq .accordion-button:not(.collapsed)::after {
    content: "\f00d"; /* FontAwesome Times/Cross */
    background-color: #fff;
    color: #000;
    border: 1px solid #e5e7eb;
    transform: none; /* overrides bootstrap chevron rotation */
}

.custom-faq .accordion-body {
    padding: 0 25px 25px 73px; /* Align text under question */
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================
   WHY CHOOSE US PAGE STYLES
   ========================================= */

/* Shared */
.text-gradient {
    background: linear-gradient(135deg, #0DCAF0, #0aa5c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-hero-badge {
    display: inline-block;
    background: rgba(255, 145, 77, 0.1);
    color: #ff914d;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.wcu-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

/* Hero */
.why-hero-section {
    position: relative;
    padding: 120px 0 80px;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 145, 77, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.why-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 145, 77, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 8s ease-in-out infinite alternate;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 40px) scale(1.1); }
}

.why-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.15;
}

.why-hero-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Pillars Section */
.pillars-section {
    padding: 80px 0;
    background: #f8fafc;
}
.btn-wrapper {
  display: flex;
  justify-content: center;
}
.glass-card {
  box-sizing: border-box;
  background: rgba(217, 217, 217, 0.58);
  border: 1px solid white;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 17px;
  text-align: center;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  height: 100%;
}

.glass-card:hover {
  border: 1px solid #0DCAF0;
  transform: scale(1.05);
}

.glass-card:active {
  transform: scale(0.95) rotateZ(1.7deg);
}

.bento-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background: #fff;
    color: #0DCAF0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bento-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bento-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.wcu-testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
    overflow: hidden;
}

.wcu-testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.wcu-testimonials-track::-webkit-scrollbar { display: none; }

.wcu-testimonial-card {
    min-width: 340px;
    max-width: 340px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    scroll-snap-align: start;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.wcu-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.wcu-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 16px;
}

.wcu-stars span {
    color: #94a3b8;
    font-size: 13px;
    margin-left: 6px;
    font-weight: 600;
}

.wcu-testimonial-text {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.wcu-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.wcu-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff914d, #ff5e62);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.wcu-testimonial-author strong {
    font-size: 14px;
    color: #1e293b;
}

.wcu-testimonial-author span {
    font-size: 12px;
    color: #94a3b8;
}

/* Trusted Section */
.wcu-trusted-section {
    padding: 80px 0;
    background: #fff;
}

.wcu-trusted-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    max-width: 800px;
    margin: 16px auto 40px;
}

.wcu-affiliations {
    margin-top: 40px;
}

.wcu-affiliations-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wcu-affiliations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    align-items: center;
}

.wcu-affiliations-grid img {
    max-width: 140px;
    height: auto;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.wcu-affiliations-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* CTA Section */
.wcu-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.wcu-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 145, 77, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.wcu-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.wcu-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.wcu-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ff914d, #ff5e62);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 94, 98, 0.3);
}

.wcu-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 94, 98, 0.4);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-hero-title { font-size: 2.5rem; }
    .wcu-section-title { font-size: 2rem; }
    .wcu-cta-title { font-size: 2rem; }
}

@media (max-width: 767px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.card-wide {
        grid-column: span 1;
    }
    .why-hero-section { padding: 80px 0 50px; }
    .why-hero-title { font-size: 2rem; }
    .pillars-section { padding: 50px 0; }
    .wcu-testimonials-section { padding: 50px 0; }
    .wcu-trusted-section { padding: 50px 0; }
    .wcu-cta-section { padding: 50px 0; }
    .wcu-cta-title { font-size: 1.6rem; }
    .wcu-testimonial-card { min-width: 280px; max-width: 280px; }
    .wcu-affiliations-grid img { max-width: 100px; }
}

/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */
.about-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.about-story-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    object-fit: cover;
}

/* =========================================
   SLIDER BUTTON STYLES
   ========================================= */
.testimonials-slider-wrapper {
    position: relative;
    padding: 0 40px; 
}
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #0DCAF0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.slider-nav-btn:hover {
    background: #0DCAF0;
    color: #fff;
    border-color: #0DCAF0;
}
.slider-nav-btn.prev-btn {
    left: -20px;
}
.slider-nav-btn.next-btn {
    right: -20px;
}
@media (max-width: 767px) {
    .slider-nav-btn {
        display: none;
    }
    .testimonials-slider-wrapper {
        padding: 0;
    }
}
.wcu-testimonials-track {
    user-select: none;
}

/* =========================================
   DROPDOWN MENU STYLES
   ========================================= */
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0; 
    }
    .custom-dropdown {
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        min-width: 200px;
    }
}
.custom-dropdown {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transition: all 0.3s ease;
}
.custom-dropdown .dropdown-item {
    color: #475569;
    font-weight: 500;
    padding: 8px 20px;
    transition: all 0.2s ease;
}
.custom-dropdown .dropdown-item:hover {
    background-color: rgba(13, 202, 240, 0.1);
    color: #0DCAF0;
}

/* =========================================
   ENQUIRY FORM STYLES
   ========================================= */
.custom-input {
    border-radius: 8px !important;
    border: 1px solid #ced4da;
    color: #6c757d;
}
.custom-input::placeholder {
    color: #a0a5aa;
}
.custom-input:focus {
    box-shadow: none;
    border-color: #66d473;
}

.glass-input {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}
.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}
.glass-input:focus {
    background: rgba(0, 0, 0, 0.4) !important;
    border-color: #ffe87a !important;
    box-shadow: none !important;
}
.custom-input:focus {
    box-shadow: none;
    border-color: #66d473;
}

/* =========================================
   HOLIDAY PACKAGES - CARD V2
   ========================================= */
.package-card-v2 {
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}
.package-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.card-img-wrap {
    position: relative;
    border-radius: 20px;
    height: 240px;
    background: #eee;
    z-index: 1;
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.img-cutout {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 86px;
    height: 86px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrow-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #CBA486;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.arrow-btn:hover {
    background: #b58d6f;
    color: #fff;
    transform: scale(1.05);
}
.popular-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #7B61FF;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
}
.price-pill {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    color: #555;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.price-pill span {
    color: #FF4E4E;
    font-size: 18px;
    font-weight: 800;
}
.card-content {
    padding: 20px 5px 5px;
}
.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.4;
}
.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.card-features li {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.card-features li i {
    color: #7B61FF;
    font-size: 14px;
    margin-top: 2px;
}
.card-features li .stars i {
    color: #FFC107;
    font-size: 12px;
    margin-top: 0;
}
.card-actions {
    display: flex;
    gap: 10px;
}
.btn-tag {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.view-btn {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e0e0e0;
}
.view-btn:hover {
    background: #e9ecef;
    color: #000;
}
.book-btn {
    background: #FFF093;
    color: #000;
    border: 1px solid #FFF093;
}
.book-btn:hover {
    background: #FFA701;
    color: #fff;
    border-color: #FFA701;
}


/* ===== PACKAGE DETAILS MOSAIC HERO ===== */
.mosaic-hero-section {
    height: 100vh;
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}
.mosaic-left {
    width: 50%;
    height: 100%;
    position: relative;
}
.mosaic-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mosaic-left::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.mosaic-right {
    width: 50%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.mosaic-right .mosaic-img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.mosaic-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.mosaic-right .mosaic-img-box:hover img {
    transform: scale(1.1);
}
.mosaic-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}
.mosaic-content-wrapper {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 45%;
    text-align: left;
    pointer-events: auto;
}
.mosaic-breadcrumb {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
}
.mosaic-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.mosaic-breadcrumb a:hover {
    color: #FFA701;
}
.mosaic-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.mosaic-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .mosaic-hero-section {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    .mosaic-left {
        width: 100%;
        height: 60vh;
    }
    .mosaic-left::after {
        background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    }
    .mosaic-right {
        width: 100%;
        height: 40vh;
    }
    .mosaic-content-wrapper {
        left: 5%;
        max-width: 90%;
        top: 30vh;
    }
    .mosaic-title {
        font-size: 2.5rem;
    }
}



.site-logo img {
    max-height: 60px; /* Adjust this height to fit your navbar */
    width: auto;
    display: block;
}
