.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* Tablet and below */
@media (max-width: 900px) {
  body {
    font-size: 14px;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-box {
    width: 100%;
  }
}
img {
  max-width: 100%;
  height: auto;
}


.site-header {
  background: #faf6ef;
  padding: 10px 30px;
  border-bottom: 2px solid #ddd;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; /* allow wrapping */
}




/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.logo img {
  height: 45px; /* medium size logo */
  flex-shrink: 0;
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  font-family: 'Permanent Marker', cursive;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Navigation --- */
.nav-links {
  display: flex;
  gap: 20px;
  flex-shrink: 1;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  font-size: 14px;
}

/* --- Right Section --- */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid #aaa;
  border-radius: 20px;
  padding: 5px 10px;
  background: white;
  position: relative;
  z-index: 1001;
}

.search-bar input {
  border: none;
  outline: none;
  padding: 6px 10px;
}

.search-bar button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
}

.phone {
  font-weight: bold;
  color: #333;
}







body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f3eb;
  color: #3a2d1f;
}

header {
  background: #fff8f0;
  border-bottom: 2px solid #d8c6a1;
  padding: 10px;
}
header img {
  height: 40px;
  vertical-align: middle;
}
h1, h2 {
  color: #2f261b;
}
a.btn {
  background: #4f3b2a;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
}
.hero {
  background: url('./assets/lake.JPG') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.trips, .gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 20px;
}
.gallery {
  padding: 50px 20px;
  background: #f8f5f0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 25px;
}

.gallery-header h2 {
  font-size: 2em;
  color: #3e2723;
  margin: 0;
}


/* Swiper styles */
.swiper {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.swiper-slide {
  text-align: center;
}

.swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('./assets/lake.JPG') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay */
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 15px 0;
  position: relative;
  z-index: 2;
}

.cta-btn {
  background: #ccff00;
  color: black;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}

.cta-btn:hover {
  background: #a5d600;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(204, 255, 0, 0.4);
}

/* Search Box */
.search-box {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  background: white;
  padding: 15px;
  border-radius: 40px;
  margin-top: 30px;
  width: 80%;
  max-width: 900px;
  transition: all 0.3s ease;
}

.search-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.search-box input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 30px;
  outline: none;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.search-box .travel-style-select {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 30px;
  outline: none;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.search-box .travel-style-select:focus {
  background: white;
  border-color: #ccff00;
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.2);
}

.search-box input:focus {
  background: white;
  border-color: #ccff00;
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.2);
}

.search-box button {
  background: #ccff00;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.search-box button:hover {
  background: #a5d600;
}
.about-us {
  padding: 60px 20px;
  background-color: #faf6f0;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.about-container::before {
  content: "🏔️ 🏕️ 🚶‍♂️";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  opacity: 0.6;
  letter-spacing: 15px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.travel-style {
  background: #f4efe6; /* a warmer earthy shade, different from About Us */
  padding: 60px 20px;
  text-align: center;
  border-top: 3px dashed #c9a66b; /* gives a “divider” feel */
  background: linear-gradient(135deg, #f4efe6, #e8e0d0);
  border-top: 5px solid #8B4513;
  border-bottom: 5px solid #8B4513;
}

.travel-style h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #333;
}

.travel-style h2::before {
  content: "🧭 ";
}

.travel-style h2::after {
  content: " 🗺️";
}

.travel-style blockquote {
  font-style: italic;
  font-size: 1.2rem;
  margin: 20px auto;
  max-width: 600px;
  color: #444;
  position: relative;
}

.travel-style blockquote span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #777;
}

.travel-style p {
  max-width: 700px;
  margin: 15px auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.travel-style .btn {
  display: inline-block;
  margin-top: 25px;
  background: #333;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.travel-style .btn:hover {
  background: #555;
}
.get-inspired {
  background: #111; /* deep background for contrast */
  color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.get-inspired h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #e0c97a;
}

.get-inspired h2::before {
  content: "🌿 ";
}

.get-inspired h2::after {
  content: " 🏔️";
}

.inspired-img {
  max-width: 600px;
  width: 90%;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.6);
}

