/* @font-face {
  font-family: "Miller Display";
  src:
    url("./font-family/MillerDisplay-Bold.woff2") format("woff2"),
    url("./font-family/MillerDisplay-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Miller Text";
  src:
    url("./font-family/MillerText-Roman_1.woff2") format("woff2"),
    url("./font-family/MillerText-Roman_1.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */

body {
  margin: 0;
  padding: 0;
  color: var(--primary);
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  background-color: #fdfbf5;
  line-height: 1.375rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

/* ROOT Variable Start*/
:root {
  --primary: #2b2b2b;
  --metallic-gold: #d4af37;
  --pecan: #ba9e64;
  --pecan-light: rgba(186, 158, 100, 0.08);
  --pecan-mid: rgba(186, 158, 100, 0.18);
  --black: #000000;
  --white: #ffffff;
  --gray: #f7f7f7;
}

/* ROOT Variable End*/


.home-banner-title h1 {
  font-size: 5rem;
  line-height: 1.25;
  margin: 0px;
  font-weight: 600;
  color: var(--white);
}

.container {
  width: 100%;
  max-width: 1650px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-primary {
  color: var(--primary);
}

.text-white {
  color: var(--white);
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.rounded-full {
  border-radius: 100%;
}

.bg-white {
  background-color: var(--white);
}

/* BTN CSS*/
.btn {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 17px 50px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  z-index: 1;
}

.btn-primary {
  background-color: var(--pecan);
  color: var(--primary);
  border: 1px solid var(--pecan);
  box-shadow: 0 2px 8px rgba(186, 158, 100, 0.15);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.6s ease-in-out;
  z-index: -1;
  transform: skewX(-20deg);
}

.btn-primary:hover {
  background-color: var(--metallic-gold);
  border-color: var(--metallic-gold);
  color: var(--white);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover svg path {
  fill: #ffffff;
}

.btn-secondary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  text-align: center;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.6s ease-in-out;
  z-index: -1;
  transform: skewX(-20deg);
}

.btn-secondary:hover {
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(54, 54, 51, 0.25);
}

.btn-secondary:hover::before {
  left: 100%;
}

.home-banne-top .btn-primary {
  margin-top: 48px;
}

.read-more {
  background-color: transparent;
  color: var(--pecan);
  border: 1px solid var(--pecan);
  text-align: center;
}

.read-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.read-more:hover {
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(43, 43, 43, 0.15);
}

.read-more:hover::before {
  left: 0;
}

/* BTN End*/

/* Home bananer*/
.home-banner {
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.home-banne-top {
  display: flex;
  margin-bottom: 20px;
}

.home-banner-desc {
  font-size: 18px;
  color: var(--white);
  line-height: 30px;
}

.home-banner:after {
  content: "";
  background: linear-gradient(90deg,
      rgb(0 0 0 / 50%) 31.78%,
      rgba(18, 18, 18, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  bottom: 0;
}

.home-banner-inner {
  padding: 166px 0px 0px;
}

.home-banne-top .home-banner-title {
  max-width: 1042px;
}

.home-banner .container {
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}

/* Home bananer End*/

/*Header CSS */
.header {
  position: fixed;
  z-index: 99;
  left: 0;
  right: 0;
  top: 0;
  padding: 16px 0px;
  background-color: rgb(255 255 255 / 0.005);
  transition: all 0.5s ease-in-out;
}

.header .container {
  max-width: 1680px;
}

.header-btn {
  line-height: 1;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-direction: row-reverse;
}

header.header .navbar-brand img {
  transition: all 0.3s ease-in-out;
  max-width: 300px;
}

.header .menu-header-menu-container>ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 48px;
}

.header .menu-header-menu-container>ul>li,
.header .menu-header-menu-container>ul>li>a {
  -webkit-tap-highlight-color: transparent;
}

.header .menu-header-menu-container>ul>li>a {
  color: var(--white);
  font-size: 20px;
  line-height: 1.5;
  text-decoration: none;
  text-transform: capitalize;
  font-weight: 600;
  transition: 0.3s all;
}

.header .menu-header-menu-container>ul>li>a svg {
  fill: var(--white);
}

.header-logo {
  display: flex;
  align-items: center;
  max-width: 300px;
  width: 100%;
}

.header .menu-header-menu-container>ul>li:hover>a {
  color: var(--metallic-gold);
}

.header .menu-header-menu-container>ul>li:hover>a span svg {
  fill: var(--metallic-gold) !important;
}

.header .menu-header-menu-container>ul>li {
  position: relative;
  padding: 0px 0;
  cursor: pointer;
}

.header .menu-header-menu-container>ul>li.submenu span {
  margin-left: 4px;
}

.header .menu-header-menu-container>ul>li.submenu span svg {
  width: 16px;
  height: 16px;
}

.header .menu-header-menu-container>ul>li.submenu ul {
  background-color: var(--white);
  min-width: 240px;
  position: absolute;
  top: calc(100% + 10px);
  padding: 12px;
  border-radius: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform: translateY(15px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Invisible bridge so the mouse doesn't fall off when moving to the submenu */
.header .menu-header-menu-container>ul>li.submenu::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 20px;
  bottom: -20px;
  left: 0;
  display: none;
  cursor: pointer;
}

.header .menu-header-menu-container>ul>li.submenu:hover::after {
  display: block;
}

.header .menu-header-menu-container>ul>li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.header .menu-header-menu-container>ul>li.submenu ul li {
  margin-bottom: 4px;
}

.header .menu-header-menu-container>ul>li.submenu ul li:last-child {
  margin-bottom: 0px;
}

.header .menu-header-menu-container>ul>li.submenu ul li a {
  display: block;
  text-decoration: none;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  padding: 10px 16px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}

.header .menu-header-menu-container>ul>li.submenu ul li a:hover {
  color: #a77f2d;
  background-color: var(--gray);
  padding-left: 20px;
}

/* .header .menu-header-menu-container > ul > li.current-menu-item > a {

}
.header .menu-header-menu-container > ul .sub-menu li.current-menu-item > a {

} */
.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 48px;
}

.header .menu-header-menu-container>ul>li .sub-menu {
  background: var(--white);
  padding: 20px;
  list-style: none;
  border-radius: 3px;
  position: absolute;
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  top: 200%;
  visibility: hidden;
  pointer-events: none;
}

.header .menu-header-menu-container>ul>li:hover .sub-menu {
  opacity: 1;
  top: calc(100% + 8px);
  transition: all 0.25s ease-in-out;
  visibility: visible;
  pointer-events: all;
}

.header .menu-header-menu-container>ul .sub-menu li a {
  font-size: 18px;
  color: var(--black);
  transition: all 0.5s;
}

.header .menu-header-menu-container>ul .sub-menu li a:hover {
  letter-spacing: 1px;
}

.mobile-nav-toggle .menu-icon {
  transition-duration: 0.5s;
  position: absolute;
  height: 3px;
  width: 30px;
  top: 15px;
  background-color: var(--white);
}

.mobile-nav-toggle .menu-icon:before {
  transition-duration: 0.5s;
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: var(--white);
  content: "";
  top: -10px;
  right: 0;
}

.footer-col-1 p {
  margin-bottom: 50px;
}

.mobile-nav-toggle .menu-icon:after {
  transition-duration: 0.5s;
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: var(--white);
  content: "";
  top: 10px;
  right: 0;
}

.mobile-nav-toggle.open .menu-icon {
  transition-duration: 0.5s;
  background: transparent;
}

.mobile-nav-toggle.open .menu-icon:before {
  transform: rotateZ(45deg) scaleX(1.25) translate(6.5px, 6.5px);
}

.mobile-nav-toggle.open .menu-icon:after {
  transform: rotateZ(-45deg) scaleX(1.25) translate(6px, -6px);
}

.mobile-nav-toggle:hover {
  cursor: pointer;
}

.mobile-nav-toggle {
  display: none;
}

.diff-font-size .indulge-title span {
  font-size: 24px;
}



/*HEader CSS End*/

/* Indulge  us title start */
.indulge {
  padding: 120px 0px;
}

.indulge-title span {
  position: relative;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: var(--pecan);
  padding-left: 60px;
}

.indulge-title span::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--pecan);
  position: absolute;
  top: 15px;
  left: 0;
}

.indulge-title h2 {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0px;
  color: var(--primary);
}

.indulge-title p {
  font-size: 20px;
  line-height: 26px;
  color: var(--primary);
  margin-top: 20px;
}

.sec-title {
  text-align: center;
  margin-bottom: 60px;
}

.sec-title span {
  position: relative;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  /* text-transform: uppercase; */
  color: var(--pecan);
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 16px;
  padding: 0 40px;
}

.sec-title span::before,
.sec-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: var(--pecan);
}

.sec-title span::before {
  left: 0;
}

.sec-title span::after {
  right: 0;
}

.sec-title h2 {
  font-size: 60px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 20px;
  line-height: 1.2;
}

.sec-title p {
  font-size: 20px;
  color: var(--primary);
  max-width: 1300px;
  margin: 0 auto;
  line-height: 1.6;
}

.Headerstricky .header {
  background-color: var(--primary);
}

.Headerstricky .header .navbar-brand img {
  max-width: 240px;
}

/* grid */
.indulge-this-relevant {
  margin-top: 60px;
}

.indulge-this-relevant .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
}

.card .image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.card .content {
  padding: 32px;
}

.card .number {
  color: var(--white);
  margin-right: 8px;
}

.card h3 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0px 0px 20px;
  font-family: "Miller Display";
}

