/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #5A5044;
	--secondary-color: #4F136F;
	--accent-secondary-color: #636A55;
	--bg-color: #fcf4fc;
	--text-color: #868686;
	--accent-color: #4F136F;
	--white-color: #FFFFFF;
	--divider-color: #5A50441A;
	--dark-divider-color: #F7F3ED1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Plus Jakarta Sans", sans-serif;
	--accent-font: "Lora", serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--bg-color);
}

::-webkit-scrollbar-track {
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}


p {
	line-height: 1.7em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	background: var(--accent-color);
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	border: none;
	padding: 18px 58px 18px 30px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 14px;
	height: 14px;
	background: url('../images/arrow-secondary.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate(-30px, -50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover::before {
	transform: translate(-30px, -50%) rotate(45deg);
}

.btn-default::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0%;
	width: 102%;
	height: 100%;
	background-color: var(--primary-color);
	transition: all 0.5s ease-in-out;
	z-index: -1;
	transform: skewY(9.3deg) scaleY(0);
}

.btn-default:hover::after {
	transform: skewY(0deg) scaleY(2);
}

.btn-default.btn-highlighted::after {
	background-color: var(--secondary-color);
}

.btn-default.border-btn {
	background: transparent;
	border: 1px solid var(--secondary-color);
	padding: 17px 58px 17px 30px;
}

.btn-default.border-btn:hover {
	border-color: var(--accent-color);
}

.btn-default.border-btn::after {
	background-color: var(--accent-color);
}

