/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;
}
    footer {
      text-align: center;
      padding: 15px;
      font-size: 14px;
      background-color: #f9f9f9;
      color: #666;
    }


/* Navbar */
.logo a {
  text-decoration: none;
  color: white;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  color: #fff;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.256);
  backdrop-filter: blur(0.75px);
}
.menu-toggle {
  display: none;
  font-size: 2.2rem;
  cursor: pointer;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.logo span {
  color: #f7b733;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover {
  color: #f7b733;
}

/* Hero Section */
.hero {
  background: url(beach.jpg) no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
}
.hero-content {
  background: transparent;
  padding: 2rem;
  border-radius: 10px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.cta-button {
  background: #f7b733;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: #ff9900;
}

/* phone stuff */
/* Responsive */
@media (max-width: 768px) {
  /* Show hamburger icon on mobile */
  .menu-toggle {
    display: block;
  }

  /* Hide nav links by default on mobile */
  .nav-links {
    display: none;               /* hidden by default */
    position: absolute;
    top: 75px;                  /* below navbar */
    right: 0;
    background: rgba(0, 0, 0, 0.853);
    width: 200px;
    flex-direction: column;     /* vertical menu */
    padding: 1rem;
  }

  /* Show nav links when toggled */
  .nav-links.show {
    display: flex;
  }

  /* Spacing for mobile nav items */
  .nav-links li {
    margin-bottom: 1rem;
  }
  
}
/* featured tours */
/* get quote */
.get-quote-full-bg {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url('swiss2.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.get-quote-full-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.399); /* dark translucent */
  z-index: 0;
}

.quote-wrapper {
  display: flex;
  width: 90%;
  max-width: 1200px;
  height: 80vh;
  z-index: 1;
}

/* Left: Quote */
.quote-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.3); /* translucent background */
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.quote-text {
  text-align: center;
  max-width: 500px;
}

.quote-text h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

.quote-text p {
  margin-top: 20px;
  font-size: 1.2rem;
  font-style: italic;
}

/* Right: Form */
.form-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2.5px);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 30px;
}

.quote-form {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  color: #fff;
}

.quote-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 0.95rem;
}

.form-group textarea {
  resize: none;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.submit-btn {
  width: 100%;
  padding: 10px;
  background: #ff7f50;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #e6632d;
}
@media (max-width: 768px) {
  #get-quote {
    flex-direction: column;
    height: 90vh;
  }

  .quote-left {
    display: none; /* ✅ Hides quote on small screens */
  }

  .form-right {
    width: 100%;
    padding: 30px 20px;
  }
}

/* events */
.event-controls button {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 15px;
  color: #666;
  transition: color 0.3s;
}

.event-controls button:hover {
  color: gold;
}
.ft-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background-color: #006d77;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.ft-btn:hover {
  background-color: #004f58;
}

.featured-tours-section {
  position: relative;
  background: url('mountains.jpg') center/cover no-repeat, #1787f0;
   /* For the image layer */;
  padding: 20px 25px;
  height: 110vh;
  color: white;
  overflow: hidden;
}

.ft-background-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.ft-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.ft-heading {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.ft-subheading {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.ft-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ft-slider {
  display: flex;
  gap: 30px;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.ft-slider::-webkit-scrollbar {
  display: none;
}

.ft-card {
  flex: 0 0 60%;
  max-width: 500px;
  background: rgb(2, 13, 29);
  color: rgb(255, 255, 255);
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.3s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

.ft-info {
  padding: 20px;
  text-align: left;
}

.ft-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.ft-info p {
  font-size: 1rem;
  color: #ffffff;
}

.ft-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
}

.ft-left {
  left: 10px;
}

.ft-right {
  right: 10px;
}
@media (max-width: 768px){
  .event-controls{
    display: none;
  }

}
/* testimonials */
.testimonial_heading h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 0.5rem; /* Adjust margin as needed */
  letter-spacing: 0.08em;
}

.heading-line {
  width: 150px;
  height: 3px;
  background: gold; /* Or a solid color */
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.testimonials-section {
  padding: 40px 20px 80px; /* Top padding reduced, bottom padding increased */
  background: #f8f8f8;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  text-align: center;
}

.testimonial_heading {
  margin-bottom: 40px; /* Adds space below the header */
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  position: relative;
  min-height: 350px; /* Adjust as needed */
  overflow: hidden;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.testimonial.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-split {
  display: flex;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  height: 350px;
}

.testimonial-image {
  flex: 1;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 20px;
  color: #333;
  font-style: italic;
}

.testimonial-content h4 {
  font-weight: bold;
  color: #444;
  font-size: 1.1rem;
  margin: 0;
}

.testimonial-controls {
  margin-top: 30px;
}

.testimonial-controls button {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 15px;
  color: #666;
  transition: color 0.3s;
}

.testimonial-controls button:hover {
  color: gold;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .testimonial-slider {
    position: relative;
    height: 400px; /* Fixed height enough to show content fully */
  }

  .testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* take full height of slider */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
  }

  .testimonial.active {
    opacity: 1;
    pointer-events: auto;
  }

  .testimonial-split {
    height: 100%; /* fill testimonial */
    flex-direction: column;
    display: flex;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
  }

  .testimonial-image {
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .testimonial-content {
    flex-grow: 1;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .testimonial-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
    font-style: italic;
  }

  .testimonial-content h4 {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #444;
  }

  .testimonial-controls {
    margin-top: 30px;
    text-align: center;
  }

  .testimonial-controls button {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0 15px;
    color: #666;
    transition: color 0.3s;
  }

  .testimonial-controls button:hover {
    color: gold;
  }

  .testimonial_heading {
    margin-bottom: 30px;
  }

  .testimonial_heading h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .heading-line {
    width: 60px;
    height: 2px;
    margin-bottom: 1rem;
  }

  .testimonials-section {
    padding: 30px 15px 60px;
  }
}


/* about us */
.about-us {
  background: linear-gradient(to right, #f0f4f8, #e2ebf0);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  max-width: 1100px;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.owner-photo img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.owner-message {
  flex: 1;
  max-width: 600px;
}

.owner-message h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.owner-message .quote {
  font-style: italic;
  font-size: 1.2rem;
  color: #34495e;
  margin-bottom: 20px;
  line-height: 1.6;
}

.owner-message .signature {
  font-weight: bold;
  color: #2980b9;
  font-size: 1rem;
}


