/* ===== VIVA TRAVEL — COMPLETE STYLESHEET ===== */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #e85d04;
  --primary-dark: #c44a00;
  --primary-light: rgba(232,93,4,0.10);
  --secondary: #1a1a2e;
  --accent: #f4a261;
  --gold: #f4a261;
  --teal: #2a9d8f;
  --light-bg: #f8f5f0;
  --white: #ffffff;
  --text: #2d2d2d;
  --text-muted: #6c757d;
  --border: #e0dbd2;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
}

/* ===== GLOBAL ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
.section-pad { padding: 80px 0; }
.mb-30 { margin-bottom: 30px; }

.section-title { font-family: var(--font-heading); font-size: 2.2rem; color: var(--secondary); margin-bottom: 8px; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 40px; }
.section-title span { color: var(--primary); }

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--primary); color: #fff; padding: 12px 28px;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--primary); transition: var(--transition);
  display: inline-block; cursor: pointer;
}
.btn-primary-custom:hover {
  background: var(--primary-dark); border-color: var(--primary-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,93,4,0.3);
}
.btn-outline-custom {
  background: transparent; color: var(--primary); padding: 11px 28px;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--primary); transition: var(--transition);
  display: inline-block; cursor: pointer;
}
.btn-outline-custom:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-white-custom {
  background: #fff; color: var(--primary); padding: 12px 28px;
  border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  border: 2px solid #fff; transition: var(--transition); display: inline-block;
}
.btn-white-custom:hover { background: transparent; color: #fff; transform: translateY(-2px); }

/* ===== TOPBAR ===== */
.topbar { background: var(--secondary); color: #ccc; font-size: 0.82rem; padding: 7px 0; }
.topbar a { color: #ccc; }
.topbar a:hover { color: var(--accent); }
.topbar .topbar-contact span { margin-right: 18px; }
.topbar .topbar-contact i { color: var(--primary); margin-right: 5px; }
.topbar .topbar-right a { margin-left: 14px; }

/* ===== NAVBAR ===== */
.main-navbar {
  background: var(--white); box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  padding: 14px 0; position: sticky; top: 0; z-index: 1000;
  transition: padding .3s ease, box-shadow .3s ease;
}
.main-navbar.scrolled { padding: 8px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.main-navbar .nav-link {
  font-weight: 600; font-size: 0.92rem; color: var(--text) !important;
  padding: 8px 14px !important; position: relative;
}
.main-navbar .nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: var(--primary);
  transition: var(--transition); transform: translateX(-50%);
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { width: 60%; }
.main-navbar .nav-link:hover { color: var(--primary) !important; }
.main-navbar .dropdown-menu {
  border: none; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px 0; min-width: 200px;
}
.main-navbar .dropdown-item { font-size: 0.88rem; font-weight: 500; padding: 8px 20px; color: var(--text); }
.main-navbar .dropdown-item:hover { background: var(--light-bg); color: var(--primary); padding-left: 26px; }

/* ===== HERO — FULL SCREEN SLIDER ===== */
.hero-slider { position: relative; height: 92vh; min-height: 600px; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.75) 0%, rgba(232,93,4,0.25) 100%);
}
.hero-slide-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 60px;
}
.hero-text { color: #fff; max-width: 680px; }
.hero-badge {
  background: rgba(232,93,4,0.9); color: #fff;
  font-size: 0.75rem; font-weight: 700; padding: 5px 16px;
  border-radius: 50px; letter-spacing: 1.5px; text-transform: uppercase;
  display: inline-block; margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem); color: #fff; margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.88);
  margin-bottom: 32px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider Controls */
.slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer; transition: var(--transition);
  border: none; padding: 0;
}
.slider-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }
.slider-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 20px; z-index: 10; pointer-events: none;
}
.slider-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.18); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; pointer-events: all; transition: var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); }

/* Slide category label */
.slide-cat {
  position: absolute; bottom: 28px; right: 28px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  color: #fff; font-size: .78rem; font-weight: 600;
  padding: 6px 16px; border-radius: 50px;
  letter-spacing: .8px; text-transform: uppercase;
}

/* ===== TICKER / HIGHLIGHTS BAR ===== */
.highlights-bar {
  background: var(--primary); color: #fff; padding: 12px 0;
  overflow: hidden; white-space: nowrap;
}
.highlights-inner { display: inline-block; animation: ticker 28s linear infinite; }
.highlights-inner span {
  display: inline-block; margin: 0 36px;
  font-size: .82rem; font-weight: 600; letter-spacing: .5px;
}
.highlights-inner i { margin-right: 7px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== NEW ADDITIONS FLASH BADGE ===== */
.new-flash-bar {
  background: linear-gradient(90deg, #e85d04, #f4a261, #e85d04);
  background-size: 200% 100%; animation: shiftGrad 3s linear infinite;
  padding: 14px 0; text-align: center;
}
@keyframes shiftGrad { 0%,100%{background-position:0%} 50%{background-position:100%} }
.new-flash-bar a {
  color: #fff; font-weight: 700; font-size: .9rem;
  letter-spacing: .5px; display: inline-flex; align-items: center; gap: 10px;
}
.new-flash-bar .pulse-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #fff;
  animation: pulseDot 1.2s ease infinite;
}
@keyframes pulseDot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:.5} }

