@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Playball&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size:16px;
  line-height: 1.7;
  color: #4A403A;
  background: #F8F3EE;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.heading1{
  font-family: "Playfair Display", serif;
}
.heading2{
  font-family: "Playball", cursive;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #5C6B52;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover, a:focus {
  color: #B89460;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  color: #1F2620;
  margin: 0 0 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.125rem;
  color: rgb(103.3430232558, 103.3430232558, 94.1569767442);
}

.text-script {
  font-family: "Italianno", cursive;
  font-size: 2rem;
  color: #B89460;
  line-height: 1;
}

.section-tag {
  display: inline-block;
  text-transform: capitalize;
  color: #B89460;
  margin-bottom: 1rem;
  font-family: "Playball", cursive;
  position: relative;
  padding-left: 115px;
  line-height: 35px;
  font-size: 35px;
}

.section-tag:before{
  width: 111px;
  height: 10px;
  content: '';
  background: url(../images/arrow.png);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 38px;
  font-family: "Playfair Display", serif;
}
.section-title em {
  font-style: normal;
  color: #7A8A6E;
}

.section-divider {
  display: block;
  width: 60px;
  height: 1px;
  background: #B89460;
  margin: 1.25rem auto;
}

.bg-sand {
  background: #F4ECE0 !important;
}

.bg-sand-light {
  background: #FBF7F1 !important;
}

.bg-sand-dark {
  background: #E6DBC9 !important;
}

.bg-sage {
  background: #7A8A6E !important;
  color: #FFFDF8;
}

.bg-ink {
  background: #1F2620 !important;
  color: #FFFDF8;
}

.text-sage {
  color: #7A8A6E !important;
}

.text-gold {
  color: #B89460 !important;
}

.text-ink {
  color: #1F2620 !important;
}

.text-cream {
  color: #FFFDF8 !important;
}

.text-muted-2 {
  color: #8A8A82 !important;
}

.section {
  padding: 7rem 0;
}

@media (max-width: 767.98px) {
  .section {
    padding: 4.5rem 0;
  }
}
.section-sm {
  padding: 4rem 0;
}

::selection {
  background: #7A8A6E;
  color: #FFFDF8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  line-height: 1;
}
.btn:focus-visible {
  outline: 2px solid #B89460;
  outline-offset: 3px;
}

.btn-primary {
  background: #7A8A6E;
  color: #FFFDF8;
  border-color: #7A8A6E;
}
.btn-primary:hover, .btn-primary:focus {
  background: #5C6B52;
  border-color: #5C6B52;
  color: #FFFDF8;
}

.btn-gold {
  background: #C7A27C;
  color: #FFFDF8;
  border-color: #C7A27C;
}
.btn-gold:hover, .btn-gold:focus {
  background: rgb(165.36, 127.92, 73.84);
  border-color: rgb(165.36, 127.92, 73.84);
  color: #FFFDF8;
}

.btn-outline {
  background: transparent;
  color: #1F2620;
  border-color: #1F2620;
}
.btn-outline:hover, .btn-outline:focus {
  background: #1F2620;
  color: #FFFDF8;
}

.btn-outline-light {
  background: transparent;
  color: #FFFDF8;
  border-color: #FFFDF8;
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background: #FFFDF8;
  color: #1F2620;
}

.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1F2620;
  border-bottom: 1px solid #1F2620;
  padding-bottom: 4px;
}
.btn-link-arrow:hover {
  color: #B89460;
  border-color: #B89460;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 0.82rem;
}

.btn-sm {
  padding: 0.7rem 1.5rem;
  font-size: 0.7rem;
}

.topbar {
  background: #1F2620;
  color: rgba(255, 253, 248, 0.7);
  padding: 0.6rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.topbar a {
  color: rgba(255, 253, 248, 0.7);
}
.topbar a:hover {
  color: #B89460;
}
.topbar .topbar-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .topbar .topbar-info{
    gap: 0.7rem;
  }
}
.topbar .topbar-info i {
  margin-right: 0.4rem;
  color: #B89460;
}
.topbar .topbar-social a {
  margin-left: 0.85rem;
}

