* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.main-header {
  background: #ffffff;
  width: 100%;
  border-bottom: 1px solid #eee;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  padding: 18px 40px;
}

.logo img {
  height: 65px;
  width: 95px;
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  gap: 60px;
  margin-left: 300px;
}

.nav-menu a {
  font-family: "Albert Sans", Sans-serif;
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}

.nav-menu a i {
  font-size: 12px;
  margin-left: 4px;
}

.nav-menu a.active {
  color: #2e2e2c;
}

/* Call Button */
.call-btn {
  margin-left: auto;
  background: #000000;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 500;
}

.call-btn i {
  margin-right: 6px;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  margin-left: 20px;
  cursor: pointer;
  color: #7a8450;
}

/* Mobile Sidebar */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  padding: 25px;
  transition: 0.4s;
  z-index: 1000;
}

.mobile-nav.active {
  left: 0;
}

.mobile-top {
  text-align: right;
  margin-bottom: 25px;
}

.mobile-top i {
  font-size: 26px;
  cursor: pointer;
}

.mobile-nav a {
    font-family: "Albert Sans", Sans-serif;
  display: block;
  padding: 14px 12px;
  text-decoration: none;
  color: #000000;
  font-size: 16px;
}
.nav-wrapper .call-btn{
  background: #000000;
}
.mobile-nav a.active {
  background: #3e434a;
  color: #ffffff;
}


/* Responsive */
@media (max-width: 992px) {
  .nav-menu,
  .call-btn {
    display: none;
  }
  .nav-wrapper .call-btn{
    display: none;
  }

  .hamburger {
    display: block;
    margin-left: 63%;
  }
}

.offer-section {
  position: relative;
  min-height: 100vh;
  background: url("background.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.offer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.offer-content {
  position: relative;
  max-width: 700px;
  color: #fff;
  z-index: 2;
}

.offer-content h1 {
  font-family: "Cherry Swash", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 2px;
}

.offer-content h2 {
  font-family: "Cherry Swash", sans-serif;

  font-size: 42px;
  margin: 15px 0;
  font-weight: 700;
}

.offer-content p {
  font-family: "Albert Sans", Sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 20px 0 35px;
  color: #f1f1f1;
}

.call-btn {
  font-family: "Albert Sans", Sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #000000;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: #5f6c45;
  transform: translateY(-2px);
}

/* =======================
   Mobile Responsive
======================= */
@media (max-width: 768px) {
  .offer-content h1 {
    font-size: 34px;
  }

  .offer-content h2 {
    font-size: 28px;
  }

  .offer-content p {
    font-size: 14px;
  }

  .call-btn {
    padding: 12px 26px;
    font-size: 14px;
  }
}











.spa-section {
  background: #7b8568;
  padding: 40px 20px;
  color: #fff;
}

.spa-header {
  max-width: 1100px;
  margin: 0 auto 60px;
  text-align: center;
}

.spa-header h2 {
  font-family: "Cherry Swash", sans-serif;
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 600;
}

.spa-header p {
  font-size: 14px;
  line-height: 1.7;
  color: #f1f1f1;
    font-family: "Albert Sans", Sans-serif;
}

/* Cards */
.spa-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.spa-card {
  background: #f2f2f2;
  border-radius: 24px;
  padding: 40px 25px;
  text-align: center;
  color: #4a4a4a;
  transition: all 0.4s ease;
}

/* Hover effect */
.spa-card:hover {
  background: #e2ead6;
  transform: translateY(-8px);
}

.spa-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 25px;
  clip-path: polygon(
    50% 0%,
    93% 25%,
    93% 75%,
    50% 100%,
    7% 75%,
    7% 25%
  );
  overflow: hidden;
}

.spa-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spa-card h3 {
    font-family: "Cherry Swash", sans-serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: #2f4f4f;
}

.spa-card p {
  font-size: 15px;
  line-height: 1.6;
      font-family: "Albert Sans", Sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
  .spa-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .spa-cards {
    grid-template-columns: 1fr;
  }

  .spa-header h2 {
    font-size: 30px;
  }
}