.readmore-btn {
	position: relative;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover {
	color: var(--primary-color);
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	background-image: url('../images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 14px;
	height: 14px;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
	filter: brightness(0.3) invert(0.3);
	transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--accent-secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--secondary-color) transparent var(--secondary-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.bg-section.dark-section {
	background-color: var(--accent-secondary-color);
}

.bg-section {
	width: 100%;
	max-width: 1880px;
	border-radius: 20px;
	margin: 0 auto;
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-row .section-title.section-title-center {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	text-align: center;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
}

.section-title-content p {
	margin-bottom: 20px;
}

.section-title-content p:last-child {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	position: relative;
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 400;
	font-style: italic;
	color: var(--primary-color);
	padding-left: 15px;
	margin-bottom: 10px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-secondary-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.section-title h1 {
	font-size: 60px;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-bottom: 0;
}

.section-title h2 {
	font-size: 46px;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
	font-family: var(--accent-font);
	font-weight: 400;
	font-style: italic;
	color: var(--accent-color);
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h1 span,
.dark-section .section-title h2,
.dark-section .section-title h2 span,
.dark-section .section-title p,
.dark-section .section-title-content p {
	color: var(--secondary-color);
}

.dark-section .section-title h3::before {
	background-color: var(--secondary-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}
/* =========================================
   Scroll To Top
========================================= */
.scroll-to-top{
    position:fixed;
    right:30px;
    bottom:30px;
    z-index:999;
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    border:0;
    border-radius:50%;
    background:#8e44ad;
    color:#fff;
    font-size:15px;
    line-height:1;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    box-shadow:0 8px 25px rgba(0,0,0,.18);
    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.scroll-to-top::before{
    content:'';
    position:absolute;
    inset:3px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
}

.scroll-to-top i{
    position:relative;
    z-index:1;
    transition:transform .3s ease;
}

.scroll-to-top:hover{
    background:#6f2f8a;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.scroll-to-top:hover i{
    transform:translateY(-2px);
}

.scroll-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.scroll-to-top:focus-visible{
    outline:3px solid rgba(142,68,173,.35);
    outline-offset:4px;
}

@media(max-width:767px){
    .scroll-to-top{
        right:20px;
        bottom:20px;
        width:44px;
        height:44px;
        font-size:14px;
    }
}

@media(max-width:575px){
    .scroll-to-top{
        right:15px;
        bottom:15px;
        width:42px;
        height:42px;
    }
}

@media(prefers-reduced-motion:reduce){
    .scroll-to-top{
        transition:none;
    }

    .scroll-to-top i{
        transition:none;
    }
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/
header.main-header {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background: transparent;
	z-index: 100;
	border-radius: 0;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	width: 100%;
	max-width: 1480px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin: 0 auto;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--accent-secondary-color);
	border: 1px solid var(--dark-divider-color);
	border-top: none;
	border-radius: 0 0 20px 20px;
	padding: 0 15px;
}

.navbar {
	padding: 30px 0;
	align-items: center;
}

.navbar-brand img {
	width: 290px;
	height: 120px;
	display: block;
}

@media (max-width: 991px) {
	.navbar-brand img {
		width: 155px;
	}
}

@media (max-width: 575px) {
	.navbar-brand img {
		width: 245px;
	}
}

header.main-header .container-fluid {
	padding: 0;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0;
	position: relative;
}

.main-menu ul li a {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 14px 20px !important;
	color: var(--secondary-color);
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--secondary-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 254px;
	border-radius: 12px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--white-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--white-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--secondary-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--secondary-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--secondary-color);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--white-color);
}

.slicknav_menu ul ul li a {
	padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***         04. Hero css	      ***/
/************************************/
.hero {
	position: relative;
	overflow: hidden;
	padding: 190px 0 75px;
	background: transparent;
}

.hero::before {
	content: "";
	position: absolute;
	inset: -20px;
	background: url('../images/masssage-banner.webp') center center / cover no-repeat;
	filter: blur(8px);
	transform: scale(1.05);
	z-index: 0;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(253, 228, 253, 0.786);
	z-index: 1;
}

.hero-section {
	position: relative;
	z-index: 2;
}

.hero .container-fluid {
	padding: 0;
}

.hero.hero-bg-image::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180.07deg, rgba(0, 0, 0, 0.3) 0.06%, #000000 114.98%), linear-gradient(359.91deg, rgba(0, 0, 0, 0.3) 70.64%, #000000 99.95%);
	opacity: 80%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-bg-image.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-bg-image.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content {
	position: relative;
	z-index: 2;
	gap: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 600px;
	height: 100%;
	text-align: center;
}

.hero-content .section-title {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	text-align: center;
}

.hero-content .section-title h1 {
	color: #3F2947;
}

.hero-content .section-title h1 span {
	color: #765678;
}

.hero-content .section-title h3 {
	color: #765678;
}

.hero-content .section-title p {
	color: #4E4350;
}

.hero-content .section-title h3,
.hero-content .section-title h1,
.hero-content .section-title p {
	text-align: center;
}

.hero-btn {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
}

@media only screen and (max-width: 1880px) {
	.bg-section {
		max-width: calc(100% - 40px);
		margin: 0 20px;
	}

	header.main-header .container-fluid,
	.hero .container-fluid {
		padding: 0 15px;
	}
}

@media only screen and (max-width: 1480px) {
	header.main-header .header-sticky {
		max-width: 100%;
	}

	header.main-header .header-sticky.active {
		border-radius: 0;
		border-left: none;
		border-right: none;
		padding: 0;
	}
}

@media only screen and (max-width: 1024px) {
	.main-menu .nav-menu-wrapper {
		margin: 0 10px;
	}

	.main-menu ul li a {
		padding: 15px 10px !important;
	}
}

@media only screen and (max-width: 991px) {
	.btn-default {
		padding: 14px 40px 14px 18px;
	}

	.btn-default::before {
		width: 12px;
		height: 12px;
		transform: translate(-18px, -50%);
	}

	.btn-default:hover::before {
		transform: translate(-18px, -50%) rotate(45deg);
	}

	.btn-default.border-btn {
		padding: 13px 40px 13px 18px;
	}

	.readmore-btn {
		padding-right: 22px;
	}

	.readmore-btn::before {
		width: 12px;
		height: 12px;
	}

	.navbar {
		padding: 20px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.bg-section {
		max-width: 100%;
		border-radius: 0;
		margin: 0;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-row .section-title.section-title-center {
		max-width: 100%;
	}

	.section-content-btn .section-btn {
		margin-top: 20px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		margin-bottom: 10px;
	}

	.section-title h1 {
		font-size: 45px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.section-title-content {
		margin-top: 10px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.hero {
		padding: 140px 0 0;
	}

	.hero.hero-bg-image {
		padding: 170px 0 80px;
	}

	.hero-content {
		height: auto;
		margin-bottom: 30px;
		gap: 33px;
	}

	.hero-content .section-title p {
		margin-top: 15px;
	}

	.hero-img {
		width: 100%;
		height: auto;
		max-width: 75%;
		margin: 0 auto;
		padding: 0 100px 0 50px;
	}

	.hero-img figure img {
		margin: 0;
	}

	.page-header {
		padding: 160px 0 70px;
	}

	.page-header-box h1 {
		font-size: 45px;
		margin-bottom: 10px;
	}
}

@media only screen and (max-width: 767px) {
	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 30px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-content .section-title p {
		font-size: 16px;
	}

	.hero-btn {
		gap: 15px;
		justify-content: center;
	}

	.hero-img {
		padding: 0 50px 0 0;
		max-width: 100%
	}

	.page-header-box h1 {
		font-size: 30px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 16px;
	}

	.approach-list-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}
}

/************************************/
/****      About Us Section       ****/
/************************************/
.about-us {
	position: relative;
	padding: 110px 0 90px;
	background: rgb(253 249 255);
	overflow: hidden;
}

.about-us::before {
	content: "";
	position: absolute;
	width: 350px;
	height: 350px;
	top: -180px;
	right: -120px;
	background: #eaddea;
	border-radius: 50%;
	opacity: 0.45;
	filter: blur(10px);
	pointer-events: none;
}

.about-us::after {
	content: "";
	position: absolute;
	width: 280px;
	height: 280px;
	bottom: -160px;
	left: -100px;
	background: #e9dfce;
	border-radius: 50%;
	opacity: 0.4;
	filter: blur(10px);
	pointer-events: none;
}

.about-intro {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto 65px;
	text-align: center;
}

.about-intro .section-title h3 {
	color: #765678;
	margin-bottom: 15px;
}

.about-intro .section-title h2 {
	max-width: 850px;
	margin: 0 auto 20px;
	color: #3f2947;
}

.about-intro .section-title h2 span {
	color: #765678;
}

.about-intro .section-title p {
	max-width: 760px;
	margin: 0 auto;
	color: #625966;
	line-height: 1.8;
}

.about-cards {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.about-card {
	position: relative;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(118, 86, 120, 0.12);
	border-radius: 24px;
	padding: 38px 32px 35px;
	min-height: 330px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 15px 40px rgba(63, 41, 71, 0.06);
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

.about-card:hover {
	transform: translateY(-8px);
	border-color: rgba(118, 86, 120, 0.3);
	box-shadow: 0 22px 50px rgba(63, 41, 71, 0.12);
}

.about-card-icon {
	width: 62px;
	height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #eee3ee;
	color: #765678;
	font-size: 24px;
	margin-bottom: 28px;
	transition:
		background-color 0.35s ease,
		color 0.35s ease,
		transform 0.35s ease;
}

.about-card:hover .about-card-icon {
	background: #765678;
	color: #ffffff;
	transform: rotate(-5deg) scale(1.05);
}

.about-card-content {
	flex: 1;
}

.about-card-content>span {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: #b89568;
	margin-bottom: 8px;
}

.about-card-content h3 {
	color: #3f2947;
	font-size: 23px;
	margin-bottom: 14px;
}

.about-card-content p {
	color: #625966;
	line-height: 1.7;
	margin-bottom: 22px;
}

.about-card-content a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #765678;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: gap 0.3s ease, color 0.3s ease;
}

.about-card-content a i {
	font-size: 12px;
}

.about-card-content a:hover {
	color: #b89568;
	gap: 13px;
}

.about-note {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 45px auto 0;
	text-align: center;
}

.about-note-icon {
	width: 35px;
	height: 35px;
	flex: 0 0 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #b89568;
	color: #ffffff;
	border-radius: 50%;
	font-size: 13px;
}

.about-note p {
	margin: 0;
	color: #4e4350;
	font-size: 14px;
	line-height: 1.5;
}

.about-note strong {
	color: #765678;
}

@media (max-width: 991px) {
	.about-us {
		padding: 90px 0 70px;
	}

	.about-intro {
		margin-bottom: 50px;
	}

	.about-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.about-card:last-child {
		grid-column: 1 / -1;
		max-width: calc(50% - 10px);
		width: 100%;
		margin: 0 auto;
	}

	.about-card {
		min-height: 310px;
		padding: 32px 28px;
	}
}

@media (max-width: 767px) {
	.about-us {
		padding: 75px 0 60px;
	}

	.about-intro {
		margin-bottom: 40px;
	}

	.about-intro .section-title h2 {
		font-size: 32px;
		line-height: 1.25;
	}

	.about-intro .section-title p {
		font-size: 15px;
		line-height: 1.7;
	}

	.about-cards {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.about-card,
	.about-card:last-child {
		grid-column: auto;
		max-width: none;
		min-height: auto;
		width: 100%;
		margin: 0;
	}

	.about-card {
		padding: 30px 25px;
	}

	.about-card-icon {
		width: 56px;
		height: 56px;
		font-size: 21px;
		margin-bottom: 22px;
	}

	.about-card-content h3 {
		font-size: 21px;
	}

	.about-card-content p {
		font-size: 15px;
	}

	.about-note {
		border-radius: 20px;
		padding: 16px 18px;
		gap: 12px;
		margin-top: 35px;
	}
}

@media (max-width: 575px) {
	.about-us {
		padding: 65px 0 50px;
	}

	.about-intro .section-title h2 {
		font-size: 28px;
	}

	.about-intro .section-title p {
		font-size: 14px;
	}

	.about-card {
		padding: 27px 22px;
		border-radius: 20px;
	}

	.about-card-icon {
		margin-bottom: 20px;
	}

	.about-note {
		align-items: flex-start;
		text-align: left;
	}
}

/************************************/
/***      Our Services Section    ***/
/************************************/

.our-services {
    padding: 90px 0;
    background: var(--bg-color);
    overflow: hidden;
}

/* Header */

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
}

.services-header .section-title {
    margin: 0;
    max-width: 700px;
}

.services-header .section-title h3 {
    color: var(--accent-color);
}

.services-header .section-title h3::before {
    background-color: var(--accent-color);
}

.services-header .section-title h2 {
    color: var(--primary-color);
}

.services-header .section-title h2 span {
    color: #8b5a91;
}

.services-header .section-title p {
    color: var(--text-color);
    max-width: 650px;
    line-height: 1.7;
    margin: 12px 0 0;
}

/* Location */

.services-location {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
    padding: 13px 18px;
    min-width: 270px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(63, 41, 71, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(63, 41, 71, 0.05);
}

.services-location > i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #8b5a91;
    color: #fff;
    font-size: 14px;
}

.services-location strong {
    display: block;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 3px;
}

.services-location span {
    display: block;
    color: var(--text-color);
    font-size: 12px;
}

/* Services Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Service Card */

.service-card {
    position: relative;
    display: grid;
    grid-template-columns: 32px 52px 1fr 36px;
    align-items: center;
    gap: 14px;
    min-height: 115px;
    padding: 18px 18px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(63, 41, 71, 0.09);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(63, 41, 71, 0.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 90, 145, 0.3);
    box-shadow: 0 15px 35px rgba(63, 41, 71, 0.1);
}

/* Number */

.service-number {
    align-self: start;
    padding-top: 3px;
    font-family: var(--accent-font);
    font-size: 13px;
    font-style: italic;
    color: #8b5a91;
}

/* Icon */

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2e7f4;
    border: 1px solid rgba(139, 90, 145, 0.15);
    color: #8b5a91;
    font-size: 17px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.service-card:hover .service-icon {
    background: #8b5a91;
    color: #fff;
    transform: scale(1.06);
}

/* Content */

.service-content {
    min-width: 0;
}

.service-content h3 {
    margin: 0 0 5px;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.service-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
}

.service-card:hover .service-content h3 {
    color: #8b5a91;
}

/* Arrow */

.service-card > a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(63, 41, 71, 0.14);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 10px;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.service-card:hover > a {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: rotate(-45deg);
}

/* Bottom */

.services-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
}

.services-bottom p {
    margin: 0;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
}


/************************************/
/***          Responsive          ***/
/************************************/

@media (max-width: 1199px) {

    .our-services {
        padding: 80px 0;
    }

    .services-header {
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        min-height: 110px;
    }
}


@media (max-width: 991px) {

    .services-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 35px;
    }

    .services-location {
        width: 100%;
        max-width: 320px;
    }

    .services-grid {
        gap: 15px;
    }
}


@media (max-width: 767px) {

    .our-services {
        padding: 70px 0;
    }

    .services-header {
        text-align: center;
        align-items: center;
    }

    .services-header .section-title p {
        font-size: 14px;
        line-height: 1.65;
    }

    .services-location {
        text-align: left;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        min-height: 100px;
        padding: 15px;
        grid-template-columns: 30px 50px 1fr 34px;
        gap: 12px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 12px;
    }
}


@media (max-width: 575px) {

    .our-services {
        padding: 60px 0;
    }

    .services-header {
        margin-bottom: 28px;
    }

    .services-location {
        min-width: 0;
        width: 100%;
        padding: 11px 14px;
    }

    .services-location > i {
        width: 38px;
        height: 38px;
    }

    .service-card {
        grid-template-columns: 27px 46px minmax(0, 1fr) 32px;
        gap: 9px;
        min-height: 92px;
        padding: 13px 11px;
        border-radius: 13px;
    }

    .service-number {
        font-size: 12px;
    }

    .service-icon {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }

    .service-content h3 {
        font-size: 15px;
        margin-bottom: 3px;
    }

    .service-content p {
        font-size: 11px;
        line-height: 1.4;
    }

    .service-card > a {
        width: 32px;
        height: 32px;
        font-size: 9px;
    }

    .services-bottom {
        margin-top: 28px;
    }
}


@media (max-width: 380px) {

    .service-card {
        grid-template-columns: 25px 43px minmax(0, 1fr);
        gap: 8px;
    }

    .service-icon {
        width: 43px;
        height: 43px;
    }

    .service-card > a {
        display: none;
    }

    .service-content h3 {
        font-size: 14px;
    }

    .service-content p {
        font-size: 10px;
    }
}

/* 10% Discount Card */

.service-discount-card {
    background: rgba(139, 90, 145, 0.10);
    border-color: rgba(139, 90, 145, 0.25);
}

.service-discount-card .service-icon {
    background: #8b5a91;
    color: #ffffff;
    border-color: #8b5a91;
}

.service-discount-card .service-number {
    color: #8b5a91;
}

.discount-label {
    display: block;
    margin-bottom: 3px;
    color: #8b5a91;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.service-discount-card .service-content h3 {
    color: #8b5a91;
    font-size: 22px;
    margin-bottom: 3px;
}

.service-discount-card .service-content p {
    font-size: 11px;
    line-height: 1.4;
}

.service-discount-card > a {
    border-color: rgba(139, 90, 145, 0.25);
    color: #8b5a91;
}

.service-discount-card:hover {
    background: rgba(139, 90, 145, 0.15);
    border-color: rgba(139, 90, 145, 0.4);
}

.service-discount-card:hover .service-icon {
    background: #8b5a91;
    color: #ffffff;
}


/* Tablet */

@media (max-width: 767px) {

    .service-discount-card .service-content h3 {
        font-size: 18px;
    }

    .service-discount-card .service-content p {
        font-size: 11px;
    }
}


/* Small Mobile */

@media (max-width: 575px) {

    .discount-label {
        font-size: 8px;
    }

    .service-discount-card .service-content h3 {
        font-size: 16px;
    }

    .service-discount-card .service-content p {
        font-size: 10px;
    }
}

/* =========================================================
   PRINCESS MASSAGE
   CREDENTIALS & EXPERIENCE SECTION
   ========================================================= */

.pm-credentials {
    padding: 90px 20px 20px;
    background: #faf8f5;
}

.pm-credentials-wrap {
    max-width: 1150px;
    margin: auto;
}

.pm-credentials-head {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.pm-credentials-head > span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color, #b48a5a);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pm-credentials-head h2 {
    margin: 0 0 12px;
    color: #292725;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
}

.pm-credentials-head h2 b {
    color: var(--primary-color, #b48a5a);
}

.pm-credentials-head p {
    margin: 0;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

.pm-credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pm-credentials-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .07);
    transition: .35s ease;
}

.pm-credentials-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .11);
}

.pm-credentials-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    /* padding: 20px; */
    background: #f5f2ed;
}

.pm-credentials-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .5s ease;
}

.pm-credentials-card:hover .pm-credentials-img img {
    transform: scale(1.03);
}

.pm-credentials-info {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px;
}

.pm-credentials-info > i {
    color: var(--primary-color, #b48a5a);
    font-size: 22px;
}

.pm-credentials-info h3 {
    margin: 0 0 3px;
    color: #292725;
    font-size: 17px;
}

.pm-credentials-info p {
    margin: 0;
    color: #888;
    font-size: 13px;
}


/* Tablet */
@media (max-width: 767px) {

    .pm-credentials {
        padding: 70px 18px;
    }

    .pm-credentials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pm-credentials-img {
        height: 300px;
    }

}


/* Small Mobile */
@media (max-width: 480px) {

    .pm-credentials {
        padding: 60px 15px;
    }

    .pm-credentials-head {
        margin-bottom: 30px;
    }

    .pm-credentials-head h2 {
        font-size: 28px;
    }

    .pm-credentials-head p {
        font-size: 14px;
    }

    .pm-credentials-img {
        height: 250px;
        padding: 15px;
    }

    .pm-credentials-info {
        padding: 16px;
    }

    .pm-credentials-info h3 {
        font-size: 15px;
    }

    .pm-credentials-info p {
        font-size: 12px;
    }

}

/************************************/
/***     Why Choose Us Section    ***/
/************************************/
.why-choose-us {
	position: relative;
	padding: 115px 0;
	background: var(--bg-color);
	overflow: hidden;
}

.why-choose-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: center;
	gap: 145px;
}

.why-choose-visual {
	position: relative;
	max-width: 530px;
	padding-bottom: 35px;
}

.why-choose-image {
	position: relative;
	width: 100%;
	border-radius: 35px;
	box-shadow:
		0 20px 50px rgba(63, 41, 71, 0.15);
}

.why-choose-image figure {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 25px;
}

.why-choose-image figure img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.why-choose-image:hover figure img {
	transform: scale(1.04);
}

.experience-badge {
	position: absolute;
	left: -35px;
	bottom: 30px;
	width: 145px;
	height: 145px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	background: var(--accent-color);
	border: 8px solid var(--bg-color);
	color: var(--white-color);
	box-shadow:
		0 12px 30px rgba(63, 41, 71, 0.18);
	z-index: 2;
}

.experience-badge span {
	display: block;
	max-width: 90px;
	font-family: var(--accent-font);
	font-size: 13px;
	font-style: italic;
	line-height: 1.3;
	margin-bottom: 5px;
}

.experience-badge strong {
	display: block;
	font-size: 19px;
	line-height: 1.2;
}

.location-badge {
	position: absolute;
	right: -35px;
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	background: var(--white-color);
	border-radius: 12px;
	border: 1px solid rgba(63, 41, 71, 0.08);
	box-shadow:
		0 12px 30px rgba(63, 41, 71, 0.12);
	z-index: 3;
}

.location-badge-icon {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #f0e5f2;
	color: var(--secondary-color);
	font-size: 16px;
}

.location-badge-content strong {
	display: block;
	color: var(--primary-color);
	font-size: 14px;
	margin-bottom: 3px;
}

.location-badge-content span {
	display: block;
	color: var(--text-color);
	font-size: 12px;
}

.why-choose-content {
	position: relative;
}

.why-choose-content .section-title {
	margin-bottom: 35px;
}

.why-choose-content .section-title h2 {
	max-width: 650px;
}

.why-choose-content .section-title h2 span {
	color: var(--secondary-color);
}

.why-choose-content .section-title p {
	max-width: 620px;
	line-height: 1.8;
}

.trust-features {
	border-top: 1px solid var(--divider-color);
}

.trust-feature {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 23px 0;
	border-bottom: 1px solid var(--divider-color);
	transition:
		padding-left 0.3s ease,
		background-color 0.3s ease;
}

.trust-feature:hover {
	padding-left: 8px;
}

.trust-feature-icon {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--secondary-color);
	color: var(--white-color);
	font-size: 17px;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease;
}

.trust-feature:hover .trust-feature-icon {
	background: var(--accent-color);
	transform: translateY(-3px);
}

.trust-feature-content {
	flex: 1;
}

.trust-feature-content h3 {
	font-size: 18px;
	color: var(--primary-color);
	margin-bottom: 6px;
}

.trust-feature-content p {
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	max-width: 520px;
}

@media (max-width: 1199px) {
	.why-choose-layout {
		grid-template-columns: 0.85fr 1.15fr;
		gap: 60px;
	}

	.experience-badge {
		left: -20px;
	}

	.location-badge {
		right: -20px;
	}
}

@media (max-width: 991px) {
	.why-choose-us {
		padding: 90px 0;
	}

	.why-choose-layout {
		grid-template-columns: 1fr;
		gap: 70px;
	}

	.why-choose-visual {
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}

	.why-choose-content {
		width: 100%;
	}

	.why-choose-content .section-title {
		max-width: 700px;
		text-align: center;
	}
}

@media (max-width: 767px) {
	.why-choose-us {
		padding: 75px 0;
	}

	.why-choose-layout {
		gap: 55px;
	}

	.why-choose-image {
		padding: 9px;
		border-radius: 25px;
	}

	.why-choose-image figure {
		border-radius: 18px;
	}

	.why-choose-image figure img {
		aspect-ratio: 1 / 1.1;
	}

	.experience-badge {
		left: -10px;
		bottom: 20px;
		width: 120px;
		height: 120px;
		border-width: 6px;
	}

	.experience-badge span {
		font-size: 11px;
		max-width: 75px;
	}

	.experience-badge strong {
		font-size: 16px;
	}

	.location-badge {
		right: -5px;
		bottom: -20px;
		padding: 11px 13px;
	}

	.location-badge-icon {
		width: 36px;
		height: 36px;
		flex: 0 0 36px;
		font-size: 14px;
	}

	.location-badge-content strong {
		font-size: 12px;
	}

	.location-badge-content span {
		font-size: 10px;
	}

	.trust-feature {
		gap: 14px;
		padding: 20px 0;
	}

	.trust-feature-icon {
		width: 43px;
		height: 43px;
		flex: 0 0 43px;
		font-size: 15px;
	}

	.trust-feature-content h3 {
		font-size: 17px;
	}

	.trust-feature-content p {
		font-size: 13px;
		line-height: 1.55;
	}
}

@media (max-width: 575px) {
	.why-choose-us {
		padding: 65px 0;
	}

	.why-choose-layout {
		gap: 48px;
	}

	.why-choose-visual {
		padding-bottom: 30px;
	}

	.experience-badge {
		left: -5px;
		width: 105px;
		height: 105px;
	}

	.experience-badge span {
		font-size: 10px;
		margin-bottom: 3px;
	}

	.experience-badge strong {
		font-size: 14px;
	}

	.location-badge {
		right: 0;
		max-width: 185px;
	}

	.location-badge-content strong {
		font-size: 11px;
	}

	.location-badge-content span {
		font-size: 9px;
	}

	.trust-feature {
		gap: 12px;
	}

	.trust-feature-content h3 {
		font-size: 16px;
	}

	.trust-feature-content p {
		font-size: 12px;
	}

	.discount-content strong {
		font-size: 13px;
	}

	.discount-content p {
		font-size: 10px;
	}

	.discount-off {
		width: 42px;
		height: 42px;
		flex: 0 0 42px;
		font-size: 9px;
	}
}

/* =========================================
   Relaxation Experience
========================================= */
.relaxation-section{
    padding:60px 0;
    overflow:hidden;
	background-color: rgb(253, 249, 255);
}

.relaxation-section .section-title{
    max-width:700px;
    margin:0 auto 60px;
}

.relaxation-section .section-title p{
    margin:0;
}

.relaxation-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.relaxation-item{
    position:relative;
}

.relaxation-item-large{
    grid-row:span 2;
}

.relaxation-image{
    position:relative;
    height:100%;
    min-height:300px;
    overflow:hidden;
    border-radius:20px;
}

.relaxation-item-large .relaxation-image{
    min-height:630px;
}

.relaxation-image::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(91, 45, 110, .72) 0%,
        rgba(126, 72, 145, .35) 45%,
        rgba(170, 120, 185, .12) 100%
    );
    pointer-events:none;
}

.relaxation-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .6s ease;
}

.relaxation-item:hover .relaxation-image img{
    transform:scale(1.05);
}

.relaxation-quote{
    max-width:700px;
    margin:55px auto 0;
    text-align:center;
}

.relaxation-quote i{
    margin-bottom:15px;
    color:#8e44ad;
    font-size:25px;
}

.relaxation-quote p{
    margin:0;
    color:var(--secondary-color);
    font-size:22px;
    font-weight:500;
    line-height:1.5;
}

@media(max-width:991px){
    .relaxation-section{
        padding:80px 0;
    }

    .relaxation-section .section-title{
        margin-bottom:45px;
    }

    .relaxation-grid{
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    .relaxation-item-large{
        grid-row:span 1;
        grid-column:span 2;
    }

    .relaxation-item-large .relaxation-image{
        min-height:450px;
    }

    .relaxation-image{
        min-height:320px;
    }
}

@media(max-width:767px){
    .relaxation-section{
        padding:70px 0;
    }

    .relaxation-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .relaxation-item-large{
        grid-column:auto;
    }

    .relaxation-item-large .relaxation-image,
    .relaxation-image{
        min-height:380px;
    }

    .relaxation-quote{
        margin-top:40px;
    }

    .relaxation-quote p{
        font-size:19px;
    }
}

@media(max-width:575px){
    .relaxation-section{
        padding:60px 0;
    }

    .relaxation-section .section-title{
        margin-bottom:35px;
    }

    .relaxation-item-large .relaxation-image,
    .relaxation-image{
        min-height:330px;
        border-radius:16px;
    }

    .relaxation-quote p{
        font-size:18px;
    }
}

/*======================================================
		Appointment Section 
  ======================================================*/
.appointment-section {
	padding: 100px 0;
}

.appointment-form {
	background: #ffffff;
	padding: 45px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.appointment-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 600;
	color: #222;
}

.appointment-form label span {
	font-size: 13px;
	font-weight: 400;
	color: #777;
}

.appointment-form .form-control {
	width: 100%;
	height: 55px;
	padding: 12px 18px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	background: #fafafa;
	color: #333;
	font-size: 15px;
	box-shadow: none;
}

.appointment-form textarea.form-control {
	height: auto;
	resize: vertical;
}

.appointment-form .form-control:focus {
	border-color: #8e44ad;
	box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.08);
}

.btn-default {
	border: 0;
	cursor: pointer;
}

.appointment-details {
	padding: 20px 0 20px 45px;
}

.appointment-content {
	margin-bottom: 35px;
}

.appointment-content h2 {
	font-size: 42px;
	line-height: 1.2;
	margin: 10px 0 18px;
}

.appointment-content p {
	color: #666;
	line-height: 1.7;
}

.section-subtitle {
	display: inline-block;
	color: #8e44ad;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.appointment-info {
	margin-bottom: 30px;
}

.appointment-info-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 25px;
}