@media (max-width: 767.98px) {
  .topbar {
    display: none;
  }
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.has-topbar {
  top: 0px;
}
.site-header.is-sticky {
  position: fixed;
  top: 0;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 4px 30px rgba(31, 38, 32, 0.06);
  backdrop-filter: blur(8px);
  left: 0;
  right: 0;
  max-width: 100%;
}
.site-header.is-sticky .nav-link {
  color: #1F2620;
}
.site-header.header-on-dark .nav-link {
  color: #FFFDF8;
}
.site-header.header-on-dark.is-sticky .nav-link {
  color: #1F2620;
}
.site-header.is-sticky .site-logo img{
  height: 55px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}
.site-header.is-sticky .header-inner{
  padding: 1rem 0
}
.site-logo {
  display: inline-flex;
  align-items: center;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #1F2620;
}
.site-logo img {
  height: 93px;
  width: auto;
}
.site-header.header-on-dark:not(.is-sticky) .site-logo {
  color: #FFFDF8;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-list > li {
  position: relative;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1F2620;
  position: relative;
  cursor: pointer;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #B89460;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
header:not(.is-sticky) .nav-link::after{
  background: #fff;
}
.nav-link:hover, .nav-link.active {
  color: #B89460;
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.has-submenu > .nav-link::before {
  content: "+";
  display: inline-block;
  margin-left: 6px;
  font-size: 0.85rem;
  color: #B89460;
  font-weight: 400;
}
header.header-on-dark:not(.is-sticky) .has-submenu > .nav-link::before{
  color: #fff;
}

.submenu {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 250px;
  background: #FFFDF8;
  border: 1px solid #E5DFD3;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.25s;
  box-shadow: 0 20px 50px rgba(31, 38, 32, 0.1);
  z-index: 60;
}
.submenu li a {
  display: block;
  padding: 0.65rem 1.05rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1F2620;
}
.submenu li a:hover {
  background: #FBF7F1;
  color: #B89460;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header-actions .btn-gold{
  height: 56px;
  min-width: 203px;
  font-size: 15px;
  letter-spacing: 1px;
}
header.header-on-dark:not(.is-sticky) .icon-btn{
  color: #fff;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.icon-btn:hover,
header:not(.is-sticky) .icon-btn:hover{
  color: #B89460;
}
.icon-btn .badge-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: #B89460;
  color: #FFFDF8;
  font-size: 0.65rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: currentColor;
  margin: 5px auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 991.98px) {
  .nav-list, .header-actions .btn-book {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  header:not(.is-sticky) .menu-toggle span{
    background: #fff;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  min-height: 100vh;
  background: #FFFDF8;
  z-index: 200;
  padding: 2rem 1.75rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(31, 38, 32, 0.15);
  bottom: 0;
}
.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 38, 32, 0.55);
  opacity: 0;
  visibility: hidden;
  z-index: 150;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.4s;
}
.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E5DFD3;
  margin-bottom: 1rem;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: 1px solid #E5DFD3;
  background: transparent;
  color: #1F2620;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-close:hover {
  background: #7A8A6E;
  color: #FFFDF8;
  border-color: #7A8A6E;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}
.mobile-nav > li {
  border-bottom: 1px solid #E5DFD3;
}
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.4rem;
  color: #1F2620;
}
.mobile-nav a:hover {
  color: #B89460;
  padding-left: 0.5rem;
}
.mobile-nav .submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.mobile-nav .submenu-toggle .icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5DFD3;
  font-size: 1rem;
  color: #7A8A6E;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav .mobile-submenu {
  list-style: none;
  padding: 0 0 0.75rem 0.5rem;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav .mobile-submenu li {
  border: 0;
}
.mobile-nav .mobile-submenu a {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  letter-spacing: 0.05em;
}
.mobile-nav .is-expanded .submenu-toggle .icon {
  transform: rotate(45deg);
  border-color: #B89460;
  color: #B89460;
}
.mobile-nav .is-expanded .mobile-submenu {
  max-height: 500px;
}

.mobile-contact {
  padding-top: 1.5rem;
  border-top: 1px solid #E5DFD3;
  font-size: 0.9rem;
}
.mobile-contact p {
  margin-bottom: 0.5rem;
}
.mobile-contact i {
  color: #B89460;
  margin-right: 0.5rem;
}
.mobile-contact .mobile-social {
  margin-top: 1rem;
}
.mobile-contact .mobile-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5DFD3;
  color: #1F2620;
  margin-right: 0.4rem;
}
.mobile-contact .mobile-social a:hover {
  background: #7A8A6E;
  color: #FFFDF8;
  border-color: #7A8A6E;
}

.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero-slider .swiper, .hero-slider .swiper-wrapper, .hero-slider .swiper-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  color: #FFFDF8;
}
.hero-slide .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hero-slide.swiper-slide-active .hero-bg {
  transform: scale(1);
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 38, 32, 0.50), rgba(31, 38, 32, 0.7));
  z-index: 1;
  opacity: .2;
}
.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 580px;
}
.hero-content .hero-tag {
  display: inline-block;
  font-size: 35px;
  color: #C7A27C;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
  font-family: "Playball", cursive;
  position: relative;
  padding-left: 115px;
  line-height: 35px;
}
.hero-content .hero-tag:before{
  width: 111px;
  height: 10px;
  content: '';
  background: url(../images/arrow.png);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.hero-content .hero-title {
   font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 52px);
  line-height: 1.2;
  color: #FFFDF8;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}
.hero-content .hero-text {
  font-size: 1.05rem;
  color: rgba(255, 253, 248, 0.85);
  margin-bottom: 2.25rem;
  max-width: 560px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease 0.7s, transform 1s ease 0.7s;
}
.hero-content .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease 0.9s, transform 1s ease 0.9s;
}