.slider {
  position: relative;
  max-width: 100%;
  height: 520px;
  margin: 20px 20px;
  overflow: hidden;
  border-radius: 20px;
}

.slides {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Arrows */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.nav:hover {
  background: rgba(0,0,0,0.7);
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .slider {
    height: 280px;
    border-radius: 12px;
  }

  .nav {
    font-size: 22px;
    padding: 8px 12px;
  }
}












.services-section {
  padding: 40px 20px;
  background: #ffffff;
}

.section-title {
  font-family: "Cherry Swash", sans-serif;
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #0d3b46;
  font-weight: 600;
}

.services-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  max-width: 1300px;
  margin: auto;
  align-items: center;
}

/* LEFT */
.services-left h3 {
  font-family: "Cherry Swash", sans-serif;
  font-size: 28px;
  margin-bottom: 15px;
  color: #0d3b46;
}

.intro-text {
  max-width: 520px;
      font-family: "Albert Sans", Sans-serif;
  margin-bottom: 40px;
  color: #4a5d63;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
      font-family: "Cherry Swash", sans-serif;

  background: #f8faf9;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #eef2ef;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: #eef4ef;
  transform: translateY(-5px);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.icon-box i {
  font-size: 20px;
  color: #6f7b4e;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0d3b46;
}

.service-card p {
      font-family: "Albert Sans", Sans-serif;

  font-size: 14px;
  color: #5d6f74;
  line-height: 1.6;
}

/* RIGHT IMAGE */
.services-right img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-wrapper {
    grid-template-columns: 1fr;
  }

  .services-right {
    order: -1;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-left h3 {
    font-size: 22px;
  }
}









.spa-visuals-wrap {
  padding: 40px 20px;
  background-color: #ffffff;
}

.spa-visuals-heading {
  font-family: "Cherry Swash", sans-serif;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #0d3b46;
  margin-bottom: 50px;
}

/* GRID LAYOUT */
.spa-visuals-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* IMAGE BOX */
.spa-visual-box {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.spa-visual-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.spa-visual-box:hover img {
  transform: scale(1.05);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .spa-visuals-grid {
    grid-template-columns: 1fr;
  }

  .spa-visual-box img {
    height: 260px;
  }

  .spa-visuals-heading {
    font-size: 28px;
  }
}
















.cust-review-zone {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

.cust-review-title {
  font-size: 36px;
        font-family: "Cherry Swash", sans-serif;

  color: #0d3b46;
  margin-bottom: 20px;
}

.cust-review-summary h3 {
        font-family: "Albert Sans", Sans-serif;

  font-size: 22px;
  margin-bottom: 6px;
}

.cust-stars {
  color: #fbbc04;
  font-size: 22px;
}

.cust-google-logo {
  width: 80px;
  margin-top: 8px;
}

/* SLIDER */
.cust-review-slider {
  position: relative;
  max-width: 1400px;
  margin: 50px auto 0;
  overflow: hidden;
}

.cust-review-track {
  display: flex;
  gap: 25px;
  transition: transform 0.4s ease;
}

/* CARD */
.cust-review-card {
  min-width: 300px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: left;
}

.cust-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cust-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.green { background: #0f766e; }
.pink { background: #db2777; }
.teal { background: #0891b2; }
.blue { background: #2563eb; }
.gray { background: #6b7280; }

.cust-gicon {
  width: 16px;
  margin-left: auto;
}
.cust-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff00;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 20;              /* 🔥 IMPORTANT */
}

.cust-arrow.left {
  left: 15px;               /* 🔥 move inside */
}

.cust-arrow.right {
  right: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .cust-review-title {
    font-size: 26px;
  }

  .cust-review-card {
    min-width: 85%;
  }
}










.cta-spa-wrap {
  position: relative;
  min-height: 420px;
  background-image: url("backgound-1.png"); /* 2nd image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* soft overlay like screenshot */
.cta-spa-overlay {
  position: absolute;
  inset: 0;
  background: rgba(190, 160, 125, 0.55);
}

/* content */
.cta-spa-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
}

.cta-spa-title {
  font-family: "Cherry Swash", sans-serif;

  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-spa-subtitle {
        font-family: "Albert Sans", Sans-serif;

  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 35px;
}

/* buttons */
.cta-spa-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* same olive green buttons */
.cta-btn.primary {
  background: #000000;
    font-family: "Albert Sans", Sans-serif;

}

.cta-btn.secondary {
  background: #000000;
    font-family: "Albert Sans", Sans-serif;

}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-spa-title {
    font-size: 30px;
  }

  .cta-spa-subtitle {
    font-size: 16px;
  }

  .cta-spa-wrap {
    min-height: 320px;
  }
}








.map-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

/* Google Map iframe */
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Overlay text (centered like screenshot) */
.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.map-overlay p {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 15px;
  font-family: Arial, sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .map-wrapper {
    height: 350px;
  }

  .map-overlay p {
    font-size: 13px;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .map-wrapper {
    height: 300px;
  }
}










.spa-footer {
          font-family: "Albert Sans", Sans-serif;

  background: #1b1f1f;
  background-image: radial-gradient(circle at top, #2a2f2f, #161919);
  color: #e5e5e5;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #cfcfcf;
}
.footer-col a{
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 12px;
  color: #cfcfcf;
}

/* Services – NOT clickable */
.services-list li {
  cursor: default;
}

/* Icons */
.footer-col i {
  margin-right: 10px;
  color: #b6b87a;
}

.footer-social {
  margin-top: 20px;
}

.footer-social i {
  margin-right: 14px;
  font-size: 16px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .spa-footer {
    padding: 50px 15px;
  }
}















.about-page {
  background: #1b1f1f;
  color: #eaeaea;
  padding: 90px 20px;
  font-family: "Poppins", sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: #b6b87a;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #ffffff;
}

.about-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #cfcfcf;
  margin-bottom: 18px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.about-points li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #d8d8d8;
}

.about-points i {
  color: #b6b87a;
  margin-right: 10px;
}

/* Image */
.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content h1 {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-page {
    padding: 60px 15px;
  }

  .about-content h1 {
    font-size: 28px;
  }

  .about-content p,
  .about-points li {
    font-size: 14px;
  }
}



















.contact-page {
  background: #1b1f1f;
  padding: 90px 20px;
  color: #eaeaea;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-tag {
  color: #b6b87a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.contact-info h2 {
  font-size: 38px;
  margin: 15px 0 20px;
  color: #fff;
}

.contact-info p {
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
  color: #d6d6d6;
  font-size: 15px;
}

.contact-item i {
  color: #b6b87a;
  margin-top: 4px;
}

/* Action Buttons */
.contact-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-actions a {
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-call {
  background: #b6b87a;
  color: #1b1f1f;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-map {
  background: transparent;
  border: 1px solid #b6b87a;
  color: #b6b87a;
}

.contact-actions a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Map */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 32px;
  }

  .contact-map iframe {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .contact-page {
    padding: 60px 15px;
  }

  .contact-info h2 {
    font-size: 26px;
  }
}













.privacy-policy{
    background:#f8f9fb;
    padding:20px 20px;
}

.privacy-container{
    max-width:900px;
    margin:auto;
    background:#ffffff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.privacy-policy h2{
    text-align:center;
    color:#1f6f78;
    margin-bottom:20px;
    font-size:32px;
}

.privacy-policy h3{
    margin-top:25px;
    color:#2c3e50;
}

.privacy-policy p{
    margin:10px 0;
    line-height:1.7;
    color:#555;
}

.privacy-policy ul{
    margin-left:20px;
}

.privacy-policy li{
    margin-bottom:6px;
}

/* Mobile Responsive */
@media(max-width:768px){
    .privacy-container{
        padding:25px;
    }
}