.icon-box {
	width: 50px;
	min-width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8effc;
	color: #8e44ad;
	border-radius: 50%;
	font-size: 18px;
}

.info-content h3 {
	font-size: 18px;
	margin: 0 0 5px;
}

.info-content p {
	margin: 0;
	color: #666;
	line-height: 1.6;
}

.appointment-contact {
	padding-top: 25px;
	border-top: 1px solid #e5e5e5;
}

.appointment-contact span {
	display: block;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 600;
	color: #777;
}

.appointment-contact a {
	display: block;
	margin-bottom: 8px;
	color: #8e44ad;
	text-decoration: none;
	font-weight: 500;
}

.appointment-contact a i {
	margin-right: 8px;
}

@media (max-width: 991px) {
	.appointment-content,
	.appointment-contact {
		text-align: center;
	}

	.appointment-section {
		padding: 70px 0;
	}

	.appointment-form {
		padding: 35px;
	}

	.appointment-details {
		padding: 50px 0 0;
	}

	.appointment-content h2 {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.appointment-section {
		padding: 50px 0;
	}

	.appointment-form {
		padding: 25px 20px;
		border-radius: 15px;
	}

	.appointment-content h2 {
		font-size: 30px;
	}

	.appointment-details {
		padding-top: 40px;
	}

	.appointment-info-item {
		gap: 14px;
	}

	.icon-box {
		width: 45px;
		min-width: 45px;
		height: 45px;
	}
}

@media (max-width: 575px) {
	.appointment-form {
		padding: 22px 15px;
	}

	.appointment-content h2 {
		font-size: 27px;
	}
}

/* =========================================
Testimonial Section
========================================= */
.testimonial-section {
	position: relative;
	padding: 40px 0;
	overflow: hidden;
	background-color: rgb(253, 249, 255);
}

.testimonial-section .section-title {
	max-width: 700px;
	margin: 0 auto 50px;
}

.testimonial-section .section-title h2 {
	margin: 10px 0 15px;
}

.testimonial-section .section-title p {
	max-width: 650px;
	margin: 0 auto;
	color: #666;
	line-height: 1.7;
}

.testimonial-slider {
	position: relative;
	width: 100%;
	padding: 10px 5px 85px;
	overflow: hidden;
}

.testimonial-slider .swiper-wrapper {
	align-items: stretch;
}

.testimonial-slider .swiper-slide {
	height: auto;
	display: flex;
	box-sizing: border-box;
}

.testimonial-card {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 35px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 20px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
	box-sizing: border-box;
	transition: transform .3s ease, box-shadow .3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}

.testimonial-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.testimonial-rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.testimonial-rating i {
	color: #f4b400;
	font-size: 14px;
}

.quote-icon {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f4eafa;
	color: #8e44ad;
	border-radius: 50%;
	font-size: 16px;
}

.testimonial-content {
	flex: 1;
}

.testimonial-content p {
	margin: 0;
	color: #555;
	font-size: 16px;
	line-height: 1.8;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid #eee;
}

.author-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f4eafa;
	color: #8e44ad;
	border-radius: 50%;
	font-size: 18px;
}

