/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(120deg, #f0f0f0, #e0f7fa);
  margin: 0;
  padding: 0;
}

#faq {
  padding: 60px;
  max-width: 1000px;
  margin: 60px auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#faq h2 {
  text-align: center;
  color: #007bffc0;
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 50px;
  letter-spacing: 1.5px;
}

/* Group Headings */
.faq-group h3 {
  font-size: 1.8em;
  color: #007bff9d;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 4px solid #007bff;
}

/* FAQ Item Styles */
.faq-item {
  margin: 20px 0;
  overflow: hidden;
}

.faq-question {
  background-color: #007bff;
  color: white;
  padding: 20px;
  width: 100%;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.5em;
  outline: none;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.4s ease, transform 0.2s ease;
}

.faq-question:hover {
  background-color: #0056b3;
  transform: scale(1.02);
}

/* Icon styles for opening/closing */
.faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: white;
  font-weight: bold;
  transition: transform 0.4s ease;
}

.faq-question.active::after {
  content: '-';
}

/* Answer Styles */
.faq-answer {
  background-color: #f9f9f9;
  margin-top: 5px;
  padding: 20px;
  max-height: 0;
  opacity: 0;
  border-left: 5px solid #007bff;
  border-radius: 5px;
  font-size: 1.2em;
  color: #555;
  line-height: 1.5;
  transition: max-height 0.6s ease, opacity 0.6s ease;
  overflow: hidden;
}

.faq-answer.active {
  max-height: 200px;
  opacity: 1;
}

/* Group Styles */
.faq-group {
  background-color: #f0f8ff;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Columns for larger screens */
@media (min-width: 768px) {
  .faq-group {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  }

  .faq-item {
      flex-basis: 48%;
  }
}
@media (max-width:480px) {
  .faq-question{
    font-size: 0.8em;
  }
  .faq-group h3{
    font-size: 1.2em;
  }
  .faq-answer{
    font-size: 1em;
  }
}
/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #00fd5d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.411);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn img {
  width: 30px;
  height: 30px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.486);
}