.card h3 span {
  color: var(--pecan);
}

.card p {
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 32px;
  font-family: "Miller Text";
  font-weight: 300;
}

.card .btn {
  padding: 17px 16px;
}

.card .btn span {
  margin-left: 12px;
}

/* Indulge   title  end*/

/* about start */
.indulge-about {
  display: flex;
  align-items: start;
  margin: 64px -17px 0;
}

.indulge-about-left {
  width: 45%;
  padding: 0px 17px;
}

.indulge-about-right {
  width: 55%;
  padding: 0px 17px;
  position: relative;
}

.indulge-about-right .indulge-about-img>img {
  margin-left: auto;
  width: 100%;
  max-width: 600px;
}

.indulge-about-right .indulge-about-img>div.subimg {
  position: absolute;
  bottom: -60px;
  left: 100px;
  max-width: 300px;
}

.new-image-style .indulge-about-right .indulge-about-img>div.subimg {
  max-width: 450px;
}

.left-image-align .indulge-about-right .indulge-about-img>img {
  min-height: 500px;
  object-fit: cover;
  object-position: left;
}

.left-image-align .indulge-about-right .indulge-about-img>div.subimg {
  max-width: 450px;
}

.indulge-about-right .indulge-about-img>div.subimg img {
  width: 100%;
}

.indulge.reverse-image .indulge-about-right .indulge-about-img>img {
  margin-left: 0px;
  margin-right: auto;
}

.indulge.reverse-image .indulge-about-right .indulge-about-img>div.subimg {
  left: auto;
  right: 100px;
}

.indulge.reverse-image .indulge-about-right .indulge-about-img>div.subimg img {
  aspect-ratio: 1;
  object-fit: cover;
}

.about-img-alt {
  position: absolute;
  top: 0px;
  right: 0;
}

.indulge-about-left p {
  font-family: "Miller Text";
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--primary);
}

.indulge-about-left p:last-child {
  margin-bottom: 0px;
}

/* about end */

/* footer */
.footer {
  background: var(--primary);
  padding: 40px 0px 0px;
}

/* Logo */
.footer-logo img {
  width: 170px;
  margin: 0px auto;
}

.footer-logo h3 {
  font-size: 18px;
  letter-spacing: 2px;
  margin: 0;
}

.footer-logo span {
  font-size: 11px;
  letter-spacing: 2px;
  display: block;
  margin-top: 2px;
  color: #aaa;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 48px 0 32px;
  display: flex;
  justify-content: center;
  gap: 48px;
}

.footer-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--metallic-gold);
}

/* Social */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-social a svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  transition: all 0.4s ease-in-out;
}

.footer-social a :hover svg {
  fill: var(--pecan);
}

/* Divider */

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--white);
  padding: 32px 0px;
}

.footer-bottom p {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0px;
  font-family: "Miller Text";
}

.footer-bottom .right-text a {
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0px;
  font-family: "Miller Text";
  text-decoration: none;
}

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

/* Responsive */

/* footer */

/* ========================pricing-=-===========- */

.indulge-pricing {
  padding: 120px 0px;
  height: unset !important;
}

.indulge-pricing.home-banner:after {
  background: linear-gradient(90deg,
      rgb(0 0 0 / 80%) 48.78%,
      rgba(18, 18, 18, 20%) 100%);
}

.indulge-pricing .indulge-title {
  max-width: 974px;
}

.indulge-pricing .indulge-title h2 {
  color: var(--white);
}

.home-banner.indulge-pricing .container {
  display: block;
}

.indulge-wrap {
  margin-top: 64px;
}

.indulge-pricing .indulge-wrap p {
  font-size: clamp(20px, 2vw, 24px);
  color: var(--white);
  font-weight: 300;
  line-height: 1.3;
  font-family: "Miller Text";
}

.indulge-pricing .btn {
  padding: 17px 16px;
  margin-top: 20px;
}

/* pricing-card */
.pricing-card-wraper {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.pricing-card-wraper:hover {
  transform: translateY(-10px);
}

.pricing-table-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 equal columns */
  gap: 30px;
  margin-top: 94px;
}

.pricing-card {
  padding: 40px 20px 20px;
  background: rgba(43, 43, 43, 50%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(186, 158, 100, 40%);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* Title */
.pricing-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0px 0px 20px;
  color: var(--white);
}

/* Description */
.pricing-card .desc {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 400;
  font-family: "Miller Text";
  color: var(--white);
  margin-bottom: 40px;
}

/* Price */
.pricing-card .price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}

.pricing-card .save_text {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.pricing-card .include_list {
  padding-left: 0px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.pricing-card .include_list li {
  position: relative;
  display: flex;
  gap: 10px;
  font-size: 16px;
  color: var(--white);
}

.pricing-card .include_list li::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-check h-4 w-4 mt-1 shrink-0 text-primary'%3E%3Cpath d='M20 6 9 17l-5-5'%3E%3C/path%3E%3C/svg%3E");
  background-size: 16px;
  background-position: center 3px;
  background-repeat: no-repeat;
  display: block;
  width: 16px;
  min-width: 16px;
}

.amount {
  font-size: 52px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--white);
}

.member {
  font-size: 17px;
  font-weight: 400;
  color: var(--white);

  font-family: "Miller Text";
}

.no-limit p {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  font-family: "Miller Text";
  color: var(--pecan);
}

/* Entry */
.entry {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 40px 0px 30px;
  color: #e5e5e5;
  font-size: 16px;
}

.entry .icon svg {
  fill: var(--white);
}

.entry-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  font-family: "Miller Text";
}

/* Button */
.pricing-card .btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid var(--pecan);
  color: var(--gray);
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease-in-out;
  font-family: "Raleway", sans-serif;
  margin: auto 0 0;
}

.pricing-card .btn:hover {
  background: var(--pecan);
  color: var(--primary);
}

.pricing-card .btn:hover svg {
  fill: var(--primary);
}

/* Arrow */
.arrow svg {
  fill: var(--gray);
}

.active-deal .pricing-card {
  border: 2px solid rgba(186, 158, 100, 40%);
  background: var(--primary);
  backdrop-filter: blur(8px);
}

.deals-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: -60px;
}

.deals-btn {
  background-color: var(--pecan);
  padding: 18px 15px;
  display: none;
  transition: all 0.4s ease-in-out;
}

.active-deal .deals-btn {
  display: flex;
}

.deal-arrow svg {
  fill: var(--primary);
}

.deal-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  font-family: "Miller Text";
}

.active-deal .pricing-card .btn {
  background: var(--pecan);
  color: var(--primary);
}

.active-deal .pricing-card .btn svg {
  fill: var(--primary);
}

/*Report page end*/

/* service banner css */
.service-banner {
  position: relative;
  min-height: calc(100vh - 68px);
  overflow: hidden;
  padding: 190px 0 50px;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.service-banner .sw-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(186, 158, 100, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 70%, rgba(186, 158, 100, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, #0d0b08, #14110d, #1c1814);
  display: none;
}

.service-banner .sw-banner-grid {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(186, 158, 100, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186, 158, 100, 0.6) 1px, transparent 1px);
  background-size: 60px 60px;
  display: none;
}

.service-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, rgb(0 0 0 / 50%) 31.78%, rgba(18, 18, 18, 0) 100%); */
  background: linear-gradient(90deg, #00000052 20%, #12121259 45%, #00000052 100%);
  z-index: 0;
}

.service-banner .content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.service-banner .title {
  text-align: center;
}

.service-banner .title span {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.service-banner .title h1 {
  font-size: 96px;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  margin-top: 0;
  text-align: center;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-banner .title h1 em {
  font-style: italic;
  color: var(--metallic-gold);
}

.service-banner .content>p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto 48px;
  letter-spacing: 0.02em;
}

.service-banner .banner-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(186, 158, 100, 0.3);
  padding: 10px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-banner .banner-note:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pecan);
  box-shadow: 0 0 5px var(--pecan);
}

.service-banner .banner-stats {
  position: absolute;
  bottom: 60px;
  right: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 30px 40px;
  border-radius: 20px;
  border: 1px solid rgba(186, 158, 100, 0.15);
}

.service-banner .banner-stat {
  text-align: center;
}