/* ===== DESTINATION SHOWCASE GRID ===== */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 260px 260px; gap: 12px; }
.dest-block { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.dest-block:first-child { grid-row: span 2; }
.dest-block img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.dest-block:hover img { transform: scale(1.07); }
.dest-block::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.75) 0%, transparent 55%);
}
.dest-block-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 20px; z-index: 2; color: #fff;
}
.dest-block-info h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 2px; }
.dest-block-info small { font-size: .78rem; color: rgba(255,255,255,0.72); }
.dest-type-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: .7rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; color: #fff;
}
.badge-intl { background: var(--primary); }
.badge-india { background: var(--teal); }

/* ===== CATEGORY CARDS (Domestic / International) ===== */
.cat-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  height: 380px; cursor: pointer;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.2) 60%, transparent 100%);
}
.cat-card-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; color: #fff;
}
.cat-card-content h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 8px; }
.cat-card-content p { color: rgba(255,255,255,0.78); font-size: .88rem; margin-bottom: 18px; }

/* ===== TOUR CARDS ===== */
.tour-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow);
  transition: var(--transition); height: 100%;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img-wrap { position: relative; overflow: hidden; height: 210px; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tour-card:hover .card-img-wrap img { transform: scale(1.06); }
.tour-label {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
}
.tour-label.group { background: var(--teal); }
.tour-card .card-body { padding: 18px 20px; }
.tour-title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 10px; color: var(--secondary); }
.tour-meta {
  display: flex; gap: 14px; margin-bottom: 10px;
  font-size: .8rem; color: var(--text-muted); flex-wrap: wrap;
}
.tour-meta i { color: var(--primary); margin-right: 4px; }
.emi-tag {
  display: inline-block; background: rgba(42,157,143,0.10);
  color: var(--teal); font-size: .72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 4px;
}
.tour-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  margin-bottom: 36px; padding: 18px 24px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.filter-btn {
  padding: 7px 18px; border-radius: 50px; border: 1.5px solid var(--border);
  background: transparent; color: var(--text); font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary); border-color: var(--primary); color: #fff;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #2d1b69 100%);
  padding: 70px 0 50px; color: #fff; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1400&q=60') center/cover;
  opacity: .12;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-heading); font-size: 2.6rem; color: #fff; margin-bottom: 12px; }
.page-hero .breadcrumb { background: transparent; padding: 0; margin: 0; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.65); font-size: .88rem; }
.page-hero .breadcrumb-item.active { color: var(--accent); font-size: .88rem; }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== WHY SECTION ===== */
.why-section { background: var(--light-bg); }
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; text-align: center; height: 100%;
  box-shadow: var(--shadow); transition: var(--transition);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.4rem; color: var(--primary);
}
.why-card h5 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 10px; color: var(--secondary); }
.why-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--secondary), #16213e);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232,93,4,0.18), transparent 60%);
}
.cta-section h2 { color: #fff; font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.72); margin-bottom: 32px; font-size: 1rem; }

/* ===== TESTIMONIALS ===== */
.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow); height: 100%;
  border-bottom: 3px solid var(--primary);
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testi-text { color: var(--text); font-size: .9rem; line-height: 1.8; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; font-size: .9rem; color: var(--secondary); }
.testi-author span { font-size: .78rem; color: var(--primary); }

/* ===== TEAM CARD ===== */
.team-card {
  text-align: center; background: var(--white);
  border-radius: var(--radius-lg); padding: 28px 20px;
  box-shadow: var(--shadow); transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card img {
  width: 90px; height: 90px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 14px; border: 3px solid var(--primary-light);
}
.team-card h6 { font-family: var(--font-heading); font-size: 1rem; color: var(--secondary); margin-bottom: 4px; }
.team-card span { font-size: .8rem; color: var(--primary); }

/* ===== CONTACT ===== */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 22px;
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-light); display: flex; align-items: center;
  justify-content: center; color: var(--primary); font-size: 1rem; flex-shrink: 0;
}
.contact-info-item h6 { font-weight: 700; font-size: .88rem; margin-bottom: 2px; color: var(--secondary); }
.contact-info-item p { font-size: .88rem; color: var(--text-muted); margin: 0; }
.contact-info-item a { color: var(--primary); }
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
}
.form-control, .form-select {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 11px 15px; font-family: var(--font-body); font-size: .88rem;
  transition: var(--transition); background: #fdfcfb;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}
.form-label { font-weight: 600; font-size: .83rem; color: var(--secondary); margin-bottom: 6px; }

/* ===== ABOUT ===== */
.about-img-wrap { position: relative; }
.about-exp-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--primary); color: #fff; padding: 18px 20px;
  border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-lg);
}
.about-exp-badge .num { font-size: 2rem; font-weight: 800; font-family: var(--font-heading); line-height: 1; }
.about-exp-badge .lbl { font-size: .72rem; opacity: .85; line-height: 1.4; }

