/* css/india_tours.css */
:root {
  --maru-red: #B22222;
  --maru-red-dark: #8B0000;
  --maru-gold: #D4AF37;
  --maru-navy: #1C2C4A;
  --maru-bg: #FCF8EF;
  --text-dark: #333;
  --text-light: #666;
}

body {
  background-color: var(--maru-bg);
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

/* ---------------- HERO / INFO SECTION ---------------- */
.india-hero {
  padding: 120px 5% 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 992px) {
  .india-hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

.india-hero-left {
  flex: 1;
}
.india-hero-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  background: linear-gradient(90deg, var(--maru-gold), var(--maru-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 20px;
}
.india-hero-left p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}
.india-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 30px;
}
.stat-box strong {
  display: block;
  font-family: 'Playfair Display', serif;
  color: var(--maru-red);
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.stat-box span {
  font-size: 0.95rem;
  color: var(--text-light);
}

.india-hero-right {
  flex: 1;
  position: relative;
}
.india-image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.india-image-collage img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}
.india-image-collage img:hover {
  transform: translateY(-10px);
}
.india-image-collage img:nth-child(2) {
  transform: translateY(40px);
}
.india-image-collage img:nth-child(2):hover {
  transform: translateY(30px);
}

/* ---------------- TOUR PACKAGES SECTION ---------------- */
.tours-section {
  padding: 80px 5% 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.tours-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--maru-navy);
  margin-bottom: 60px;
  position: relative;
}
.tours-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--maru-gold);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