.service-banner .banner-stat-num {
  font-family: "Miller Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--metallic-gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.sw-banner-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.sw-vibe {
  background: rgb(186 158 100 / 21%);
  border-top: 1px solid rgba(186, 158, 100, 0.2);
  border-bottom: 1px solid rgba(186, 158, 100, 0.2);
  text-align: center;
  padding: 22px 32px;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 5;
  backdrop-filter: blur(5px);
}

.sw-vibe span {
  color: #9d7c37;
  margin: 0 14px;
  display: inline-block;
  font-weight: 700;
  opacity: 0.9;
  animation: pulseGoldLight 3s infinite ease-in-out;
}

/* ===================== Services Benefits ===================== */
.services-benefits {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  /* background-color: var(--primary); */
  background-color: var(--pecan-mid);
  /* Soft, warm off-white background */
}

.services-benefits .indulge-title {
  margin-bottom: 50px;
}

.services-benefits .indulge-title h2 {
  /* color: var(--white); */
}

.services-benefits .indulge-title span {
  color: var(--pecan);
}

.services-benefits-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #ffffff;
  /* border: 1px solid rgba(0, 0, 0, 0.9); */
  overflow: hidden;
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9); */
  border: 1px solid rgba(186, 158, 100, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services-benefits-card .content {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.services-benefits-card .data {
  position: relative;
  padding-left: 25px;
  border-left: 2px solid rgba(186, 158, 100, 0.2);
  transition: all 0.4s ease;
}

.services-benefits-card .data:hover {
  border-left-color: var(--pecan);
}

.services-benefits-card .data::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: var(--pecan);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(186, 158, 100, 0.4);
  opacity: 0;
  transition: all 0.4s ease;
  transform: scale(0);
}

.services-benefits-card .data:hover::before {
  opacity: 1;
  transform: scale(1);
}

.services-benefits-card .data h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "Miller Display", serif;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.services-benefits-card .data p {
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

.services-benefits-card .content .btn {
  align-self: flex-start;
  margin-top: 10px;
}

.services-benefits-card .card-image {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(186, 158, 100, 0.4);
}

.services-benefits-card .card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
  z-index: 2;
}

.services-benefits-card .card-image::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-top: 2px solid rgba(186, 158, 100, 0.55);
  border-right: 2px solid rgba(186, 158, 100, 0.55);
  z-index: 3;
  pointer-events: none;
}

.services-benefits-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  inset: 0;
}

.services-benefits-card:hover .card-image img {
  transform: scale(1.05);
}

.services-benefits-card .card-image .img-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 4;
  background: rgba(43, 43, 43, 0.75);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-left: 2px solid var(--pecan);
}

.our-services {
  padding: 80px 0;
}

.our-services-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.our-services-wrapper .left-part .indulge-title h2 {
  max-width: 100%;
}

@keyframes pulseGoldLight {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(186, 158, 100, 0.3);
  }
}

.services-section {
  padding: 100px 0 50px;
}

.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-section .services-card {
  background: linear-gradient(145deg, #2b2b2b 0%, #1a1a1a 100%);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  height: 100%;
}

.services-section .services-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-section .services-card .image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.services-section .services-card .image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  transform: scale(1.05);
  width: 100%;
  height: 100%;
}

.services-section .services-card .image img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section .services-card:hover .image img {
  transform: scale(1.06);
}

.services-section .services-card .content {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.services-section .services-card .content .duration {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
  letter-spacing: 0.05em;
  border: 1px solid rgba(186, 158, 100, 0.3);
}

.services-section .services-card .content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--white);
  font-family: "Miller Display", serif;
  line-height: 1.2;
}

.services-section .services-card .content h3 .number {
  color: var(--pecan);
  font-size: 20px;
  margin-right: 5px;
  opacity: 0.9;
  display: none;
}

.services-section .services-card .content h3 span:not(.number) {
  color: var(--pecan);
}

.services-section .services-card .content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 25px;
}

.services-section .services-card .package {
  margin-top: auto;
}

.services-section .services-card .offers {
  background: linear-gradient(180deg, rgba(186, 158, 100, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 25px 30px;
  margin: 0 -30px 25px;
  border-top: 1px solid rgba(186, 158, 100, 0.15);
  border-bottom: 1px solid rgba(186, 158, 100, 0.1);
}

.services-section .services-card .offers h4 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pecan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
}

.services-section .services-card .offers h4::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(186, 158, 100, 0.2);
  margin-left: 15px;
}

.services-section .services-card .offers ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-section .services-card .offers ul li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1.5;
}

.services-section .services-card .offers ul li span {
  margin-left: 10px;
  text-transform: uppercase;
  background: rgba(186, 158, 100, 0.15);
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
}

.services-section .services-card .offers ul li:last-child {
  margin-bottom: 0;
}

.services-section .services-card .offers ul li::before {
  content: "✓";
  color: var(--pecan);
  font-size: 12px;
  font-weight: 700;
  margin-right: 12px;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(186, 158, 100, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.services-section .services-card .card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 25px;
}

.services-section .services-card .price-amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  font-family: "Miller Display", serif;
}

.services-section .services-card .price-unit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: uppercase;
}

.services-section .services-card .btn-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.services-section .services-card .btn-primary {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 17px 15px;
}

.services-section .services-card .read-more {
  font-size: 16px;
  text-transform: uppercase;
  padding: 17px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-section .text {
  margin-top: 80px;
  padding: 40px 50px;
  background: linear-gradient(145deg, rgba(186, 158, 100, 0.04) 0%, rgba(186, 158, 100, 0.15) 100%);
  border: 1px solid rgba(186, 158, 100, 0.25);
  border-top: 4px solid var(--pecan);
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-shadow: 0 8px 25px rgba(186, 158, 100, 0.08);
}

.services-section .text p {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary);
  margin: 0;
  font-style: italic;
  letter-spacing: 0.02em;
}

.services-section .functionality-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0px auto 80px;
  max-width: 1200px;
}

.services-section .functionality-card {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(145deg, rgba(186, 158, 100, 0.02) 0%, rgba(186, 158, 100, 0.08) 100%);
  border: 1px solid rgba(186, 158, 100, 0.15);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.services-section .functionality-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--pecan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services-section .functionality-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, rgba(186, 158, 100, 0.05) 0%, rgba(186, 158, 100, 0.12) 100%);
  border-color: rgba(186, 158, 100, 0.3);
  box-shadow: 0 4px 10px rgba(186, 158, 100, 0.08);
}

.services-section .functionality-card:hover::before {
  transform: scaleX(1);
}

.services-section .functionality-card .functionality-card-num {
  font-size: 56px;
  font-weight: 700;
  color: var(--pecan);
  font-family: "Miller Display", serif;
  line-height: 1;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(186, 158, 100, 0.2);
  transition: transform 0.4s ease;
}

.services-section .functionality-card:hover .functionality-card-num {
  transform: scale(1.05);
}

.services-section .functionality-card .functionality-card-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.5;
  opacity: 0.9;
}

.services-section.add-on-services {
  padding: 10px 0 50px;
}

.services-section.add-on-services .sec-title h2 {
  position: relative;
  width: fit-content;
  padding: 0 40px;
  margin: 0 auto;
  font-size: 45px;
  color: var(--pecan);
}

.services-section.add-on-services .sec-title h2::before,
.services-section.add-on-services .sec-title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: var(--pecan);
}

.services-section.add-on-services .sec-title h2::before {
  left: 0;
}

.services-section.add-on-services .sec-title h2::after {
  right: 0;
}

.faq-section {
  background: #FAF9F7;
  padding: 100px 0;
}

.faq-section .accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 1300px;
  margin: 0 auto;
}