.author-info {
	min-width: 0;
}

.author-info h3 {
	margin: 0 0 4px;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
}

.author-info span {
	display: block;
	color: #888;
	font-size: 13px;
	line-height: 1.4;
}

.testimonial-slider .swiper-slide {
	cursor: grab;
}

.testimonial-slider.swiper-grab-cursor .swiper-slide {
	cursor: grab;
}

.testimonial-slider.swiper-grabbing .swiper-slide {
	cursor: grabbing;
}

@media(max-width:1199px) {
	.testimonial-section {
		padding: 85px 0;
	}

	.testimonial-card {
		padding: 30px;
	}
}

@media(max-width:991px) {
	.testimonial-section {
		padding: 75px 0;
	}

	.testimonial-section .section-title {
		margin-bottom: 40px;
	}

	.testimonial-card {
		padding: 28px;
	}

	.testimonial-content p {
		font-size: 15px;
		line-height: 1.75;
	}
}

@media(max-width:767px) {
	.testimonial-section {
		padding: 60px 0;
	}

	.testimonial-slider {
		padding: 5px 0 75px;
	}

	.testimonial-card {
		padding: 25px;
		border-radius: 17px;
	}

	.testimonial-top {
		margin-bottom: 18px;
	}

	.testimonial-content p {
		font-size: 15px;
		line-height: 1.7;
	}

	.testimonial-author {
		margin-top: 25px;
		padding-top: 20px;
	}

	.author-icon {
		width: 46px;
		height: 46px;
		min-width: 46px;
	}

	.testimonial-prev,
	.testimonial-next {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
	}
}