/* Luxury Tour Cards */
.tour-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}
.tour-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.tour-img-wrap {
  position: relative;
  overflow: hidden;
}
.tour-img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.tour-card:hover .tour-img {
  transform: scale(1.08);
}
.tour-duration-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  color: var(--maru-navy);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tour-body {
  padding: 20px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tour-name {
  color: var(--maru-navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: all 0.4s ease;
}

.tour-card:hover .tour-name {
  background: linear-gradient(45deg, var(--maru-red), var(--maru-gold), #ff8a00);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientTitle 3s ease infinite;
}

@keyframes gradientTitle {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.tour-route {
  font-size: 0.9rem;
  color: var(--maru-red);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tour-btn {
  display: inline-block;
  margin-top: auto;
  padding: 12px 25px;
  border: 1px solid var(--maru-gold);
  color: var(--maru-navy);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
  transition: 0.3s;
  background: transparent;
}
.tour-card:hover .tour-btn {
  background: var(--maru-gold);
  color: #fff;
}

/* ---------------- ELEGANT ITINERARY MODAL ---------------- */
.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(28, 44, 74, 0.9);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tour-modal.show {
  display: flex;
  opacity: 1;
}

.tour-modal-content {
  background: #fff;
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: 12px;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transform: translateY(40px);
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.1);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .tour-modal-content {
    flex-direction: row;
  }
}
.tour-modal.show .tour-modal-content {
  transform: translateY(0);
}

.modal-close {
  position: fixed;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 100000;
  transition: 0.3s;
  font-weight: 300;
}
.modal-close:hover {
  color: var(--maru-gold);
  transform: rotate(90deg);
}

.modal-left {
  flex: 0 0 40%;
  position: relative;
  background: var(--maru-navy);
}
.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  position: absolute;
  inset: 0;
}
.modal-left-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.modal-left-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1.2;
}
.modal-left-content p {
  color: var(--maru-gold);
  font-weight: 600;
  letter-spacing: 1px;
}

.modal-right {
  flex: 1;
  padding: 60px 50px;
  background: #FCF8EF;
  position: relative;
}

/* Elegant Timeline */
.timeline-container {
  position: relative;
  padding-left: 40px;
}
/* The static line */
.timeline-container::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 0;
  width: 2px;
  background: rgba(0,0,0,0.1);
}
/* The animated progress line */
.timeline-progress {
  position: absolute;
  left: 5px;
  top: 10px;
  width: 2px;
  background: var(--maru-gold);
  height: 0;
  transition: height 0.2s ease-out;
  z-index: 1;
}

.itinerary-day {
  position: relative;
  margin-bottom: 40px;
  padding-left: 10px;
}
.itinerary-day:last-child {
  margin-bottom: 0;
}

/* Timeline dot */
.itinerary-day::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--maru-gold);
  z-index: 2;
  transition: 0.3s;
}
.itinerary-day:hover::before {
  background: var(--maru-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.day-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--maru-navy);
  margin-bottom: 10px;
}
.day-desc {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Luxury Meal Badges */
.meal-badges {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}
.meal-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.meal-badge.b { background: #D4AF37; color: #fff; } /* Gold */
.meal-badge.l { background: #1C2C4A; color: #fff; } /* Navy */
.meal-badge.d { background: #B22222; color: #fff; } /* Red */

/* ================= 3D SWEEP & GLOW EFFECTS ================= */
.tour-card {
  position: relative;
}
.tour-card::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  z-index: 10;
}
.tour-card:hover::after {
  left: 150%;
}
.tour-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(218, 165, 32, 0.25), 0 5px 15px rgba(0,0,0,0.1) !important;
  border-color: rgba(218, 165, 32, 0.5);
}

/* ================= PREMIUM HERO SECTION UPGRADES ================= */
.india-hero {
  position: relative;
  background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
              radial-gradient(circle at bottom left, rgba(28, 43, 58, 0.08) 0%, transparent 50%);
}
.india-hero h1 {
  background: linear-gradient(135deg, var(--dark) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.india-hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  margin-top: 30px;
}
.india-hero-right .img-main {
  width: 75%;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border: 4px solid #fff;
  transform: rotateY(-10deg) translateZ(10px);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.india-hero-right .img-sub {
  position: absolute;
  width: 55%;
  right: 0; bottom: -20%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  border: 6px solid #fff;
  transform: rotateY(10deg) translateZ(60px);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}
.india-hero-right:hover .img-main {
  transform: rotateY(0deg) translateZ(0) scale(1.02);
}
.india-hero-right:hover .img-sub {
  transform: rotateY(0deg) translateZ(0) scale(1.08) translateY(-10px);
}

/* ================= HERO IMAGE BACKGROUND BLOB ================= */
.india-hero-right::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.25) 0%, rgba(28, 43, 58, 0.15) 50%, transparent 70%);
  border-radius: 50%;
  top: 5%;
  left: 5%;
  filter: blur(30px);
  z-index: 1;
  animation: blobFloat 10s infinite alternate ease-in-out;
}

@keyframes blobFloat {
  0% { transform: scale(1) translate(0, 0) rotate(0deg); }
  50% { transform: scale(1.15) translate(30px, -20px) rotate(15deg); background: radial-gradient(circle, rgba(198, 131, 90, 0.3) 0%, rgba(37, 55, 91, 0.15) 50%, transparent 70%); }
  100% { transform: scale(0.9) translate(-20px, 30px) rotate(-15deg); }
}

/* ================= PREMIUM HERO BG UPGRADE ================= */
.india-hero {
  position: relative;
  overflow: hidden;
}
/* Multi-layered animated gradient orbs behind the images */
.india-hero-right::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.35) 0%, rgba(198, 131, 90, 0.2) 40%, transparent 70%);
  border-radius: 50%;
  top: -80px; left: -60px;
  filter: blur(50px);
  z-index: 0;
  animation: orb1 12s infinite alternate ease-in-out;
}
.india-hero-right::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(28, 43, 58, 0.25) 0%, rgba(37, 55, 91, 0.15) 50%, transparent 70%);
  border-radius: 50%;
  bottom: -60px; right: -40px;
  filter: blur(40px);
  z-index: 0;
  animation: orb2 15s infinite alternate ease-in-out;
}
@keyframes orb1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(40px, -30px) scale(1.2); opacity: 1; }
  100% { transform: translate(-20px, 40px) scale(0.85); opacity: 0.6; }
}
@keyframes orb2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-50px, 30px) scale(1.3); opacity: 0.9; }
  100% { transform: translate(30px, -40px) scale(0.8); opacity: 0.5; }
}
.india-hero-right .img-main,
.india-hero-right .img-sub {
  position: relative;
  z-index: 2;
}