.faq-section .accordion-item {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
  border-color: rgba(186, 158, 100, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-section .accordion-title {
  padding: 20px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}


.faq-section .accordion-title h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
}

.faq-section .accordion-title .icon {
  font-size: 33px;
  font-weight: 400;
  color: var(--primary);
  transition: all 0.3s ease;
  line-height: 1;
}

.faq-section .accordion-item.active .accordion-title h3 {
  color: var(--pecan);
}

.faq-section .accordion-item.active .accordion-title .icon {
  color: var(--pecan);
  transform: rotate(45deg);
}

.faq-section .accordion-content {
  overflow: hidden;
  display: none;
}

.faq-section .accordion-content p {
  margin: 0;
  padding: 0 30px 25px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.sign-up-form {
  padding: 100px 0;
  background-image: url("https://sundariwellnessclub.com/wp-content/uploads/2026/05/sign-up-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.sign-up-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 26%) 62%, rgb(0 0 0 / 60%) 100%);
  z-index: 1;
}

.sign-up-form .container {
  position: relative;
  z-index: 1;
}

.custom-form-wrapper {
  max-width: 550px;
  margin-left: auto;
  padding: 20px 20px 30px;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.custom-form-wrapper h3 {
  text-align: center;
  color: var(--primary);
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 30px;
  /* font-family: "Miller Display", serif; */
  margin-top: 20px;
  text-transform: uppercase;
}

.custom-form-wrapper form.wpforms-form .wpforms-field-container input[type="text"],
.custom-form-wrapper form.wpforms-form .wpforms-field-container input[type="email"],
.custom-form-wrapper form.wpforms-form .wpforms-field-container input[type="tel"],
.custom-form-wrapper form.wpforms-form .wpforms-field-container select,
.custom-form-wrapper form.wpforms-form .wpforms-field-container textarea {
  padding: 15px 15px;
  background-color: #fffbf4;
  border: 1px solid rgba(186, 158, 100, 0.25);
  color: var(--primary);
  width: 100%;
  max-width: unset;
  height: unset;
  border-radius: 0;
}

.custom-form-wrapper form.wpforms-form .wpforms-field-container input[type="text"]:focus,
.custom-form-wrapper form.wpforms-form .wpforms-field-container input[type="email"]:focus,
.custom-form-wrapper form.wpforms-form .wpforms-field-container input[type="tel"]:focus,
.custom-form-wrapper form.wpforms-form .wpforms-field-container select:focus,
.custom-form-wrapper form.wpforms-form .wpforms-field-container textarea:focus {
  border: 1px solid var(--pecan);
  box-shadow: 0 0 0 1px var(--pecan), 0px 1px 2px rgba(0, 0, 0, 0.15);
}

.custom-form-wrapper form.wpforms-form .wpforms-field-container input[type="text"]::placeholder,
.custom-form-wrapper form.wpforms-form .wpforms-field-container input[type="email"]::placeholder,
.custom-form-wrapper form.wpforms-form .wpforms-field-container input[type="tel"]::placeholder,
.custom-form-wrapper form.wpforms-form .wpforms-field-container select::placeholder,
.custom-form-wrapper form.wpforms-form .wpforms-field-container textarea::placeholder {
  color: var(--primary);
  opacity: 0.8;
}

.custom-form-wrapper form.wpforms-form .wpforms-field {
  margin-bottom: 0px;
}

.custom-form-wrapper form.wpforms-form .wpforms-submit {
  width: 100%;
  background: var(--pecan) !important;
  color: var(--primary) !important;
  border: 1px solid var(--pecan);
  box-shadow: 0 2px 8px rgba(186, 158, 100, 0.15);
  position: relative;
  display: inline-block;
  height: auto;
  padding: 17px 50px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  z-index: 1;
  font-family: "Raleway", sans-serif;
  border-radius: 0;
}

.custom-form-wrapper form.wpforms-form .wpforms-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.6s ease-in-out;
  z-index: -1;
  transform: skewX(-20deg);
}

.custom-form-wrapper form.wpforms-form .wpforms-submit:hover {
  background: var(--metallic-gold) !important;
  border-color: var(--metallic-gold) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
}

.custom-form-wrapper form.wpforms-form .wpforms-submit:hover::before {
  left: 100%;
}

.custom-form-wrapper .wpforms-container .wpforms-field {
  padding: 10px 0;
}

.custom-form-wrapper div.wpforms-container-full {
  margin: 0px auto;
}

.custom-form-wrapper div.wpforms-container-full input[type=checkbox]::before {
  border-radius: 0;
}

.custom-form-wrapper div.wpforms-container-full input[type=checkbox]:checked:after {
  border-left: 4px solid var(--pecan);
  border-bottom: 4px solid var(--pecan);
}

.custom-form-wrapper div.wpforms-container-full input[type=checkbox]:checked:before {
  border-color: var(--pecan);
  box-shadow: 0 0 0 1px var(--pecan), 0px 1px 2px rgba(0, 0, 0, 0.15);
}

.custom-form-wrapper div.wpforms-container-full input[type=checkbox]:focus:before {
  border: 1px solid var(--pecan);
  box-shadow: 0 0 0 1px var(--pecan), 0px 1px 2px rgba(0, 0, 0, 0.15);
}

.custom-form-wrapper>span {
  text-align: center;
  display: block;
  margin-bottom: 10px;
  color: var(--pecan);
  font-weight: 600;
  text-transform: capitalize;
}

.custom-form-wrapper>p {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 30px;
}

.services-pillars {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(186, 158, 100, 0.2);
  border-bottom: 1px solid rgba(186, 158, 100, 0.2);
}

.services-pillars .pillar-data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(186, 158, 100, 0.2);
  transition: all 0.3s ease;
}

.services-pillars .pillar-data:last-child {
  border-bottom: none;
}

.services-pillars .pillar-data h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--pecan);
}

.services-pillars .pillar-data p {
  font-size: 18px;
  color: var(--primary);
  line-height: 26px;
  margin: 0;
  font-weight: 400;
}

.who-visit {
  padding: 80px 0;
  background-color: var(--primary);
}

.who-visit .sec-title h2,
.who-visit .sec-title p {
  color: var(--white);
}

.who-visit .visit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.who-visit .visit-card {
  background: var(--white);
  padding: 32px;
  border: 1px solid rgba(186, 158, 100, 0.2);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.who-visit .visit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--pecan);
  transition: height 0.35s ease;
}

.who-visit .visit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid rgba(186, 158, 100, 0.12);
  border-right: 2px solid rgba(186, 158, 100, 0.12);
  transition: all 0.3s ease;
}

.who-visit .visit-card:hover {
  border-color: rgba(186, 158, 100, 0.45);
  box-shadow: 0 8px 32px rgba(186, 158, 100, 0.12);
  transform: translateY(-3px);
}

.who-visit .visit-card:hover::before {
  height: 100%;
}

.who-visit .visit-card:hover::after {
  width: 80px;
  height: 80px;
  border-color: rgba(186, 158, 100, 0.25);
}

.who-visit .tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--pecan);
  color: var(--white);
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

.who-visit .icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(186, 158, 100, 0.35);
  background: var(--pecan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.who-visit .visit-card:hover .icon {
  background: rgba(186, 158, 100, 0.14);
  border-color: var(--pecan);
}

.who-visit .icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(65%) sepia(30%) saturate(600%) hue-rotate(5deg) brightness(95%);
}

.who-visit .icon-placeholder {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-visit .icon-placeholder svg {
  width: 26px;
  height: 26px;
  stroke: var(--pecan);
  fill: none;
  stroke-width: 1.5;
}

.who-visit .data h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.who-visit .visit-card:hover .data h3 {
  color: var(--pecan);
  transition: color 0.3s ease;
}

.who-visit .data p {
  font-size: 18px;
  color: #6b6b6b;
  line-height: 1.7;
  font-weight: 400;
}

.who-visit .visit-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  padding-top: 20px;
  padding-left: 20px;
  border-top: 1px solid rgba(186, 158, 100, 0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.who-visit .visit-card ul li {
  font-size: 16px;
  color: var(--primary);
  line-height: 1.5;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}

.who-visit .visit-card ul li::after {
  content: '✓';
  position: absolute;
  font-size: 18px;
  color: var(--pecan);
  margin-left: -20px;
}

.who-visit .li-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.who-visit .check-icon {
  width: 16px;
  min-width: 16px;
  height: 16px;
  border: 1px solid var(--pecan);
  background: var(--pecan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.who-visit .check-icon svg {
  width: 9px;
  height: 9px;
  stroke: var(--pecan);
  stroke-width: 2.5;
  fill: none;
}

.client-review {
  padding: 80px 0;
}

.client-review .indulge-title {
  margin-bottom: 60px;
}

.client-review-wrapper {
  /* overflow: hidden; */
}

.reviews-slider {
  margin: 0 -12px;
}

.reviews-slider .slick-track {
  display: flex !important;
  padding: 10px 0;
}

/* Equal height cards */
.reviews-slider .slick-slide {
  height: inherit !important;
  padding: 0 12px;
  /* ← gap between cards (12px each side = 24px total) */
}

.reviews-slider .slick-slide>div {
  height: 100%;
}

.reviews-slider .slick-slide .review-card {
  height: 100%;
}

/* ── Card base ── */
.review-card {
  background: var(--white);
  border: 1px solid rgba(186, 158, 100, 0.2);
  padding: 40px 36px 32px;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Opening quote mark */
.review-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  line-height: 1;
  color: var(--pecan);
  opacity: 0.18;
  position: absolute;
  top: 16px;
  left: 28px;
  pointer-events: none;
  z-index: 0;
}

/* Bottom-right corner bracket — matches visit-card */
.review-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid rgba(186, 158, 100, 0.12);
  border-right: 2px solid rgba(186, 158, 100, 0.12);
  transition: all 0.3s ease;
}

/* Left accent bar — separate element, matches visit-card */
.review-card .accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--pecan);
  transition: height 0.35s ease;
  z-index: 2;
}

/* ── Hover — exactly matches visit-card ── */
.review-card:hover {
  border-color: rgba(186, 158, 100, 0.45);
  box-shadow: 0 2px 8px rgba(186, 158, 100, 0.15);
  transform: translateY(-3px);
}

.review-card:hover .accent-bar {
  height: 100%;
}

.review-card:hover::after {
  width: 80px;
  height: 80px;
  border-color: rgba(186, 158, 100, 0.25);
}

.review-card:hover .author-image {
  border-color: var(--pecan);
}

/* Stars */
.review-card .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.review-card .stars svg {
  width: 14px;
  height: 14px;
  fill: var(--pecan);
}

/* Quote text */
.review-card p {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.75;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  flex: 1;
}

/* Author row */
.review-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(186, 158, 100, 0.2);
  position: relative;
  z-index: 1;
}