.swiper-slide-active .hero-content .hero-tag, .swiper-slide-active .hero-content .hero-title, .swiper-slide-active .hero-content .hero-text, .swiper-slide-active .hero-content .hero-cta {
  opacity: 1;
  transform: translateY(0);
}

.hero-nav {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 5;
  display: flex;
  gap: 0.75rem;
}
.hero-nav button {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 253, 248, 0.4);
  background: transparent;
  color: #FFFDF8;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-nav button:hover {
  background: #FFFDF8;
  color: #1F2620;
  border-color: #FFFDF8;
}

.hero-pagination {
  position: absolute;
  left: 3rem;
  bottom: 3.2rem;
  z-index: 5;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.2rem;
  color: #FFFDF8;
  letter-spacing: 0.1em;
}
.hero-pagination .current {
  font-size: 2rem;
  color: #C7A27C;
}
.hero-pagination .divider {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: rgba(255, 253, 248, 0.4);
  margin: 0 0.5rem;
  vertical-align: middle;
}

.price-amount{
  font-size: 1.6rem;
}
.price-item h3{
  font-size: 1.5rem;
}

@media (max-width: 767.98px) {
  .hero-slider {
    min-height: 560px;
  }
  .hero-nav, .hero-pagination {
    display: none;
  }
  .site-header.has-topbar{
    top: 0;
  }
  .container, .container-sm {
      max-width: 100%;
  }
}
.page-header {
  position: relative;
  padding: 11rem 0 4rem;
  background: #F4ECE0;
  text-align: left;
  overflow: hidden;
}
.page-header.has-image {
  color: #FFFDF8;
  background-size: cover;
  background-position: center;
}
.page-header.has-image::after {
      content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: .65;
}
.page-header.has-image .container {
  position: relative;
  z-index: 2;
}
.page-header.has-image .page-title, .page-header.has-image .breadcrumb a, .page-header.has-image .breadcrumb-item.active {
  color: #FFFDF8;
}
.page-header.has-image .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 253, 248, 0.6);
}
.page-header .page-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: #1F2620;
}
.page-header .breadcrumb {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
.page-header .breadcrumb li + li::before {
  content: "-";
  margin: 0 0.6rem;
  color: #B89460;
}
.page-header .breadcrumb a {
  color: inherit;
}
.page-header .breadcrumb .active {
  color: #B89460;
}

@media (max-width: 767.98px) {
  .page-header {
    padding: 8rem 0 3.5rem;
  }
}
.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: auto;
  background: #FBF7F1;
  border: 1px solid #E5DFD3;
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F4ECE0;
  color: #7A8A6E;
  font-size: 2rem;
  border-radius: 50%;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card h3 {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: #5A5A52;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.service-card .service-link {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1F2620;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.service-card .service-link:hover {
  color: #B89460;
  border-color: #B89460;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card:hover .service-icon {
  background: #7A8A6E;
  color: #FFFDF8;
}

.service-photo-card {
  position: relative;
  overflow: hidden;
}
.service-photo-card .service-img {
  aspect-ratio: 4 / 3.2;
  background-size: cover;
  background-position: center;
  transition: all .3s;
}


.service-img.no-image {
    background-color: #f8f5f1;
        border: 2px solid #c7a27c4a;
}

.service-photo-card .service-body {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 0 0;
  color: #FFFDF8;
  background: transparent;
}
.service-photo-card .service-body h3 {
  margin-bottom: 0.4rem;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}
.service-photo-card .service-body .price {
  font-size: 0.9rem;
  color: #C7A27C;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.service-photo-card:hover .service-img {
  transform: scale(1.02);
}

.service-price-section {
  padding-top: 0;
}

.service-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.25rem;
  align-items: start;
}

.service-menu-column {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.service-category-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #3D3028;
  margin-bottom: 0.7rem;
}

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

.service-price-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  color: #6A5647;
  font-size: 0.98rem;
  line-height: 1.45;
}

.service-row-label {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  flex: 1 1 auto;
  min-width: 0;
  cursor: pointer;
}

.service-check {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 0.2rem;
  accent-color: #C7A27C;
  cursor: pointer;
}

.service-name {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 500;
}

.service-price {
  flex: 0 0 auto;
  color: #C7A27C;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .service-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .service-menu-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .service-category-title {
    font-size: 1.45rem;
  }

  .service-price-list li {
    font-size: 0.95rem;
  }
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.feature-item .feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F4ECE0;
  color: #7A8A6E;
  font-size: 1.5rem;
}
.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.feature-item p {
  font-size: 0.95rem;
  margin: 0;
}

