:root {
  --primary-color: #ff6f61;
  --secondary-color: #333;
  --font-primary: 'Raleway', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-script: 'Great Vibes', cursive;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden; /* Prevent horizontal scrolling */
  scroll-behavior: smooth; /* Smooth scrolling */
}

body {
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
  color: var(--secondary-color);
  background: #f5f5f5;
}

h1, h2, h3 {
  font-family: var(--font-secondary);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 50px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
  position: absolute;
  left: 50px;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  font-weight: 500;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--primary-color);
}

/* Responsive Navigation */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }

  .logo {
    left: 20px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links li a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .nav-links {
    display: none;
  }

  .hamburger-menu {
    display: block;
    cursor: pointer;
    position: absolute;
    right: 20px;
  }

  .hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 5px 0;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active li a {
    color: var(--secondary-color);
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 8vw, 6rem);
  margin: 0;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  margin: 10px 0 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  padding: 15px 30px;
  background: linear-gradient(45deg, var(--primary-color), #ff3b3f);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: linear-gradient(45deg, #ff3b3f, var(--primary-color));
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

/* About Section */
.about {
  padding: 100px 50px;
  text-align: center;
  background: white;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Video Carousel Section */
.video-carousel {
  padding: 100px 50px;
  text-align: center;
  background: white;
}

.video-carousel h2 {
  font-family: var(--font-secondary);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 30px;
}

.main-video {
  max-width: 90%;
  margin: 0 auto 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-video video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.thumbnail-carousel {
  max-width: 90%;
  margin: 0 auto;
}

.thumbnail-carousel .swiper {
  padding: 10px;
}

.thumbnail-carousel .swiper-slide {
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.thumbnail-carousel .swiper-slide:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.thumbnail-carousel .swiper-button-next,
.thumbnail-carousel .swiper-button-prev {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background 0.3s ease;
}

.thumbnail-carousel .swiper-button-next:hover,
.thumbnail-carousel .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
}

/* Photo Gallery Section */
.photo-gallery {
  padding: 100px 50px;
  text-align: center;
  background: white;
}

.photo-gallery h2 {
  font-family: var(--font-secondary);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  text-align: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.lightbox-content.zoomed {
  transform: translate(-50%, -50%) scale(1.5);
  cursor: zoom-out;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--primary-color);
}

/* Services Section */
.services {
  padding: 100px 50px;
  text-align: center;
  background: white;
}

.service-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.service-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Reviews Section */
.reviews {
  padding: 100px 50px;
  text-align: center;
  background: white;
}

.reviews h2 {
  font-family: var(--font-secondary);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 30px;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: var(--secondary-color);
  color: white;
}

#back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

#back-to-top:hover {
  background: #ff3b3f;
}

/* Contact Page Styles */
.contact-page {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-header h1 {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 10px;
}

.contact-header p {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #555;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form iframe {
  width: 100%;
  height: 1500px; /* Adjust height as needed */
  border: none;
  border-radius: 10px;
}

.contact-info {
  margin-top: 40px;
  padding: 40px 20px;
  background: var(--primary-color);
  color: white;
  border-radius: 10px;
}

.contact-info h2 {
  font-family: var(--font-secondary);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 10px;
}

.contact-info p {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.contact-info ul li {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  margin-bottom: 10px;
}

.contact-info ul li strong {
  font-weight: 600;
}

/* Services Page Styles */
.services-page {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.services-header {
  margin-bottom: 40px;
}

.services-header h1 {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 10px;
}

.services-header p {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #555;
}

.process-steps {
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex-direction: column; /* Stack on small screens */
}

.step-image {
  flex: 1;
  margin-right: 0; /* Reset margin for small screens */
  margin-bottom: 20px; /* Add space between image and content */
}

.step-image img {
  width: 100%;
  border-radius: 10px;
}

.step-content {
  flex: 2;
  text-align: center; /* Center text on small screens */
}

.step-content h2 {
  font-family: var(--font-secondary);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 10px;
}

.step-content p {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: #555;
}

.cta-section {
  margin-top: 60px;
  padding: 40px 20px;
  background: var(--primary-color);
  color: white;
  border-radius: 10px;
}

.cta-section h2 {
  font-family: var(--font-secondary);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 10px;
}

.cta-section p {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 20px;
}

.cta-section .cta-button {
  padding: 15px 30px;
  background: white;
  color: var(--primary-color);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-section .cta-button:hover {
  background: #ff3b3f;
  color: white;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.cta-section .cta-button:active {
  transform: translateY(0);
}

/* Terms Page Styles */
.terms-page {
  padding: 60px 20px;
  text-align: left;
  background: #f9f9f9;
  max-width: 800px;
  margin: 0 auto;
}

.terms-header {
  margin-bottom: 40px;
  text-align: center;
}

.terms-header h1 {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 10px;
}

.terms-header p {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #555;
}

.terms-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.terms-content h2 {
  font-family: var(--font-secondary);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.terms-content p {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.terms-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.terms-content a:hover {
  text-decoration: underline;
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  text-align: center;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.lightbox-content.zoomed {
  transform: translate(-50%, -50%) scale(1.5);
  cursor: zoom-out;
}
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close:hover {
  color: var(--primary-color);
}

/* Calculator Styles */
.calculator {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 400px; /* Adjusted width */
  max-width: 90%; /* Ensure it fits on smaller screens */
  margin: 40px auto; /* Center the calculator */
}

.calculator label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

.calculator input, .calculator select {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.calculator .radio-group {
  text-align: left;
  margin-bottom: 15px;
}

.calculator .radio-group label {
  display: flex;
  align-items: center;
  margin: 8px 0;
  font-weight: normal;
}

.calculator .radio-group input[type="radio"] {
  margin: 0;
  margin-right: 10px;
  width: 16px;
  height: 16px;
}

.calculator button {
  padding: 10px 20px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-top: 10px;
}

.calculator button:hover {
  background-color: #218838;
}

.calculator .disclaimer {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #f9f9f9;
  border-left: 4px solid #28a745;
  text-align: left;
}

.calculator .disclaimer p {
  margin: 0;
}

.calculator .tip {
  font-size: 14px;
  color: #28a745;
  margin-top: 20px;
}


/* Calculator Styles */
.calculator {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 400px;
  max-width: 90%;
  margin: 40px auto;
}

.calculator label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

.calculator input,
.calculator select {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.calculator button {
  padding: 10px 20px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-top: 10px;
}

.calculator button:hover {
  background-color: #218838;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
}

.modal .close {
  float: right;
  cursor: pointer;
  font-size: 24px;
}

.modal .close:hover {
  color: #ff0000;
}
/* Navbar Styles */

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ff6f61;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 100px 20px;
    text-align: center;
}

.contact-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 20px;
}

.contact-info {
    margin-top: 40px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #333;
    margin: 5px 0;
}

.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px; /* Maximum width */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Add this to your styles.css file or within a <style> tag in the <head> */
.step-image img {
    width: 100%; /* Adjust this value to make the images smaller */
    max-width: 400px; /* Set a maximum width to ensure they don't get too large */
    height: auto; /* Maintain aspect ratio */
}
.services-list div {
  margin-bottom: 10px; /* Adds spacing between items */
  font-size: 1.1em; /* Adjust font size if needed */
  color: #; /* Adjust text color if needed */
}

/* Modal Styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.modal label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.modal input[type="email"],
.modal input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.modal input[type="email"]:focus,
.modal input[type="tel"]:focus {
    border-color: #007BFF;
    outline: none;
}

.terms-checkbox {
    margin: 15px 0;
    display: flex;
    align-items: center;
}

.terms-checkbox input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #007BFF; /* Modern browsers */
}

.terms-checkbox label {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.terms-checkbox a {
    color: #007BFF;
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

.modal button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal button[type="submit"]:hover {
    background-color: #0056b3;
}

.modal button[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none; /* Hide by default on desktop */
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 4px 0;
    transition: 0.4s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex; /* Show hamburger menu on mobile */
    }

    .nav-links {
        display: none; /* Hide nav links by default on mobile */
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 60px; /* Adjust based on your header height */
        left: 0;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex; /* Show nav links when active */
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
}
document.getElementById('availabilityForm').addEventListener('submit', function(event) {
    event.preventDefault(); // Prevent the form from submitting the traditional way
    // Add your form submission logic here, e.g., sending an AJAX request
    alert('Form submitted!'); // Placeholder for actual functionality
});