* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --saffron: #FF9933;
  --saffron-dark: #E68A2E;
  --sky-blue: #87CEEB;
  --sky-blue-dark: #5F9EA0;
  --white: #ffffff;
  --off-white: #f9f7f4;
  --gray-light: #f0f0f0;
  --gray: #666666;
  --dark: #2c3e50;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--off-white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.3;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--sky-blue));
  border-radius: 2px;
}

.section-title span {
  color: var(--saffron);
}

/* ===== STICKY HEADER ===== */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* FIXED LOGO STYLES - MAKE IT BIGGER */
.logo {
  display: flex;
  align-items: center;
  max-width: 350px !important;
  width: 100%;
  flex: 0 0 auto;
}

.logo img {
  width: 100% !important;
  height: auto !important;
  max-height: 100px !important;
  min-height: 80px !important;
  object-fit: contain !important;
  display: block;
}

/* Navigation menu adjustments */
.nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-right: 2rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1rem;
  white-space: nowrap;
}

.nav-list a:hover {
  color: var(--saffron);
}

.header-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.btn-book {
  background: var(--saffron);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-book:hover {
  background: var(--saffron-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
}

/* ===== HERO SECTION ===== */
.hero-section {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url("https://www.chardhamhotels.net/images/chardham-wintertour.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content {
  color: #ffffff;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-buttons a {
  text-decoration: none;
  padding: 12px 25px;
  margin: 8px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
}

.btn-primary {
  background: var(--saffron);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--saffron);
}

.btn-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: white;
  color: var(--dark);
}

/* ===== CARD GRIDS ===== */
.dham-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.dham-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.dham-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.dham-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.card-content .meta {
  color: var(--saffron);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.spiritual-significance {
  background: var(--off-white);
  padding: 0.8rem;
  border-radius: 10px;
  margin: 1rem 0;
  font-style: italic;
  font-size: 0.9rem;
  border-left: 3px solid var(--saffron);
}

.btn-readmore {
  display: inline-block;
  color: var(--saffron);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-readmore:hover {
  color: var(--saffron-dark);
  transform: translateX(5px);
}

/* Local temples grid */
.local-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.local-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.local-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.local-image {
  height: 180px;
  overflow: hidden;
}

.local-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.local-content {
  padding: 1.2rem;
}

.local-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.local-content .location {
  color: var(--sky-blue-dark);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.local-content p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.local-content .importance {
  font-size: 0.85rem;
  color: var(--saffron);
  font-weight: 500;
}

.btn-learn {
  display: inline-block;
  color: var(--saffron);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.feature {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature i {
  font-size: 2.5rem;
  color: var(--saffron);
  margin-bottom: 1rem;
}

/* Vehicles */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.vehicle-card {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(255, 153, 51, 0.1);
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 45px rgba(255, 153, 51, 0.2);
  border-color: var(--saffron);
}

.vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--saffron), var(--sky-blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.vehicle-card:hover::before {
  transform: scaleX(1);
}

.vehicle-image {
  height: 200px;
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.1);
}

.vehicle-content {
  padding: 2rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vehicle-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.8rem;
  position: relative;
  display: inline-block;
}

.vehicle-content h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--sky-blue));
  border-radius: 2px;
  transition: width 0.3s;
}

.vehicle-card:hover .vehicle-content h4::after {
  width: 80px;
}

.vehicle-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.vehicle-features li {
  font-size: 0.95rem;
  color: var(--gray);
  background: var(--off-white);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s;
}

.vehicle-features li i {
  color: var(--saffron);
  font-size: 1rem;
}

.vehicle-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--saffron);
  margin-bottom: 1rem;
}

.btn-vehicle {
  width: 100%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-vehicle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
  z-index: -1;
}

.btn-vehicle:hover::before {
  left: 100%;
}

/* ===== ABOUT SECTION - FULL WIDTH ===== */
.about-fullwidth {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  left: 0;
  right: 0;
}

.about-section-full {
  background: linear-gradient(135deg, #fff9f0, #fff);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.about-section-full::before {
  content: '🕉️';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 8rem;
  opacity: 0.03;
  transform: rotate(-15deg);
  pointer-events: none;
}

.about-section-full::after {
  content: '🔱';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 8rem;
  opacity: 0.03;
  transform: rotate(15deg);
  pointer-events: none;
}

/* Stats Wrapper */
.about-stats-wrapper {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  padding: 4rem 0;
  margin: 3rem 0 0;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.about-stats-wrapper::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.about-stats-wrapper::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.about-stats-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem 1rem;
  border-radius: 30px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
}

.stat-number span {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.stat-label {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.9;
}

.stat-bar {
  width: 0%;
  height: 4px;
  background: white;
  margin-top: 1.5rem;
  border-radius: 2px;
  transition: width 1.5s ease;
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.stat-item:hover .stat-bar {
  width: 100%;
}

/* Promise Banner */
.promise-banner-full {
  background: linear-gradient(135deg, var(--dark), #1a2a35);
  padding: 3rem 0;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  border-top: 4px solid var(--saffron);
  border-bottom: 4px solid var(--saffron);
}

.promise-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  color: white;
  text-align: center;
}

.promise-content i {
  font-size: 3.5rem;
  color: var(--saffron);
  filter: drop-shadow(0 0 15px rgba(255,153,51,0.5));
}

.promise-content p {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
  max-width: 800px;
  line-height: 1.5;
}

/* ===== OPENING DATES BANNER ===== */
.dates-fullwidth {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark), #1e3a4a);
  padding: 3rem 0;
  border-top: 4px solid var(--saffron);
  border-bottom: 4px solid var(--saffron);
  margin: 3rem 0;
}

.dates-wrapper {
  position: relative;
  overflow: hidden;
}

.dates-wrapper::before {
  content: '🕉️';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 10rem;
  opacity: 0.05;
  transform: rotate(-15deg);
  pointer-events: none;
}

.dates-wrapper::after {
  content: '🔱';
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 10rem;
  opacity: 0.05;
  transform: rotate(15deg);
  pointer-events: none;
}

.dates-header {
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.dates-header i {
  font-size: 3rem;
  color: var(--saffron);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 15px rgba(255,153,51,0.5));
}

.dates-header h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dates-header p {
  font-size: 1.1rem;
  opacity: 0.8;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.date-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: white;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.date-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--saffron);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.date-card.featured {
  background: linear-gradient(135deg, rgba(255,153,51,0.2), rgba(135,206,235,0.2));
  border: 2px solid var(--saffron);
  position: relative;
}

.date-card.featured::before {
  content: '⭐';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  opacity: 0.5;
}

.date-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 153, 51, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--saffron);
  border: 2px dashed var(--saffron);
  transition: all 0.4s;
}