.about-images {
  position: relative;
}
.about-images .img-1, .about-images .img-2 {
  background-size: cover;
  background-position: center;
}
.about-images .img-1 {
  aspect-ratio: 4/5;
}
.about-images .img-2 {
  aspect-ratio: 1;
  margin-top: -25%;
  margin-left: 30%;
  border: 8px solid #FFFDF8;
  box-shadow: 0 30px 60px rgba(31, 38, 32, 0.15);
}
.about-images .exp-badge {
  position: absolute;
  bottom: 10%;
  left: 0px;
  width: 140px;
  height: 140px;
  background: #B89460;
  color: #FFFDF8;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  text-align: center;
  line-height: 1.1;
  padding: 1rem;
}
.about-images .exp-badge strong {
  font-size: 2.4rem;
  display: block;
}
.about-images .exp-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.stat {
  text-align: center;
}
.stat .stat-num {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 3.5rem;
  color: #7A8A6E;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat .stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #5A5A52;
}

.team-card {
  text-align: center;
  background: transparent;
}
.team-card .team-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.team-card .team-photo .team-social {
  position: absolute;
  inset: auto 0 -60px 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(31, 38, 32, 0.85), transparent);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card .team-photo .team-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 248, 0.4);
  color: #FFFDF8;
}
.team-card .team-photo .team-social a:hover {
  background: #B89460;
  border-color: #B89460;
}
.team-card:hover .team-social {
  inset: auto 0 0 0;
}
.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  font-style: italic;
}
.team-card .team-role {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #B89460;
}

