:root {
  --primary-saffron: #ff6f00;
  --royal-saffron: #e65100;
  --golden-yellow: #ffb300;
  --cream-base: #fffdf7;
  --dark-text: #2c3e50;
  --steel-dark: #6e6a68; /* Secondary Dark */
  --footer-bg: #1a1a1a; /* Deep Neutral */
  --accent: #ffc107;
  --dark: #212529;
  --light-gray: #f8f9fa;
  --faq-accent: #ffc107;
  --faq-dark: #212529;
  --sky-blue: #34b3f1;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #444;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-saffron);
  color: white;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}

.top-bar a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.top-bar a:hover {
  opacity: 0.8;
}

/* Navbar */
.navbar {
  background-color: white !important;
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.brand-container {
  display: flex;
  align-items: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-text);
  letter-spacing: 0.5px;
}

.brand-sub {
  font-size: 22px;
  color: var(--royal-saffron);
  font-weight: 700;
  letter-spacing: 1px;
}

/* Nav Links */
.nav-link {
  color: var(--dark-text) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 15px !important;
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--primary-saffron) !important;
}

/* Aligning FA icons in navigation */
.nav-link i {
  font-size: 14px;
  vertical-align: middle;
}

/* Dropdown Icon Colors & Spacing */
.dropdown-item i {
  width: 20px; /* Ensures icons align vertically in a straight line */
  text-align: center;
}

/* Keep the dropdown visible slightly longer for better UX */
.dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0; /* Smooth transition */
}

/* Hover effect for dropdown items to change icon color */
.dropdown-item:hover i {
  color: var(--royal-saffron) !important;
}

/* Booking Button */
.btn-book {
  background-color: var(--primary-saffron);
  color: white !important;
  border-radius: 4px;
  padding: 10px 25px !important;
  margin-left: 10px;
  box-shadow: 0 4px 6px rgba(255, 111, 0, 0.2);
}

.btn-book:hover {
  background-color: #000;
  transform: translateY(-1px);
}

/* --- Attractive Social Icons --- */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-left: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icons a:hover {
  background: #fff;
  color: var(--primary-saffron) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Navbar Menu Hover Effect (Underline) --- */
.navbar-nav .nav-link {
  position: relative;
  padding: 10px 15px;
}

/* Create the animated line */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 15px;
  background-color: var(--primary-saffron);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: calc(100% - 30px);
}

/* Remove underline from the Booking Button */
.navbar-nav .btn-book::after {
  display: none;
}

/* --- Dropdown Customization --- */
.dropdown-menu {
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 10px !important;
  animation: fadeInUp 0.3s ease-in-out;
}

.dropdown-item {
  font-weight: 500;
  padding: 8px 20px;
  font-size: 14px;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background-color: var(--cream-base);
  color: var(--royal-saffron);
  padding-left: 25px; /* Slight slide effect on hover */
}

/* Hero Section Base */
.hero-slider {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100%;
}

