/* ============================================
   SHAGUN YATRA INDIA – style.css
   Colors: #406DF1 (primary blue), #F1569F (accent pink), white background
   Font: Cinzel (headings) + Poppins (body)
   ============================================ */

:root {
  --primary: #406DF1;
  --accent: #F1569F;
  --primary-dark: #2d52c9;
  --accent-dark: #d43d85;
  --primary-light: #eef2fe;
  --accent-light: #fdeef5;
  --text-dark: #1a1a2e;
  --text-mid: #444466;
  --text-light: #888;
  --white: #ffffff;
  --bg-light: #f8f9ff;
  --border: #e4e8f7;
  --shadow-sm: 0 4px 16px rgba(64, 109, 241, 0.10);
  --shadow-md: 0 8px 32px rgba(64, 109, 241, 0.16);
  --shadow-lg: 0 16px 48px rgba(64, 109, 241, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== UTILITIES ===== */
.section-pad {
  padding: 80px 0;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
}

.section-text {
  color: var(--text-mid);
  margin-bottom: 12px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, var(--primary), #2d52c9);
  padding: 8px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.88);
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--transition);
}

.top-bar-link:hover {
  color: var(--white);
}

.top-social {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}

.top-social:hover {
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.site-navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(64, 109, 241, 0.10);
  transition: all 0.4s ease;
  z-index: 1000;
}

.site-navbar.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
}

.brand-name {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.brand-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  letter-spacing: 3.5px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}

.nav-link {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--text-dark) !important;
  padding: 8px 12px !important;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-link:hover {
  color: var(--primary) !important;
}

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

.btn-enquire {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 25px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: 'Poppins', sans-serif !important;
}

.btn-enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(241, 86, 159, 0.35);
}

.navbar-toggler {
  border-color: var(--primary);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23406DF1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  height: 100vh;
  min-height: 520px;
  max-height: 860px;
}

.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 520px;
  max-height: 860px;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 5s ease;
}

.carousel-item.active .hero-bg-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.856) 0%, rgba(0, 0, 0, 0.137) 100%);
}

.carousel-item {
  height: 100vh;
  min-height: 520px;
  max-height: 860px;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeUp 0.9s ease forwards;
  opacity: 0;
}

.carousel-item.active .hero-content {
  opacity: 1;
}