.testimonial {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.testimonial .quote-mark {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 5rem;
  color: #B89460;
  line-height: 0.5;
  margin-bottom: 1rem;
  display: block;
}
.testimonial blockquote {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: #1F2620;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}
.testimonial .testimonial-author {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A8A6E;
}
.testimonial .testimonial-role {
  font-size: 0.8rem;
  color: #8A8A82;
}

.price-card {
  background: #FFFDF8;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid #E5DFD3;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
}
.price-card .price-name {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.price-card .price-amount {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 3.5rem;
  color: #7A8A6E;
  display: block;
  margin-bottom: 0.25rem;
}
.price-card .price-amount sup {
  font-size: 1.2rem;
  vertical-align: super;
}
.price-card .price-amount sub {
  font-size: 0.9rem;
  color: #8A8A82;
  vertical-align: baseline;
}
.price-card .price-features {
  list-style: none;
  padding: 1.5rem 0;
  margin: 1rem 0;
  border-top: 1px solid #E5DFD3;
  border-bottom: 1px solid #E5DFD3;
}
.price-card .price-features li {
  padding: 0.55rem 0;
  font-size: 0.95rem;
}
.price-card .price-features li i {
  color: #7A8A6E;
  margin-right: 0.5rem;
}
.price-card .price-features li.disabled {
  color: #8A8A82;
  text-decoration: line-through;
}
.price-card .price-features li.disabled i {
  color: #8A8A82;
}
.price-card.featured {
  background: #7A8A6E;
  color: #FFFDF8;
  border-color: #7A8A6E;
}
.price-card.featured .price-name, .price-card.featured .price-amount, .price-card.featured h3, .price-card.featured h4 {
  color: #FFFDF8;
}
.price-card.featured .price-amount sub {
  color: rgba(255, 253, 248, 0.7);
}
.price-card.featured .price-features {
  border-color: rgba(255, 253, 248, 0.2);
}
.price-card.featured .price-features li i {
  color: #C7A27C;
}
.price-card.featured .price-tag {
  position: absolute;
  top: -1px;
  right: -1px;
  background: #B89460;
  color: #FFFDF8;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
}
.price-card.featured .btn-outline {
  color: #FFFDF8;
  border-color: #FFFDF8;
}
.price-card.featured .btn-outline:hover {
  background: #FFFDF8;
  color: #7A8A6E;
}

.blog-card {
  background: #FFFDF8;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card .blog-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.blog-card .blog-img .blog-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FFFDF8;
  color: #1F2620;
  padding: 0.6rem 0.85rem;
  text-align: center;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  line-height: 1;
}
.blog-card .blog-img .blog-date strong {
  display: block;
  font-size: 1.3rem;
}
.blog-card .blog-img .blog-date span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B89460;
}
.blog-card .blog-body {
  padding: 1.75rem;
}
.blog-card .blog-body .blog-meta {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B89460;
  margin-bottom: 0.75rem;
}
.blog-card .blog-body h2 {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 0.85rem;
}
.blog-card .blog-body h3 a {
  color: #1F2620;
}
.blog-card .blog-body h3 a:hover {
  color: #B89460;
}
.blog-card .blog-body p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.blog-card:hover {
  box-shadow: 0 30px 60px rgba(31, 38, 32, 0.08);
  transform: translateY(-4px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
iframe{
  width: 100%;
}

@media (max-width: 991.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.gallery-item .gallery-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  background: rgba(31, 38, 32, 0.5);
  color: #FFFDF8;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}
.gallery-item:hover::after {
  opacity: 1;
}

.product-card {
  text-align: center;
  background: transparent;
}
.product-card .product-img {
  background: #FBF7F1;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.product-card .product-img .product-actions {
  position: absolute;
  inset: auto 0 -60px 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card .product-img .product-actions button {
  width: 42px;
  height: 42px;
  background: #FFFDF8;
  border: 0;
  color: #1F2620;
  cursor: pointer;
}
.product-card .product-img .product-actions button:hover {
  background: #7A8A6E;
  color: #FFFDF8;
}
.product-card:hover .product-actions {
  inset: auto 0 0 0;
}
.product-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  font-style: italic;
}
.product-card h4 a {
  color: #1F2620;
}
.product-card h4 a:hover {
  color: #B89460;
}
.product-card .product-price {
  color: #7A8A6E;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.5rem;
}
article.product-card h2 {
    font-size: 1.7rem;
}
.product-card .product-price del {
  color: #8A8A82;
  margin-right: 0.4rem;
  font-size: 1.3rem;
}

.cta-banner {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #FFFDF8;
  text-align: center;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 38, 32, 0.65);
}
.cta-banner .container {
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  color: #FFFDF8;
  font-style: italic;
}

.form-control, .form-select {
  border: 1px solid #E5DFD3;
  background-color: #FFFDF8;
  border-radius: 0;
  padding: 0.61rem 1.1rem;
  font-size: 0.95rem;
  color: #1F2620;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-control:focus, .form-select:focus {
  border-color: #7A8A6E;
  box-shadow: none;
  outline: none;
}
aside.col-lg-4 h2 {
    font-size: 1.8rem;
}
aside h3 {
    font-size: 1.6rem;
}

.form-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1F2620;
  margin-bottom: 0.5rem;
}

.contact-appointment-section {
  padding-top: 5.5rem;
}

.contact-appointment-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.contact-appointment-card {
  background: #FFFDF8;
  border: 1px solid #D9C2A4;
  padding: 1.5rem;
}

/* .appointment-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
} */

.appointment-field {
  position: relative;
}

.appointment-message-field {
  grid-column: 2 / 4;
  grid-row: 2 / 4;
}

.appointment-input.form-control,
.appointment-input.form-select {
  min-height: 42px;
  padding: 0.8rem 1rem;
  background-color: #F6EEE3;
  border-color: #F6EEE3;
  color: #6A5647;
  font-size: 0.92rem;
}

.appointment-input::placeholder {
  color: #6A5647;
}

.appointment-input:focus {
  background: #F6EEE3;
  border-color: #C7A27C;
}

.appointment-date-wrap i {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: #3D3028;
  pointer-events: none;
}

.appointment-date {
  padding-right: 2.75rem !important;
}

.appointment-date::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

.appointment-textarea {
  min-height: 118px;
  resize: none;
}

.appointment-submit-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  background: #C7A27C;
  border: 1px solid #C7A27C;
  color: #FFFDF8;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.appointment-submit-btn:hover,
.appointment-submit-btn:focus {
  background: #B89460;
  border-color: #B89460;
  color: #FFFDF8;
}

.contact-map-card {
  background: #FFFDF8;
  border: 1px solid #E8D7C2;
  overflow: hidden;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  min-height: 330px;
  height: 100%;
  border: 0;
}
.appointment-form-grid label{
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .contact-appointment-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-card iframe {
    min-height: 280px;
  }
}

@media (max-width: 575.98px) {
  .appointment-form-grid {
    grid-template-columns: 1fr;
  }

  .appointment-message-field {
    grid-column: auto;
    grid-row: auto;
  }
}

.site-footer {
  padding: 5rem 0 0;
  position: relative;
}
.site-footer h3 {
  font-style: italic;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}
.site-footer a {
  color: rgba(255, 253, 248, 0.7);
}
.site-footer a:hover {
  color: #B89460;
}
.site-footer .footer-about p {
  font-size: 0.95rem;
  margin: 1.25rem 0;
}
.site-footer .footer-about .footer-logo {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 2rem;
  color: #FFFDF8;
}
.site-footer .footer-about .footer-logo img {
  height: 160px;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
}
.site-footer .footer-links a::before {
  content: "→";
  margin-right: 0.5rem;
  color: #fff;
  opacity: 1;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), margin 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer .footer-links a:hover::before {
  opacity: 1;
  margin-right: 0.75rem;
  color:  #B89460;;
}
.site-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  align-items: center;
}
.site-footer .footer-contact li i {
  color: #000;
  margin-top: 0;
}
.site-footer .footer-newsletter .newsletter-form {
  display: flex;
  margin-top: 1rem;
}
.site-footer .footer-newsletter .newsletter-form input {
  flex: 1;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.15);
  color: #FFFDF8;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  max-width: calc(100% - 55px);
}
.site-footer .footer-newsletter .newsletter-form input::placeholder {
  color: rgba(255, 253, 248, 0.5);
}
.site-footer .footer-newsletter .newsletter-form input:focus {
  outline: 0;
  border-color: #B89460;
}
.site-footer .footer-newsletter .newsletter-form button {
  background: #B89460;
  color: #FFFDF8;
  border: 0;
  padding: 0 1.25rem;
  cursor: pointer;
}
.site-footer .footer-newsletter .newsletter-form button:hover {
  background: rgb(165.36, 127.92, 73.84);
}
.site-footer .footer-social {
  margin-top: 1.5rem;
}
.site-footer .footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 248, 0.2);
  margin-right: 0.4rem;
}
.site-footer .footer-social a:hover {
  background: #B89460;
  border-color: #B89460;
  color: #FFFDF8;
}
.site-footer .footer-bottom {
  margin-top: 16px;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 253, 248, 0.1);
  font-size: 0.85rem;
  text-align: center;
  position: relative;
}
.site-footer .footer-bottom:after{
  width: 100%;
  height: 1px;
  background: #F8F3EE;
  background: linear-gradient(90deg, rgba(248, 243, 238, 1) 0%, rgba(199, 162, 124, 1) 50%, rgba(248, 243, 238, 1) 100%);
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  content: '';
}
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  background: #7A8A6E;
  color: #FFFDF8;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #B89460;
}