@media(max-width:575px) {
	.testimonial-section {
		padding: 50px 0;
	}

	.testimonial-section .section-title {
		margin-bottom: 30px;
	}

	.testimonial-section .section-title h2 {
		font-size: 28px;
	}

	.testimonial-section .section-title p {
		font-size: 14px;
	}

	.testimonial-slider {
		padding-bottom: 72px;
	}

	.testimonial-card {
		padding: 22px;
		border-radius: 15px;
	}

	.quote-icon {
		width: 38px;
		height: 38px;
		font-size: 14px;
	}

	.testimonial-content p {
		font-size: 14px;
		line-height: 1.7;
	}
}

.testimonial-slider .swiper-slide a,
.testimonial-slider .swiper-slide img,
.testimonial-slider .swiper-slide i {
	-webkit-user-drag: none;
}

/* =========================================
Footer
========================================= */
.main-footer {
	position: relative;
	background: var(--accent-color);
	color: #fff;
	overflow: hidden;
}

.main-footer::before {
	content: '';
	position: absolute;
	top: -180px;
	right: -180px;
	width: 450px;
	height: 450px;
	background: rgba(142, 68, 173, .12);
	border-radius: 50%;
	pointer-events: none;
}

.main-footer::after {
	content: '';
	position: absolute;
	bottom: -220px;
	left: -180px;
	width: 450px;
	height: 450px;
	background: rgba(142, 68, 173, .08);
	border-radius: 50%;
	pointer-events: none;
}