/* ===== NEW INDIA TOURS SECTION (below hero) ===== */
.india-tours-section {
  padding: 60px 5% 80px;
  background: #fafaf8;
}
.tours-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.tours-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #1c2b3a 0%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.tours-section-header p {
  color: #888;
  font-size: 1rem;
  letter-spacing: 1px;
}
.india-tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}


/* ===== NEPAL SPECIFIC 3D STYLES ===== */
.nepal-hero {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.05);
}
.nepal-hero::before {
  content: '';
  position: absolute;
  top: -50px; left: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.nepal-hero-left, .nepal-hero-right {
  z-index: 1;
}
.nepal-title {
  background: linear-gradient(135deg, #4ade80 0%, #064e3b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 4px 10px rgba(22, 101, 52, 0.2);
  transform: translateZ(20px);
}
.nepal-stats .stat-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 101, 52, 0.1);
  box-shadow: 0 10px 25px rgba(22, 101, 52, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}
.nepal-stats .stat-box:hover {
  transform: translateY(-5px) translateZ(10px);
  box-shadow: 0 15px 30px rgba(22, 101, 52, 0.15);
}
.nepal-collage img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid #fff;
}
.nepal-collage img:nth-child(1) {
  transform: rotate(-3deg) scale(1.02);
}
.nepal-collage img:nth-child(2) {
  transform: rotate(4deg) scale(0.98);
}
.nepal-tours-section {
  background: #f8fafc;
}
.nepal-h2 {
  background: linear-gradient(135deg, #0f172a 0%, #10b981 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.nepal-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.nepal-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}



/* ===== BHUTAN SPECIFIC 3D STYLES ===== */
.bhutan-hero {
  /* Light green olive type cremish mix */
  background: linear-gradient(135deg, #f7f9f2 0%, #e2e8d5 100%);
  position: relative;
  overflow: hidden;
  color: #2c3e2e;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.05);
}
.bhutan-hero p {
  color: #4a5d4e;
}
.bhutan-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139, 158, 126, 0.2) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}

/* 3D Elements added to background */
.bhutan-hero::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(94, 115, 80, 0.1) 0%, transparent 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 0;
  animation: floatBlob 10s infinite alternate ease-in-out;
}
@keyframes floatBlob {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(30px, -30px) rotate(20deg); }
}

.bhutan-title {
  /* Rich forest/olive green */
  background: linear-gradient(135deg, #3a5a40 0%, #283618 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0px 4px 15px rgba(58, 90, 64, 0.2);
  transform: translateZ(30px);
}
.bhutan-stats .stat-box {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 158, 126, 0.3);
  color: #2c3e2e;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.bhutan-stats .stat-box:hover {
  transform: translateY(-8px) translateZ(15px);
  box-shadow: 0 15px 35px rgba(58, 90, 64, 0.15);
  border: 1px solid rgba(139, 158, 126, 0.6);
}
.bhutan-stats .stat-box span {
  color: #3a5a40;
  font-weight: bold;
}

/* 3D Glassmorphism Organic Frames Effect */
.bhutan-collage {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
}
.bhutan-collage img {
  position: absolute;
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(40, 54, 24, 0.2);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-style: preserve-3d;
  border: 2px solid rgba(255,255,255,0.8);
}
/* Staggered overlapping 3D glass layers */
.bhutan-collage img:nth-child(1) {
  transform: rotate(-5deg) translateX(-100px) translateY(-20px) translateZ(-50px);
  z-index: 1;
  opacity: 0.8;
  filter: grayscale(20%);
}
.bhutan-collage img:nth-child(2) {
  transform: rotate(5deg) translateX(100px) translateY(30px) translateZ(-30px);
  z-index: 2;
  opacity: 0.9;
}
.bhutan-collage img:nth-child(3) {
  transform: rotate(0deg) translateZ(40px);
  z-index: 3;
  border: 4px solid #fff;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(58, 90, 64, 0.3);
}

