@charset "utf-8";
/* CSS Document */

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
}
/* 
Blue #1c1b5f
Orange #fe3d06
*/	


/* W1.................................................MOB */	
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.3s ease;
  box-shadow: none;
  background-color: #fff;
  z-index: 10000;
}

.header-wrapper.scrolled {
  padding: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header-wrapper.scrolled .header-logo img {
  height: 50px;
  transition: height 0.3s ease;
}

.header-wrapper .header-logo img {
  transition: height 0.3s ease;
}

.header-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  font-family: "Open Sans", sans-serif;
}

.header-logo img {
  height: 70px;
  width: auto;
}
@media (min-width: 400px) {
.header-logo img {
  height: 82px;
  width: auto;
}
}
.header-links {
  display: none;
}

.header-call {
  display: none;
}

.header-burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 9999;
  position: relative;
}

.header-burger-menu div {
  width: 100%;
  height: 3px;
  background: #fe3d06;
  transition: 0.3s ease;
}

.header-burger-menu.open div:nth-child(1) {
  transform: rotate(45deg) translate(7px, 5px);
}
.header-burger-menu.open div:nth-child(2) {
  opacity: 0;
}
.header-burger-menu.open div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header-mobile-menu {
  position: fixed;
  top: 100px;
  right: 0;
  background: #1c1b5f;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
}
.header-mobile-menu.open {
  transform: translateX(0);
}
.header-mobile-menu a {
  color: white;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  padding: 10px 30px;
  font-weight: 600;
  text-align: right;
  transition: color 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  display: inline;
}
.header-mobile-menu a:hover {
  background-color: #fe3d06;
  opacity: 1;
}

/* Desktop layout */
@media (min-width: 900px) {
  .header-burger-menu {
    display: none;
  }

  .header-mobile-menu {
    display: none !important;
  }

  .header-nav {
    flex-direction: row;
    align-items: center;
  }

  .header-links {
    display: flex;
    gap: 2rem;
    justify-content: right;
    flex-grow: 1;
  }

  .header-links a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, opacity 0.3s ease;
  }

  .header-links a:hover {
    color: #fe3d06;
  }

  .header-call {
    display: inline-block;
    background: #fe3d06;
    color: white;
    padding: 0.5rem 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    margin-left: 25px;
	letter-spacing: 1px;
    flex-shrink: 0;
    transition: color 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  }

  .header-call:hover {
    background: #1c1b5f;
    color: #fff;
  }

  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #1c1b5f;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    flex-direction: column;
  }

  .dropdown-content a {
    color: white;
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: color 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  }

  .dropdown-content a:hover {
    color: #fff;
    background-color: #fe3d06;
  }

  .dropdown:hover .dropdown-content {
    display: flex;
  }
}

/* Mobile horizontal dropdown */
.header-mobile-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
}

.header-mobile-submenu {
  position: absolute;
  top: 0;
  right: 100%;
  background: #1c1b5f;
  display: none;
  flex-direction: column;
  width: 100%;
  min-width: 200px;
  max-width: 400px;
  text-align: right;
  box-sizing: border-box;
  z-index: 999;
}

.header-mobile-submenu.open {
  display: flex;
}

.header-mobile-dropdown a {
  display: block;
  text-align: right;
  color: white;
  font-family: "Open Sans", sans-serif;
  padding: 10px 20px;
  font-weight: 600;
  transition: color 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.header-mobile-dropdown a:hover {
  background-color: #fe3d06;
  opacity: 1;
}


/* W2.................................................MOB */	

.hero-wrapper {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center;
  
}
.hero-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  color: #333;
  max-width: 700px;
  }

.hero-content h1 {
  font-family: "times-new-roman", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: 6px;
  max-width: 700px;
  margin-top: 100px;
  text-transform: uppercase;
}
@media only screen and (min-width: 500px) {
.hero-content h1 {
  font-size: 2.5rem;
}
}
@media only screen and (min-width: 800px) {
.hero-content h1 {
  font-size: 3.5rem;
}
}
.hero-content p {
  font-size: 1.2rem;
  letter-spacing: 2px;
  max-width: 700px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}
.hero-button {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #fe3d06;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Open Sans", sans-serif;
  margin-top: 30px;
}

.hero-button:hover {
  background: #fe3d06;
  color: #fff !important;
  cursor: pointer;
}
@media (min-width: 900px) {
.hero-button {
  display: none;
}
}