.preloader {
  position: fixed;
  inset: 0;
  background: #FFFDF8;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
}
.preloader .preloader-spinner {
  width: 50px;
  height: 50px;
  border: 2px solid #E5DFD3;
  border-top-color: #7A8A6E;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.aboutImg01 img{
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.aboutImg02 img{
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.listCheck{
  padding: 0;
}
.listCheck li{
  position: relative;
  font-size: 20px;
  font-weight: 500;
  display: block;
  padding-left: 45px;
  margin-bottom: 10px;
}
.listCheck li:before{
  position: absolute;
  left: 0;
  width: 34px;
  height: 30px;
  top: 0;
  content: '';
  background: url(../images/tickicon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btnarrow{
      width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C7A27C;
    border: 1px solid #C7A27C;
    background: #c7a27c2b;
    border-radius: 50%;
    font-size: 20px;
}
.btnarrow:hover{
  background: #C7A27C;
  color: #fff;
}
@media(max-width:575px){
  .hero-content .hero-tag{
    font-size: 22px;
    padding-left: 70px;
  }
  .hero-content .hero-tag:before{
    width: 60px;
    height: 8px;
  }
  .hero-content .hero-title{
    font-size: 32px;
  }
  .site-logo img{
    height: 70px;
  }
  .section-tag{
    padding-left: 70px;
    font-size: 22px;
    line-height: 25px;
  }
  .section-tag:before{
    width: 60px;
    height: 8px;
  }
  .section-title{
    font-size: 30px;
    margin-bottom: 25px;
  }
  p{
    font-size: 15px;
  }
  .listCheck li{
    font-size: 16px;
    padding-left: 35px;
  }
  .listCheck li:before{
    width: 25px;
    height: 25px;
  }
  .service-photo-card .service-body h3{
    font-size: 16px;
  }
  .site-footer .footer-about .footer-logo img{
    height: 90px;
  }
  .mobile-nav a{
    font-size: 18px;
  }
}

.appointment-field p {
    margin: 0;
}

.booking-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: #c9a27a;
    color: #ffffff;
    border: 2px solid #c9a27a;
    border-radius: 0;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.booking-open-btn:hover {
    background: transparent;
    color: #c9a27a;
}

/* Modal */
.booking-modal .modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #fffaf4;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.booking-modal .modal-header {
    background: linear-gradient(135deg, #c9a27a, #a9794c);
    padding: 24px 30px;
    border-bottom: 0;
    color: #ffffff;
}

.booking-modal-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 4px;
}

.booking-modal .modal-title {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.booking-modal .btn-close {
    background-color: #ffffff;
    opacity: 1;
    border-radius: 50%;
    padding: 10px;
}

.booking-modal .modal-body {
    padding: 32px 30px 34px;
}

/* Form */
.booking-form label {
    display: block;
    margin-bottom: 7px;
    color: #4b2f1f;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.booking-input {
    width: 100%;
    height: 52px;
    background: #f1e8dd;
    border: 1px solid transparent;
    border-radius: 0;
    color: #4b2f1f;
    font-size: 15px;
    padding: 0 16px;
    outline: none;
    transition: all 0.3s ease;
}

.booking-input::placeholder {
    color: #8c6b55;
}

.booking-input:focus {
    background: #ffffff;
    border-color: #c9a27a;
    box-shadow: 0 0 0 4px rgba(201, 162, 122, 0.18);
}

.booking-select {
    cursor: pointer;
}

.booking-textarea {
    height: 130px;
    resize: none;
    padding-top: 15px;
}

.booking-submit-btn {
    width: 100%;
    height: 54px;
    border: 0;
    background: #c9a27a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.booking-submit-btn:hover {
    background: #4b2f1f;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 767px) {
    .booking-modal .modal-dialog {
        margin: 15px;
    }

    .booking-modal .modal-header {
        padding: 20px;
    }

    .booking-modal .modal-title {
        font-size: 23px;
    }

    .booking-modal .modal-body {
        padding: 24px 20px 26px;
    }

    .booking-input {
        height: 48px;
        font-size: 14px;
    }

    .booking-textarea {
        height: 110px;
    }

    .booking-submit-btn {
        height: 50px;
        font-size: 13px;
        letter-spacing: 2px;
    }
}

.service-price-section {
    background: #fffaf4;
    padding-top: 70px;
}

.service-price-section .section-tag {
    display: inline-block;
    color: #c9a27a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-price-section .section-title {
    color: #4b2f1f;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.service-alert {
    /*max-width: 720px;*/
    margin: 0 auto 28px;
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.service-alert-success {
    background: #e8f7ee;
    color: #1f7a3f;
    border: 1px solid #bfe8cc;
}

.service-alert-error {
    background: #fff1f1;
    color: #b42318;
    border: 1px solid #ffd1d1;
}

.service-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.service-menu-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-category {
    background: #ffffff;
    border: 1px solid rgba(201, 162, 122, 0.25);
    border-radius: 20px;
    padding: 24px 22px;
    box-shadow: 0 12px 32px rgba(75, 47, 31, 0.08);
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(75, 47, 31, 0.13);
}

.service-category-title {
    margin: 0 0 16px;
    color: #4b2f1f;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    border-bottom: 2px solid rgba(201, 162, 122, 0.28);
    padding-bottom: 10px;
}

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

.service-price-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(75, 47, 31, 0.18);
}

.service-price-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.service-row-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    flex: 1;
    margin: 0;
}

.service-check {
    display: none;
}

.custom-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #c9a27a;
    border-radius: 6px;
    margin-top: 1px;
    position: relative;
    transition: all 0.25s ease;
}

.service-check:checked + .custom-check {
    background: #c9a27a;
    border-color: #c9a27a;
}

.service-check:checked + .custom-check::after {
    content: "✓";
    position: absolute;
    left: 3px;
    top: -3px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.service-name {
    color: #4b2f1f;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
}

.service-price {
    color: #c9a27a;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.service-inquiry-btn-wrap {
    text-align: center;
    margin-top: 42px;
}

.service-inquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 56px;
    border: 2px solid #c9a27a;
    background: #c9a27a;
    color: #ffffff;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-inquiry-btn:hover {
    background: #4b2f1f;
    border-color: #4b2f1f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(75, 47, 31, 0.25);
}

@media (max-width: 991px) {
    .service-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-price-section .section-title {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .service-price-section {
        padding-top: 50px;
    }

    .service-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-category {
        padding: 20px 18px;
        border-radius: 16px;
    }

    .service-category-title {
        font-size: 20px;
    }

    .service-name,
    .service-price {
        font-size: 14px;
    }

    .service-inquiry-btn {
        width: 100%;
        min-width: 100%;
        height: 52px;
        font-size: 14px;
    }
}



.service-detail-banner {
    position: relative;
    padding: 110px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #ffffff;
}

.service-detail-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(75, 47, 31, 0.62);
}

.service-detail-banner .container {
    position: relative;
    z-index: 1;
}

.service-detail-banner span {
    display: inline-block;
    color: #c9a27a;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-detail-banner h1 {
    margin: 0;
    color: #ffffff;
    font-size: 54px;
    font-weight: 900;
    line-height: 1.15;
}

.service-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.service-breadcrumb li {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 600;
}

.service-breadcrumb li + li::before {
    content: "/";
    margin-right: 8px;
    color: rgba(255,255,255,0.6);
}

.service-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.service-breadcrumb a:hover {
    color: #c9a27a;
}

.service-detail-page {
    padding: 80px 0;
    background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}

.service-detail-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 42px rgba(75, 47, 31, 0.10);
    border: 1px solid rgba(201, 162, 122, 0.22);
}

.service-detail-main-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
}

