* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
}

body {
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  background: #3f3f3f;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
 
}

.top-bar span {
  color: #c9a86a;
  font-weight: bold;

}

/* Header */
.main-header {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid #eee;
}


.logo img {
  height: 45px;
}

/* Nav Menu */
.nav-menu a {
  margin: 0 18px;
  text-decoration: none;
  color: #000;
  font-size: 18px;
}

.nav-menu a.active {
  color: #777;
}

/* Book Button */
.book-btn {
  background: linear-gradient(135deg, rgb(129, 243, 129), green);
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
}

/* Hamburger */
.hamburger {
  font-size: 28px;
  display: none;
  cursor: pointer;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #111;
  padding: 30px;
  transition: 0.4s ease;
  z-index: 999;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 20px 0;
  font-size: 18px;
}

.sidebar-btn {
  background:linear-gradient(135deg, rgb(129, 243, 129), green);
  padding: 12px;
  text-align: center;
  border-radius: 25px;
  color: #000 !important;
}

.close {
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  display: block;
  text-align: right;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-menu,
  .book-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* banner  */
/* Banner Section */
    .banner {
      position: relative;
      width: 100%;
      height: 100vh;
      background: url('https://media.istockphoto.com/id/163163161/photo/man-having-a-massage-in-spa-salon.jpg?s=612x612&w=0&k=20&c=lyxJxEkjAPFELbyES4Wz-YfCHv8a0j1uO_TQpORlXRs=') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* Overlay */
    .banner::before {
      content: "";
      position: absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      background: rgba(0,0,0,0.4);
      z-index:1;
    }

    /* Banner Content */
    .banner-content {
      position: relative;
      text-align: center;
      color: #fff;
      z-index: 2;
      animation: fadeInUp 1.5s ease forwards;
    }

    .banner-content h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      animation: slideIn 2s ease forwards;
    }

    .banner-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      animation: fadeIn 3s ease forwards;
    }

    .banner-content a {
      display: inline-block;
      padding: 15px 35px;
      background: #ff7f50;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.4s ease;
      animation: slideIn 2.5s ease forwards;
    }

    .banner-content a:hover {
      background: #ff4500;
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    /* Animations */
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(50px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    @keyframes slideIn {
      0% {
        opacity:0;
        transform: translateX(-100px);
      }
      100% {
        opacity:1;
        transform: translateX(0);
      }
    }

    /* Responsive */
    @media (max-width: 768px){
      .banner-content h1 {
        font-size: 2rem;
      }
      .banner-content p {
        font-size: 1rem;
      }
    }

/* ABOUT US SECTION */
/* About Us Section */
.about-us {
  padding: 90px 6%;
  background: #f7fdf8;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Image */
.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Content */
.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 40px;
  color: #2a6b4f;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #3fa066;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* Button */
.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 30px;
  background: #2a6b4f;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #3fa066;
  transform: translateY(-3px);
}

/* Animations */
.animate-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1.2s ease;
}

.animate-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1.2s ease;
}

.animate-left.active,
.animate-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

/* SERVICES SECTION STYLING */
.services-section {
  padding: 100px 6%;
  background: #e8f5e9;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #00796b;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 0;
  top: 0;
  left: -10%;
  background: rgba(0, 121, 107, 0.1);
  transform: rotate(45deg);
  transition: height 0.5s ease;
  z-index: 0;
}

.service-card:hover::before {
  height: 300%;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-icon {
  font-size: 3rem;
  color: #00796b;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
  z-index: 1;
  position: relative;
}

.service-card:hover .service-icon {
  transform: rotate(20deg) scale(1.2);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #00796b;
  z-index: 1;
  position: relative;
}

.service-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.service-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  background: #00796b;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 1;
  position: relative;
}

.service-btn:hover {
  background: #004d40;
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 4%;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
}

/* Fade-in & slide-up animation */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to service cards */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;

  /* NEW: animation on load */
  opacity: 0;
  animation: slideUpFade 0.8s ease forwards;
}