/* W3.................................................MOB */	

.body {
	width:100%;
	height:auto;
	padding: 40px 0px;
	background-image:url("../images/body-bg.webp");
	background-size: cover;
	background-position: center;
}
.body-content {
	max-width:800px;
	margin:0 auto;
	overflow:hidden;
		padding-left:20px;
		padding-right:20px;
		text-align: center;
}
.body h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 44px;
  color: #1c1b5f;
  letter-spacing: 2px;
}
.body h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #fe3d06;
  letter-spacing: 2px;
}
.body p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #444;
  letter-spacing: 1px;
}
.body ul {
  margin: 0 auto;
  padding-left: 0;
  list-style-position: inside;
}

.body li {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #444;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.body strong {
color: #fe3d06;
}
.body a:hover {
  color: #1c1b5f!important;
}
.body span {
display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  font-size: 15px;
  line-height: 30px;
  color: #464646;
  letter-spacing: 1px;
}
.body-button {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #fe3d06;
  background: #fff;
  color: #fe3d06;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Open Sans", sans-serif;
  margin-top: 30px;
  margin-bottom: 30px;
}

.body-button:hover {
  background: #fe3d06;
  color: #fff !important;
  cursor: pointer;
}
/* BODY PRICES.................................................MOB */
.body-prices {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Open Sans", sans-serif;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.price-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.price-item h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fe3d06;
}

.price-item h3 a {
  color: #fe3d06;
  text-decoration: none;
}

.price-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-item li {

}


/* W4.................................................MOB */	

.contact-bar {
	width:100%;
	height:auto;
	background-image: url("../images/contact-thai-massage.webp");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 100px 0px;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-bar-content {
	max-width:700px;
	font-family: "Open Sans", sans-serif;
}
.contact-bar h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.contact-bar p {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  margin-bottom: 40px;
  color: #fff;
  letter-spacing: 1px;
}
.contact-bar-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #fe3d06;
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
	letter-spacing: 1px;

}

.contact-bar-button:hover {
  background-color: #1c1b5f;
}

/* testimonials.................................................MOB */	
.testimonials {
background-color: #FCFCFC;
}
.testimonials-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  font-family: "Open Sans", sans-serif;
}

.testimonial-heading {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 44px;
  color: #1c1b5f;
  text-align: center;
  letter-spacing: 2px;
}

/* Layout for slider and buttons */
.testimonial-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

/* Left/Right Buttons */
.testimonial-btn {
  background-color: #fe3d06;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scrollable container */
.testimonials-container {
  display: inline-flex; /* Key change from 'flex' */
  flex-wrap: nowrap;
  align-items: flex-start;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}

/* Optional: Hide scrollbars */
.testimonials-container::-webkit-scrollbar {
  display: none;
}
.testimonials-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Testimonial card */
.testimonial {
  flex: 0 0 auto; /* Don't force width */
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 20px 20px 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: "Open Sans", sans-serif;
  scroll-snap-align: start;
  box-sizing: border-box;
  text-align: center;
  height: auto; /* Ensures height is driven by content */
}

.testimonial span {
  font-size: 18px;
  line-height: 50px;
  font-weight: 600;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.reviewer-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.google-logo {
  width: 40px;
  height: auto;
}

.testimonial p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive: show more testimonials on wider screens */
@media (min-width: 600px) {
  .testimonial {
    width: 48%;
  }
}

@media (min-width: 900px) {
  .testimonial {
    width: 32%;
  }
}

.body-testimonials .body-testimonials-layout {
  display: block;
  padding-top: 20px;
}

.body-testimonials .body-testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  overflow: visible;
  scroll-behavior: auto;
}

.body-testimonials .body-testimonial {
  flex: 0 1 100%;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 20px 20px 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
  text-align: left;
  height: auto;
}

.body-testimonials .body-testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.body-testimonials .body-testimonials-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.body-testimonials .body-testimonials-logo {
  width: 40px;
  height: auto;
}

.body-testimonials .body-testimonial span {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 10px;
}

.body-testimonials .body-testimonial p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 810px) {
  .body-testimonials .body-testimonial {
    flex: 0 1 48%;
  }
}





/* W5.................................................MOB */	
.services {
  padding: 40px 0px;
  box-shadow: 0 -10px 20px  rgba(0, 0, 0, 0.2);
}
.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}