.review-card .author-image {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(186, 158, 100, 0.2);
  flex-shrink: 0;
  background: rgba(186, 158, 100, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
}

.review-card .author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card .author-data {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-card .author-data span {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
}

.review-card .author-data strong {
  font-size: 12px;
  font-weight: 400;
  color: var(--pecan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Dots ── */
.slick-slider .slick-dots {
  position: relative;
  bottom: auto;
  margin-top: 36px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.slick-slider .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.slick-slider .slick-dots li button {
  width: 6px;
  height: 6px;
  background: rgba(186, 158, 100, 0.25);
  border-radius: 50%;
  padding: 0;
  font-size: 0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-slider .slick-dots li button::before {
  display: none;
  /* remove default slick dot character */
}

.slick-slider .slick-dots li.slick-active button {
  width: 28px;
  border-radius: 3px;
  background: var(--pecan);
}

/* ── Arrows ── */
.slick-slider .slick-prev,
.slick-slider .slick-next {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(186, 158, 100, 0.25);
  background: var(--white);
  top: 45%;
  transform: translateY(-50%);
  transition: background 0.3s ease, border-color 0.3s ease;
  z-index: 10;
  border-radius: 0;
  position: absolute;
  font-size: 0;
  cursor: pointer;
}

.slick-slider .slick-prev {
  left: -70px;
}

.slick-slider .slick-next {
  right: -70px;
}

.slick-slider .slick-prev::before,
.slick-slider .slick-next::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--pecan);
  border-right: 2px solid var(--pecan);
  opacity: 1;
}

.slick-slider .slick-prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.slick-slider .slick-next::before {
  transform: rotate(45deg);
  margin-left: -2px;
}

.slick-slider .slick-prev:hover,
.slick-slider .slick-next:hover {
  background: var(--pecan);
  border-color: var(--pecan);
}

.slick-slider .slick-prev:hover::before,
.slick-slider .slick-next:hover::before {
  border-color: var(--white);
}

.services-packages {
  padding: 100px 0;
}

.services-packages .package-card {
  background: var(--white);
  border: 1px solid rgba(186, 158, 100, 0.2);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-packages .package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(186, 158, 100, 0.15);
  border-color: var(--pecan);
}

.services-packages .package-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.services-packages.large-image .package-card-image {
  height: 350px;

}

.services-packages .package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.services-packages .package-card:hover .package-card-image img {
  transform: scale(1.05);
}

.services-packages .package-card-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  background: var(--white);
  z-index: 1;
}

.services-packages .package-card-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--pecan);
  transition: height 0.4s ease;
}

.services-packages .package-card:hover .package-card-content::before {
  height: 100%;
}

.services-packages .package-card-label {
  display: inline-block;
  background: var(--pecan-light);
  color: var(--pecan);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  margin-bottom: 20px;
  align-self: flex-start;
  border: 1px solid rgba(186, 158, 100, 0.3);
}

.services-packages .package-card h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.services-packages .package-card h3 span {
  color: var(--pecan);
  font-style: italic;
  font-weight: 400;
}

.services-packages .package-card p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 30px;
  flex-grow: 1;
}

.services-packages .package-card .btn {
  text-align: center;
}

.packages-slider .slick-track {
  display: flex !important;
  padding: 10px 0;
}

.packages-slider .slick-slide {
  height: inherit !important;
  padding: 0 12px;
}

.packages-slider .slick-slide>div {
  height: 100%;
}

.packages-slider .slick-slide .package-card {
  height: 100%;
}

.before-after-results {
  padding: 100px 0px;
}

.before-after-results {
  padding: 100px 0;
  background: #fdfbf5;
  position: relative;
}

.results-wrapper .slick-track {
  display: flex !important;
  padding: 10px 0;
}

.results-wrapper .slick-slide {
  height: inherit !important;
  padding: 0 12px;
}

.results-wrapper .slick-slide>div {
  height: 100%;
}

.results-wrapper .slick-slide .result-card {
  height: 100%;
}

/* ── Card ── */
.result-card {
  background: var(--white);
  border: 1px solid rgba(186, 158, 100, 0.35);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0px 40px rgba(186, 158, 100, 0.18);
  border-color: var(--pecan);
}

/* Gold top bar */
.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pecan) 0%, var(--metallic-gold) 100%);
  z-index: 3;
}

/* ── Card Header ── */
.result-card-header {
  background: var(--primary);
  padding: 14px 16px 12px;
  text-align: center;
  position: relative;
}

.result-card-header h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  line-height: 1;
}

.result-card-header .treatment-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pecan);
  margin: 0 10px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ── Photo Rows ── */
.result-card-photos {
  display: flex;
  flex-direction: column;
}

.result-photo-row {
  position: relative;
  overflow: hidden;
}

.result-photo-row img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.result-card:hover .result-photo-row img {
  transform: scale(1.04);
}

/* Divider between before/after */
.result-photo-row+.result-photo-row {
  border-top: 2px solid rgba(186, 158, 100, 0.4);
}

/* ── Before / After Label ── */
.photo-label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: translateY(-50%) rotate(180deg);
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 7px;
  line-height: 1;
  z-index: 2;
}

.photo-label.after-label {
  background: var(--pecan);
  color: var(--primary);
}

/* Subtle overlay gradient */
.result-photo-row::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, transparent 28%);
  pointer-events: none;
  z-index: 1;
}

/* ── Card Footer ── */
.result-card-footer {
  padding: 14px 20px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(186, 158, 100, 0.2);
}

.result-card-footer .result-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pecan);
}

.result-card-footer .check-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.05em;
}

.result-card-footer .check-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--pecan);
  fill: none;
  stroke-width: 2.5;
}

/* ── Featured / center card accent ── */
.result-card.featured {
  border-color: var(--pecan);
  border-width: 2px;
}

.result-card.featured::before {
  height: 4px;
}

/* newsletter css */

.newsletter-section {
  background-color: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative radial glow top-right */
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 158, 100, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative radial glow bottom-left */
.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 158, 100, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Inner layout ---- */
.newsletter-section .container {
  position: relative;
  z-index: 1;
}

.news-content {
  display: grid;
  column-gap: 80px;
  align-items: center;
  padding: 56px 64px;
  border: 1px solid rgba(186, 158, 100, 0.25);
  position: relative;
}

/* Gold corner accents on the card */
.news-content::before,
.news-content::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.news-content::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--pecan);
  border-left: 2px solid var(--pecan);
}

.news-content::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--pecan);
  border-right: 2px solid var(--pecan);
}

/* ---- Left: heading + text ---- */
.news-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.2;
  font-family: "Raleway", sans-serif;
  position: relative;
  padding-left: 20px;
}

/* Gold left-bar accent on title */
.news-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--pecan);
}

.newsletter-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
  padding-left: 20px;
}

/* ---- Right: form ---- */
.news-form {
  margin-top: 20px;
}

/* WPForms container reset */
.newsletter-section .wpforms-container {
  margin: 0 !important;
  padding: 0 !important;
}

/* Hide the email label (placeholder handles it visually) */
.newsletter-section .wpforms-field-label {
  display: none;
}

/* Inline layout: input + button side by side */
.newsletter-section .wpforms-form {
  display: flex;
  align-items: start;
  gap: 12px;
}

.newsletter-section .wpforms-field-container {
  margin: 0;
  padding: 0;
  width: 100%;
}

.newsletter-section .wpforms-field {
  padding: 0 !important;
  margin: 0 !important;
}

/* Email input */
.newsletter-section .wpforms-field-container input[type="email"],
.newsletter-section #wpforms-303-field_1 {
  width: 100% !important;
  max-width: unset !important;
  height: 56px !important;
  padding: 0 20px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(186, 158, 100, 0.35) !important;
  border-radius: 0 !important;
  color: var(--white) !important;
  font-size: 15px !important;
  font-family: "Raleway", sans-serif !important;
  font-weight: 400 !important;
  outline: none !important;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: none !important;
}