.date-card:hover .date-icon {
  background: var(--saffron);
  color: white;
  transform: rotate(360deg);
  border-style: solid;
}

.date-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.date-display {
  margin-bottom: 0.8rem;
}

.date-day {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,153,51,0.5);
}

.date-month {
  font-size: 1.2rem;
  margin-left: 0.3rem;
  color: rgba(255,255,255,0.8);
}

.date-time {
  font-size: 1rem;
  color: var(--sky-blue);
  font-weight: 500;
  margin-bottom: 1rem;
}

.date-badge {
  background: rgba(255, 153, 51, 0.2);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255,153,51,0.3);
}

.date-note {
  font-size: 0.8rem;
  margin-top: 0.8rem;
  color: var(--sky-blue);
  font-style: italic;
}

.dates-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 2rem;
  border-radius: 60px;
  margin-top: 2rem;
}

.registration-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 1.1rem;
}

.registration-note i {
  color: var(--saffron);
  font-size: 1.5rem;
}

.countdown-container {
  text-align: center;
}

.countdown-label {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.countdown-timer {
  display: flex;
  gap: 1rem;
}

.countdown-item {
  text-align: center;
  min-width: 60px;
}

.countdown-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
  text-shadow: 0 0 15px rgba(255,153,51,0.5);
}

.countdown-text {
  font-size: 0.7rem;
  color: white;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== TESTIMONIALS SLIDER ===== */
#testimonials {
  padding: 2rem 0 3rem;
  position: relative;
}

.testimonials-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.testimonials-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-wrapper {
  overflow: hidden;
  margin: 0 -10px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  background: white;
  padding: 1.5rem 1.2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border: 1px solid rgba(255, 153, 51, 0.1);
  position: relative;
  min-width: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 153, 51, 0.15);
  border-color: var(--saffron);
}

.testimonial-stars {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-stars i {
  color: #FFD700;
  font-size: 0.9rem;
  filter: drop-shadow(0 2px 3px rgba(255,215,0,0.2));
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed rgba(255, 153, 51, 0.2);
  padding-top: 0.8rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--saffron);
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255, 153, 51, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 30px;
}

.testimonial-location i {
  font-size: 0.65rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  font-size: 1rem;
  transition: all 0.3s;
  z-index: 10;
  border: 1px solid rgba(255, 153, 51, 0.2);
}

.slider-arrow:hover {
  background: var(--saffron);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(255,153,51,0.3);
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

.slider-dots-container {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--saffron);
  transform: scale(1.3);
  width: 20px;
  border-radius: 10px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-radius: 50px 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--saffron);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--saffron);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s;
}

.social-links a:hover {
  color: var(--saffron);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
  color: var(--saffron);
  text-decoration: none;
}

/* ===== FLOATING BUTTONS ===== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.sticky-book-mobile {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .dham-grid, .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .local-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  
  .logo {
    max-width: 250px !important;
  }
  
  .logo img {
    max-height: 70px !important;
    min-height: 60px !important;
  }
  
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s;
    z-index: 999;
    justify-content: flex-start;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: 2rem;
    width: 100%;
  }
  
  .nav-list a {
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
  }
  
  .header-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-stats-new,
  .dates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0.5rem 1rem;
  }
  
  .logo {
    max-width: 200px !important;
  }
  
  .logo img {
    max-height: 60px !important;
    min-height: 50px !important;
  }
  
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }
  
  .hero-section {
    height: 70vh;
  }
  
  .dham-grid, .vehicle-grid, .local-grid, .features-grid, 
  .footer-grid, .about-stats-new, .dates-grid {
    grid-template-columns: 1fr;
  }
  
  .sticky-book-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 998;
  }
  
  .sticky-book-mobile a {
    display: block;
    background: var(--saffron);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
  }
  
  .wa-float {
    bottom: 80px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonials-slider-container {
    padding: 0 30px;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
  }
  
  .dates-footer {
    flex-direction: column;
    text-align: center;
  }
  
  .countdown-timer {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .testimonials-slider-container {
    padding: 0 25px;
  }
  
  .slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    background: var(--saffron);
    color: white;
  }
  
  .countdown-timer {
    flex-wrap: wrap;
  }
  
  .countdown-item {
    min-width: 50px;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
}