.footer-main {
	position: relative;
	z-index: 1;
	padding: 85px 0 0;
}

.footer-row {
	row-gap: 50px;
}

.footer-brand {
	padding-right: 45px;
}

.footer-logo {
	display: inline-block;
	margin-bottom: 25px;
}

.footer-logo img {
	display: block;
	width: 100%;
	max-width: 180px;
	height: auto;
	background-color: #ffffff;
    padding: 8px;
    border-radius: 8px;
}

.footer-description {
	max-width: 520px;
	margin: 0 0 28px;
	color: #c9bdce;
	font-size: 16px;
	line-height: 1.8;
}

.footer-widget h3 {
	position: relative;
	margin: 0 0 25px;
	padding-bottom: 12px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}

.footer-widget h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 35px;
	height: 2px;
	background: #8e44ad;
	border-radius: 10px;
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 12px;
}

.footer-menu li:last-child {
	margin-bottom: 0;
}

.footer-menu li a {
	display: inline-block;
	color: #c9bdce;
	font-size: 16px;
	line-height: 1.5;
	text-decoration: none;
	transition: color .3s ease, transform .3s ease;
}

.footer-menu li a:hover {
	color: #c98de0;
	transform: translateX(4px);
}

.footer-contact-widget {
	padding-left: 10px;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
}

