
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.spa-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6%;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

/* NAV LINKS */
.nav {
  display: flex;
  align-items: center; /* ensures same line */
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #145a32;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: #2a6b4f;
}

.cta {
  padding: 10px 22px;
  background: #145a32;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
}

/* HAMBURGER */
#menuToggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #145a32;
  border-radius: 2px;
}

/* MOBILE SIDEBAR */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 999;
  padding: 60px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-sidebar a {
  text-decoration: none;
  color: #145a32;
  font-size: 16px;
  padding: 10px 0;
  display: block;
}

.mobile-sidebar a.cta {
  background: #145a32;
  color: #fff;
  text-align: center;
  border-radius: 30px;
}

.mobile-sidebar .mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.mobile-sidebar .call-btn {
  background: #145a32;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
}

.mobile-sidebar .whatsapp-btn {
  background: #25D366;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
}

/* Close Sidebar Button */
.close-sidebar {
  font-size: 30px;
  color: #145a32;
  align-self: flex-end;
  cursor: pointer;
  padding: 5px;
}

/* Show Mobile Sidebar when toggle checked */
#menuToggle:checked ~ .mobile-sidebar {
  right: 0;
}

/* FIXED CONTACT BUTTONS */
.fixed-contact {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.fixed-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50px 0 0 50px;
  color: #fff;
  font-size: 18px;
  position: relative;
  transition: all 0.3s ease;
}

.fixed-contact a::after {
  content: attr(data-label);
  position: absolute;
  right: 100%;
  background: rgba(0,0,0,0.8);
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  font-size: 14px;
}

.fixed-contact a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { display: none; }
  .menu-icon { display: flex; }
}


/* BANNER */
.spa-banner {
  height: 100vh;
  background: url("https://media.istockphoto.com/id/618975414/photo/stone-massage.jpg?s=612x612&w=0&k=20&c=SNcnSp_rKsKu8HSrlmsOJGBNS8FeygsBGsu3ntuniMk=") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 6%;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,50,30,0.85), rgba(0,0,0,0.4));
}

.banner-content {
  position: relative;
  max-width: 600px;
  color: #fff;
  animation: slideUp 1.2s ease forwards;
}

.banner-content h1 {
  font-size: 3.8rem;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.banner-buttons {
  margin-top: 35px;
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.primary {
  background: #c8f3d4;
  color: #145a32;
  font-weight: 600;
}

.outline {
  border: 1px solid #fff;
  color: #fff;
}

.outline:hover {
  background: #fff;
  color: #145a32;
}

/* FLOATING LEAVES */
.floating-leaf {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(200,243,212,0.2);
  border-radius: 50%;
  filter: blur(2px);
  animation: float 8s infinite ease-in-out;
}

.leaf1 {
  top: 20%;
  left: 60%;
}

.leaf2 {
  bottom: 15%;
  left: 80%;
  animation-delay: 2s;
}

/* ANIMATIONS */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
  100% { transform: translateY(0); }
}

/* MOBILE */
#menuToggle {
  display: none;
}

@media(max-width: 768px) {
  .menu-icon {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: #0e3b2b;
    flex-direction: column;
    padding: 100px 30px;
    gap: 25px;
    transition: 0.4s;
  }

  #menuToggle:checked ~ .nav {
    right: 0;
  }

  .banner-content h1 {
    font-size: 2.6rem;
  }
}



/* About */

.spa-about {
  padding: 100px 6%;
  background: linear-gradient(180deg, #f6fffb, #ffffff);
  overflow: hidden;
}

.spa-about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  max-width: 1200px;
  margin: auto;
}

/* IMAGE */
.spa-about-image {
  position: relative;
  flex: 1;
  animation: imageSlide 1.2s ease forwards;
}

.spa-about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transform: translateX(-80px);
  opacity: 0;
  animation: imageSlide 1.2s ease forwards;
}

.glow-circle {
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(180, 240, 210, 0.35);
  border-radius: 50%;
  filter: blur(40px);
  top: -30px;
  left: -30px;
  z-index: -1;
}

/* CONTENT */
.spa-about-content {
  flex: 1;
  transform: translateX(80px);
  opacity: 0;
  animation: contentSlide 1.2s ease forwards;
}

.spa-about-content h4 {
  color: #5aa37a;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.spa-about-content h2 {
  font-size: 2.8rem;
  color: #0e3b2b;
  margin-bottom: 25px;
}

.spa-about-content h2 span {
  color: #3fa97c;
}

.spa-about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #b8f1d2, #6ac7a0);
  color: #0e3b2b;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ANIMATIONS */