.get-inspired p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 15px auto;
  line-height: 1.7;
}

.get-inspired blockquote {
  font-style: italic;
  font-size: 1.3rem;
  margin-top: 30px;
  color: #e0c97a;
}





.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card .content {
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.card .content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ccff00, #a5d600);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover .content::after {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card::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;
}

.card:hover::before {
  left: 100%;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(204,255,0,0.1), rgba(165,214,0,0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::after {
  opacity: 1;
}
footer {
  background: #2f261b;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Interactive Features CSS */

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1000;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Enhanced Card Interactions */
.card {
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card::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;
}

.card:hover::before {
  left: 100%;
}

/* Modal System */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  background: white;
  border-radius: 15px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: translate(-50%, -50%) scale(1);
}

/* Enhanced Modal Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  border-radius: 15px 15px 0 0;
}

.modal-header h3 {
  margin: 0;
  color: #333;
  font-size: 1.5rem;
}

.modal-header h3::before {
  content: "🗺️ ";
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.modal-body {
  padding: 25px;
}

/* Trip Details Modal */
.trip-details img {
  transition: transform 0.3s ease;
}

.trip-details img:hover {
  transform: scale(1.05);
}

.trip-info ul {
  list-style: none;
  padding: 0;
}

.trip-info li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 25px;
}

.trip-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #4CAF50;
  margin: 15px 0;
}

.trip-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* Booking Form */
.booking-form h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ccff00;
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: #ff4444;
}