/* ===== FIXED DEPARTURES (New Additions) ===== */
.departure-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden; height: 100%;
  transition: var(--transition); position: relative;
}
.departure-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.departure-card .dep-img { height: 200px; overflow: hidden; position: relative; }
.departure-card .dep-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.departure-card:hover .dep-img img { transform: scale(1.06); }
.dep-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--primary); color: #fff; font-size: .68rem;
  font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.dep-badge.new-badge { background: #d62828; animation: flashBadge 1.5s ease infinite; }
@keyframes flashBadge { 0%,100%{opacity:1} 50%{opacity:.5} }
.departure-card .dep-body { padding: 20px; }
.dep-date-strip {
  display: flex; align-items: center; gap: 8px;
  background: var(--light-bg); border-radius: 8px; padding: 10px 14px;
  margin-bottom: 14px;
}
.dep-date-strip i { color: var(--primary); }
.dep-date-strip span { font-size: .82rem; font-weight: 600; color: var(--secondary); }
.dep-seats {
  display: inline-block; font-size: .75rem; font-weight: 700;
  color: var(--teal); background: rgba(42,157,143,0.1);
  padding: 3px 10px; border-radius: 50px; margin-bottom: 12px;
}
.dep-seats.urgent { color: #d62828; background: rgba(214,40,40,0.1); }

/* ===== INDIVIDUAL TOUR PAGE ===== */
.tour-hero { height: 52vh; min-height: 380px; position: relative; overflow: hidden; }
.tour-hero img { width: 100%; height: 100%; object-fit: cover; }
.tour-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, transparent 50%);
}
.tour-hero-content {
  position: absolute; bottom: 32px; left: 0; right: 0;
  padding: 0 24px; z-index: 2; color: #fff;
}
.tour-hero-content h1 { font-family: var(--font-heading); font-size: 2.4rem; color: #fff; }

.itinerary-day {
  border-left: 3px solid var(--primary); padding-left: 24px;
  margin-bottom: 32px; position: relative;
}
.itinerary-day::before {
  content: ''; position: absolute; left: -9px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.itinerary-day .day-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--primary); margin-bottom: 4px;
}
.itinerary-day h5 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--secondary); margin-bottom: 8px; }
.itinerary-day p { font-size: .88rem; color: var(--text-muted); line-height: 1.8; }

.inclusions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.inc-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 500;
}
.inc-item i { color: var(--teal); min-width: 16px; }
.exc-item { color: var(--text-muted); }
.exc-item i { color: #dc3545; }

.sticky-enquire {
  position: sticky; top: 90px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 28px; border-top: 4px solid var(--primary);
}
.sticky-enquire h4 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--secondary); margin-bottom: 6px; }

/* ===== FOOTER ===== */
.main-footer { background: var(--secondary); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 18px; }
.footer-heading { color: #fff; font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: .85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px; padding: 20px 0;
  font-size: .82rem; color: rgba(255,255,255,0.45);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition); animation: floatWA 2.5s ease infinite;
}
.whatsapp-float:hover { background: #128c7e; color: #fff; transform: scale(1.1); }
@keyframes floatWA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed; bottom: 92px; right: 28px; z-index: 999;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--secondary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; opacity: 0; pointer-events: none;
  transition: var(--transition); cursor: pointer;
}
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ===== PHOTO SCROLLER (HP image strip) ===== */
.photo-strip { overflow: hidden; padding: 10px 0; background: var(--secondary); }
.photo-strip-inner {
  display: flex; gap: 12px;
  animation: stripScroll 30s linear infinite;
  width: max-content;
}
.photo-strip-inner img {
  width: 260px; height: 170px; object-fit: cover;
  border-radius: var(--radius); flex-shrink: 0;
}
@keyframes stripScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-slider { height: 75vh; }
  .hero-slide-content { padding: 0 24px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .dest-block:first-child { grid-row: span 1; }
}
@media (max-width: 767px) {
  .section-pad { padding: 55px 0; }
  .hero-slider { height: 88vh; }
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .dest-block { height: 160px; }
  .dest-block:first-child { grid-column: span 2; height: 200px; }
  .about-exp-badge { right: 0; bottom: -10px; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .slider-arrows { display: none; }
}