@keyframes heroFadeUp {
  from {
    transform: translateY(32px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(241, 86, 159, 0.22);
  border: 1px solid rgba(241, 86, 159, 0.45);
  color: #ffb8d9;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-highlight {
  background: linear-gradient(90deg, #F1569F, #ffd6ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15.5px;
  max-width: 480px;
  margin-bottom: 28px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(241, 86, 159, 0.4);
  color: var(--white);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  transition: background var(--transition), border-color var(--transition);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 50px;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track span {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

/* ===== ABOUT ===== */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-main-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 8px 24px rgba(241, 86, 159, 0.4);
}

.badge-number {
  font-size: 2rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.badge-text {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.3;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.about-feat:hover {
  background: white;
  border-color: var(--primary);
  transform: translateX(4px);
}

.about-feat i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-primary-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(64, 109, 241, 0.35);
  color: var(--white);
}

/* ===== TOUR CARDS ===== */
.tour-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.tour-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.tour-card-img-wrap {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

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

.tour-card:hover .tour-card-img {
  transform: scale(1.05);
}

.tour-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.badge-pink {
  background: var(--accent);
}

.tour-card-body {
  padding: 30px;
}

.tour-title {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.tour-subtitle {
  color: var(--text-mid);
  font-size: 13px;
}

.tour-price {
  text-align: right;
}

.price-usd {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Cinzel', serif;
}

.price-inr {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.tour-price small {
  color: var(--text-light);
  font-size: 11px;
}

.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tour-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}

.tour-highlights span i {
  color: var(--accent);
}

.itinerary-head {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.itinerary-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
}

.itinerary-grid::-webkit-scrollbar {
  width: 4px;
}

.itinerary-grid::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.itin-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  padding: 8px 12px;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.itin-item:hover {
  border-left-color: var(--primary);
  background: var(--primary-light);
  color: var(--text-dark);
}

.day-badge {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 50px;
  text-align: center;
}

/* ===== INCLUSIONS ===== */
.inc-exc-section {
  background: var(--white);
}

.inc-card,
.exc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.inc-card-head {
  background: linear-gradient(90deg, #eef7ee, #d9f0da);
  color: #1a6b1a;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #c4e5c4;
}

.inc-card-head i {
  margin-right: 8px;
}

.exc-card-head {
  background: linear-gradient(90deg, #fdf0f0, #fadada);
  color: #9b1c1c;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #f5c6c6;
}

.inc-list,
.exc-list {
  list-style: none;
  padding: 16px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inc-list li,
.exc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-mid);
}

.inc-list li i,
.exc-list li i {
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 15px;
}

/* ===== WHY US ===== */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 16px;
  transition: background var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}

.why-card h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  margin: 0;
}

/* ===== COUNTER ===== */
.counter-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a8f 50%, #6b0f4e 100%);
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-card {
  position: relative;
}

.counter-icon {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.counter-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.counter-plus {
  display: inline;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
  font-family: 'Cinzel', serif;
}

.counter-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 8px;
}

/* ===== GALLERY ===== */
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64, 109, 241, 0.6), rgba(241, 86, 159, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 28px;
  color: var(--white);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===== CONTACT ===== */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 5px;
}

.contact-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 13.5px;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: 'Poppins', sans-serif;
  background: #fafbff;
}

.contact-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(64, 109, 241, 0.12);
  outline: none;
  background: var(--white);
}

.contact-input::placeholder {
  color: #bbb;
}

.contact-info-wrap {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-info-wrap h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: var(--text-mid);
}

.contact-info-item a {
  color: var(--primary);
  transition: color var(--transition);
}

.contact-info-item a:hover {
  color: var(--accent);
}

.ci-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 200px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.brand-icon-lg {
  width: 52px;
  height: 52px;
  font-size: 26px;
}

.brand-name-footer {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.brand-sub-footer {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  letter-spacing: 3.5px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-top: 8px;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition), padding-left var(--transition);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact p i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-social:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12.5px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.35);
}

/* ===== FLOATING BUTTONS ===== */
.float-whatsapp,
.float-call {
  position: fixed;
  bottom: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 32px;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.float-whatsapp {
  left: 20px;
  background: #25D366;
}

.float-call {
  right: 20px;
  background: linear-gradient(135deg, var(--primary), #2d52c9);
}

.float-whatsapp:hover,
.float-call:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.float-label {
  font-size: 13px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  display: none;
}

.float-whatsapp:hover .float-label,
.float-call:hover .float-label {
  display: inline;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 998;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/* ===== MODAL ===== */
#galleryModal .modal-content {
  background: transparent;
  border: none;
}

#galleryModal .modal-body {
  padding: 16px;
}

/* ===== SCROLL ANIMATION ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {

  .hero-carousel,
  .hero-slide,
  .carousel-item {
    height: 580px;
    max-height: 580px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .about-main-img {
    height: 300px;
  }

  .tour-card-img-wrap {
    min-height: 220px;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .footer-top {
    padding: 48px 0 32px;
  }
}

@media (max-width: 767.98px) {
.cu-mb-ds-nn{
	display:none!important
}
  .section-pad {
    padding: 56px 0;
  }

  .hero-carousel,
  .hero-slide,
  .carousel-item {
    height: 520px;
    max-height: 520px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-desc {
    font-size: 14px;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 11px 20px;
    font-size: 13px;
  }

  .about-main-img {
    height: 260px;
  }

  .tour-card-img-wrap {
    min-height: 200px;
  }

  .tour-card-body {
    padding: 20px;
  }

  .counter-num {
    font-size: 2.2rem;
  }

  .float-label {
    display: none !important;
  }

  .float-whatsapp,
  .float-call {
    padding: 13px;
    border-radius: 50%;
    font-size: 22px;
  }

  .contact-form-wrap {
    padding: 20px 16px;
  }
}

@media (max-width: 575.98px) {
  .top-bar .col-12:first-child {
    justify-content: center;
    font-size: 11px;
  }

  .top-bar-link {
    font-size: 11px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .itinerary-grid {
    max-height: 200px;
  }

  .tour-price {
    text-align: left;
  }
}