.service-detail-main-img img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
}

.service-detail-content h2 {
    margin: 0 0 16px;
    color: #4b2f1f;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
}

.service-description {
    color: #6f5543;
    font-size: 16px;
    line-height: 1.8;
}

.service-detail-sidebar {
    position: sticky;
    top: 110px;
}

/* Right side checkbox box */
.single-service-price-box {
    background: #ffffff;
    border: 1px solid rgba(201, 162, 122, 0.28);
    border-radius: 22px;
    padding: 24px 22px;
    box-shadow: 0 14px 36px rgba(75, 47, 31, 0.10);
}

.single-service-price-title {
    margin: 0 0 16px;
    color: #4b2f1f;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.25;
    border-bottom: 2px solid rgba(201, 162, 122, 0.35);
    padding-bottom: 12px;
}

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

.service-price-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(75, 47, 31, 0.18);
}

.service-price-list li:last-child {
    border-bottom: 0;
}

.service-row-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    flex: 1;
    margin: 0;
}

.service-check {
    display: none;
}

.custom-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #c9a27a;
    border-radius: 6px;
    margin-top: 2px;
    position: relative;
    transition: all 0.25s ease;
}

.service-check:checked + .custom-check {
    background: #c9a27a;
    border-color: #c9a27a;
}

.service-check:checked + .custom-check::after {
    content: "✓";
    position: absolute;
    left: 3px;
    top: -4px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.service-name {
    color: #4b2f1f;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.service-price {
    color: #c9a27a;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.service-inquiry-btn-wrap {
    text-align: center;
    margin-top: 26px;
}

.service-inquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*width: 100%;*/
    height: 54px;
    border: 2px solid #c9a27a;
    background: #c9a27a;
    color: #ffffff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-inquiry-btn:hover {
    background: #4b2f1f;
    border-color: #4b2f1f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(75, 47, 31, 0.25);
}