.services h2 {
  margin-top: 15px;
  font-size: 2.25rem;
  color: #1c1b5f;
  font-family: "times-new-roman", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.services-item {
  flex: 1 1 250px;
  max-width: 300px;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.services-item:hover {
  transform: translateY(-8px);
}

.services-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  border-radius: 8px;
}

.services-img-wrap img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 10px 10px 0 #fe3d06;
  display: block;
  transition: transform 0.4s ease;
}

.services-item:hover .services-img-wrap img {
  transform: scale(1.08);
}

.services-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 27, 95, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  z-index: 1;
}

.services-item:hover .services-img-wrap::before {
  opacity: 1;
}

.services-img-wrap h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(28, 27, 95, 0.6);
  color: white;
  padding: 12px 15px;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  border-radius: 4px;
  max-width: 95%;
  min-width: 180px;
  text-align: center;
  z-index: 2;
  transition: background 0.3s ease;
}

.services-item:hover .services-img-wrap h3 {
  background: rgba(254, 61, 6, 0.85);
}

.services-item p {
  font-size: 1rem;
  color: #333;
  margin: 20px 0;
  font-family: "Open Sans", sans-serif;
}

.services-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-item ul li {
  margin: 5px 0;
  color: #333;
  font-family: "Open Sans", sans-serif;
}





/* W6.................................................MOB */	
.contact-wrapper {
background-color: #F8F8F8;
box-shadow: 0 -10px 20px  rgba(0, 0, 0, 0.2);
}

  .contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
	text-align: center;
  }

  .contact-content,
  .contact-map {
    width: 100%;
  }

  .contact h2 {
    font-size: 2rem;
    color: #1c1b5f;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
.contact p {
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 30px;
  color: #464646;
  letter-spacing: 1px;
}
  .contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
  }

  @media (min-width: 768px) {
    .contact {
      flex-direction: row;
	  text-align: left;
    }

    .contact-content,
    .contact-map {
      width: 50%;
    }

    .contact-map iframe {
      height: 100%;
      min-height: 450px;
    }
  }


/* W7.................................................MOB */	

.footer {
  background-color: #fe3d06;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  padding: 20px 15px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  font-size: 14px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

.footer a:hover {
  text-decoration: underline;
}

@media (min-width: 600px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}



/* W8.................................................MOB */	

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.gallery-img {
  width: 200px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
}

.gallery-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gallery-lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  margin-bottom: 20px;
}

.gallery-close {
  position: absolute;
  top: 150px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 20px;
  user-select: none;
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

/* FAQ.................................................MOB */	
.faq {
	width:100%;
	height:auto;
	padding: 40px 0px;
}
.faq-content {
	max-width:800px;
	margin:0 auto;
	overflow:hidden;
		padding-left:20px;
		padding-right:20px;
		text-align: center;
}
.faq h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 44px;
  color: #1c1b5f;
  letter-spacing: 2px;
}
.faq p {
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 30px;
  color: #444;
  letter-spacing: 1px;
}
.faq-section {
      max-width: 900px;
      margin: 0 auto 60px;
    }

    .faq-item {
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-bottom: 10px;
      background-color: #fff;
      overflow: hidden;
    }

    .faq-question {
      background-color: #1c1b5f;
      color: #fff;
      padding: 15px 20px;
      font-family: "Open Sans", sans-serif;
      font-size: 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .faq-question:hover {
      background-color: #002244;
    }

    .faq-toggle {
      font-size: 22px;
      color: #fe3d06;
      font-weight: bold;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      display: none;
      padding: 15px 20px;
      background-color: #fff;
      color: #333;
      line-height: 1.6;
	  font-family: "Open Sans", sans-serif;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .faq-toggle {
      content: "–";
      transform: rotate(180deg);
    }


/* W9.................................................MOB */	

.w9 {
	width:100%;
	height:auto;
}
.w9-content {
	max-width:1200px;
	margin:0 auto;
	overflow:hidden;
		padding-left:20px;
		padding-right:20px;
	font-family: "Open Sans", sans-serif;
}
@media only screen and (min-width: 600px) {
}

@media only screen and (min-width: 700px) {
}

@media only screen and (min-width: 800px) {
}

@media only screen and (min-width: 900px) {
}

@media only screen and (min-width: 1000px) {
}

@media only screen and (min-width: 1100px) {
}

@media only screen and (min-width: 1200px) {
}