/* Add staggered delay for each card */
.service-card:nth-child(1) {
  animation-delay: 0.2s;
}
.service-card:nth-child(2) {
  animation-delay: 0.4s;
}
.service-card:nth-child(3) {
  animation-delay: 0.6s;
}
.service-card:nth-child(4) {
  animation-delay: 0.8s;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

.spa99-experience-section {
  padding: 60px 0;
  background: #fff7ec;
}

.spa99-experience-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 42px;
  margin-bottom: 35px;
  color: #1f1f1f;
}

.spa99-experience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 280px;
}

/* CARD */
.spa99-exp-card {
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Overlay */
.spa99-exp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(109, 76, 90, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.spa99-exp-overlay img {
  width: 38px;
  filter: brightness(0) invert(1);
}

.spa99-exp-overlay p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .spa99-experience-grid {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
  }

  .spa99-exp-card {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .spa99-experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spa99-experience-title {
    font-size: 30px;
  }
}

.spa99-services-section {
  padding: 80px 6%;
  text-align: center;
  background: #fbf4e8;
}

.spa99-services-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: #9a8f2c;
  font-weight: 500;
  margin-bottom: 10px;
}

.spa99-services-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin-bottom: 50px;
  color: #1f1f1f;
}

.spa99-services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.spa99-service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
}

.spa99-card-content {
  background: #fff;
  margin-top: -40px;
  padding: 25px 20px;
  border-radius: 18px;
  box-shadow: 0 20px 35px rgba(0,0,0,0.08);
}

.spa99-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.spa99-card-content span {
  font-size: 14px;
  color: #666;
  display: block;
  margin-bottom: 16px;
}

/* BUTTONS */
.spa99-card-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.spa99-call-btn,
.spa99-whatsapp-btn {
  text-decoration: none;
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 6px;
  font-weight: 500;
  color: #fff;
}

.spa99-call-btn {
  background: red;
}

.spa99-whatsapp-btn {
  background: #25d366;
}

.spa99-call-btn:hover {
  background:red;
}

.spa99-whatsapp-btn:hover {
  background: #1ebe5b;
}

.spa99-services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Tablet */
@media (max-width: 992px) {
  .spa99-services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .spa99-services-cards {
    grid-template-columns: 1fr;
  }

  .spa99-services-title {
    font-size: 32px;
  }
}

.spa99-service-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: spa99FadeUp 0.8s ease forwards;
  opacity: 0;
}

.spa99-service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

/* content now fully below image */
.spa99-card-content {
  margin-top: 0;
  background: #fff;
  padding: 25px 20px;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 20px 35px rgba(0,0,0,0.08);
  text-align: center;
}
 @keyframes spa99FadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* stagger animation */
.spa99-service-card:nth-child(1) { animation-delay: 0.1s; }
.spa99-service-card:nth-child(2) { animation-delay: 0.2s; }
.spa99-service-card:nth-child(3) { animation-delay: 0.3s; }
.spa99-service-card:nth-child(4) { animation-delay: 0.4s; }
.spa99-service-card:nth-child(5) { animation-delay: 0.5s; }
.spa99-service-card:hover {
  transform: translateY(-8px);
  transition: 0.3s ease;
}

.spa99-service-card img {
  transition: transform 0.4s ease;
}

.spa99-service-card:hover img {
  transform: scale(1.05);
}
.spa99-card-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.spa99-call-btn,
.spa99-whatsapp-btn {
  min-width: 110px;
  text-align: center;
}


/* contactus */



/* Contact Us Section */
.contact-us {
  padding: 80px 6%;
  background: #f7fdf8; /* light greenish-white */
}

.contact-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-section {
  display: flex;
  gap: 30px;
  align-items: stretch; /* important */
}

.contact-left,
.contact-right {
  flex: 1;
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 12px;
}