/* Book Now Button */
.book-now-btn {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 10px 20px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-now-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .book-now-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media screen and (max-width: 480px) {
  .whatsapp-btn {
    width: 40px;
    height: 40px;
  }

  .book-now-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  text-align: center;
  margin: 30px 0;
  /* color: #333; */
  font-family: Arial, sans-serif;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.destination-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.destination-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 20px;
}

.destination-name {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 1000;
}

.modal-content {
  position: relative;
  background-color: white;
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 10px;
  max-height: 90vh;
  overflow-y: auto;
}

.close-button {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: #333;
}

.badge-container {
  margin: 20px 0;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.badge-blue {
  background-color: #e3f2fd;
  color: #1976d2;
}

.badge-green {
  background-color: #e8f5e9;
  color: #388e3c;
}

.badge-orange {
  background-color: #fff3e0;
  color: #f57c00;
}

/* Modal animation */
.modal.show {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .destinations-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .destination-image {
      height: 250px;
  }

  .modal-content {
      width: 95%;
      margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .badge {
      display: block;
      margin: 10px 0;
  }
}
/* Map Section Styles */
.map-section {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 40px 15px;
  background-color: #13aae6;
}
.map-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Map Container Styles */
.map-container {
  flex: 1;
  min-height: 450px;
  position: relative;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Contact Information Styles */
.contact-infoo {
  width: 300px;
  padding: 30px;
  background-color: #fff;
}
.contact-infoo h3 {
  color: #2c3e50;
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 600;
}
.infoo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.infoo-item i {
  color: #3498db;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}
.infoo-item p {
  color: #555;
  line-height: 1.5;
  font-size: 15px;
  margin: 0;
}
.business-hours {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.business-hours h4 {
  color: #2c3e50;
  font-size: 18px;
  margin-bottom: 12px;
}
.business-hours p {
  color: #555;
  margin-bottom: 8px;
  font-size: 14px;
}
/* Tablet Responsive */
@media screen and (max-width: 900px) {
  .map-wrapper {
      flex-direction: column;
  }
  .contact-infoo {
      width: 100%;
  }
  .map-container {
      min-height: 400px;
  }
}
@media screen and (max-width: 600px) {
  .map-section {
      padding: 20px 10px;
  }.map-container {
      min-height: 300px;
  } .contact-infoo {
      padding: 20px;
  }.contact-infoo h3 {
      font-size: 20px;
      margin-bottom: 20px;
  }.infoo-item {
      margin-bottom: 15px;
  }
}
@media screen and (max-width: 380px) {
  .map-section {
      padding: 15px 10px;
  } .contact-infoo {
      padding: 15px;
  }.map-container {
      min-height: 250px;
  }
}
/* Main container styles */
.Packages-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}.carousel-heading {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #333;
}/* Carousel structure */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
  padding: 1rem;
}/* Carousel items */
.carousel-item {
  flex: 0 0 calc(33.333% - 1.33rem);
  min-width: calc(33.333% - 1.33rem);
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}.carousel-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}.carousel-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}.carousel-info h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
}.carousel-info p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}.carousel-info .price {
  font-size: 1.25rem;
  color: #2c5282;
  font-weight: 600;
}.stars {
  color: #f6b93b;
  letter-spacing: 2px;
}/* Navigation buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}.left-btn {
  left: 1rem;
}.right-btn {
  right: 1rem;
}.carousel-btn:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}.explore-more{
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  background: #000000;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}.explore-more:hover {
  background-color: #17a2e2;
}
/* Responsive design */
@media (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(50% - 1rem);
    min-width: calc(50% - 1rem);
  }.carousel-info h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 100%;
    min-width: 100%;
  }.carousel-heading {
    font-size: 2rem;
  }.carousel-info {
    padding: 1rem;
  }.carousel-item img {
    height: 200px;
  }.carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .Packages-wrapper {
    padding: 1rem 0.5rem;
  }.carousel-heading {
    font-size: 1.75rem;
  }.carousel-info h3 {
    font-size: 1.1rem;
  }
}
/* Tour Showcase Modal */
.tour-showcase {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.showcase-container {
    background: #fff;
    width: 90%;
    max-width: 1000px;
    margin: 30px auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-showcase.active {
    display: block;
}

.tour-showcase.active .showcase-container {
    opacity: 1;
    transform: translateY(0);
}

/* Header Styles */
.showcase-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #2adb1a, #1141df);
    color: white;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.showcase-close {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0 8px;
}

.showcase-close:hover {
    transform: rotate(90deg);
}

/* Navigation */
.showcase-nav {
    display: flex;
    gap: 10px;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.showcase-nav-btn {
    padding: 12px 24px;
    border: none;
    background: none;
    color: #555;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.showcase-nav-btn.active {
    background: #1a2a6c;
    color: white;
}

/* Content Sections */
.showcase-sections {
    padding: 30px;
}

.showcase-section {
    display: none;
}

.showcase-section.active {
    display: block;
}
/* Accordion Styles */
.accordion-item2 {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header2 {
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: background-color 0.3s ease;
}

.accordion-header2:hover {
    background: #e9ecef;
}

.accordion-header2::after {
    content: '+';
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.accordion-item2.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item2.active .accordion-content {
    max-height: 500px;
}

.accordion-content2 ul {
    padding: 20px;
    margin: 0;
}
/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.feature-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}
/* Booking Form */
.booking-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-groupp {
    margin-bottom: 20px;
}

.form-groupp label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-groupp input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-groupp input:focus {
    border-color: #1a2a6c;
    outline: none;
}

.booking-submit {
    width: 100%;
    padding: 15px;
    background: #1a2a6c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.booking-submit:hover {
    background: #2a3a7c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .showcase-container {
        margin: 15px auto;
        width: 95%;
    }

    .showcase-header h2 {
        font-size: 1.4rem;
    }

    .showcase-nav {
        flex-wrap: wrap;
        padding: 15px;
    }

    .showcase-nav-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .showcase-sections {
        padding: 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .showcase-header {
        padding: 15px;
    }

    .showcase-nav-btn {
        flex: 1 1 calc(50% - 5px);
        text-align: center;
        padding: 8px;
    }
}
/* Base Styles for Footer */
.Main-footer {
  background-color: #333;
  padding: 2rem 2rem;
  font-family: 'Arial', sans-serif;
  text-align: center;
}.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}.footer-section {
  flex-basis: 40%;
  text-align: left;
}.footer-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: #f9a825;
}.footer-section p, a {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  text-decoration: none;
}.social-icons a {
  color: #ddd;
  margin-right: 1.2rem;
  transition: transform 0.3s, color 0.4s;
}.social-icons a:hover {
  color: #f8a622;
  transform: scale(1.1);
}.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  font-size: 1rem;
  color: #aaa;
}.back-to-top {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  background-color: #f9a825;
  color: #333;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.4s, transform 0.3s;
}.back-to-top:hover {
  background-color: #333;
  color: #fff;
  transform: scale(1.2);
}
/* Larger Screens (Desktops, Laptops) */
@media (min-width: 1024px) {
 .footer-content {
    justify-content: space-around;
  }
.footer-section {
    flex-basis: 22%;
    margin-bottom: 0;
  }
}
/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-around;
  } .footer-section {
    flex-basis: 30%;
  }
}
/* Small Screens (Tablets, Small Laptops) */
@media (max-width: 768px) {
  .gulmarg-footer .footer-content {
    flex-direction: column;
    text-align: center;
  }.footer-section {
    flex-basis: 100%;
    margin-bottom: 2rem;
  } 
}
/* Extra Small Screens (Mobile Phones) */
@media (max-width: 480px) {
.footer-section {
    text-align: center;
  }
 .social-icons a {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .nav-container span{
    font-size: 1rem;
  }
}

.testimonials-section {
  background: #023d42;
  color: white;
  padding: 4rem 1rem;
  overflow: hidden;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.title-main {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #00ff00, #df960f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-sub {
  color: #94a3b8;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.testimonials-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-out;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 2rem;
  background: rgba(255, 0, 0, 0.03);
  border: 2px solid rgba(255, 217, 0, 0.692);
  border-radius: 15px;
  margin: 0 1rem;
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .testimonial-card {
      flex: 0 0 calc(50% - 2rem);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
      flex: 0 0 calc(33.333% - 2rem);
  }
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #000000;
  object-fit: cover;
}

.author-info h3 {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.stars {
  color: #FFD700;
  margin-top: 0.5rem;
}

.testimonial-text {
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.trip-details {
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.control-btn {
  background: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.control-btn:hover {
  background: #FFD700;
  color: #040D1B;
}

.progress-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.3);
  transition: 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: #FFD700;
  transform: scale(1.3);
}

.swipe-hint {
  text-align: center;
  color: #94a3b8;
  margin-top: 1rem;
  font-size: 0.9rem;
  display: none;
}

@media (max-width: 768px) {
  .controls {
      display: none;
  }
  
  .testimonials-section {
      padding: 3rem 1rem;
  }
  
  .testimonial-card {
      padding: 1.5rem;
  }

  .swipe-hint {
      display: block;
  }
}

@media (min-width: 769px) {
  .controls {
      display: flex;
  }
  
  .swipe-hint {
      display: none;
  }
}
/* styles.css */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #3b82f6;
  --text: #0f172a;
  --text-light: #64748b;
  --background: #ffffff;
  --nav-height: 80px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, sans-serif;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--background);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  background: white; 
  /* it is also good rgba(255, 255, 255, 0.95)  */
  backdrop-filter: blur(4px);
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color:goldenrod;
}
.nav-logo img {
  width: 86px;
  height: 54px;
  object-fit: cover;
}

.nav-logo .accent {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-item a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-item a:hover,
.nav-item a.active {
  color: var(--primary);
}

.nav-item a:hover::after,
.nav-item a.active::after {
  width: 100%;
}

.book-btn {
  background: var(--primary);
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 50px;
  transition: var(--transition);
}

.book-btn:hover {
  /* background: var(--primary-dark); */
  background-color: #000000;
  transform: translateY(-2px);
  
}

.book-btn::after {
  display: none !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  width: 30px;
  height: 30px;
}

.bar, .bar::before, .bar::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  left: 0;
}

.bar {
  top: 50%;
  transform: translateY(-50%);
}

.bar::before {
  top: -8px;
}

.bar::after {
  bottom: -8px;
}

.hamburger.active .bar {
  background: transparent;
}

.hamburger.active .bar::before {
  transform: rotate(45deg);
  top: 0;
}

.hamburger.active .bar::after {
  transform: rotate(-45deg);
  bottom: 0;
}

@media (max-width: 768px) {
  .hamburger {
      display: block;
      z-index: 100;
  }

  .nav-elements {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--background);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: var(--transition);
      visibility: hidden;
  }

  .nav-elements.active {
      transform: translateX(0);
      visibility: visible;
  }

  .nav-links {
      flex-direction: column;
      gap: 2rem;
      text-align: center;
  }

  .nav-item a {
      font-size: 1.25rem;
  }

  .book-btn {
      width: 200px;
      text-align: center;
      margin-top: 1rem;
  }
}
.hero-section {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.4));
}

