
/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
}

.top-bar {
  background-color: #fecd1a;
  padding: 5px 15px;
  color: #014421;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  gap: 50px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  gap: 10px;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-top: -100px;
  margin-bottom: -30px;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: #f1f1f4;
  border-radius: 25px;
  padding: 10px 20px;
  width: 100%;
  max-width: 400px;
  margin: auto;
  border-bottom: 4px solid #fecd1a;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  box-sizing: border-box;
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #555;
}

.search-bar i {
  margin-right: 10px;
  color: #888;
  font-size: 18px;
}

#suggestionsList {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 6px;
  padding: 0;
  list-style: none;
  z-index: 10;
}

#suggestionsList li {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

#suggestionsList li:hover {
  background-color: #f0f0f0;
}

#suggestionsList img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.navbar-links {
  display: flex;
  gap: 15px;
}

.navbar-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.navbar-links a:hover::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fecd1a;
}

.navbar-icons {
  display: flex;
  gap: 25px;
}

.navbar-icons a {
  color: #333;
  font-size: 18px;
  transition: 0.3s ease;
}

.navbar-icons a:hover {
  color: #fecd1a;
}

.request-btn {
  background-color: #fecd1a;
  border: none;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
  margin-left: 20px;
}

.request-btn:hover {
  background-color: #e0b800;
  transform: scale(1.05);
}

.request-btn i {
  margin-right: 8px;
}