.hero-slider .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark Overlay for Readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* Typography & Elements */
.hero-tag {
  display: inline-block;
  background-color: var(--royal-saffron);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-desc {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Buttons */
.btn-main {
  background-color: var(--royal-saffron);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-main:hover {
  background-color: #e66000;
  color: white;
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: white;
  color: black;
}

/* Scroll Indicator Animation */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  opacity: 0.7;
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;
  margin-bottom: 10px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: white;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

/* Custom Slide Animations */
.carousel-item .hero-tag,
.carousel-item .hero-title,
.carousel-item .hero-desc,
.carousel-item .btn-group-custom {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.carousel-item.active .hero-tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.carousel-item.active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.carousel-item.active .hero-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.carousel-item.active .btn-group-custom {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

/* Vehicle Section Styling */
.vehicle-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.vehicle-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.vehicle-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-img-box img {
  transform: scale(1.1);
}

.price-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--royal-saffron);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 10px;
}

.header-line {
  width: 60px;
  height: 3px;
  background: var(--primary-saffron);
  margin-top: 10px;
}

.btn-outline-saffron {
  border: 2px solid var(--primary-saffron);
  color: var(--primary-saffron);
  font-weight: 700;
  transition: all 0.3s;
}

.btn-outline-saffron:hover {
  background: var(--primary-saffron);
  color: white;
}

/* Card Action Buttons */
.btn-call {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 5px;
  transition: all 0.3s ease;
}

.btn-call:hover {
  background-color: #6c757d;
  color: white;
  border-color: #6c757d;
}

.btn-book-card {
  background-color: var(--primary-saffron);
  color: white;
  border: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 5px;
  transition: all 0.3s ease;
}

.btn-book-card:hover {
  background-color: var(--royal-saffron);
  color: white;
  box-shadow: 0 4px 8px rgba(230, 81, 0, 0.3);
}

/* Ensure cards are same height */
.vehicle-card {
  display: flex;
  flex-direction: column;
}

.gyh-footer {
  background-color: var(--footer-bg);
  color: #e0e0e0;
  font-family: "Poppins", sans-serif;
  border-top: 4px solid var(--royal-saffron);
}

.footer-section-title {
  color: var(--primary-saffron);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 35px;
  height: 3px;
  background-color: var(--royal-saffron);
}

.brand-name {
  color: var(--royal-saffron);
  font-weight: 900;
}

.brand-text {
  font-size: 14px;
  line-height: 1.7;
  color: #b0b0b0;
}

/* Footer Navigation Animation */
.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}

.footer-nav a i {
  font-size: 10px;
  color: var(--royal-saffron);
  margin-right: 8px;
}

.footer-nav a:hover {
  color: var(--royal-saffron);
  padding-left: 10px;
}

/* Contact Info Styling */
.contact-info-list {
  list-style: none;
  padding: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-info-list i {
  color: var(--royal-saffron);
  margin-right: 15px;
  margin-top: 4px;
}

/* QR Code & Badges */
.qr-image {
  width: 150px;
  height: 150px;
}

.qr-label {
  color: #333;
  font-weight: 600;
  font-size: 12px;
}

/* Footer Bottom Bar */
.footer-bottom {
  background: #000;
  padding: 20px 0;
  border-top: 1px solid #333;
  font-size: 13px;
}

/* Social Icons (Circle Style) */
.social-circle-links a {
  width: 35px;
  height: 35px;
  background: var(--royal-saffron);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.social-circle-links a:hover {
  background: var(--golden-yellow);
  transform: translateY(-3px);
}
/* Policy Links Styling */
.policy-links {
  padding: 0;
}

.policy-links li {
  font-size: 13px;
  color: var(--steel-dark); /* Using your secondary dark color */
}

.policy-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-links a:hover {
  color: var(--sky-blue); /* Sky Blue from your preferences on hover */
  text-decoration: underline;
}

.developer-name {
  color: #ffffff;
  font-weight: 600;
}

/* Adjusting the bottom bar for better spacing */
.footer-bottom {
  background: #000;
  padding: 25px 0;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #888;
}

/* Container Styles */
.footer-contact-stack {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.footer-icon-left {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

/* Common Icon Styling */
.footer-contact-stack a,
.back-to-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Individual Colors */
.icon-whatsapp {
  background-color: #25d366;
  animation: pulse-green 2s infinite;
}
.icon-call {
  background-color: #34b3f1;
} /* Sky Blue */
.icon-email {
  background-color: #f15412;
} /* Orange */
.back-to-top {
  background-color: #6e6a68;
} /* Steel Dark */

/* Hover Effects */
.footer-contact-stack a:hover {
  transform: scale(1.1) translateX(-5px);
}

.back-to-top:hover {
  background-color: #c8231f; /* Red on hover */
  transform: translateY(-5px);
}
/* Initial state: hidden and transparent */
.back-to-top {
  background-color: #6e6a68;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  transform: translateY(20px); /* Starts slightly lower */
}

/* State when the user scrolls down */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* Pops up into place */
}

.tour-section {
  padding: 80px 5%;
  background-color: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.title-main {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
}

.subtitle-main {
  color: #6e6a68; /* Steel Dark */
  font-size: 1.1rem;
}

/* Grid Logic */
.tour-grid {
  display: grid;
  gap: 25px;
  margin-bottom: 25px;
}

.featured-grid {
  grid-template-columns: repeat(2, 1fr);
}
.secondary-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Card Styling */
.tour-item {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tour-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tour-item:hover img {
  transform: scale(1.1);
}

/* Gradient Overlay */
.tour-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

.tour-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.badge {
  background-color: #f15412; /* Brand Orange */
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* View All Button */
.btn-container {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #6e6a68; /* Steel Dark Base */
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.view-all-btn:hover {
  background-color: #c8231f; /* Brand Red on Hover */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(200, 35, 31, 0.3);
}

:root {
  --brand-orange: #f15412;

  --steel-dark: #6e6a68;
}

.section-title {
  font-weight: 800;
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: var(--golden-yellow);
  margin: 10px auto;
}

.section-subtitle {
  color: var(--steel-dark);
  font-size: 1.1rem;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.package-img {
  position: relative;
  height: 220px;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duration-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
}

.package-body {
  padding: 25px;
}

.package-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.price-tag {
  color: var(--cream-base);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.price-tag span {
  font-size: 0.9rem;
  color: #777;
  font-weight: 400;
}

.package-includes {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.package-includes li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
}

.package-includes li i {
  color: #28a745;
  margin-right: 10px;
}

.btn-book-now {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff8c00, var(--golden-yellow));
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-book-now:hover {
  background: var(--golden-yellow);
  box-shadow: 0 5px 15px rgba(200, 35, 31, 0.3);
}

.spiritual-hero {
  position: relative;
  min-height: 500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("images/uttarakhand-bg.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 80px 0;
  border-radius: 20px; /* Optional: for the rounded look in your image */
  overflow: hidden;
  margin: 20px;
}

.hero-content-box {
  padding: 20px;
  animation: fadeInUp 1s ease-out;
}

.badge-pill {
  background: var(--golden-yellow);
  color: var(--dark-text);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profile-frame {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight {
  color: var(--golden-yellow);
}

.btn-primary-custom {
  background: var(--primary-saffron);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom:hover {
  background: var(--royal-saffron);
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 111, 0, 0.6);
}
/* Testimonials Section Styles */
.testimonials-section {
  background-color: #fcfcfc;
}

.testimonial-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.active-card {
  border-bottom: 5px solid var(--primary-orange); /* #f15412 */
}

.quote-icon {
  font-size: 40px;
  color: var(--sky-blue); /* #34b3f1 */
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 30px;
}

.star-rating {
  color: #ffc107; /* Gold Star Color */
  margin-bottom: 20px;
  font-size: 14px;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--sky-blue);
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Header line for consistency */
.header-line {
  width: 60px;
  height: 3px;
  background: var(--primary-orange);
  margin-top: 10px;
}
/* CTA Section Styling */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: url("https://images.unsplash.com/photo-1544735716-392fe2489ffa?q=80&w=1920&auto=format&fit=crop")
    no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); /* Dark overlay for text readability */
  z-index: 1;
}

.cta-subtitle {
  color: var(--accent); /* #34b3f1 */
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.text-orange {
  color: var(--brand-orange); /* #f15412 */
}

.cta-text {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* CTA Buttons */
.btn-cta-main {
  background-color: var(--brand-orange);
  color: white;
  padding: 15px 40px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  transition: 0.3s;
  border: none;
}

.btn-cta-main:hover {
  background-color: #ffffff;
  color: var(--brand-orange);
  transform: translateY(-5px);
}

.btn-cta-whatsapp {
  background-color: #25d366;
  color: white;
  padding: 15px 40px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  transition: 0.3s;
  border: none;
}

.btn-cta-whatsapp:hover {
  background-color: #128c7e;
  color: white;
  transform: translateY(-5px);
}

/* Trust Badges */
.badge-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sky-blue);
}

.badge-item i {
  color: #25d366; /* Green for checkmarks */
}

/* chardham yatra section */
.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-weight: 800;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-saffron),
    var(--golden-yellow)
  );
  margin: 10px auto;
  border-radius: 2px;
}

/* Card Styling */
.yatra-card {
  background: #fff;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
}

.yatra-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(230, 81, 0, 0.15);
}

/* Image Section */
.img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.yatra-card:hover .img-wrapper img {
  transform: scale(1.1);
}

.badge-duration {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

/* Content Section */
.card-content {
  padding: 25px;
}

.package-title {
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 5px;
}

.price-box {
  margin-bottom: 15px;
}

.price-main {
  color: var(--royal-saffron);
  font-size: 1.6rem;
  font-weight: 800;
}

.price-label {
  font-size: 0.8rem;
  color: var(--steel-dark);
}

.itinerary-short {
  font-size: 0.85rem;
  color: #555;
  background: #fdf2e9;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 3px solid var(--primary-saffron);
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.features-list li {
  font-size: 0.88rem;
  color: var(--steel-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.features-list li i {
  color: #27ae60;
  margin-right: 10px;
  font-size: 1rem;
}

/* Action Buttons */
.button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-call {
  border: 2px solid var(--primary-saffron);
  color: var(--primary-saffron);
  background: transparent;
  font-weight: 600;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s;
}

.btn-call:hover {
  background: var(--primary-saffron);
  color: #fff;
}

.btn-book-now {
  background: linear-gradient(
    135deg,
    var(--primary-saffron),
    var(--royal-saffron)
  );
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
  transition: all 0.3s;
}

.btn-book-now:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.4);
  color: #fff;
}

.common-hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  background-image: url("images/uttarakhand-bg.jpg"); /* Replace per page */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  overflow: hidden;
}

/* Gradient Overlay for Text Readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(26, 26, 26, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 10%;
}

/* Breadcrumb Styling */
.breadcrumb-nav {
  margin-bottom: 20px;
}

.breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  transition: 0.3s;
}

.breadcrumbs li a:hover {
  color: var(--primary-saffron);
  opacity: 1;
}

.separator {
  color: var(--golden-yellow);
  font-size: 0.8rem;
}

.active-page {
  color: var(--primary-saffron);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Title Styling */
.hero-title {
  font-size: 3.5rem;
  color: #ffffff;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  text-transform: capitalize;
}

.accent-text {
  color: var(--primary-saffron);
  position: relative;
}

.hero-subtitle {
  color: #e0e0e0;
  font-size: 1.2rem;
  margin-top: 15px;
  max-width: 600px;
  font-weight: 300;
}

/* Decorative Gold Line */
.hero-line {
  width: 80px;
  height: 5px;
  background: var(--golden-yellow);
  margin-top: 30px;
  border-radius: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .common-hero {
    height: 350px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-content {
    padding: 0 5%;
  }
}
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* Image Styling */
.about-image {
  position: relative;
}

.main-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-saffron);
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(230, 81, 0, 0.3);
}

.experience-badge .years {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

/* Text Styling */
.sub-title {
  color: var(--royal-saffron);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.main-title {
  color: var(--dark-text);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  color: var(--primary-saffron);
}

.description {
  color: var(--steel-dark);
  line-height: 1.8;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 15px;
}

.feature-item h5 {
  color: var(--dark-text);
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.feature-item p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--steel-dark);
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-saffron);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--royal-saffron);
  transform: translateY(-3px);
}
/* Using your defined variables */
.stats-section {
  background-color: var(--footer-bg); /* Deep Neutral background */
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-card {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-saffron); /* Using #ff6f00 */
  margin: 0 0 10px 0;
  font-family: "Poppins", sans-serif;
}

.stat-label {
  color: #ffffff; /* Contrast against dark bg */
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.stat-line {
  width: 40px;
  height: 4px;
  background-color: var(--golden-yellow); /* Using #ffb300 */
  margin: 15px auto 0;
  border-radius: 2px;
}

.contact-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
  margin-top: 6rem;
}

.info-sidebar {
  background-color: var(--dark);
  color: white;
  padding: 40px;
  height: 100%;
}

.btn-accent {
  background-color: var(--accent);
  border: none;
  color: var(--dark);
  font-weight: 600;
  padding: 12px 30px;
  transition: 0.3s;
}

.btn-accent:hover {
  background-color: #e5ad06;
  transform: translateY(-2px);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.contact-icon {
  color: var(--accent);
  font-size: 1.5rem;
  margin-right: 15px;
}

.add-container {
  background: #eee;
  border-radius: 10px;
  margin-top: 20px;
}

.location-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: #fff;
  border: 8px solid #fff;
}

/* Responsive Iframe */
.map-container {
  position: relative;
  padding-bottom: 450px; /* Map Height */
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  filter: grayscale(10%) contrast(1.1); /* Subtle professional filter */
}

.location-card {
  background: var(--dark);
  color: white;
  padding: 30px;
  border-radius: 15px;
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;
  max-width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-left: 5px solid var(--accent);
}

.section-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accent-line {
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  margin-bottom: 30px;
}

.btn-directions {
  background-color: var(--accent);
  color: var(--dark);
  font-weight: 700;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-directions:hover {
  background-color: #fff;
  color: var(--dark);
}

/* SECTION BG */
.fleet-section {
  background: linear-gradient(135deg, #f8fbff, #eef3f9);
}

/* CARD */
.fleet-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* IMAGE BOX */
.vehicle-img-box {
  position: relative;
  overflow: hidden;
}

.vehicle-img-box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.5s;
}

.fleet-card:hover img {
  transform: scale(1.1);
}

/* GRADIENT OVERLAY */
.vehicle-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* BADGES */
.badge-group {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.v-badge {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 10px;
  border-radius: 30px;
  font-size: 12px;
  margin-right: 5px;
  display: inline-block;
}

/* BODY */
.card-body-custom {
  padding: 20px;
}

.v-title {
  font-size: 22px;
  font-weight: 700;
}

.v-desc {
  font-size: 14px;
  color: #666;
}

/* PRICE */
.v-price {
  font-weight: 600;
  margin: 10px 0;
}

.v-price span {
  color: #ff3c00;
  font-size: 18px;
}

/* BUTTONS */
.btn-action {
  display: block;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  font-size: 14px;
  text-decoration: none;
}

.btn-whatsapp {
  background: green;
  color: #fff;
}

.btn-call {
  background: var(--brand-orange);
  color: #fff;
}

.btn-action:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-weight: 800;
  font-size: 32px;
}

.section-title p {
  color: #666;
}
.global-yatra-header {
  font-family: "Inter", sans-serif;
  padding-top: 2rem;
}

/* Refined Badge Styling */
.custom-pill {
  background-color: var(--accent) !important;
  color: var(--dark) !important;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.75rem;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.2);
}

/* Title Animation/Style */
.title-main {
  color: var(--dark);
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Subtle accent underline */
.title-main::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 2px;
}

.text-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6c757d;
}

.route-section {
  background-color: var(--light-gray);
  padding: 80px 0;
  font-family: "Inter", sans-serif;
}

.section-subtitle {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 50px;
}

.section-title span {
  color: var(--accent);
  position: relative;
}

/* Modern Route Card Styling */
.route-card {
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.route-card i {
  color: var(--accent);
  margin-right: 15px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.route-card:hover {
  background-color: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.route-card:hover i {
  transform: translateX(5px);
  color: var(--accent);
}

/* Highlight specific destinations */
.route-card strong {
  color: inherit;
  margin-left: 4px;
}

.divider-compass {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 40px 0;
}
.divider-compass::before,
.divider-compass::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #eee;
}
.divider-compass i {
  padding: 0 15px;
  color: #ffc107;
  font-size: 1.5rem;
}
.line-travel-icon {
  position: relative;
  text-align: center;
  margin: 50px 0;
  border-bottom: 1px dashed #ccc;
}

.line-travel-icon::after {
  content: "\f1b9"; /* FontAwesome Car Icon code */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff; /* Match your section background */
  padding: 0 15px;
  color: #ffc107;
  font-size: 1.2rem;
}

/* About Char Dham Yatra */

.about-chardham {
  padding: 100px 0;
  background-color: #fff;
}

/* Section Header Styling */
.section-tag {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.main-title {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.accent-text {
  color: var(--accent);
}

.description-text {
  color: #6c757d;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* Feature Boxes */
.feature-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
  background: var(--light-gray);
}

.feature-box:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.icon-circle {
  min-width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 20px;
}

.feature-content h5 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.feature-content p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Image Styling */
.img-stack {
  position: relative;
  padding-bottom: 40px;
}

.main-img {
  width: 90%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 30px;
  border-radius: 20px;
  border-bottom: 5px solid var(--accent);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-badge h4 {
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0;
  font-size: 1.8rem;
}

.floating-badge p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* Rajasthan Section */
.rajasthan-section {
  padding: 100px 0;
  background-color: var(--light-cream);
  position: relative;
  overflow: hidden;
}

/* Royal Header Styling */
.royal-tag {
  background-color: var(--accent);
  color: var(--dark);
  font-weight: 800;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
}

.display-title {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

.display-title span {
  color: var(--accent);
  display: block;
}

.description-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
}

/* Destination Grid */
.dest-box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  margin-bottom: 15px;
  border: 1px solid transparent;
}

.dest-box:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dest-icon {
  width: 45px;
  height: 45px;
  background: var(--dark);
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.dest-info h6 {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

/* Image Stack */
.royal-gallery {
  position: relative;
  padding: 20px;
}

.main-palace-img {
  width: 100%;
  border-radius: 20px;
  height: 450px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-circle {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--accent);
  border: 8px solid #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.experience-circle span {
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
}

.experience-circle small {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .location-card {
    position: relative;
    bottom: 0;
    left: 0;
    max-width: 100%;
    margin-top: 20px;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: 2.5rem;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: 2;
    margin-top: 40px;
  }
}

/* Responsive CTA */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  .btn-cta-main,
  .btn-cta-whatsapp {
    width: 100%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .secondary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-grid,
  .secondary-grid {
    grid-template-columns: 1fr;
  }
  .tour-item {
    height: 250px;
  }
}

/* WhatsApp Pulse Animation */
@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 991px) {
  .policy-links {
    margin: 10px 0 !important;
  }
}
/* Animation for dropdown appearance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-nav {
    padding: 20px 0;
  }
  .btn-book {
    margin-left: 0;
    margin-top: 10px;
    display: inline-block;
  }
}
