/* General Reset */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    header {
      background-color: #333;
    }

    nav.header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      color: white;
      position: relative;
    }

    .logo img {
      height: 40px;
    }

    .hamburger-menu {
      display: none;
      font-size: 28px;
      cursor: pointer;
    }

    #nav-links {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    #nav-links li a {
      color: white;
      text-decoration: none;
      font-size: 16px;
    }

    /* --- Mobile Styles --- */
    @media (max-width: 768px) {
      .hamburger-menu {
        display: block;
      }

      #nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #333;
        padding: 10px 15px;
        border-radius: 5px;
        z-index: 999;
      }

      #nav-links.active {
        display: flex;
      }

      #nav-links li {
        margin: 10px 0;
      }
    }
/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #333;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.banner-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 18px;
}

/* Section Styles */
.section {
    padding: 50px 20px;  /* Add more padding for spacious design */
    text-align: center;
    background-color: #fff;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
    transform: translateY(-10px); /* Section lift on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* More prominent shadow */
}

h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #333; /* Default color */
    font-weight: 700; /* Making it bold */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Adding a different color for the section heading */
.section h2 {
    color: #e74c3c; /* Example color, change as needed */
}

/* Services List */
.services-list {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
}

.service-item {
    width: 30%;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

.service-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Adding shadow effect */
}

.service-item img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.service-item:hover img {
    transform: scale(1.05); /* Zoom effect on hover */
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333; /* Default color */
    font-weight: 700; /* Making it bold */
}

/* Adding a different color for the service item heading */
.service-item h3 {
    color: #3498db; /* Example color, change as needed */
}

.service-item p {
    font-size: 16px;
    color: #777;
    line-height: 1.5;
}
/* General Container */
.container {
    font-family: 'Arial', sans-serif;
    padding: 20px;
    background-color: #f9f9f9;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
h1 {
    text-align: center;
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
}

/* Price List */
.price-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Price Item */
.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    position: relative;
}

.price-item:last-child {
    border-bottom: none;
}

/* Massage Name */
.massage-name {
    font-weight: bold;
    color: #555;
}

/* Price Styling */
.price {
    color: #4CAF50;
    font-size: 20px;
    font-weight: bold;
}

/* Special Offer Badge */
.badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff4081;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

/* Special Offer Styling */
.special-offer {
    background-color: #ff4081;
    color: #fff;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 22px;
    }

    .price-item {
        font-size: 16px;
        padding: 10px 0;
    }

    .price {
        font-size: 18px;
    }

    .badge {
        top: -5px;
        right: -5px;
        padding: 3px 8px;
        font-size: 12px;
    }
}

/* Mobile View */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 20px;
    }

    .price-item {
        font-size: 14px;
        padding: 8px 0;
    }

    .price {
        font-size: 16px;
    }

    .badge {
        top: -5px;
        right: -5px;
        padding: 3px 6px;
        font-size: 11px;
    }
}

/* Video Section Styles */
.video-section {
    background-color: #f8f8f8;
    padding: 50px 20px;
    text-align: center;
}

.video-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.video-box {
    flex: 1 1 calc(33.33% - 20px); /* Takes up 1/3 of the space minus the gap */
    max-width: 400px;  /* Ensures a max width for larger screens */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    margin-bottom: 20px; /* Ensures spacing between video boxes on all screens */
}

.video-box video {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .video-container {
        flex-direction: column;
        align-items: center;
    }

    .video-box {
        flex: 1 1 100%; /* Video boxes take full width on mobile */
        max-width: 100%; /* No restriction on max width */
        margin-bottom: 20px; /* Keeps space between videos */
    }
}

/* Additional adjustment for larger screens */
@media (min-width: 1024px) {
    .video-box {
        flex: 1 1 calc(25% - 20px); /* Takes up 1/4 of the space for larger screens */
    }
}