.newsletter-section .wpforms-field-container input[type="email"]::placeholder,
.newsletter-section #wpforms-303-field_1::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 14px !important;
  letter-spacing: 0.02em;
}

.newsletter-section .wpforms-field-container input[type="email"]:focus,
.newsletter-section #wpforms-303-field_1:focus {
  border-color: var(--pecan) !important;
  background: rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 0 0 3px rgba(186, 158, 100, 0.12) !important;
}

/* Submit container */
.newsletter-section .wpforms-submit-container {
  padding: 0 !important;
  text-align: unset !important;
  margin: 0 !important;
  width: 100%;
  max-width: fit-content;
  margin-top: 34px !important;
}

/* Subscribe button */
.newsletter-section .wpforms-submit {
  width: 100% !important;
  height: 56px !important;
  padding: 0 36px !important;
  background: var(--pecan) !important;
  color: var(--primary) !important;
  border: 1px solid var(--pecan) !important;
  border-radius: 0 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Shine sweep on hover */
.newsletter-section .wpforms-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 100%);
  transition: left 0.6s ease-in-out;
  transform: skewX(-20deg);
  z-index: 0;
}

.newsletter-section .wpforms-submit:hover {
  background: var(--metallic-gold) !important;
  border-color: var(--metallic-gold) !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(186, 158, 100, 0.3) !important;
}

.newsletter-section .wpforms-submit:hover::before {
  left: 110%;
}

/* Spinner override */
.newsletter-section .wpforms-submit-spinner {
  display: none;
}

/* WPForms error messages */
.newsletter-section .wpforms-error {
  color: #f4a3a3 !important;
  font-size: 12px !important;
  margin-top: 6px !important;
}

/* Success message */
.newsletter-section .wpforms-confirmation-container-full {
  background: rgba(186, 158, 100, 0.12) !important;
  border: 1px solid rgba(186, 158, 100, 0.4) !important;
  border-left: 3px solid var(--pecan) !important;
  color: var(--white) !important;
  padding: 16px 20px !important;
  font-size: 15px !important;
  font-family: "Raleway", sans-serif !important;
  border-radius: 0 !important;
}

.newsletter-section div.wpforms-container-full .wpforms-field-label {
  color: var(--white);
}

.more-info-section {
  padding: 100px 0;
  background-color: #fdfbf5;
  position: relative;
  overflow: hidden;
}

.more-info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.more-info-media {
  position: relative;
}

.media-primary {
  position: relative;
  z-index: 2;
}

.media-primary img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.media-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 3;
}

.media-corner--tl {
  top: -10px;
  left: -10px;
  border-top: 2px solid var(--pecan);
  border-left: 2px solid var(--pecan);
}

.media-corner--br {
  bottom: -10px;
  right: -10px;
  border-bottom: 2px solid var(--pecan);
  border-right: 2px solid var(--pecan);
}

.media-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  z-index: 4;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  border: 3px solid #fdfbf5;
}

.media-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.media-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 72px;
  height: 72px;
  background: var(--pecan);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
}

.media-badge__num {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary) !important;
  line-height: 1;
  font-family: "Raleway", sans-serif;
}

.media-badge__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.3;
  margin-top: 2px;
}

.more-info-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.more-info-content p {
  font-size: 18px;
  line-height: 26px;
}

.more-info-content .indulge-title {
  margin-bottom: 28px;
}

.more-info-content .btn {
  width: fit-content;
}

.more-info-quote {
  position: relative;
  margin: 0 0 28px;
  padding: 22px 28px;
  background: rgba(186, 158, 100, 0.07);
  border-left: 3px solid var(--pecan);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.65;
}

.more-info-quote::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  left: 12px;
  font-size: 52px;
  line-height: 1;
  color: var(--pecan);
  opacity: 0.3;
  font-family: Georgia, serif;
  pointer-events: none;
}

.purchase-membership {
  padding: 200px 0 80px;
  background-color: var(--primary);
}

.purchase-membership .membership-container {
  background-color: #fdfbf5;
  padding: 5px;
}

.purchase-membership .sec-title {
  margin-bottom: 60px;
}

.purchase-membership .sec-title h2,
.purchase-membership .sec-title p {
  color: var(--white);

}

.pricing-ctc {
  margin-top: 80px;
  padding: 40px 50px;
  background: linear-gradient(145deg, rgba(186, 158, 100, 0.04) 0%, rgba(186, 158, 100, 0.15) 100%);
  border: 1px solid rgba(186, 158, 100, 0.25);
  border-top: 4px solid var(--pecan);
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  transition: all .2s ease;
}

.pricing-ctc p {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
  font-style: italic;
  letter-spacing: 0.02em;
}

.pricing-ctc a {
  color: var(--white);
  text-decoration: none;
}

.pricing-ctc a:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
}

.pricing-ctc:hover a {
  text-decoration: underline;
}

.pricing-ctc:hover {
  box-shadow: 0 8px 25px rgba(186, 158, 100, 0.08);
}

/* Article Page */
.article_banner {
  background-color: var(--primary);
  color: var(--metallic-gold);
  padding: 200px 0;
  position: relative;
  overflow: hidden;
}

.article_banner h1.page-title {
  text-align: center;
  font-size: 5rem;
  line-height: 1.25;
  margin: 0px;
  font-weight: 600;
  color: var(--metallic-gold);
}

.article_banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 158, 100, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.article_banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 158, 100, 0.08) 0%, transparent 70%);
  pointer-events: none;
}


.article_listing {
  padding: 50px 0;
}

.article_listing .article_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

.article_listing .article_wrapper a.post-thumbnail {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 20px;
}

.article_listing .article_wrapper a.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1);
  transition: transform 900ms, filter 900ms;
}

.article_listing .article_wrapper h2.entry-title {
  padding-bottom: 16px;
}

.article_listing .article_wrapper h2.entry-title a {
  font-size: 26px;
  line-height: 1.25;
  text-decoration: none;
  font-weight: 600;
  /* font-family: "Miller Display"; */
  color: var(--primary);
}

.article_listing .article_wrapper a.post-thumbnail::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  transform: translate(0.75rem, 0.75rem);
  border: 1px solid var(--pecan);
  /* Replace with your actual gold color if different */
  transition: transform 500ms;
}

.article_listing .article_wrapper article:hover a.post-thumbnail::before {
  transform: translate(0, 0);
}

.article_listing .article_wrapper article:hover a.post-thumbnail img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.article_listing .article_wrapper .entry-summary,
.article_listing .article_wrapper .entry-summary p {
  font-size: 16px;
  line-height: 1.5;
}

.article_listing .article_wrapper article {
  cursor: pointer;
}

.article_listing .article_wrapper article:hover h2.entry-title a {
  color: var(--metallic-gold);
}

.article_listing .cat-pagination .pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.article_listing .cat-pagination {
  margin-top: 30px;
}

.article_listing .cat-pagination .pagination .nav-links .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid var(--metallic-gold);
  color: var(--metallic-gold);
  font-weight: 500;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.article_listing .cat-pagination .pagination .nav-links .page-numbers.current,
.article_listing .cat-pagination .pagination .nav-links .page-numbers:hover {
  background: var(--metallic-gold);
  color: var(--white);
}

/* Article Detail Page */
.article-title-image {
  padding: 150px 0 80px;
  background: var(--primary);
}

.article-title-image .container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.article-title-image .container>div {
  width: calc(50% - 15px);
}

.article-title-image .container .atricle-title {
  order: 2;
}

.article-title-image .container .post-thumbnail {
  aspect-ratio: 4 / 3;
  order: 1;
}

.article-title-image .container .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.article-title-image .container .atricle-title h1 {
  font-size: 3.5rem;
  line-height: 1.25;
  margin: 0px;
  font-weight: 600;
  color: var(--white);
}

.article-content {
  padding: 50px 0;
}

.article-content .entry-content h1 {
  font-size: 48px;
  line-height: 1.25;
  margin-bottom: 20px;
}

.article-content .entry-content p {
  font-size: 16px;
  line-height: 1.5;
}

.article-content .entry-content h2 {
  font-size: 40px;
  line-height: 1.25;
  padding: 20px 0;
}

.article-content .entry-content h3 {
  font-size: 32px;
  line-height: 1.25;
  padding: 16px 0 20px;
}

.article-content .entry-content h4 {
  font-size: 24px;
  line-height: 1.25;
  padding: 16px 0;
}

.article-content .entry-content h5 {
  font-size: 20px;
  line-height: 1.25;
  padding: 16px 0;
}

.article-content .entry-content h6 {
  font-size: 18px;
  line-height: 1.35;
  padding: 16px 0;
}

.article-content .entry-content ul,
.article-content .entry-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
}

.article-content .entry-content a {
  color: var(--metallic-gold);
}

.location-info {
  padding: 100px 0;
  background: var(--pecan-light);
  position: relative;
  overflow: hidden;
}

