*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    font-family: 'Poppins', sans-serif;
  color: #222;
}
.head-stripe{
    background-color: #121F38;
    padding: 12px 18px;
    color: rgb(197, 197, 197);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.head-stripe p{
    cursor: pointer;
    font-size: 14px;
}
.head-stripe i{
    cursor: pointer;
    color: #9a563a;
}
.head-stripe .icon i{
        color: rgb(197, 197, 197);
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    height: 30vh;
}
.logo img{
  width: 250px;
}
nav a{
    text-decoration: none;
    color: black;
}
nav a:hover{
    color: #9a563a;
}
.logo img{
    cursor: pointer;
    width: 250px;
}
nav ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
nav li{
    cursor: pointer;
    padding: 20px;
    border-radius: 1rem;
    text-decoration: none;
    list-style: none;
    font-size: 25px;
    background-color: #9a563a;
    color: white;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: 550;
}
nav li:hover{
     background-color: #121F38;
    color: white;
     transition:cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-duration: .3s;
}
.btn{
  border-radius: 1rem;
    cursor: pointer;
    background-color: #9a563a;
    color: white;
    padding: 20px 35px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition:cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-duration: .3s;
}
.btn:hover{
    background-color: #121F38;
    color: white;
}
nav .menu-right{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
nav i{
    cursor: pointer;
    font-size: 30px;
}

/* .hero{
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 30px;
    margin-top: 120px;
    margin-bottom: 100px;
    position: relative;
}
.hero-image img{
    width: 350px;
    border-radius: 2rem;
}
.hero-image{
    display: flex;
    margin: 20px;
    position: relative;
}
.hero-image .front{
  position: absolute;
  z-index: 999;
  left: 250px;
  bottom: 100px;
}
.hero-description{
    align-self: flex-start;
    position: relative;
    width: 520px;
}
.hero .mini-image{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-description p{
    letter-spacing: 5px;
    color: #9a563a;
    margin-bottom: 10px;
}
.hero-description h1{
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: left;
}
.hero-description h1 span{
    color: #9a563a;
}
.mini-image{
    margin: 30px 0;
}
.mini-image p{
    margin-left: 14px;
    font-size: 15px;
    color: black;
    text-align: justify;
    letter-spacing: normal;
    line-height: 25px;
}
.mini-image img{
    padding: 20px;
    border-left: 2px solid #9a563a;
}
.hero-description .description{
    font-size: 15px;
    color: black;
    text-align: justify;
    letter-spacing: normal;
    line-height: 25px;
    margin-bottom: 30px;
}
.hero-button{
    display: flex;
    gap: 20px;
}
 */

/* service section */
.services{
    background-image: url(https://frozenthaispa.com/wp-content/uploads/2023/07/sr-bg-9-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 30px;
}


.services .s{
     letter-spacing: 5px;
    color: #9a563a;
    margin-bottom: 10px;
}
.services p{
  text-align: center;
}
.services h1{
     font-size: 50px;
    font-weight: 400;
    text-align: center;
}
.service-card{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.card{
    background-color: #fff;
    padding: 50px 10px;
    width: 290px;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.card img{
   width: 170px;
   border-radius: 1rem;
}
.card h2{
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 400;
}
/* .card p{
    font-size: 15px;
    text-align: center;
    letter-spacing: normal;
    line-height: 25px;
} */

/* appointment section */

.appointment-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 100px 20px;
  min-height: 100vh;
}

.form-container {
  background-color: #fde5d7;
  padding: 40px;
  width: 100%;
}

.form-container h5 {
  letter-spacing: 2px;
  color: #8b4513;
  font-size: 14px;
  margin-bottom: 10px;
}

.form-container h2 {
  font-size: 35px;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 15px;
}

input,
select {
  padding: 18px !important;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  background: #fff;
  outline: none;
  transition: border 0.3s ease;
}

input:focus,
select:focus {
  border-color: #b36b45;
}

form button{
    width: fit-content;
}

button:hover {
  background-color: #3e4045;
}
.schedule{
    padding: 220px 150px;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(https://frozenthaispa.com/wp-content/uploads/2023/07/schedule-img-1-1.jpg);
}
.schedule h1,.schedule h2,.schedule p{
    text-align: center;
    width: 300px;
}
.schedule h2{
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
}
.schedule h1{
    font-size: 33px;
    font-weight: 400;
    margin-bottom: 30px;
}
.schedule p{
    line-height: 35px;
}





/* 1st banner  */

.f-banner{
   padding: 100px 20px;
    background-image: url(https://frozenthaispa.com/wp-content/uploads/2023/07/team-bg-5-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.f-banner h1{
    text-align: center;
    font-size: 40px;
    color: #6EC1E4;
    margin-bottom: 30px;
}
.f-banner p{
    text-align: center;
    line-height: 25px;
}




/* testimonial */
.testimonial-section {
  text-align: center;
  padding: 60px 20px;
}

.subtitle {
  color: #a0603a;
  letter-spacing: 3px;
  font-size: 14px;
}

.title {
  font-size: 30px;
  margin-bottom: 40px;
  color: #0a0a23;
}

.slider {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  padding: 20px;
}

.image img {
  width: 100%;
  border-radius: 10px;
}

.content {
  text-align: left;
  padding: 20px;
  position: relative;
  min-height: 230px;
}

.stars {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 10px;
}

.content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
  transition: opacity 0.5s ease;
}

.content h3 {
  color: #0a0a23;
  font-weight: 600;
  transition: opacity 0.5s ease;
}

.client-role {
  color: #a0603a;
  font-size: 13px;
  text-transform: uppercase;
}

/* Dots navigation */
.dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 25px;
  height: 3px;
  background: #ccc;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #a0603a;
  width: 35px;
}

/* Responsive */

/* pricing */
.pricing{
    padding: 100px 30px;
    width: 100%;
}
.pricing p{
    font-size: 15px;
    letter-spacing: 4px;
    color: #9a563a;
    text-align: center;
    margin-bottom: 20px;
}
.pricing h1{
    font-size: 45px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
}
.pricing-menu{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.pricing-menu .menu{
    cursor: pointer;
    padding: 20px;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 49%;
    box-shadow: 5px 5px 10px rgb(231, 231, 231);
    transition: all;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-duration: 1s;
}
.pricing .menu img{
    padding: 10px;
    border: .1px solid #9a563a;
}
.pricing .menu .price{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pricing .menu .price h2{
    font-weight: 400;
}
.pricing .menu .price p{
    font-size: 25px;
    font-weight: 400;
    margin: 0;
    color: #9a563a !important;
}
.pricing .menu .menu-des p{
    text-align: left;
    color: rgb(99, 99, 99);
    letter-spacing: normal;
    line-height: 25px;
}
.pricing .menu .menu-des{
    margin-left: 30px;
}
.pricing .menu:hover{
    color: white;
    background-color: #9a563a;
}
.pricing .menu:hover p{
    color: white !important;
}
.pricing .menu:hover img{
    background-color: white !important;
}



/* 2nd banner */
.s-banner{
    display: flex;
    width: 100%;
}
.s-banner img{
    width: 50%;
}
.s-banner .sb-des{
    background-image:url(https://frozenthaispa.com/wp-content/uploads/2023/07/banner-cta-3-1.jpg) ;
     background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding: 50px 50px;
    align-items: baseline;
    width: 50%;
}
.sb-des p{
    font-size: 15px;
}
.sb-des h1{
    font-size: 40px;
    font-weight: 400;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 30px;
    width: 300px;
}


/* FAQ */
.faq-container {

  background: #fff;
  width: 600px;
  border-radius: 10px;
  overflow: hidden;

}
.faq-container h2{
    font-size: 17px;
    color: #9a563a;
    letter-spacing: 4px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 20px;
}
.faq-container h1{
    text-align: left;
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 30px;
}
.faq-container p{
    line-height: 30px;
    margin-bottom: 30px;
}

.faq-item {
  border: 1px solid #eee;
  margin-bottom: 20px;
}
.faq-item:hover{
    border: .1px solid #9a563a;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 10px 0 15px;
  color: #555;
  line-height: 1.6;
}

/* Arrows */
.arrow {
  border: solid #333;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transition: transform 0.3s;
}

.right {
  transform: rotate(-45deg);
}

.down {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 15px;
}

.faq-item.active .arrow {
  transform: rotate(45deg);
}
.faq{
    margin: 100px 20px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
}
.faq img{
    width: 40%;
}

/* brands */
.brands {
  width: 100%;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  overflow-x: auto;         /* horizontal scroll enable */
  scroll-behavior: smooth;  /* smooth sliding */
  scrollbar-width: none;    /* hide scrollbar (Firefox) */
}
.brands::-webkit-scrollbar {
  display: none;            /* hide scrollbar (Chrome, Edge, Safari) */
}

.brands img {
  width: 120px;
  flex-shrink: 0;           /* prevent image from shrinking */
  transition: transform 0.3s ease;
}

.brands img:hover {
  transform: scale(1.05);
}

/* newslatter */
.newsletter{
    display: flex;
    padding: 100px 20px;
    align-items: center;
    justify-content: space-between;
    background-color: #F4F0ED;
    border-bottom: 1px solid rgb(227, 227, 227);
}
.newsletter h1{
    color: #6EC1E4;
    font-size: 40px;
    text-align: left;
    margin-bottom: 10px;
}
.newsletter p{
    color: #6EC1E4;
}
.newsletter input{
    width: 400px;
}
.email{
    display: flex;
}


/* footer section */
footer{
    background-color: #F4F0ED;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    width: 100%;
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
  
}
footer .logo{
    margin-bottom: 30px;
}
footer li{
    text-decoration: none;
    list-style: none;
}
footer .f-icon{
  margin-top: 20px;
}
.logo-footer p{
    width: 400px;
    font-size: 15px;
    font-family: sans-serif;
    line-height: 26px;
    margin-bottom: 30px;
}
.importantLinks{
    width: 300px;
}
.importantLinks h1{
    display: inline;
    border-bottom: 2px solid #9a563a;
    text-transform: uppercase;
    font-size: 25px;
    font-family: sans-serif;
    font-weight: 400;
    color: #6EC1E4;
}

.footer-menu{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-menu li{
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    line-height: 40px;
    font-family: sans-serif;
}
.footer-menu li:hover{
    color: #9a563a;
}
.contactLinks{
    height: 260px;
    margin-bottom: 20px;
}
.contactLinks iframe{
  margin-top: 20px;
  width: 200px;
  height: 100px;
}
.contactLinks h1{
    display: inline;
     border-bottom: 2px solid #9a563a;
    color: #6EC1E4;
    font-size: 27px;
}
.contactLinks p{
    margin: 20px 0;
    font-size: 15px;
    font-family: sans-serif;
    cursor: pointer;
}
.contactLinks p i{
    margin-right: 20px;
    font-size: 20px;
    cursor: pointer;
}
.contactLinks p:hover{
    color: #9a563a;
}
.contactLinks p i:hover{
    color: #9a563a;
}
.copyRight{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #121F38;
    color: white;
    height: 70px;
}
.copyRight p{
    font-size: 14px;
    font-weight: 500;
    font-family: sans-serif;
}
.l{
    position: absolute;
    left: 1000px;
    width: 250px;
    z-index: 999;
    top: 180px;
}
.r{
    position: absolute;
    right: 1100px;
    width: 80px;
    z-index: -1;
    top: 220px;
}

/* social media */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1000;
}

/* All circular buttons */
.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background-color: #8b4a34;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover effect */
.social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Brand Colors */
.whatsapp {
  background-color: #25d366;
}

.telegram {
  background-color: #0088cc;
}

.messenger {
  background-color: #006aff;
}

.top-btn {
  background-color: #8b4a34;
}

#goTopBtn {
  display: none;
}

/* --- Mobile Bottom Bar --- */
.mobile-bottom-bar {
  display: none;
}

/* Buttons inside bottom bar */
.mobile-btn {
  flex: 1;
  text-align: center;
  color: #fff;
  padding: 14px 0;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.mobile-btn.whatsapp {
  background-color: #25d366;
}

.mobile-btn.telegram {
  background-color: #0088cc;
}

.mobile-btn.messenger {
  background-color: #006aff;
}

/* --- Responsive --- */



/* contact page */
.contact-section {
  padding: 50px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
}

.contact-left,
.contact-right {
  flex: 1 1 450px;
  padding: 40px;
}

.experience {
  letter-spacing: 2px;
  font-size: 14px;
  color: #b36b47;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.title {
    text-align: left !important;
  font-size: 32px;
  margin-bottom: 20px;
}

.desc {
  margin-bottom: 25px;
  line-height: 1.6;
}

form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 500;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form textarea {
  resize: vertical;
  height: 100px;
}

form button {
  margin-top: 15px;
  background: #b36b47;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #9a583b;
}

.contact-info {
  margin-top: 25px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    padding: 25px;
  }
}

    /* Custom Alert Base */
.custom-alert {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Alert Box */
.alert-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 90%;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  animation: slideIn 0.3s ease-in-out;
}

.alert-box p {
  font-size: 18px;
  color: #222;
  font-weight: 500;
  margin-bottom: 15px;
}

/* Buttons */
.alert-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert-btn {
  padding: 10px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.telegram-btn {
  background: #0088cc;
  color: white;
}

.telegram-btn:hover {
  background: #0074aa;
}

/* Animation */
@keyframes slideIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


/* blog */
.blog-section p{
  color: #9a563a;
  letter-spacing: 2px;
}
.blog-section h2{
  font-size: 40px;
  font-weight: 400;
}

.blog-section {
  text-align: center;
  padding: 60px 20px;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-content h3 {
  color: #0d1b2a;
  margin-bottom: 10px;
}

.blog-content p {
  color: #555;
  font-size: 14px;
}

.page-detail{
  padding: 50px 50px;
  display: flex;
  flex-direction: column;
}
.page-detail h1{
  font-size: 40px;
  text-align: left;
  font-weight: 400;
}
.page-detail img{
  width: 250px;
  align-self: center;
  margin: 30px 0;
}
.page-detail p{
  line-height: 30px;
}
.page-detail h2{
  font-size: 30px;
  font-weight: 400;
  margin: 20px 0;
}
.page-detail h3{
  font-size: 20px;
  font-weight: 400;
}

/* Reset */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero{
  
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  align-items: center;
}

/* Left Image */
.hero .image img{
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0px 8px 22px rgba(0,0,0,0.08);
}

/* Center description */
.hero-description{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-title{
  font-size: 40px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.25;
}
.hero p{
  letter-spacing: normal;
  color: black;
}

.hero-lead{
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* Buttons */
.hero a{
  text-decoration: none;
}



.hero-tag{
  font-style: italic;
  color: #555;
  margin-top: 5px;
}

/* Right video */
.video video{
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0px 8px 22px rgba(0,0,0,0.08);
}