.service-alert {
    margin: 0 0 20px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    
}

.service-alert-success {
    background: #e8f7ee;
    color: #087a3d;
    border: 1px solid #bde8cc;
}

.service-alert-error {
    background: #fff1f1;
    color: #b42318;
    border: 1px solid #ffd1d1;
}

/* All services sidebar */
.service-sidebar-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 14px 36px rgba(75, 47, 31, 0.10);
    border: 1px solid rgba(201, 162, 122, 0.22);
}

.service-sidebar-box h3 {
    margin: 0 0 16px;
    color: #4b2f1f;
    font-size: 24px;
    font-weight: 900;
}

.service-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-sidebar-list li {
    border-bottom: 1px dashed rgba(75, 47, 31, 0.18);
}

.service-sidebar-list li:last-child {
    border-bottom: 0;
}

.service-sidebar-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #6f5543;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
}

.service-sidebar-list a::after {
    content: "→";
    color: #c9a27a;
}

.service-sidebar-list li.active a,
.service-sidebar-list a:hover {
    color: #c9a27a;
    padding-left: 6px;
}

.no-service-items {
    margin: 0;
    color: #8c6d58;
    font-size: 14px;
}

@media (max-width: 991px) {
    .service-detail-banner {
        padding: 85px 0;
    }

    .service-detail-banner h1 {
        font-size: 42px;
    }

    .service-detail-sidebar {
        position: static;
    }
}

@media (max-width: 575px) {
    .service-detail-banner {
        padding: 65px 0;
    }

    .service-detail-banner h1 {
        font-size: 32px;
    }

    .service-detail-page {
        padding: 50px 0;
    }

    .service-detail-content {
        padding: 22px;
        border-radius: 18px;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .single-service-price-box,
    .service-sidebar-box {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .single-service-price-title {
        font-size: 22px;
    }

    .service-name,
    .service-price {
        font-size: 14px;
    }
}


.service-prev-next-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 24px 0 28px;
}

.service-nav-item a,
.service-nav-item .disabled-nav {
    display: block;
    min-height: 86px;
    padding: 18px 20px;
    background: #fffaf4;
    border: 1px solid rgba(201, 162, 122, 0.35);
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(75, 47, 31, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.service-nav-item a:hover {
    background: #c9a27a;
    border-color: #c9a27a;
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(75, 47, 31, 0.16);
}

.service-nav-item span {
    display: block;
    color: #9a7658;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.service-nav-item strong {
    display: block;
    color: #4b2f1f;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
}

.service-nav-item a:hover span,
.service-nav-item a:hover strong {
    color: #ffffff;
}

.service-nav-next {
    text-align: right;
}
.contactForm .wpcf7-list-item{min-width:30%}
.service-nav-item .disabled-nav {
    color: #b7a899;
    font-weight: 800;
    display: flex;
    align-items: center;
}
.wpcf7-not-valid-tip{font-size:12px}

@media (max-width: 575px) {
    .service-prev-next-nav {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-nav-next {
        text-align: left;
    }

    .service-nav-item a,
    .service-nav-item .disabled-nav {
        min-height: auto;
        padding: 15px 16px;
    }

    .service-nav-item strong {
        font-size: 16px;
    }
	.contactForm .wpcf7-list-item{
		min-width:100%
	}
}
.footer-counter img{
    width: 100%;
    height: 24px;
    object-fit: contain;
}
.footer-counter p{
    display: flex;
}