.content-wrapper {
  position: relative;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
}

.slide-content {
  color: white;
  max-width: 600px;
  position: relative;
}

.location-tag {
  transform: translateX(-100vw);
  opacity: 0;
  background: linear-gradient(45deg, #FF3366, #FF6B6B);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.slide-title {
  transform: translateX(100vw);
  opacity: 0;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.slide-description {
  transform: translateX(-100vw);
  opacity: 0;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.slide.active .location-tag {
  animation: slideInFromLeft 0.8s forwards;
}
.slide.active .slide-title {
  animation: slideInFromRight 0.8s 0.3s forwards;
}
.slide.active .slide-description {
  animation: slideInFromLeft 0.8s 0.6s forwards;
}

.slide.active .cta-button {
  animation: fadeInUp 0.8s 0.9s forwards;
}
.cta-button {
  opacity: 0;
  transform: translateY(30px);
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, #FF3366, #FF6B6B);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
@keyframes slideInFromLeft {
  0% {
      transform: translateX(-100vw);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}
@keyframes slideInFromRight {
  0% {
      transform: translateX(100vw);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(30px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}
.navigation {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}
.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s ease;
}
.nav-dot.active {
  background: white;
  transform: scale(1.3);
}
.booking-modal {
/* display: none; */
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background: #ffffff;
padding: 2rem;
border-radius: 12px;
z-index: 1000;
width: 90%;
max-width: 500px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
overflow-y: auto;
}

.modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 999;
}

.booking-form {
display: flex;
flex-direction: column;
gap: 1.25rem;
}

.form-group1 {
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.form-group1 label {
font-weight: 600;
color: #444;
font-size: 0.95rem;
}

.form-group1 input,
.form-group1 select {
width: 100%;
padding: 0.75rem;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 0.95rem;
color: #333;
transition: border-color 0.2s ease;
}

.form-group1 input:focus,
.form-group1 select:focus {
outline: none;
border-color: #ff6b6b;
box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.3);
}

/* Fix date input placeholder */
.form-group1 input[type="date"] {
color: #333;
}

.form-group1 input[type="date"]::-webkit-calendar-picker-indicator {
margin-left: 0.5rem;
}

/* Fix select element spacing */
.form-group1 select {
appearance: none;
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 0.75rem center;
background-size: 1em;
padding-right: 2.5rem;
}

.submit-btn1 {
background: linear-gradient(45deg, #FF3366, #FF6B6B);
color: #fff;
padding: 0.875rem;
border: none;
border-radius: 6px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
margin-top: 0.5rem;
}

.submit-btn1:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3);
}

.close-modal {
position: absolute;
top: 1rem;
right: 1rem;
font-size: 1.5rem;
cursor: pointer;
color: #666;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: #f5f5f5;
transition: background-color 0.2s ease;
}

.close-modal:hover {
background-color: #e0e0e0;
}

/* Responsive styles */
@media (max-width: 1024px) {
.booking-modal {
  max-width: 600px;
  width: 85%;
  padding: 1.75rem;
}

.submit-btn1 {
  font-size: 0.95rem;
}
}

@media (max-width: 768px) {
.booking-modal {
  width: 80%;
  padding: 1.5rem;
  max-height: 90vh;
}

.booking-form {
  gap: 1rem;
}

.form-group1 label {
  font-size: 0.9rem;
}

.form-group1 input,
.form-group1 select {
  font-size: 0.9rem;
}
}

@media (max-width: 480px) {
.booking-modal {
  padding: 1.25rem;
  width: 78%;
  height: 78%;
}

.form-group1 input,
.form-group1 select {
  padding: 0.625rem;
  font-size: 0.85rem;
}

.submit-btn1 {
  padding: 0.75rem;
  font-size: 0.9rem;
}
}

@media (max-height: 700px) {
.booking-modal {
  top: 0;
  transform: translate(-50%, 0);
  margin: 1rem 0;
  max-height: 78%;
  overflow-y: auto;
}
}

@media (max-width: 768px) {
  .content-wrapper {
      padding: 0 2rem;
  }

  .slide-title {
      font-size: 3rem;
  }

  .slide-description {
      font-size: 1rem;
  }

  .location-tag {
      font-size: 0.8rem;
  }
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Contact Section Styles */
.contact-section {
  min-height: 100vh;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Contact Info Styles */
.contact-info {
  padding: 40px;
  background: linear-gradient(135deg, #000000 0%, #005bea 100%);
  color: #ffffff;
}

.contact-info h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.info-items {
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-item i {
  font-size: 24px;
  margin-right: 20px;
  margin-top: 5px;
}

.info-item h3 {
  font-size: 1.2em;
  margin-bottom: 5px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #ffffff;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-5px);
}

/* Contact Form Styles */
.contact-form {
  padding: 40px;
}

.contact-form h2 {
  color: #333;
  margin-bottom: 30px;
  font-size: 2em;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e1e1;
  border-radius: 10px;
  outline: none;
  font-size: 1em;
  transition: all 0.3s ease;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.form-group label {
  position: absolute;
  left: 15px;
  top: 15px;
  color: #999;
  font-size: 1em;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #005bea;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
  top: -12px;
  left: 12px;
  font-size: 0.8em;
  padding: 0 5px;
  background: #ffffff;
  color: #005bea;
}

.error-message {
  color: #ff3333;
  font-size: 0.8em;
  position: absolute;
  bottom: -20px;
  left: 0;
}

/* Submit Button */
.submit-btn3 {
  background: linear-gradient(135deg, #00a6eb 0%, #005bea 100%);
  color: #ffffff;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.submit-btn3:hover {
  transform: translateY(-2px);
}

.submit-btn3 i {
  transition: transform 0.3s ease;
}

.submit-btn3:hover i {
  transform: translateX(5px);
}

/* Loading Animation */
.loading {
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
      transform: rotate(360deg);
  }
}

/* Success Message */
.success-message {
  background: #4CAF50;
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: none;
}
/* Responsive Design */
@media screen and (max-width: 992px) {
  .contact-container {
      grid-template-columns: 1fr;
  }
  .contact-info,
  .contact-form {
      padding: 30px;
  }
}

@media screen and (max-width: 576px) {
  .contact-section {
      padding: 20px 10px;
  }
  
  .contact-container {
      border-radius: 10px;
  }
  
  .contact-info h2,
  .contact-form h2 {
      font-size: 1.8em;
  }
  
  .info-item {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .info-item i {
      margin-bottom: 10px;
  }
  
  .submit3-btn {
      width: 100%;
      justify-content: center;
  }
}