.location-info::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgb(186 158 100 / 31%) 0%, #00000000 70%);
  border-radius: 50%;
  pointer-events: none;
}

.location-info .location-info-content {
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.location-info .location-info-content>div {
  width: calc(50% - 20px);
}

.location-info .content-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 50px;
  background-color: var(--white);
  border-radius: 0px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-info .content-right:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(186, 158, 100, 0.12);
}

.location-info .content-right h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pecan);
  margin-bottom: 12px;
  font-weight: 700;
}

.location-info .content-right .contact-info {
  position: relative;
  padding-left: 24px;
  border-left: 3px solid rgba(186, 158, 100, 0.2);
  transition: border-color 0.4s ease;
}

.location-info .content-right .contact-info:hover {
  border-left-color: var(--pecan);
}

.location-info .content-right p {
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--primary);
}

.location-info .content-right a {
  color: var(--primary);
  text-decoration: none;
  background-image: linear-gradient(var(--pecan), var(--pecan));
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.4s ease;
  padding-bottom: 4px;
  font-weight: 500;
}

.location-info .content-right a:hover {
  color: var(--pecan);
  background-size: 100% 2px;
}

.location-info .location-info-content .indulge-title {
  margin-bottom: 30px;
}

.location-info .location-info-content .map {
  height: 100%;
  overflow: hidden;
  border-radius: 0px;
  padding: 8px;
  background: var(--white);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-info .location-info-content .map:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(186, 158, 100, 0.12);
}

.location-info .location-info-content .map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  border-radius: 0px;
  filter: grayscale(30%);
  transition: filter 0.5s ease;
}

.location-info .location-info-content .map:hover iframe {
  filter: grayscale(0%);
}

@media(min-width: 768px) {
  .diff-font-size .sec-title span {
    font-size: 24px;
  }
}

@media(min-width: 1281px) {
  .custom-form-wrapper {
    margin-right: 80px;
  }

  .diff-font-size .sec-title h2 {
    font-size: 50px;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
  }

  .diff-font-size .indulge-title h2 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0px;
  }
}

@media(min-width: 1440px) {
  .extra-bg+.services-section {
    padding: 100px 0 80px;
  }
}

@media (max-width: 1780px) {

  .slick-slider .slick-prev,
  .slick-slider .slick-next {
    display: none !important;
  }

  .indulge-about {
    margin: 64px 0 0;
  }
}


@media only screen and (max-width: 1440px) {
  .container {
    padding: 0px 20px;
  }

  .service-banner .title h1 {
    font-size: 70px;
  }

  .header-logo {
    width: auto;
  }

  header.header .navbar-brand img {
    max-width: 210px;
  }

  .Headerstricky .header .navbar-brand img {
    max-width: 210px;
  }

  .btn {
    padding: 15px 25px;
  }

  .purchase-membership {
    padding: 160px 0 80px;
  }
}

@media (max-width: 1366px) {
  .service-banner .title h1 {
    font-size: 60px;
  }
}

@media (max-width: 1280px) {
  .service-banner .title h1 {
    font-size: 55px;
  }

  .service-banner .banner-stats {
    position: relative;
    bottom: unset;
    right: unset;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
  }

  .service-banner .content {
    padding-bottom: 0px;
  }

  .sw-vibe {
    font-size: 12px;
  }

  .service-banner {
    min-height: 80vh;
    padding-top: 120px;
  }

  .service-banner .banner-stat-num {
    font-family: "Miller Display", serif;
    font-size: 32px;
  }

  .sec-title h2,
  .indulge-title h2 {
    font-size: 44px;
  }

  .indulge-title span,
  .sec-title span {
    font-size: 26px;
  }

  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .our-services-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .custom-form-wrapper {
    margin-right: auto;
  }

  .news-content {
    column-gap: 60px;
    padding: 48px 48px;
  }

  .news-form {
    min-width: 340px;
  }
}