.footer-contact-item:last-child {
	margin-bottom: 0;
}

.footer-contact-icon {
	width: 38px;
	height: 38px;
	min-width: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(142, 68, 173, .18);
	color: #c98de0;
	border-radius: 10px;
	font-size: 14px;
}

.footer-contact-content span {
	display: block;
	margin-bottom: 3px;
	color: #9f91a4;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .6px;
}

.footer-contact-content a {
	display: block;
	max-width: 190px;
	color: #fff;
	font-size: 14px;
	line-height: 1.5;
	text-decoration: none;
	transition: color .3s ease;
}

.footer-contact-content a:hover {
	color: #c98de0;
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    margin-top:55px;
    padding:25px 0;
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-social span {
	color: #aaa0ae;
	font-size: 13px;
}

.footer-social a {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	border-radius: 50%;
	font-size: 14px;
	text-decoration: none;
	transition: background .3s ease, color .3s ease, transform .3s ease;
}

.footer-social a:hover {
	background: #8e44ad;
	color: #fff;
	transform: translateY(-3px);
}

.footer-copyright {
	text-align: right;
}

.footer-copyright p {
	margin: 0;
	color: #ede9ef;
	font-size: 14px;
	line-height: 1.5;
}

.footer-copyright p a {
	color: #ffffff;
}

@media(max-width:1199px) {
	.footer-brand {
		padding-right: 20px;
	}

	.footer-highlight {
		gap: 20px;
		padding: 25px;
	}

	.footer-discount {
		padding: 0 20px;
	}

	.footer-book-btn {
		padding: 13px 16px;
	}
}

@media(max-width:991px) {
	.footer-main {
		padding-top: 70px;
	}

	.footer-brand {
		padding-right: 0;
	}

	.footer-contact-widget {
		padding-left: 0;
	}

	.footer-highlight {
		flex-wrap: wrap;
	}

	.footer-highlight-content {
		flex: 1 1 100%;
	}

	.footer-discount {
		padding: 0;
		border-left: 0;
		border-right: 0;
	}

	.footer-book-btn {
		margin-left: auto;
	}

	.footer-bottom {
		grid-template-columns: 1fr 1fr;
	}

	.footer-copyright {
		grid-column: 1 / -1;
		text-align: center;
		order: 3;
	}
}

@media(max-width:767px) {
	.footer-main {
		padding-top: 60px;
	}

	.footer-row {
		row-gap: 40px;
	}

	.footer-brand {
		padding-right: 0;
	}

	.footer-logo {
		margin-bottom: 20px;
	}

	.footer-description {
		font-size: 14px;
		line-height: 1.75;
		margin-bottom: 22px;
	}

	.footer-widget h3 {
		margin-bottom: 20px;
	}

	.footer-contact-widget {
		padding-left: 0;
	}

	.footer-highlight {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 22px;
		margin-top: 50px;
		padding: 22px;
	}

	.footer-highlight-content {
		width: 100%;
	}

	.footer-discount {
		width: 100%;
		padding: 20px 0 0;
		border-top: 1px solid rgba(255, 255, 255, .1);
	}

	.footer-book-btn {
		width: 100%;
		margin-left: 0;
	}

	.footer-bottom {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		margin-top: 45px;
		padding: 25px 0;
	}

	.footer-social {
		justify-content: center;
	}

	.footer-copyright {
		text-align: center;
	}
}

@media(max-width:575px) {
	.footer-main {
		padding-top: 50px;
	}

	.footer-row {
		row-gap: 35px;
	}

	.footer-logo img {
		max-width: 155px;
	}

	.footer-contact-item {
		gap: 10px;
	}

	.footer-contact-content a {
		max-width: calc(100vw - 110px);
		font-size: 12px;
	}

	.footer-highlight {
		margin-top: 40px;
		padding: 20px;
		border-radius: 15px;
	}

	.footer-highlight-icon {
		width: 46px;
		height: 46px;
		min-width: 46px;
	}

	.footer-highlight-content h3 {
		font-size: 15px;
	}

	.footer-highlight-content p {
		font-size: 12px;
	}

	.footer-discount strong {
		font-size: 15px;
	}

	.footer-discount span {
		white-space: normal;
		line-height: 1.5;
	}

	.footer-bottom {
		margin-top: 40px;
	}

	.footer-copyright p {
		font-size: 11px;
	}
}