.form-group input:valid,
.form-group select:valid {
  border-color: #4CAF50;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Enhanced Buttons */
.btn {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  font-size: 16px;
}

.btn::before {
  content: "🗺️";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0.8;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::after {
  left: 100%;
}

.btn.book-now {
  background: #ccff00;
  color: #000;
}

.btn.book-now:hover {
  background: #a5d600;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(204, 255, 0, 0.4);
}

.btn.secondary {
  background: #6c757d;
  color: white;
}

.btn.secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  z-index: 10001;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  max-width: 350px;
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  background: #4CAF50;
}

.notification.error {
  background: #f44336;
}

.notification.warning {
  background: #ff9800;
}

.notification.info {
  background: #2196F3;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 5px;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ccff00;
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: 3px solid #8B4513;
  font-family: 'Gloria Hallelujah', cursive;
  font-weight: bold;
}
@media (max-width: 600px) {
  .header-right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .search-bar {
    flex: 1;
    min-width: 180px;
  }
  .phone {
    font-size: 14px;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .search-box {
    flex-direction: column;
    align-items: stretch;
  }
  .search-box input,
  .search-box select,
  .search-box button {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .floating-actions {
    bottom: 70px;
    right: 15px;
    gap: 10px;
  }
  .fab {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}




.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #a5d600;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Enhanced Search Box */
.search-box {
  transition: all 0.3s ease;
}

.search-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.search-box input:focus {
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.2);
}

/* Enhanced Header Search */
.search-bar {
  transition: all 0.3s ease;
}

.search-bar:focus-within {
  box-shadow: 0 0 0 2px #ccff00;
}

/* Reveal Animations - Simplified */
.card,
.about-container,
.travel-style-content,
.inspired-content {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.card.reveal,
.about-container.reveal,
.travel-style-content.reveal,
.inspired-content.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Force all images to be visible */
img {
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
}

/* Image Loading Animation */
img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

img:hover {
  opacity: 0.9;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Gallery */
.gallery img {
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Search Results */
.search-results {
  text-align: center;
}

.search-results h3 {
  color: #333;
  margin-bottom: 20px;
}

.search-results p {
  margin: 10px 0;
  color: #666;
}

.results-list {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    padding: 15px 0;
    font-size: 1.2rem;
  }
  
  .modal-content {
    width: 95%;
    max-height: 95%;
  }
  
  .trip-actions {
    flex-direction: column;
  }
  
  .search-box {
    flex-direction: column;
    gap: 15px;
  }
  
  .search-box input,
  .search-box button {
    width: 100%;
  }
  
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .modal-header,
  .modal-body {
    padding: 15px;
  }
  
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .lightbox-content img {
    border-radius: 0;
  }
}

/* Enhanced Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: #ccff00;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #ccff00;
}

/* Enhanced Form Styling */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ccff00;
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: #ff4444;
}

.form-group input:valid,
.form-group select:valid {
  border-color: #4CAF50;
}

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Card Content */
.card .content {
  position: relative;
  overflow: hidden;
}

.card .content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ccff00, #a5d600);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover .content::after {
  transform: scaleX(1);
}

/* Enhanced Hero Section */
.hero-content h1 {
  animation: slideInDown 1s ease-out;
}

.hero-content p {
  animation: slideInUp 1s ease-out 0.3s both;
}

.cta-btn {
  animation: slideInUp 1s ease-out 0.6s both;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Footer */
footer {
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ccff00, transparent);
  animation: slideRight 3s infinite;
}

@keyframes slideRight {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Enhanced Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 25px;
  padding: 8px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1001;
}

.search-bar input {
  border: none;
  outline: none;
  padding: 8px 0;
  width: 200px;
  font-size: 14px;
  background: transparent;
}

.search-bar input::placeholder {
  color: #999;
}

/* Hero Search Box */
/* .search-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.search-box input {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-box input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
} */

.search-bar button {
  transition: all 0.3s ease;
}

.search-bar button:hover {
  transform: scale(1.1);
  color: #ccff00;
}

/* Enhanced Phone Number */
.phone {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.phone:hover {
  color: #ccff00;
  transform: scale(1.05);
}



/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 100px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.fab {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab.whatsapp {
  background: #25D366;
  color: white;
}

.fab.call {
  background: #007bff;
  color: white;
}

.fab:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Enhanced Footer */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  color: #ccff00;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-section a,
.footer-section p {
  color: #ccc;
  text-decoration: none;
  margin: 8px 0;
  display: block;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ccff00;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ccff00;
  color: #000;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 20px;
  text-align: center;
  color: #ccc;
}

.footer-bottom a {
  color: #ccff00;
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Floating Actions */
@media (max-width: 768px) {
  .floating-actions {
    bottom: 80px;
    right: 20px;
  }
  
  .fab {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Enhanced Trip Cards with Better Spacing */
.trips {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8f5f0 0%, #f0f0f0 100%);
}

.trips .card {
  margin-bottom: 20px;
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.trips .card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Special Styling for Nagtibba Trek Card */
.card:has(img[alt="Nagtibba"]) {
  position: relative;
  border: 2px solid #ccff00;
  box-shadow: 0 8px 25px rgba(204, 255, 0, 0.3);
}

.card:has(img[alt="Nagtibba"])::before {
  content: "🏔️";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card:has(img[alt="Nagtibba"]):hover {
  border-color: #a5d600;
  box-shadow: 0 15px 35px rgba(204, 255, 0, 0.4);
}

/* Enhanced About Section */
.about-container {
  position: relative;
}

.about-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, #f0f0f0, #e8e8e8);
  z-index: -1;
  border-radius: 20px;
  opacity: 0.5;
}

/* Enhanced Travel Style Section */
.travel-style {
  background: #f4efe6;
  padding: 60px 20px;
  text-align: center;
  border-top: 3px dashed #c9a66b;
}

/* Enhanced Gallery with Nagtibba Images */
.gallery {
  background: linear-gradient(135deg, #f8f5f0 0%, #e8e0d0 100%);
  position: relative;
  padding: 50px 20px;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.gallery-header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.gallery-header h2 {
  font-size: 2em;
  color: #3e2723;
  margin: 0;
}

/* Enhanced Swiper for Nagtibba Images */
.swiper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.swiper-slide {
  text-align: center;
  transition: all 0.3s ease;
}

.swiper-slide:hover {
  transform: scale(1.05);
}

.swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.swiper-slide img:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transform: scale(1.02);
}

/* Enhanced Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: #ccff00;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #ccff00;
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .swiper {
    width: 95%;
  }
  
  .swiper-slide img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .swiper-slide img {
    height: 200px;
  }
  
  .gallery {
    padding: 30px 15px;
  }
}

/* Enhanced Get Inspired Section */
.get-inspired {
  position: relative;
}

.get-inspired::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0.05));
  pointer-events: none;
}

/* Enhanced Modal Animations */
.modal-content {
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateX(0deg);
  }
}

/* Enhanced Card Hover Effects */
.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(204,255,0,0.1), rgba(165,214,0,0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::after {
  opacity: 1;
}

/* Enhanced Button States */
.btn:active {
  transform: translateY(1px);
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.5);
}

/* Enhanced Form Focus States */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(204, 255, 0, 0.2);
}

/* Enhanced Notification Animations */
.notification {
  animation: notificationSlideIn 0.3s ease-out;
}

@keyframes notificationSlideIn {
  from {
    transform: translateX(400px) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

/* Enhanced Lightbox */
.lightbox-content img {
  animation: lightboxZoomIn 0.3s ease-out;
}

@keyframes lightboxZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Enhanced Scroll to Top */
.scroll-to-top {
  animation: bounceIn 0.5s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Enhanced Mobile Menu */
@media (max-width: 768px) {
  .nav-links {
    background: linear-gradient(135deg, #f8f5f0, #e8e0d0);
  }
  
  .nav-links a {
    border-radius: 25px;
    margin: 5px 0;
    text-align: center;
    width: 80%;
  }
  
  .nav-links a:hover {
    background: rgba(204, 255, 0, 0.2);
    transform: translateX(10px);
  }
}

/* Enhanced Responsive Design */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .search-box {
    margin: 20px 10px;
    padding: 20px;
  }
  
  .floating-actions {
    bottom: 70px;
    right: 15px;
  }
  
  .fab {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* Print Styles */
@media print {
  .floating-actions,
  .scroll-to-top,
  .mobile-menu-btn {
    display: none !important;
  }
  
  .modal,
  .lightbox {
    display: none !important;
  }
}

/* Enhanced Navigation */
.nav-links a {
  position: relative;
  padding: 10px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ccff00;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::before {
  width: 80%;
}

.nav-links a:hover {
  background: rgba(204, 255, 0, 0.1);
  color: #333;
}

/* Enhanced Logo */
.logo {
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: rotate(5deg) scale(1.1);
}

.logo-text {
  font-family: 'Permanent Marker', cursive;
  font-size: 28px;
  font-weight: bold;
  color: #2c2c2c;
  letter-spacing: 2px;
}

/* Enhanced Category Filters */
.filter-btn {
  background: #f0f0f0;
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.filter-btn:hover {
  background: #ccff00;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #ccff00;
  color: #000;
  box-shadow: 0 4px 15px rgba(204, 255, 0, 0.4);
}

/* Enhanced Search Dropdown */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

.suggestion-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.suggestion-item:hover {
  background: #f8f9fa;
}

.suggestion-item:last-child {
  border-bottom: none;
}

/* Enhanced Search Results Display */
.search-results-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  margin-top: 5px;
  width: 100%;
  min-width: 300px;
  max-width: 400px;
  pointer-events: auto;
}

/* Ensure search results don't interfere with page layout */
.search-results-container:empty {
  display: none;
}

/* Prevent search results from affecting other elements */
.search-results-container + * {
  margin-top: 0;
}

/* Ensure proper spacing when search results are shown */
.search-bar:has(.search-results-container),
.search-box:has(.search-results-container) {
  margin-bottom: 0;
}

/* Header search bar positioning for search results */
.search-bar {
  position: relative;
  z-index: 1001;
}

/* Search Results Styling */
.search-results-header {
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
}

.search-results-header h3 {
  margin: 0 0 5px 0;
  color: #333;
  font-size: 16px;
}

.search-results-header p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.search-results-grid {
  padding: 15px;
  display: grid;
  gap: 15px;
}

.search-result-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-result-card:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.search-result-card h4 {
  margin: 0 0 8px 0;
  color: #333;
  font-size: 16px;
}

.search-result-card .price {
  margin: 0 0 8px 0;
  color: #007bff;
  font-weight: 600;
  font-size: 14px;
}

.search-result-card .match-type {
  margin: 0 0 12px 0;
  color: #666;
  font-size: 12px;
  font-style: italic;
}

.search-result-card .btn {
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
}

/* Not Found State */
.search-not-found {
  padding: 30px 20px;
  text-align: center;
}

.not-found-icon {
  font-size: 48px;
  margin-bottom: 15px;
  opacity: 0.6;
}

.search-not-found h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 18px;
}

.search-not-found p {
  margin: 0 0 20px 0;
  color: #666;
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.suggestion-tag {
  background: #007bff;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.suggestion-tag:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/* Search Results Wrapper */
.search-results-wrapper {
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .search-results-container {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 60vh;
    border-radius: 20px 20px 0 0;
    margin-top: 0;
  }
  
  .search-results-grid {
    grid-template-columns: 1fr;
  }
  
  .search-results-wrapper {
    margin-top: 10px;
    padding: 15px;
  }
}

/* Enhanced Combined Travel Style Section */
.travel-style {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.travel-style .travel-style-content,
.travel-style .inspired-content {
  flex: 1;
}

.travel-style .inspired-content {
  background: #111;
  color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  border-radius: 15px;
  margin: 0 20px;
}

.travel-style .inspired-content h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #e0c97a;
}

.travel-style .inspired-content h2::before {
  content: "🌿 ";
}

.travel-style .inspired-content h2::after {
  content: " 🏔️";
}

.travel-style .inspired-img {
  max-width: 600px;
  width: 90%;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.6);
}

.travel-style .inspired-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 15px auto;
  line-height: 1.7;
}

.travel-style .inspired-content blockquote {
  font-style: italic;
  font-size: 1.3rem;
  margin-top: 30px;
  color: #e0c97a;
}

/* Responsive design for combined section */
@media (max-width: 768px) {
  .travel-style {
    gap: 40px;
  }
  
  .travel-style .inspired-content {
    margin: 0 10px;
    padding: 40px 15px;
  }
  
  .travel-style .inspired-content h2 {
    font-size: 1.8rem;
  }
  
  .travel-style .inspired-img {
    width: 95%;
  }
}

/* Query Modal Specific Styles */
#queryModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#queryModal.active {
  opacity: 1;
  visibility: visible;
}

#queryModal .modal-content {
  background: white;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

#queryModal.active .modal-content {
  transform: translate(-50%, -50%) scale(1);
}

#queryModal .modal-header {
  background: linear-gradient(135deg, #ccff00, #a5d600);
  color: #000;
  border-radius: 15px 15px 0 0;
}

#queryModal .modal-header h3 {
  color: #000;
  font-weight: bold;
}

#queryModal .form-group {
  margin-bottom: 20px;
}

#queryModal .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

#queryModal .form-group input[readonly] {
  background: #f8f9fa;
  color: #666;
  cursor: not-allowed;
}

#queryModal .form-group input,
#queryModal .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

#queryModal .form-group input:focus,
#queryModal .form-group textarea:focus {
  outline: none;
  border-color: #ccff00;
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.1);
}

#queryModal .form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

#queryModal .btn {
  flex: 1;
  min-width: 120px;
}

/* Responsive Query Modal */
@media (max-width: 768px) {
  #queryModal .modal-content {
    width: 95%;
    max-height: 95%;
  }
  
  #queryModal .form-actions {
    flex-direction: column;
  }
  
  #queryModal .btn {
    width: 100%;
  }
}

/* Enhanced Query Modal Animation */
@keyframes queryModalSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateX(0deg);
  }
}

#queryModal.active .modal-content {
  animation: queryModalSlideIn 0.3s ease-out;
}