/* Contact Form */
form {
    margin-top: 20px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

form button {
    padding: 10px 20px;
    background-color: #2a3a5b;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}

form button:hover {
    background-color: #1e2b3d;
}

/* Footer */
footer {
    background-color: #2a3a5b;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Location Buttons */
.footer-locations {
    text-align: center;
    margin-top: 20px;
}

.location-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.location-btn {
    background-color: #0000FF;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.location-btn:hover {
    background-color: #005f47;
}

/* Floating WhatsApp & Call Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.floating-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: background 0.3s ease;
    cursor: pointer;
}

.floating-buttons a i {
    margin-right: 8px;
    font-size: 18px;
}

.whatsapp-float {
    background-color: #25D366;
}

.call-float {
    background-color: #007BFF;
}

.floating-buttons a:hover {
    opacity: 0.9;
}

.floating-buttons a:focus {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* Select Location Styling */
.location-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.dropdown-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-select {
    width: 250px;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease;
}

.location-select:focus {
    border-color: #f39c12; /* Focus effect */
    outline: none;
}

.location-select option {
    padding: 10px;
}

.location-select option:disabled {
    color: #aaa;  /* Disable color for the placeholder */
}

/* Responsive Design */

/* Medium screens (tablets) */
@media only screen and (max-width: 768px) {
    .services-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .service-item {
        width: 80%;
    }

    .service-item img {
        height: 180px; /* Reduced image height for tablets */
    }

    .section {
        padding: 40px 15px;
    }

    h2 {
        font-size: 28px;
    }

    .banner-text h2 {
        font-size: 28px;
    }

    .banner-text p {
        font-size: 16px;
    }

    .location-dropdown {
        width: 80%;
    }
}

/* Small screens (phones) */
@media only screen and (max-width: 480px) {
    header nav ul {
        display: none;  /* Hide nav links on small screens */
    }

    .hamburger-menu {
        display: block;
        font-size: 30px;
        cursor: pointer;
    }

    header nav.active ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services-list {
        flex-direction: column;
    }

    .service-item {
        width: 90%;
    }

    .floating-buttons {
        display: flex;  /* Show floating buttons on both mobile and desktop */
    }

    .section {
        padding: 20px 10px;  /* Reduced padding for small screens */
    }

    h2 {
        font-size: 24px;
    }
}
  @media (max-width: 600px) {
  #testimonials h2 {
  font-size: 1.6em;
  margin-bottom: 25px;
}

.testimonial.enhanced {
  margin: 12px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
  padding: 15px 15px;
}

.testimonial-content p {
  font-size: 0.95em;
  line-height: 1.4em;
}

.testimonial-content p:nth-child(2) {
  font-size: 0.95em;
  font-weight: 600;
}

.testimonial-content p:nth-child(3) {
  font-size: 0.85em;
}
}
/* Basic styling */
/* Mobile-first styling */
.faq-section {
  padding: 20px;
  background-color: #f4f4f4;
}

.faq-title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 1.2rem;
  padding: 12px;
  text-align: left;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #555;
}

.faq-answer {
  display: none;
  background-color: #e9e9e9;
  padding: 15px;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 1rem;
  color: #444;
  border-left: 4px solid #1e1e1e;
}

/* Responsive for tablet and desktop */
@media (min-width: 768px) {
  .faq-title {
    font-size: 2.2rem;
  }

  .faq-question {
    font-size: 1.4rem;
    padding: 15px;
  }

  .faq-answer {
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 40px;
  }

  .faq-title {
    font-size: 2.5rem;
  }

  .faq-item {
    margin-bottom: 20px;
  }

  .faq-question {
    font-size: 1.6rem;
    padding: 18px;
  }

  .faq-answer {
    font-size: 1.2rem;
  }
}
.follow-us {
  text-align: center;
  padding: 20px 10px;
}

.follow-us h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: inherit; /* Matches your site’s default text color */
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icons a {
  font-size: 22px;
  color: inherit; /* Uses your site’s default link or text color */
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: #007bff; /* Change hover color to blue (you can customize this) */
  transform: scale(1.1);
}