@keyframes imageSlide {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes contentSlide {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .spa-about-container {
    flex-direction: column;
    text-align: center;
  }

  .spa-about-image img {
    max-width: 90%;
  }

  .spa-about-content h2 {
    font-size: 2.2rem;
  }
}

/* Services */

.spa-plans {

  background: #ffffff;
}

.spa-plans-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TOP TEXT */
.top-subtitle {
  font-family: cursive;
  font-size: 18px;
  color: #444;
  margin-bottom: 10px;
}

.main-title {
  font-size: 42px;
  font-weight: 500;
  color: #111;
  margin-bottom: 70px;
}

/* GRID */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* CARD BASE */
.plan-card {
  border-radius: 18px;
  padding: 50px 40px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.plan-card.white {
  background: #fff;
}

.plan-card.green {
  background: #73a97b;
  color: #fff;
}

/* ICON */
.icon {
  font-size: 34px;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* TITLE */
.plan-card h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
}

/* LIST */
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(0,0,0,0.25);
  font-size: 15px;
}

.plan-card.green li {
  border-bottom: 1px dotted rgba(255,255,255,0.4);
}

.plan-card li span {
  font-weight: 500;
}

.plan-card li em {
  font-style: normal;
  font-size: 13px;
  opacity: 0.7;
}

/* REMOVE LAST BORDER */
.plan-card li:last-child {
  border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 32px;
  }
}

.plan-card {
  border-radius: 18px;
  padding: 50px 40px;
  background: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.5s ease;
  opacity: 0;
}

/* ACTIVE (GREEN) */
.plan-card.active {
  background: #73a97b;
  color: #fff;
}

.plan-card.active li {
  border-bottom: 1px dotted rgba(255,255,255,0.4);
}

/* HOVER */
.plan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.18);
}

/* ANIMATIONS */
.animate-left {
  transform: translateX(-120px);
  animation: slideLeft 1.2s ease forwards;
}

.animate-right {
  transform: translateX(120px);
  animation: slideRight 1.2s ease forwards;
}

.animate-top {
  transform: translateY(-120px);
  animation: slideTop 1.2s ease forwards;
}

@keyframes slideLeft {
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideTop {
  to { transform: translateY(0); opacity: 1; }
}


/* chaos */

.ethos-section {
  padding: 120px 6%;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.ethos-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.ethos-title {
  font-size: 3rem;
  color: #0f253a;
  margin-bottom: 80px;
}

/* GRID */
.ethos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 60px;
}

/* CARD */
.ethos-card img {
  width: 70px;
  margin-bottom: 25px;
}

.ethos-card h4 {
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #0f253a;
}

.ethos-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #000;
}

/* DECORATIVE HANDS */
.hand {
  position: absolute;
  width: 280px;
  opacity: 0.5;
}

.hand-left {
  top: 40px;
  left: -80px;
}

.hand-right {
  bottom: -40px;
  right: -80px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ethos-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ethos-title {
    font-size: 2.2rem;
  }

  .hand {
    display: none;
  }
}
.commitment-section {
  background: #d9effa;
  padding: 90px 6%;
}

.commitment-title {
  text-align: center;
  font-size: 3rem;
  color: #0b2b45;
  margin-bottom: 60px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: auto;
}

.commit-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.commit-card img {
  width: 36px;
  margin-bottom: 18px;
}

.commit-card h4 {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #0b2b45;
  margin-bottom: 12px;
  font-weight: 600;
}

.commit-card p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: #222;
  max-width: 300px;
  margin: auto;
}

/* MOBILE */
@media (max-width: 900px) {
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .commitment-title {
    font-size: 2.2rem;
  }
}



.our-services {
  padding: 80px 6%;
  background: #f7fbfc;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.services-head h2 {
  font-size: 36px;
  margin: 10px 0 50px;
  letter-spacing: 2px;
  color:black;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 450px; /* adjust as per content */
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transform: translateY(60px);
  opacity: 0;
  transition: all 0.6s ease;
}


.service-box.active {
  transform: translateY(0);
  opacity: 1;
}

.img-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  height: 200px; /* uniform height for all images */
}


.img-container img {
  width: 100%;
  height: 100%; /* take full container height */
  object-fit: cover; /* crop & maintain aspect ratio */
  display: block;
  transition: transform 0.5s ease;
}

.service-box:hover .img-container img {
  transform: scale(1.1); /* nice zoom effect on hover */
}
.service-box h4 {
  font-size: 18px;
  color:red;
  margin: 15px 0 10px;
}

.service-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  padding: 0 15px 15px;
}

.details-btn {
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  background:red;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.details-btn:hover {
  background: #a50057;
  transform: scale(1.05);
}

.service-actions {
  display: flex;
  justify-content: space-between;
  padding: 0 15px 15px;
}

.service-actions a {
  flex: 1;
  margin: 5px;
  padding: 8px 0;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-actions a:hover {
  background: #7b003f;
  transform: scale(1.05);
}

/* Hover card effect */
.service-box:hover {
  box-shadow: 0 25px 40px rgba(123,0,63,0.25);
  transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer Styles */
.spa-footer {
  background: #ffffff;
  color: #2a6b4f;  /* dark green */
  padding: 60px 6% 20px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-about h2 {
  font-size: 24px;
  color: #2a6b4f;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2a6b4f;
  border-bottom: 2px solid #2a6b4f;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #555;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #3fa066; /* lighter green on hover */
  transform: translateX(5px);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.3s ease;
  font-size: 20px;
  color: #2a6b4f;
}

.social-icons a:hover {
  transform: scale(1.3);
  color: #3fa066;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #d1e3d1;
  padding-top: 20px;
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-about,
  .footer-links,
  .footer-contact {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}


/* 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);
}

/* 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) {
  .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;
}