.bhutan-collage:hover img:nth-child(1) {
  transform: rotate(-10deg) translateX(-130px) translateY(-10px) translateZ(10px);
  opacity: 1;
  filter: grayscale(0%);
}
.bhutan-collage:hover img:nth-child(2) {
  transform: rotate(10deg) translateX(130px) translateY(10px) translateZ(20px);
  opacity: 1;
}
.bhutan-collage:hover img:nth-child(3) {
  transform: rotate(0deg) translateZ(80px) scale(1.05);
}

.bhutan-tours-section {
  background: #fbfcf9;
}
.bhutan-h2 {
  background: linear-gradient(135deg, #283618 0%, #588157 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.bhutan-btn {
  background: linear-gradient(135deg, #3a5a40, #283618);
  box-shadow: 0 4px 15px rgba(58, 90, 64, 0.2);
}
.bhutan-btn:hover {
  background: linear-gradient(135deg, #588157, #3a5a40);
  box-shadow: 0 6px 20px rgba(58, 90, 64, 0.3);
}


/* ===== SRI LANKA SPECIFIC STYLES ===== */
.srilanka-hero {
  /* Tropical deep teal to vibrant ocean */
  background: linear-gradient(135deg, #064e3b 0%, #0f766e 40%, #0284c7 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
/* Glowing golden radial burst */
.srilanka-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(253, 224, 71, 0.12) 0%, transparent 55%),
              radial-gradient(circle at 10% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

/* Extra shimmer pulse effect */
.srilanka-hero::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(253,224,71,0.03) 10%, transparent 20%);
  animation: shimmerRotate 25s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes shimmerRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Make text visible - bright white */
.srilanka-hero p {
  color: rgba(255,255,255,0.9) !important;
  font-size: 1.05rem;
  line-height: 1.8;
}
.srilanka-stats .stat-box strong {
  color: #fde047 !important;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.srilanka-stats .stat-box span {
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 600;
}
.srilanka-stats .stat-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(253, 224, 71, 0.3);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.srilanka-stats .stat-box:hover {
  transform: translateY(-6px);
  background: rgba(253, 224, 71, 0.15);
  box-shadow: 0 12px 30px rgba(253,224,71,0.2);
}

/* Falling Text Background */
.falling-text-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  pointer-events: auto;
  z-index: 1;
}
.falling-word {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  animation: fallDown 15s linear infinite;
  transition: color 0.4s ease, transform 0.4s ease, text-shadow 0.4s ease, letter-spacing 0.4s ease;
  cursor: default;
  user-select: none;
}
.falling-word:hover {
  color: rgba(253, 224, 71, 0.85);
  text-shadow: 0 0 30px rgba(253, 224, 71, 0.7), 0 0 60px rgba(253, 224, 71, 0.3);
  transform: scale(1.15);
  letter-spacing: 4px;
}
@keyframes fallDown {
  0%   { transform: translateY(-150px) rotate(-5deg); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(700px) rotate(5deg); opacity: 0; }
}
.word-1 { left: 5%;  animation-duration: 18s; animation-delay: 0s;  font-size: 3.5rem; }
.word-2 { left: 30%; animation-duration: 14s; animation-delay: 2s;  font-size: 4.5rem; }
.word-3 { left: 58%; animation-duration: 22s; animation-delay: 1s;  font-size: 2.5rem; }
.word-4 { left: 80%; animation-duration: 16s; animation-delay: 4s;  font-size: 3rem; }
.word-5 { left: 18%; animation-duration: 19s; animation-delay: 6s;  font-size: 4rem; }

/* Discover Sri Lanka title */
.srilanka-title {
  background: linear-gradient(135deg, #fef08a 0%, #fbbf24 60%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(2px 4px 10px rgba(251,191,36,0.4));
}

/* Magic Container for Map + Orbiting Images */
.srilanka-magic-container {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

/* Map pops out with NO white background using mix-blend-mode */
.srilanka-map-3d {
  width: 220px;
  z-index: 5;
  /* Remove white background using multiply blend mode */
  mix-blend-mode: screen;
  filter: drop-shadow(0 20px 40px rgba(253,224,71,0.5)) drop-shadow(0 10px 15px rgba(0,0,0,0.5));
  animation: mapPop 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
             mapBreathe 6s ease-in-out 1.5s infinite alternate;
  transform-style: preserve-3d;
}
@keyframes mapPop {
  0%   { transform: scale(0) rotateX(60deg) rotateY(40deg); opacity: 0; }
  60%  { transform: scale(1.15) rotateX(-5deg) rotateY(-5deg); opacity: 1; }
  100% { transform: scale(1) rotateX(0deg) rotateY(0deg); opacity: 1; }
}
@keyframes mapBreathe {
  0%   { transform: translateY(0px)   scale(1)    rotateY(0deg); }
  100% { transform: translateY(-18px) scale(1.03) rotateY(8deg); }
}

/* Circular orbiting images - ROUND, no white box */
.orbit-item {
  position: absolute;
  border-radius: 50% !important;  /* Force perfectly round */
  overflow: hidden;
  border: 4px solid #fde047;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(253,224,71,0.3);
  opacity: 0;
  animation: orbitFadeIn 1s ease-out forwards,
             orbitFloat 7s ease-in-out infinite alternate;
  background: transparent;
}
.orbit-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  transition: transform 0.5s ease;
}
.orbit-item:hover img {
  transform: scale(1.15);
}
.orbit-item:hover {
  border-color: #f97316;
  box-shadow: 0 15px 40px rgba(249,115,22,0.5);
}

/* Three distinct positions, staggered animations */
.orbit-1 {
  top: 5%; left: 8%;
  width: 150px; height: 150px;
  animation-delay: 0.5s, 0s;
}
.orbit-2 {
  bottom: 8%; left: 5%;
  width: 120px; height: 120px;
  animation-delay: 0.8s, 2s;
}
.orbit-3 {
  top: 20%; right: 5%;
  width: 170px; height: 170px;
  animation-delay: 1.1s, 4s;
}

@keyframes orbitFadeIn {
  0%   { opacity: 0; transform: scale(0) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes orbitFloat {
  0%   { transform: translateY(0px)   rotate(0deg); }
  100% { transform: translateY(-15px) rotate(4deg); }
}

/* Tours Section */
.srilanka-tours-section { background: #f8fafc; }
.srilanka-h2 {
  background: linear-gradient(135deg, #0f766e 0%, #0369a1 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.srilanka-btn {
  background: linear-gradient(135deg, #0f766e, #0369a1);
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.3);
}
.srilanka-btn:hover {
  background: linear-gradient(135deg, #0d9488, #0284c7);
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
}

/* Sri Lanka Center Showcase (rounded, no white box) */
.srilanka-center-showcase {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 5;
  border: 5px solid rgba(253, 224, 71, 0.8);
  box-shadow: 0 0 30px rgba(253,224,71,0.4),
              0 0 60px rgba(15,118,110,0.3),
              inset 0 0 30px rgba(0,0,0,0.2);
  animation: mapPop 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
             mapBreathe 6s ease-in-out 1.5s infinite alternate;
}
.srilanka-center-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Animated glow rings behind the center showcase */
.glow-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 2px solid rgba(253,224,71,0.4);
  animation: ringPulse 3s ease-out infinite;
  pointer-events: none;
}
.glow-ring-1 {
  width: 280px; height: 280px;
  margin: -140px 0 0 -140px;
  animation-delay: 0s;
}
.glow-ring-2 {
  width: 320px; height: 320px;
  margin: -160px 0 0 -160px;
  animation-delay: 1.5s;
  border-color: rgba(34,197,94,0.3);
}
@keyframes ringPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* 4th orbit item */
.orbit-4 {
  bottom: 5%; right: 5%;
  width: 115px; height: 115px;
  animation-delay: 1.4s, 6s;
}
