/* Color Variables */
:root {
  --primary-red: #f16156;
  --primary-yellow: #fcbe6b;
  --secondary-yellow: #fbce59;
  --light-cream: #fef3d0;
  --accent-orange: #f5ae36;
  --primary-teal: #4dbfc9;
  --dark-teal: #248b9c;
  --white: #ffffff;
  --black: #333333;
  --gray: #666666;
  --light-gray: #f8f8f8;
}

/* Custom Font Import */
@font-face {
  font-family: 'Conv_sansation.regular';
  src: url('assets/Conv_sansation.regular.woff2') format('woff2'),
       url('assets/Conv_sansation.regular.woff') format('woff'),
       url('assets/Conv_sansation.regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Conv_sansation.regular', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 190px;
  width: auto;
}

.company-name {
  display: none;
}

.r-red {
  color: var(--primary-red);
}

.r-blue {
  color: var(--primary-teal);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-teal);
}

.nav-btn {
  background-color: var(--primary-teal);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.nav-btn:hover {
  background-color: var(--dark-teal);
}

/* Hero Section */
.hero-section {
  background-image: url('assets/landinBG.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 40px;
  font-weight: 700;
}

.booking-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(1px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 5px;
  padding-right: 10px;
  border-radius: 15px;
  box-shadow: none;
  max-width: 2000px;
  margin: -200px auto 0;
  position: relative;
  z-index: 10;
}

/* Modify the form row layout */
.form-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Changed from 5 to 6 columns */
  gap: 15px;
  margin-bottom: 5px;
  align-items: end;
}
/* Style for the button container */
.book-btn-container {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.form-group {
  min-width: 150px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--black);
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 6px;
  border: 2px solid rgb(0, 0, 0, 0.3);
  border-radius: 5px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-teal);
}

.booking-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700; /* Using the bold weight (700) you imported */
  color: var(--black);
  text-align: center;
  /*margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);*/
  /* Optional: Add letter-spacing for better readability */
  letter-spacing: 0.5px;
  /* Optional: Add text-transform if you want uppercase */
  /* text-transform: uppercase; */
}

/* Update the button styles */
.book-btn {
  background-color: var(--primary-red);
  color: var(--white);
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  height: 48px;
  width: 100%;
}

.book-btn:hover {
  background-color: #d64a40;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .book-btn-container {
    margin-top: 10px;
  }
}

.book-btn:hover {
  background-color: #8b1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.3);
  transition: all 0.3s ease;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-image: url('assets/howitworks.jpg');
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed;*/
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  text-align: center;
  min-width: 200px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-teal), transparent);
  transition: all 0.6s ease;
}

.step::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-teal), transparent);
  transition: all 0.6s ease;
}

.step:hover::before {
  left: 0;
}

.step:hover::after {
  right: 0;
}

.step:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-teal);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--white);
  transition: transform 0.3s ease;
}

.step:hover .step-icon {
  transform: scale(1.1);
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--white);
}

.step p {
  color: #ecf0f1;
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-cream) 0%, #f8f9fa 100%);
  position: relative;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(76, 191, 201, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 191, 201, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

.why-choose-us .container {
  position: relative;
  z-index: 1;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--black);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 25px 15px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: var(--white);
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 25px;
  color: var(--white);
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--black);
}

.feature p {
  color: var(--gray);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-teal) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
  z-index: 0;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.testimonials-container {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.1);
}

.testimonials-track {
  display: flex;
  gap: 25px;
  animation: scroll-left 45s linear infinite;
  will-change: transform;
  padding-left: 100px;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  width: 320px;
  height: 280px;
  background: var(--white);
  padding: 25px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  border: none;
  overflow: hidden;
  flex-shrink: 0;
  transform: skew(-5deg);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow), var(--primary-teal));
}