.popup-form {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.form-container {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 360px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: popIn 0.3s ease;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: 0.3s ease;
}

.form-container input:focus,
.form-container textarea:focus {
  border-color: #fecd1a;
  outline: none;
}

.form-container button {
  width: 100%;
  background-color: #fecd1a;
  border: none;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: #e0b800;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}


@keyframes popIn {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.container {
  max-width: 1300px;
  margin: 20px auto;
  padding: 0 20px;
    border-bottom: 2px solid #fecd1a;
}
@media screen and (max-width: 768px) {
  .top-bar {
    text-align: center;
    font-size: 14px;
  }

  .logo-search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  .logo {
    max-width: 120px;
    margin-bottom: 10px;
  }

  .search-bar {
    width: 90%;
    max-width: 300px;
    margin: 10px 0;
    padding: 10px 15px;
    font-size: 14px;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
  }

  .request-btn {
    display: block;
    width: 80%;
    max-width: 250px;
    margin: 0 auto 20px;
    padding: 12px;
    font-size: 15px;
    text-align: center;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  margin: 0;
  font-family: sans-serif;
  background-color: #fff;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 450px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 20px;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  cursor: pointer;
}

.slide.active {
  display: block;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.nav:hover {
  background-color: rgba(255, 255, 255, 1);
}

.left {
  left: 15px;
}

.right {
  right: 15px;
}

/* Package Buttons Section */
/* Package Buttons Section */
.package-buttons {
  text-align: center;
  margin: 20px 0;
}

.package-buttons button {
  background-color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px 10px;
  font-size: 16px;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.package-buttons button:hover {
  border-bottom: 3px solid #fecd1a;
  color: #fecd1a;
}
.package-buttons button i {
  font-size: 22px;
  color: #fecd1a;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.package-buttons button:hover i {
  color: #222;
}
.button-underline {
  width: 300px;
  height: 4px;
  background: linear-gradient(to right, #fecd1a, #ff9800);
  margin: 8px auto 20px auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.trending-section,
.himachal-section,
.international-section,
.ladakh-spiti-section,
.kashmir-section {
  padding: 40px 20px;
  background: #fff;
}

.trending-title,
.international-section .section-title,
.himachal-section .section-title,
.ladakh-spiti-section .section-title,
.kashmir-section .section-title {
  text-align: center;
  color: #014421;
  font-size: 28px;
  font-weight: bold;
}

.trending-line,
.international-section .section-line,
.himachal-section .section-line,
.ladakh-spiti-section .section-line,
.kashmir-section .section-line {
  width: 60px;
  height: 4px;
  background: #fecd1a;
  margin: 10px auto 30px;
  border-radius: 4px;
}

.trending-cards,
.himachal-section .trending-cards,
.international-section .trending-cards,
.ladakh-spiti-cards,
.kashmir-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
  justify-items: center;
}

.ladakh-spiti-cards .spiti-row,
.ladakh-spiti-cards .ladakh-last-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 20px;
}

.package-card {
  background: #f9f9f9;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.package-card:hover {
  transform: translateY(-5px);
}

.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.customize {
  background: #1e3a8a;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 8px;
}

.offer {
  background: #22c55e;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 8px;
}

.duration {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 13px;
}

.card-content {
  padding: 15px;
}

.location {
  font-size: 13px;
  color: #777;
  margin-bottom: 5px;
}

.card-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.new {
  font-size: 13px;
  color: #444;
  margin-bottom: 5px;
}

.price {
  margin-bottom: 10px;
}

.price .old {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.price .new-price {
  font-size: 16px;
  color: green;
  font-weight: bold;
  margin-left: 10px;
}

.card-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.whatsapp-btn,
.call-btn {
  flex: 1;
  padding: 10px 15px;
  font-size: 14px;
  text-align: center;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.whatsapp-btn {
  background-color: #25D366;
}

.call-btn {
  background-color: #3b82f6;
}

.whatsapp-btn:hover {
  background-color: #1ba64b;
  transform: translateY(-2px);
}

.call-btn:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}
/* Responsive Styles */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 15px 20px;
    gap: 10px;
  }

  .logo img {
    height: 75px;
    margin: 0;
  }

  .search-bar {
    max-width: 100%;
    padding: 8px 15px;
    margin-top: 10px;
  }

  .navbar-links,
  .navbar-icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .request-btn {
    margin-left: 0;
    margin-top: 10px;
  }

  .hero-slider {
    height: 240px;
    border-radius: 12px;
    margin: 10px 0;
  }

  .slide {
    height: 240px;
    border-radius: 12px;
  }

  .nav {
    font-size: 20px;
    padding: 6px 10px;
  }

  .container {
    padding: 0 10px;
  }

  .package-buttons button {
    padding: 8px 14px;
    font-size: 14px;
    margin: 4px 6px;
  }

  .package-card {
    max-width: 100%;
    border-radius: 12px;
  }

  .card-img img {
    height: 200px;
  }

  .card-content {
    padding: 10px;
  }

  .price .new-price {
    font-size: 15px;
  }

  .card-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-btn,
  .call-btn {
    padding: 10px;
    font-size: 14px;
    border-radius: 30px;
  }

  .form-container {
    width: 90%;
    padding: 20px;
  }

  .popup-form {
    align-items: flex-start;
    padding-top: 30px;
  }

  .top-bar {
    font-size: 14px;
    gap: 20px;
    flex-wrap: wrap;
    padding: 8px;
  }

  .trending-title,
  .section-title {
    font-size: 22px;
  }
}

/* Show More Button */
.show-more-btn {
  display: block;
  margin: 30px auto 0;
  padding: 10px 30px;
  background: #fecd1a;
  color: #000;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}

.show-more-btn:hover {
  background: #e6b800;
}

/* Hide initially */
.himachal-section .trending-cards .hidden {
  display: none;
}
.review-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  text-decoration: underline;
  text-decoration-color: #fecd1a;
}
.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}
.review-slider {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}
.review-wrapper {
  overflow: hidden;
}
.review-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.review-card {
  flex: 0 0 33.33%;
  padding: 20px;
  margin: 0 10px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}
.review-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.review-card p {
  font-size: 14px;
  color: #555;
}
.review-icon {
  font-size: 45px;
  color: #fecd1a;
  margin-bottom: 8px;
}
.stars {
  color: #fecd1a;
  font-size: 16px;
  margin-bottom: 10px;
}
.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
}
.review-nav.left { left: 0; }
.review-nav.right { right: 0; }

@media (max-width: 1024px) {
  .review-card { flex: 0 0 50%; }
}
@media (max-width: 768px) {
  .review-card { flex: 0 0 100%; }
  .review-nav { display: none; }
}
.site-footer {
  background-color: #fff9c4;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  border-top: 2px solid #f9e36a;
}

.site-footer {
  background-color: #fff9c4;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  border-top: 2px solid #f9e36a;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer-section h3,
.footer-section h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.footer-section p {
  margin: 5px 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: #000;
  font-weight: 500;
}

.social-icons a {
  margin-right: 10px;
  font-size: 20px;
  color: #333;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: #000;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}


/* ========================== RESPONSIVE ========================== */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-gallery,
  .tour-container,
  .include-exclude-boxes,
  .footer-container,
  .icon-row,
  .day-box,
  .tabs {
    flex-direction: column;
  }

  .navbar-links,
  .navbar-icons {
    margin-top: 10px;
  }

  .search-bar {
    width: 100%;
  }

  .enquiry-box {
    position: static;
    width: 100%;
    margin-top: 20px;
  }

  .tabs {
    justify-content: flex-start;
  }

  .package-card {
    min-width: 150px;
  }
}

/* Improved Mobile Responsive Styles for Itinerary Section */
@media (max-width: 768px) {
  .itinerary-container {
    flex-direction: column;
    padding: 1rem;
  }

  .day-box {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .day-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ff5733;
  }

  .day-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .day-content ul.day-points {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
  }

  .day-content ul.day-points li {
    line-height: 1.5;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
  }

  .icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
  }

  .icon-box {
    flex: 1 1 45%;
    background-color: #f8f9fa;
    padding: 0.6rem;
    text-align: center;
    border-radius: 6px;
    font-size: 0.9rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }
}

@media (max-width: 480px) {
  .day-title {
    font-size: 1rem;
  }

  .day-content ul.day-points li {
    font-size: 0.9rem;
  }

  .icon-box {
    font-size: 0.85rem;
  }
}

/* ---------- Mobile Responsive Improvements ---------- */
@media (max-width: 768px) {
  .include-exclude-boxes {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .include-box,
  .exclude-box {
    flex: 1 1 100%;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .include-title,
  .exclude-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 12px;
  }

  .include-box ul,
  .exclude-box ul {
    font-size: 15px;
    line-height: 1.7;
  }

  .include-box li,
  .exclude-box li {
    padding-left: 18px;
    font-size: 15px;
  }

  .include-box li::before,
  .exclude-box li::before {
    width: 7px;
    height: 7px;
    top: 8px;
  }
}
/* ==================== Additional Mobile Fixes ==================== */

@media screen and (max-width: 768px) {
  .review-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .review-card {
    margin: 10px 0;
    padding: 15px;
  }

  .review-icon {
    font-size: 38px;
  }

  .stars {
    font-size: 14px;
  }

  .show-more-btn {
    margin-top: 20px;
    padding: 10px 18px;
    font-size: 15px;
    border-radius: 8px;
  }

  .site-footer {
    padding: 30px 15px 15px;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .footer-section {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 16px;
  }

  .footer-section ul li {
    font-size: 14px;
  }

  .social-icons a {
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 13px;
    padding-top: 12px;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    font-size: 20px;
  }


  .section-subtitle {
    font-size: 13px;
  }

  .review-card {
    padding: 12px;
  }

  .review-icon {
    font-size: 32px;
  }
  

  .stars {
    font-size: 13px;
  }

  .show-more-btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .footer-section ul li {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}


/* ================= MOBILE FIXES ================== */
@media screen and (max-width: 768px) {
  /* Center navbar and spacing fixes */
  .navbar {
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  .logo-search-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: -80px;
  }

  .logo img {
    height: 80px;
    align-items: center;
 margin-left: -60px;
    
  
  }

  .navbar-links {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .navbar-icons {
    justify-content: center;
  }

  .search-bar {
    width: 95%;
    margin: 10px auto;
  }
  @media screen and (max-width: 768px) {
  .request-btn {
    display: block;
    width: 80%;
    max-width: 250px;
    margin: 15px auto;
    padding: 12px;
    font-size: 15px;
    text-align: center;
  }
}


  /* Hero Image */
  .hero-slider {
    height: 220px;
  }

  .slide {
    height: 220px;
  }

  /* Section spacing and centering */
  .package-buttons {
    padding: 10px 0;
  }

  .trending-section,
  .himachal-section,
  .international-section,
  .ladakh-spiti-section,
  .kashmir-section {
    padding: 30px 10px;
  }

  .trending-title,
  .section-title {
    font-size: 20px;
    line-height: 1.3;
    padding: 0 10px;
  }

  .trending-line,
  .section-line {
    margin-bottom: 20px;
  }

  /* Cards Grid Fix */
  .trending-cards,
  .ladakh-spiti-cards,
  .himachal-section .trending-cards,
  .international-section .trending-cards,
  .kashmir-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .package-card {
    width: 95%;
    margin: auto;
  }

  /* Popup Form Responsiveness */
  .form-container {
    width: 90%;
    padding: 20px;
  }

  /* Footer */
  .site-footer {
    text-align: center;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section p,
  .footer-section ul li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .search-bar input {
    font-size: 14px;
  }

  .package-buttons button {
    font-size: 13px;
    padding: 8px 12px;
  }

  .review-section {
    padding: 30px 10px;
  }

  .review-card {
    padding: 15px;
  }

  .section-title {
    font-size: 18px;
  }

  .footer-section h3 {
    font-size: 15px;
  }

  .footer-section ul li {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .show-more-btn {
    font-size: 13px;
    padding: 8px 15px;
  }
}