.contact-left select {
  padding: 16px 15px;
  border: 1px solid #2a6b4f;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #fff;
  resize: none;
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* Left: Form */
.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left h2 {
  font-size: 32px;
  color: #2a6b4f;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-left form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-left input,
.contact-left textarea {
  padding: 12px 15px;
  border: 1px solid #2a6b4f;
  border-radius: 8px;
  font-size: 14px;
  resize: none;
  transition: all 0.3s ease;
}

.contact-left input:focus,
.contact-left textarea:focus {
  border-color: #3fa066;
  box-shadow: 0 0 8px rgba(63,160,102,0.2);
  outline: none;
}

.contact-left button {
  padding: 12px 20px;
  border: none;
  background: #2a6b4f;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-left button:hover {
  background: #3fa066;
  transform: translateY(-3px);
}

/* Right: Map */
.contact-right {
  flex: 1;
  min-width: 300px;
  height: 680px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.animate-left,
.animate-right {
  opacity: 1;
  transform: translateX(0);
}


.animate-left.active,
.animate-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
}

/* Left: Form */
.contact-left input,
.contact-left textarea {
  padding: 18px 20px;       /* increased padding */
  border: 1px solid #2a6b4f;
  border-radius: 12px;      /* slightly bigger radius */
  font-size: 16px;          /* larger font */
  resize: none;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-left input {
  height: 50px;             /* bigger input height */
}

.contact-left textarea {
  height: 150px;             /* bigger textarea */
}

/* Button */
.contact-left button {
  padding: 16px 25px;        /* bigger clickable area */
  font-size: 18px;           /* larger text */
  border-radius: 12px;
}


.header-actions {
  display: flex;
  gap: 12px;
  margin-left: 20px;
}

.call-btn,
.whatsapp-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.call-btn {
  background: #2d7cff;
}

.whatsapp-btn {
  background: #25d366;
}

.call-btn:hover,
.whatsapp-btn:hover {
  opacity: 0.85;
}

.call-btn,
.whatsapp-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.call-btn {
  background: #2d7cff;
}

.whatsapp-btn {
  background: #25d366;
}

.call-btn:hover,
.whatsapp-btn:hover {
  opacity: 0.85;
}


.spa99-footer {
  background: #ffffff;
  padding-top: 60px;
  border-top: 1px solid #eee;
}

.spa99-footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 6% 40px;
}

.spa99-footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 15px;
}

.spa99-footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #1f1f1f;
}

.spa99-footer-col p {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.spa99-footer-col ul {
  list-style: none;
}

.spa99-footer-col ul li {
  margin-bottom: 8px;
}

.spa99-footer-col ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #666;
  transition: 0.3s;
}

.spa99-footer-col ul li a:hover {
  color: #6b4a5b;
}

/* bottom */
.spa99-footer-bottom {
  border-top: 1px solid #eee;
  text-align: center;
  padding: 15px 6%;
}

.spa99-footer-bottom p {
  font-size: 13px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .spa99-footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .spa99-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* Banner */
.spa99-banner {
  position: relative;
  width: 100%;
  height: 380px;
  background: url("assets/Couple Massage.jpg") center right / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 6%;
  overflow: hidden;
}

/* Purple overlay */
.spa99-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(108, 73, 94, 0.95) 0%,
    rgba(108, 73, 94, 0.9) 45%,
    rgba(108, 73, 94, 0.4) 65%,
    rgba(0,0,0,0.0) 100%
  );
}

/* Content */
.spa99-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 520px;
}

.spa99-content h1 {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 30px;
}

.spa99-content h1 span {
  font-weight: 600;
}

/* Button */
.spa99-btn {
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 14px 34px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.spa99-btn:hover {
  background: #f2f2f2;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .spa99-banner {
    height: auto;
    padding: 60px 6%;
  }

  .spa99-content h1 {
    font-size: 38px;
  }
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Desktop nav */
.nav-menu {
  display: flex;
  gap: 30px;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0f1f1c;
    flex-direction: column;
    text-align: center;
    padding: 25px 0;
    gap: 20px;

    /* hidden by default */
    display: none;
  }

  .nav-menu a {
    color: #fff;
    font-size: 1.1rem;
  }

  /* show menu */
  .nav-menu.active {
    display: flex;
  }

  .header-actions {
    display: none;
  }
}


/* Default hidden */
.mobile-sticky-buttons {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {

  .mobile-sticky-buttons {
    display: flex;
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgb(66, 197, 66);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 9999;
  }

  .mobile-sticky-buttons a {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .mobile-sticky-buttons a:first-child {
    border-right: 1px solid #eee;
  }

  .mobile-sticky-buttons i {
    font-size: 16px;
  }

  body {
    padding-bottom: 80px;
  }
}