@media only screen and (max-width: 1200px) {
  .header .menu-header-menu-container>ul {
    gap: 20px;
  }

  header.header .navbar-brand img {
    width: 180px;
  }

  .article_listing .article_wrapper h2.entry-title a {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1024px) {
  .header-logo {
    z-index: 9;
  }

  .header .menu-header-menu-container>ul>li.submenu ul,
  .header .menu-header-menu-container>ul>li .sub-menu {
    position: relative;
    top: 0;
    display: none !important;
    max-width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
  }

  .header .menu-header-menu-container>ul>li.submenu.open ul,
  .header .menu-header-menu-container>ul>li.submenu.open .sub-menu {
    display: block !important;
  }

  .mobile-nav-toggle {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
  }

  .header .menu-header-menu-container>ul {
    gap: 0px;
    flex-direction: column;
    margin-top: 140px;
    margin-bottom: 0;
  }

  .menu-header-menu-container {
    position: fixed;

    right: 0;
    top: 0;
    bottom: 0;
    background: var(--primary);
    padding: 10px 24px;
    transition: all 0.5s ease-in-out;
    transform: translateX(380px);
    max-width: 380px;
    min-width: 380px;
  }

  .Headerstricky header.header {
    background: var(--primary);
  }

  .header .menu-header-menu-container>ul>li .sub-menu {
    background: rgb(255 255 255 / 20%);
    position: relative;
    visibility: visible;
    opacity: 1;
    width: 100%;
    display: none;
    transition: none !important;
    margin-top: 10px;
    padding: 15px;
  }

  .header .menu-header-menu-container>ul .sub-menu li a {
    color: var(--white);
  }

  .menu-header-menu-container.menu-open {
    transform: translateX(0%);
  }

  .header .child-triggerm {
    width: 14px;
    height: 14px;
    display: inline-block;
    border-top: solid 10px rgb(255 255 255);
    border-left: solid 10px transparent;
    border-right: solid 10px transparent;
    position: absolute;
    right: 0;
    top: 7px;
    transition: all 0.5s;
  }

  .header .child-triggerm.active {
    transform: rotate(-180deg);
  }

  .header .menu-header-menu-container>ul>li>a {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    background: var(--primary);
  }

  .header .menu-header-menu-container>ul>li .sub-menu li {
    padding: 5px 0px;
  }

  .card .image img {
    height: 320px;
  }

  .indulge {
    padding: 80px 0px;
  }

  .indulge-about {
    margin-top: 40px;
  }

  .indulge-about {
    flex-direction: column;
  }

  .indulge-about-left,
  .indulge-about-right {
    width: 100%;
  }

  .indulge-about-right {
    order: 1;
  }

  .indulge-about-left {
    order: 2;
    margin-top: 130px;
  }

  .indulge-about-left p {
    font-size: 20px;
  }

  .indulge-wrap {
    margin-top: 30px;
  }

  /* ===========pricing-table======== */
  .indulge-pricing {
    padding: 80px 0px;
  }

  .services-benefits-card .content {
    padding: 40px 30px;
    gap: 30px;
  }

  .pricing-table-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 54px;
  }

  /* footer */
  .footer-links {
    margin: 25px 0 25px;
    gap: 28px;
  }

  .footer-social {
    margin-bottom: 25px;
  }

  .footer-bottom {
    padding: 25px 0px;
  }

  .news-content {
    grid-template-columns: 1fr;
    row-gap: 36px;
    padding: 44px 40px;
  }

  .newsletter-text {
    max-width: 560px;
  }

  .news-form {
    min-width: unset;
    width: 100%;
    max-width: 520px;
  }

  .more-info-inner {
    grid-template-columns: repeat(1, 1fr);
  }

  .media-secondary {
    right: 40px;
  }

  .article_listing .article_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .article_banner h1.page-title {
    font-size: 3rem;
  }

  .article-content .entry-content h1 {
    font-size: 40px;
  }

  .article-content .entry-content h2 {
    font-size: 32px;
  }

  .article-content .entry-content h3 {
    font-size: 28px;
  }

  .article-content .entry-content h4 {
    font-size: 20px;
  }

  .article-content .entry-content h5 {
    font-size: 18px;
  }

  .article-content .entry-content h6 {
    font-size: 16px;
  }

  .article-title-image {
    padding: 120px 0 80px;
  }

  .article-title-image .container .post-thumbnail {
    aspect-ratio: 6 / 3;
  }

  .article-title-image .container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .article-title-image .container>div {
    width: 100%;
  }

  .article-title-image .container .atricle-title h1 {
    font-size: 2.5rem;
  }

  .location-info .location-info-content {
    gap: 20px;
  }

  .location-info .location-info-content>div {
    width: calc(50% - 10px);
  }

  .location-info .content-right {
    padding: 50px 20px;
  }

  .location-info {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .services-benefits-card {
    grid-template-columns: 1fr;
  }

  .services-benefits-card .card-image {
    min-height: 400px;
    order: -1;
  }

  .services-benefits-card .card-image img {
    position: relative;
  }

  .indulge-this-relevant .grid {
    grid-template-columns: 1fr;
  }

  .services-section .functionality-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .indulge-title span::before {
    top: 16px;
  }

  .custom-form-wrapper {
    margin-right: auto;
  }

  .services-section.add-on-services .sec-title h2 {
    font-size: 35px;
  }

  .purchase-membership {
    padding: 130px 0 80px;
  }

  .purchase-membership .sec-title {
    margin-bottom: 40px;
  }

}

@media (max-width: 768px) {
  .btn {
    font-size: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom .right-text {
    text-align: center;
  }

  .service-banner .title h1 {
    font-size: 50px;
  }

  .service-banner .banner-note {
    font-size: 11px;
  }

  .service-banner .banner-note:before {
    display: none;
  }

  .service-banner .content>p {
    font-size: 16px;
  }

  .sw-vibe {
    font-size: 11px;
  }

  .service-banner {
    padding: 120px 0 0;
  }

  .sec-title h2,
  .indulge-title h2 {
    font-size: 40px;
  }

  .sec-title p {
    font-size: 16px;
  }

  .services-section .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .services-section .functionality-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .services-section {
    padding: 60px 0 30px;
  }

  .services-section .services-card .content {
    padding: 25px 20px;
  }

  .services-section .services-card .offers {
    padding: 15px 20px;
    margin: 0 -20px 25px;
  }

  .services-section .services-card .content h3 {
    font-size: 24px;
  }

  .services-section .services-card .price-amount {
    font-size: 30px;
  }

  .services-section .functionality-card .functionality-card-num {
    font-size: 45px;
  }

  .services-section .text {
    margin-top: 60px;
    padding: 30px 30px;
  }

  .services-section .text p {
    font-size: 18px;
  }

  .services-benefits {
    padding: 60px 0;
  }

  .faq-section {
    padding: 60px 0;
  }

  .sign-up-form {
    min-height: 500px;
    padding: 60px 0;
  }

  .faq-section .accordion-content p {
    font-size: 16px;
  }

  .faq-section .accordion-title h3 {
    font-size: 18px;
  }

  .custom-form-wrapper h3 {
    font-size: 25px;
    line-height: 30px;
  }

  .client-review,
  .who-visit,
  .our-services,
  .services-packages,
  .before-after-results,
  .more-info-section {
    padding: 60px 0;
  }

  .result-photo-row img {
    height: 160px;
  }

  .newsletter-section {
    padding: 60px 0;
  }

  .news-content {
    padding: 36px 28px;
    row-gap: 28px;
  }

  .news-title {
    font-size: 28px;
  }

  .newsletter-text {
    font-size: 15px;
  }

  .services-section.add-on-services {
    padding: 30px 0 50px;
  }

  .pricing-ctc {
    margin-top: 30px;
    padding: 20px 20px;
  }

  .pricing-ctc a {
    font-size: 18px;
  }

  .article_banner {
    padding: 100px 0;
  }

  .article_banner h1.page-title {
    font-size: 3rem;
  }

  .article_listing .article_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .article_listing .article_wrapper a.post-thumbnail {
    aspect-ratio: 8 / 5;
    margin-bottom: 16px;
  }

  .article_listing .article_wrapper h2.entry-title {
    padding-bottom: 10px;
  }

  .article_listing .article_wrapper h2.entry-title a {
    font-size: 20px;
  }

  .article-content .entry-content h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .article-content .entry-content p {
    margin-bottom: 12px;
  }

  .article-content .entry-content h2 {
    font-size: 28px;
    padding: 12px 0 16px;
  }

  .article-content .entry-content h3 {
    font-size: 24px;
    padding: 12px 0 16px;
  }

  .article-title-image {
    padding: 80px 0 40px;
  }

  .article-title-image .container .atricle-title h1 {
    font-size: 2rem;
  }

  .article_listing .article_wrapper a.post-thumbnail::before {
    transform: translate(0, 0);
  }

  .article_listing .article_wrapper a.post-thumbnail img {
    filter: grayscale(0%);
  }

  .article_listing .article_wrapper article:hover a.post-thumbnail img {
    transform: scale(1);
  }
}

@media only screen and (max-width: 767px) {
  .container {
    padding: 0px 15px;
  }

  .services-benefits-card .card-image {
    min-height: 300px;
  }

  .services-benefits-card .content {
    padding: 30px 20px;
  }

  .services-benefits-card .data h3 {
    font-size: 20px;
  }

  .home-banner-inner {
    padding: 100px 0px 0px;
  }

  .home-banner-title h1 {
    font-size: 3.125rem;
  }

  .home-banne-top .btn-primary {
    margin-top: 30px;
  }

  .card .image img {
    height: 240px;
  }

  .card .content {
    padding: 22px;
  }

  .card h3 {
    font-size: 24px;
    margin: 0px 0px 15px;
  }

  .card p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .card .btn {
    padding: 14px 15px;
  }

  .indulge {
    padding: 50px 0px;
  }

  .indulge-title span,
  .sec-title span {
    font-size: 22px;
    line-height: 25px;
    padding-left: 50px;
  }

  .indulge-this-relevant {
    margin-top: 40px;
  }

  .indulge-title span::before {
    top: 14px;
    width: 40px;
  }

  /* footer */
  .footer {
    padding: 30px 0px 0px;
  }

  .footer-links {
    margin: 20px 0 20px;
    gap: 20px;
  }

  .footer-bottom {
    padding: 20px 0px;
  }

  /* pricing-table */
  .indulge-pricing {
    padding: 60px 0px;
  }

  .indulge-pricing .btn {
    margin-top: 12px;
  }

  .pricing-table-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-card h2 {
    font-size: 20px;
    margin: 0px 0px 15px;
  }

  .desc {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .amount {
    font-size: 40px;
  }

  .entry {
    margin: 30px 0px 20px;
  }

  .indulge-about {
    margin: 30px 0 0;
  }

  .indulge-about-left p {
    font-size: 18px;
  }

  .indulge-about-right {
    padding: 0;
  }

  .who-visit .visit-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .who-visit .visit-card {
    padding: 25px;
  }

  .services-packages .package-card-content {
    padding: 25px 20px;
  }

  .services-packages .package-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .services-packages .package-card-image {
    height: 220px;
  }

  .new-image-style .indulge-about-right .indulge-about-img>div.subimg {
    max-width: 320px;
  }

  .new-image-style .indulge-about-right .indulge-about-img>div.subimg img {
    max-width: 100%;
  }

  .indulge-about-right .indulge-about-img>div.subimg img {
    max-width: 60%;
  }

  .indulge-about-left {
    padding: 0;
  }

  .media-primary img {
    height: 400px;
  }

  .services-section.add-on-services .sec-title h2 {
    font-size: 30px;
  }

  .indulge.reverse-image .indulge-about-right .indulge-about-img>div.subimg {
    right: 20px;
    max-width: 150px;
  }

  .indulge.reverse-image .indulge-about-right .indulge-about-img>div.subimg img {
    max-width: 100%;
  }

  .deals-btn {
    margin-top: 0px;
  }

  .pricing-card {
    min-height: unset;
  }

  .left-image-align .indulge-about-right .indulge-about-img>img {
    min-height: 300px;
  }

  .left-image-align .indulge-about-right .indulge-about-img>div.subimg {
    max-width: 320px;
  }

  .left-image-align .indulge-about-right .indulge-about-img>div.subimg img {
    max-width: 100%;
  }

  .location-info {
    padding: 50px 0;
  }

  .location-info .location-info-content {
    flex-direction: column-reverse;
  }

  .location-info .location-info-content>div {
    width: 100%;
  }

  .location-info .location-info-content .map iframe {
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .service-banner .title h1 {
    font-size: 40px;
    line-height: 1.15;
  }

  .sec-title {
    margin-bottom: 40px;
  }

  .sec-title h2,
  .indulge-title h2 {
    font-size: 32px;
  }

  .indulge-title h2 {
    line-height: 1.2;
    margin-top: 10px;
  }

  .news-content {
    padding: 28px 20px;
  }

  .news-title {
    font-size: 24px;
  }

  .newsletter-section .wpforms-submit {
    font-size: 14px !important;
    letter-spacing: 0.06em !important;
  }

  .services-section.add-on-services .sec-title h2 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 479px) {
  .home-banner-title h1 {
    font-size: 2.5rem;
  }

  .header.header .navbar-brand img {
    width: 150px;
  }

  .btn {
    padding: 14px 25px;
    font-size: 14px;
  }
}

.video_sec {
    padding: 100px 0;
}

.video_sec .video_wrapper {
    max-width: 1024px;
    margin: auto;
}

.video_sec .video_wrapper iframe {
    width: 100%;
    min-height: 500px;
}

@media (max-width: 768px){
    .video_sec {
        padding: 60px 0;
    }
    .video_sec .video_wrapper iframe {
        min-height: unset;
    }
}