.testimonial-card:hover {
  transform: skew(-5deg) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.testimonial-card:hover::before {
  height: 6px;
}

.testimonial-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  color: var(--white);
  transform: skew(5deg);
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.testimonial-content {
  text-align: center;
  transform: skew(5deg);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-rating .star {
  color: var(--primary-yellow);
  font-size: 16px;
  margin: 0 1px;
}

.testimonial-text {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 18px;
  font-style: italic;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-author {
  border-top: 1px solid var(--light-gray);
  padding-top: 15px;
}

.author-name {
  font-weight: 600;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 4px;
}

.author-details {
  color: var(--primary-teal);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonials-track {
    animation: scroll-left 25s linear infinite;
    gap: 20px;
    padding-left: 20px;
  }

  .testimonial-card {
    min-width: 280px;
    padding: 20px 15px;
  }

  .testimonial-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .testimonial-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .author-name {
    font-size: 0.9rem;
  }

  .author-details {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .testimonials-track {
    animation: scroll-left 20s linear infinite;
    gap: 15px;
    padding-left: 15px;
  }

  .testimonial-card {
    min-width: 250px;
    padding: 18px 12px;
  }

  .testimonial-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .testimonial-text {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .testimonial-rating .star {
    font-size: 14px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--light-cream);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--black);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--light-gray);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--black);
}

.faq-question i {
  color: var(--primary-teal);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 25px 25px;
  display: none;
}

.faq-answer p {
  color: var(--gray);
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: var(--dark-teal);
  color: var(--white);
  padding: 60px 0 20px;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, var(--light-cream) 0%, #f0f8ff 100%);
  padding: 80px 0;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(76, 191, 201, 0.05) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(241, 97, 86, 0.05) 2px, transparent 2px);
  background-size: 60px 60px, 80px 80px;
  background-position: 0 0, 30px 30px;
  z-index: 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  color: var(--black);
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: var(--white);
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-cream) 100%);
  border-bottom: 1px solid var(--light-gray);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--white) 100%);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 600;
  line-height: 1.4;
}

.faq-question i {
  color: var(--primary-teal);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  margin-left: 20px;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--white);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 25px 30px;
}

.faq-answer p {
  margin: 0;
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section p {
  color: #b8e6ea;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #b8e6ea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--white);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-red);
}

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

.footer-bottom p {
  margin-bottom: 10px;
}

.build {
  color: var(--primary-teal);
  font-weight: bold;
}

.zo {
  color: var(--white);
  font-weight: bold;
}



/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: auto;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--black);
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  padding: 20px;
  gap: 15px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-menu .nav-btn {
  background-color: var(--primary-teal);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  text-align: center;
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
      display: none;
    }

    .mobile-menu-toggle {
      display: flex;
    }

    .nav-container {
      height: 60px;
      padding: 0 15px;
    }

    .hero-content h1 {
      font-size: 2rem;
    }

    .booking-title {
      font-size: 1.3rem;
      margin-bottom: 20px;
    }

    .form-row {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .booking-form {
      max-width: 90%;
      padding: 15px;
      margin: -60px auto 0;
    }

    .form-group label {
      font-size: 14px;
      margin-bottom: 5px;
    }

    .form-group input,
    .form-group select {
      padding: 10px;
      font-size: 14px;
    }

    .book-btn {
      padding: 10px 20px;
      font-size: 14px;
      height: 42px;
      margin-top: 15px;
    }

    .steps-container {
      flex-direction: column;
      align-items: center;
    }

    .step {
      max-width: 280px;
      margin: 0 auto 20px;
      padding: 20px 15px;
    }

    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .hero-section {
      padding-top: 60px;
      background-attachment: scroll;
    }

    .contact-popup-content {
      padding: 25px 15px;
      width: 90%;
    }

    .contact-buttons {
      gap: 10px;
    }

    .contact-btn {
      padding: 10px 12px;
      font-size: 13px;
    }

    .logo {
      height: 100px;
    }

    .company-name {
      font-size: 1.1rem;
    }
  }

@media (max-width: 480px) {
    .hero-content h1 {
      font-size: 1.8rem;
    }

    .booking-title {
      font-size: 1.2rem;
    }

    .booking-form {
      padding: 12px;
      margin: -50px auto 0;
      max-width: 95%;
    }

    .logo {
      height: 110px;
    }

    .features-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .feature {
      padding: 20px 10px;
    }

    .feature h3 {
      font-size: 1.1rem;
    }

    .feature p {
      font-size: 0.85rem;
    }

    .form-group {
      min-width: 100%;
    }

    .form-group label {
      font-size: 13px;
    }

    .form-group input,
    .form-group select {
      padding: 8px;
      font-size: 13px;
    }

    .book-btn {
      padding: 10px 20px;
      font-size: 14px;
      height: 38px;
    }

    .step {
      padding: 15px 10px;
      max-width: 260px;
    }

    .step-icon {
      width: 60px;
      height: 60px;
      font-size: 24px;
    }

    .how-it-works h2,
    .why-choose-us h2,
    .faq-section h2 {
      font-size: 1.8rem;
    }

    .nav-container {
      height: 55px;
      padding: 0 10px;
    }
  }