@import url('https://fonts.googleapis.com/css2?family=Average&family=Caveat:wght@400..700&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Maven+Pro:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #FEF9F5;
    color: #caa367;
    text-align: center;
}

.no-scroll {
    overflow: hidden;
}

/* HOMEPAGE START */
/* Appointment Start*/
.Profile-container {
    margin: 80px auto;
    max-width: 800px;
    padding: 0 20px;
    text-align: left;
}
.title {
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 800;
    letter-spacing: .5px;
    text-align: justify;
    text-decoration: underline;
}
.appointmentProfile-wrapper {
    background-color: white;
    border-radius: 10px;
    padding: 60px 75px;
    margin: auto;
}
/* Tab buttons */
.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}
.tab-btn {
    flex: 1;
    padding: 10px 0;
    cursor: pointer;
    background: #ccc;
    border: none;
    font-weight: bold;
    transition: background 0.3s;
}
.tab-btn.active {
    background: #f5d8a8;
}
.appointment-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.appointment-card div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}
.appointment-card h4 {
    margin: 0;
    font-size: 1rem;
}
.details {
    font-size: 0.9rem;
    color: #333;
}
.status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-top: 5px;
    text-align: center;
}
.confirmed {
    background-color: #d4edda;
    color: #155724;
}
.pending {
    background-color: #fff3cd;
    color: #856404;
}
.completed {
    background-color: #e2e3e5;
    color: #383d41;
}
.reschedule-btn {
    background: none;
    border: none;
    color: #b68943;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}
/* Appointment End*/

/* Edit Profile Start*/
.Profile-wrapper {
    display: flex;
    padding: 60px 75px;
    border-radius: 10px;
    background-color: white;
    max-width: 800px;
    margin: auto;
    justify-content: space-between;
    gap: 40px;
}
.left-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 205px;
}
.profile-pic {
    position: relative;
    width: 200px;
    height: 200px;
}
.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}
.right-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}
.right-panel label {
    font-size: 14px;
    font-weight: bold;
    text-align: justify;
}
.right-panel input {
    font-size: 14px;
    padding: 13px 14px;
    border-radius: 5px;
    border: 1px solid #caa367;
    color: #caa367;
}
.right-panel .buttons {
    align-self: end;
    margin-top: 20px;
}
button.cancel-btn {
    background: white;
    color: #f5d8a8;
    border: 1px solid #f5d8a8;
}
/* Edit Profile End*/

/* Settings & Privacy Start*/
.settingsPrivacy-wrapper {
    background-color: white;
    border-radius: 10px;
    padding: 50px 75px;
    margin: auto;
}
.settingsPrivacy-section h2 {
    font-size: 20px;
    margin: 0 0 14px;
}
.pwdRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
label {
    display: block;
    font-size: 14px;
    color: var(--muted);
    margin: 6px 0 8px
}
input[type="text"],
input[type="password"],
input[type="email"],
select {
    width: 100%;
    padding: 13px 14px;
    border-radius: 5px;
    border: 1px solid #caa367;
    background: #fff;
    color: #caa367;
    outline: none;
    transition: border .2s, box-shadow .2s;
    font-size: 14px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* 
.btn:active {
    transform: translateY(1px)
} 
*/
.btn.secondary {
    background: #fff;
    border-color: #eee6de;
}
.btn.block {
    width: 100%
}
.settingsPrivacy-section+.settingsPrivacy-section {
    border-top: 1px dashed #eee6de;
    padding-top: 22px;
    margin-top: 22px;
}
.policies {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.policies a {
    text-decoration: none;
    color: #caa367;
}
.switchNotifSettings {
    position: relative;
    width: 44px;
    height: 26px;
    background: #e7e1db;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s;
    border: 1px solid #eee6de;
}
.switchNotifSettings::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: left .2s, box-shadow .2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .12)
}
.switchNotifSettings[data-on="true"] {
    background: #d9c9ba
}
.switchNotifSettings[data-on="true"]::after {
    left: 22px
}
.toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hint {
    font-size: 12px;
    color: var(--muted)
}
.inline {
    display: flex;
    align-items: center;
    gap: 10px
}
.status {
    font-size: 12px
}
.divider {
    height: 1px;
    background: #eee6de;
    margin: 16px 0
}
/* Settings & Privacy End*/

/* Top Bar Start */
/*MODAL LOGIN / MODAL SIGNUP*/
@media (max-width: 425px) {
    
}

.top-bar {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 100px;
    background: #bb955a;
    height: 30px;
    align-items: center;
}
.top-bar a {
    color: white;
    text-decoration: none;
    font-family: "Figtree", sans-serif;
    font-size: 12px;
    font-weight: bold;
    padding: 0 10px;
}
.top-bar a:not(:last-child) {
    border-right: 1px solid white;
}
.top-bar a:hover {
    color: #f1d09a;
    transition: 0.3s;
}
.modalLogin {
  opacity: 0;
  pointer-events: none;
pointer-events: none;
}

.modalLogin.active {
    display: block; /* now shown when active */
    opacity: 1;
    pointer-events: auto;
}

.modal-dialog {
    border-radius: 5px;
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    position: relative;
    margin: 10% auto;
    background-color: #fff;
}

.modal-content {
    background: white;
}
.header {
    padding: 20px;
    background-color: #caa367;
    color: white;
    position: relative;
}
.modal-title {
    font-family: 'Average', serif;
    letter-spacing: 6px;
    text-align: center;
}
.header .btn-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 22px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
}
.modalLogin-body {
    padding: 22px 35px 40px;
}
.myform form {
    display: flex;
    flex-direction: column;
}
form label {
    font-size: 14px;
    padding-bottom: 6px;
    opacity: 90%;
    text-align: left;
}
form a {
    text-decoration: none;
    color: #bb955a;
    font-weight: 600;
}
.header h1 {
    font-weight: 500;
}
.myform input {
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.myform button, button#signupBtn {
    width: 100%;
    padding: 12px;
    background-color: #bb955a;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    margin-top: 17px;
    letter-spacing: 2px;
    cursor: pointer;
}
.text-end {
    text-align: right;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
label.admin-login, label.admin-login input{
    margin: 0;
    padding-bottom: 0;
    font-size: 12px;
    vertical-align: middle;
    margin-right: 5px;
}
p.text-end a {
    color: darkgray;
    font-weight: normal;
}
.text-center {
    font-size: 12px;
    text-align: center;
    margin-top: 12px;
}
/* Top Bar End */

/* Modal Appointment Start */
.modal-container {
    top: 0; left: 0;
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: #FEF9F5;
    visibility: hidden;
    opacity: 0;
}
.modal-container.active {
    visibility: visible;
    opacity: 1;
    z-index: 999;
}
.modal {
    width: 70%;
    height: 90%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    padding: 0 20px 20px;
    text-align: left;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header span {
    cursor: pointer;
    user-select: none;
    padding: 5px;
}
.modal-header span:hover {
    background-color: #f0f0f0;
    padding: 5px;
    border-radius: 5px;
}
.invisible {
    visibility: hidden;
}
.modal-body {
    display: flex;
    flex: 1;
    overflow: hidden;
    position: relative;
}
.section {
    flex: 2;
    padding: 0 20px 20px;
    margin: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    display: none;
}

/* Service Selection Section Start */
.section.active h2{
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}
.section.active {
    display: block;
}
.section h3 {
    padding: 16px 0;
    font-weight: 400;
}
.service-item {
    border: 1px solid;
    border-radius: 5px;
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: border 0.2s;
    background-color: white;
}
.select-btn {
    font-size: 18px;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-item.selected {
    border: 2px solid #fae6c5;
}
.service-info {
    flex: 1;
}
/* Service Selection Section End */

/* Time Selection Section */
.time-section {
    display: none;
}
.t-container {
    display: grid;
}
/* Calendar Start */
.calendar {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid;
    border-radius: 5px;
    padding: 10px 0;
    background-color: white;
}
.month {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    padding: 0 37px;
}
.month span {
    font-size: 19px;
    font-weight: 500;
}
.icons {
    display: flex;
}
.icons span {
    height: 38px;
    width: 38px;
    margin: 0 1px;
    text-align: center;
    color: #878787;
    cursor: pointer;
    border-radius: 8px;
}
.icons span:last-child {
    margin-right: -10px;
}
.icons span:hover {
    background: #f0f0f0;
}
.prev, .next {
    cursor: pointer;
    font-size: 20px;
    padding: 5px;
}
.weekdays {
    display: flex;
    justify-content: flex-start;
    width: 525px;
    font-weight: 500;
}
.weekdays span, .days span {
    width: 71px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
    border-radius: 8px;
}
.days {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 525px;
}
.days span {
    cursor: pointer;
}
.days span:hover {
    background: #f0f0f0;
}
.days span.selected {
    background: #f7f5ff;
    font-weight: bold;
}
/* Calendar End */

/* Time Start*/
.time-container label {
    display: block;
    margin-bottom: 8px;
    color: #b0894c;
}
.select-timeBtn{
    display: flex;
    height: 50px;
    padding: 20px;
    border-radius: 5px;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    border: 1px solid;
    user-select: none;
    background-color: white;
}
.select-timeBtn span.dropdown{
    font-size: 25px;
    transition: 0.3s;
}
.select-menu.active .select-timeBtn span.dropdown{
    transform: rotate(-180deg);
}
.select-menu .options{
    position: relative;
    margin-top: 10px;
    display: none;
}
.select-menu.active .options{
    display: block;
}
.options .option{
    display: flex;
    height: 50px;
    cursor: pointer;
    padding: 0 20px;
    border-radius: 5px;
    align-items: center;
    user-select: none;
}
.options .option:hover{
    background: #f0f0f0;
}
.option i{
    font-size: 25px;
    margin-right: 12px;
}
/* Time End */
/* Time Selection Section End */

/* Review Confirmation Section Start */
.confirm-container {
    display: grid;
}
.payment-method {
    display: flex;
    border: 1px solid;
    border-radius: 5px;
    padding: 15px;
    align-items: center;
    gap: 10px;
    background-color: white;
}
.payment-method img {
    width: 35px;
    border-radius: 5px;
}
/* Review Confirmation Section End */

/* Summary Section Start */
.summary-section {
    flex: 1;
    border: 1px solid;
    border-radius: 5px;
    padding: 20px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
}
.summary-section hr {
    background-color: #ccc;
    margin: 15px 0 10px;
    border: 0;
    height: 1px;
}
.summary-card {
    padding: 0 0 16px;
}
.summary-card h3 {
    margin-bottom: 16px;
}
.summary-total {
    font-weight: 600;
}
.btn-footer button {
    width: 100%;
    background-color: #caa367;
}
/* Summary Section End */
/* Modal Appointment End */

/* Navigation Bar Start */
.navbar {
    background-color: #caa367;
    padding: 15px 50px;
    position: sticky;
    top: 0;
    z-index: 998;
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}
.navflex div a.logo {
    display: flex;
    margin-right: 40px;
}
.navflex {
    display: flex;

}
.nav-links li {
    align-content: center;
}
.logo img {
    width: 76px;
    margin-top: 2px;
}
.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 300;
}
.nav-links a:hover {
    font-weight: 400;
}
.right-bar {
    display: flex;
    align-items: center;
}
input, textarea {
    outline: none;
}
::placeholder {
    color: #caa367;
    opacity: 1;
    font-weight: 300;
}
form input::placeholder, textarea::placeholder {
    color: #957c6c;
}
button {
    background-color: #f5d8a8;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    text-wrap: nowrap;
    cursor: pointer;
    border: none;
}
.right-bar button:hover {
    background-color: #f1d09a;
    transition: 0.4s;
}
/* Profile Dropdown Start */
.profile-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.notif-icon {
    display: inline-flex;
    position: relative;
}
.sub-notif {
    display: none;
    position: absolute;
    right: -42px;
    top: 70px;
    padding: 20px 20px 20px;
    background-color: white;
    min-width: 240px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 10;
}
.notif-content img {
    width: 150px;
}
.navIcon {
    width: 30px;
    margin-left: 12px;
    cursor: pointer;
}
.sub-profile-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 70px;
    padding: 20px 20px 8px;
    background-color: white;
    min-width: 240px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 10;
}
.user-info {
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-info h3 {
    font-weight: 600;
    color: #caa367;
}
.sub-profile-menu hr {
    background-color: #ccc;
    margin: 15px 0 10px;
    border: 0;
    height: 1px;
}
.sub-menu-link {
    display: flex;
    color: #525252;
    align-items: center;
    text-decoration: none;
    margin: 12px 0;
}
.sub-menu-link span {
    font-size: 24px;
    margin-right: 10px;
    width: 35px;
    padding: 6px;
    color: #caa367;
}
.sub-menu-link p {
    font-size: 14px;
}
.sub-profile-menu a {
    color: #957c6c;
}
.sub-profile-menu a:hover {
    font-weight: 600;
    color: #f5d8a8;
}
/* Appointment Count Testing */
.AppCount {
    width: 18px;
    height: 18px;
    background-color: #007bff;
    position: absolute;
    border-radius: 50%;
    margin: 11px;
}
.AppCount p {
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 3px;
}
/* Appointment Count Testing End */
#menu-icon {
    font-size: 30px;
    cursor: pointer;
    z-index: 101;
    display: none;
    color: white;
}
/* Profile Dropdown End */
/* Navigation Bar End */

/* Image Slider Start */
.slider-container {
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
}
.slideImg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.5s ease-in-out;
    pointer-events: none;
}
.slideImg img {
    width: 100%;
    height: 100%;
    filter: brightness(80%);
}
.slideText {
    position: absolute;
    top: 47%;
    left: 50%;
    translate: -50% -50%;
    color: white;
    z-index: 11;
    text-shadow: 1px 1px 6px rgb(198 164 106);
    width: 75%;
    border-radius: 6px;
} 
.slideText div {
    margin-top: 2.45vw;
}
.slideText h2 {
    margin: 0 auto;
    font-family: "DM Serif Display";
    font-size: 3.8vw;
    line-height: 4.5vw;
    letter-spacing: 1px;
    width: 95%;
}
.slideText p {
    margin: .38vw auto 0;
    font-size: 1.1vw;
    width: 45%;
}
.slideText a {
    background-color: #f5d8a8;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    text-wrap: nowrap;
    text-shadow: none;
}
.slideText a:hover {
    background-color: #f1d09a;
    transition: 0.4s;
}
.slideImg label {
    position: absolute;
}
label .nxt {
    right: 0;
}
#i1, #i2, #i3 {
    display: none;
}
.pre, .nxt {
    width: 22%;
    height: 100%;
    position: absolute;
    top: 0;
    background: #cccccc00;
    z-index: 10;
    cursor: pointer;
}
.pre {
    left: 0;
}
.nxt {
    right: 0;
}
#i1:checked ~ #_1stSlide,
#i2:checked ~ #_2ndSlide,
#i3:checked ~ #_3rdSlide {
    /* z-index: 9; */
    z-index: 1;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
/* Image Slider End */

/* Featured Services Start */
.fs-container {
    margin: 30px auto 10vw;
    position: relative;
    width: 72%;
    height: auto;
}
.fs-container h1 {
    font-size: 3vw;
}
header {
    width: 100%;
    height: auto;
    padding: 6vw 0 4vw;
}
header h1 {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
}
.fs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    row-gap: 30px;
}
.fs-boxes {
    background: #fae6c573;
    text-align: center;
    border: 1px solid #caa367;
    border-radius: 5px;
}
.fs-boxes img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
}
.fs-boxes-inner {
    padding: 25px 35px 40px;
}
.fs-boxes-inner h5 {
    font-family: "Caveat";
    font-size: 18px;
    font-weight: 500;
    color: #dab989;
}
.fs-boxes-inner h2 {
    text-align: center;
    margin: 7px 0 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
}
.fs-boxes p {
    font-size: 14px;
    opacity: 88%;
    color: #957c6c;
}
/* Featured Services End */

/* Discount Banner Start */
.off-container {
    width: 100%;
    height: 100%;
    margin: 8vw auto 0px;
}
.off-content {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    background-color: #fae6c5;
}
.off-container img {
    width: 100%;
    height: 30vw;
}
h1.discount {
    font-size: 7vw;
    color: crimson;
    width: 35vw;
}
.subtext {
    text-align: left;
    align-items: center;
    width: 30vw;
    line-height: 2vw;
    padding-top: 0.5vw;
    padding-bottom: 0.4vw;
}
p.season-text {
    font-size: 2vw;
    font-weight: 800;
}
p.offer-text {
    font-size: 3vw;
    font-weight: 900;
    line-height: 2.2vw;
}
/* Discount Banner End */

/* Booknow Banner Start */
.bn-section {
    margin: 16vw auto;
}
.bn-inner-bg {
    background-color: #fae6c573;
    padding: 5vw 0 5.6vw;
}
.bn-container {
    width: 70%;
    margin: 0vw auto;
}
.bn-content {
    display: flex;
    align-items: center;
}
.bn-img {
    width: 100%;
    position: relative;
}
.bn-img img {
    width: 33vw;
    height: 28vw;
    position: absolute;
    translate: -50% -50%;
}
.bn-subtext {
    width: 100%;
    text-align: left;
    padding: 0 3vw;
}
.bn-subtext h3 {
    font-size: 2.5vw;
    line-height: 3.4vw;
    margin-bottom: 0.4vw;
    font-weight: 500;
    font-family: none;
    color: #ad7d32;
}
.bn-subtext p {
    font-size: 1vw;
    margin-bottom: 2.6vw;
    color: #957c6c;
    font-style: italic;
}
.bn-subtext a {
    background-color: #f5d8a8;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-wrap: nowrap;
}
.bn-subtext a:hover {
    background-color: #f1d09a;
    transition: 0.4s;
}
/* Booknow Banner End */
/* HOMEPAGE END */

/* SERVICES SECTION START */
.services-section {
    text-align: center;
    margin: 80px 0;
}
.services-header {
    font-size: 3rem;
    font-weight: 500;
    font-family: "DM Serif Display";
    padding: 30px 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.services-grid-container {
    display: grid;
    width: 72%;
    margin: auto;
    gap: 50px;
}
.service-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.service-section img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.service-section.content {
    text-align: left;
    gap: 20px;
}
.service-section.content p {
    margin-top: 5px;
    margin-bottom: 10px;
}
.service-section.content h2 {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: large;
}
.prices li {
    list-style-position: inside;
}
.book-button {
    margin-top: 20px;
    cursor: pointer;
    width: 100%;
}
/* SERVICES SECTION END */

/* PROMO SECTION START */
.promo-container {
    margin: 80px auto;
    width: 75%;
}
.promo-wrapper {
    margin: auto;
    padding: 30px 0;
    max-width: 100%;
}
.row {
    display: grid;
    grid-template-rows: 1fr;
}
.promo-package {
    text-align: center;
    margin-bottom: 50px;
}
.promo-header {
    margin: 0 auto 55px;
}
.promo-package h1 {
    font-family: "DM Serif Display";
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: #caa367;
}
.promo-package h3 {
    text-align: left;
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 500;
    color: #caa367;
}
.promo-package p {
    font-size: 18px;
    font-weight: 300;
    color: #957c6c;
}
.promo-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}
.promo-box {
    height: auto;
    padding: 20px;
    border-radius: 5px;
    display: grid;
    border: 1px solid #caa367;
    background-color: #fae6c573;
}
.promo-content {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}
.promo-text {
    text-align: left;
    display: grid;
    gap: 12px;
}
.promo-text p {
    font-size: 16px;
    font-weight: 600;
}
h4 {
    font-weight: 600;
    line-height: 22px;
    color: #caa367;
}
p.product-description, p span {
    font-size: 12px;
    font-weight: 400;
}
.promo-button button{
    padding: 6px 10px;
    margin-left: 8px;
    border: none;
    border-radius: 5px;
    background-color: #caa367;
    color: white;
    cursor: pointer;
}
.promo-button button:hover {
    background-color: #c99951;
    transition: 0.4s;
}
/* PROMO SECTION END */

/* CONTACT SECTION START */
.c-container {
    margin: 80px auto;
    width: 65%;
}
.c-wrapper {
    margin: auto;
    max-width: 800px;
    padding: 30px 0;
    display: grid;
    grid-template-rows: 1fr;
}
.row-header {
    padding: 0 0 70px;
}
.row-header h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "DM Serif Display";
    color: #caa367;
}
.row-header p {
    font-size: 18px;
    font-weight: 300;
    color: #957c6c;
}
.column {
    display: grid;
    grid-template-columns: 2fr 1fr;
}
.side-info {
    text-align: left;
    margin: 10px 45px;
    text-wrap: nowrap;
}
.side-info h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #caa367;
}
.side-info p {
    margin-bottom: 4px;
    color: #957c6c;
}
form {
    max-width: 700px;
    margin: auto;
}
.cf-input {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 1px solid #caa367;
    border-radius: 5px;
    font-size: 14px;
    color: #caa367;
}
.input-row {
    display: flex;
    gap: 20px;
}
.input-row input {
    flex: 1;
}  
textarea {
    height: 200px;
    resize: vertical;
}
.btn-msg {
    text-align: right;
    margin-top: 15px;
}
.send-msg {
    background-color: #caa367;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    text-wrap: nowrap;
    font-size: 18px;
    font-weight: unset;
}
.send-msg:hover {
    background-color: #c99951;
    transition: 0.4s;
}
/* CONTACT SECTION END */

/* Footer Start */
footer {
    background: #caa367;
    padding: 40px 50px;
}
.footer-wrap {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    color: whitesmoke;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-contentF {
    width: 30%;
    font-size: 14px;
    padding: 20px 0;
    text-align: left;
}
.footer-contentF img {
    width: 180px;
    margin-top: -24px;
}
.social-icons a {
  margin: 0 8px;
  font-size: 18px;
  color: whitesmoke;
  text-decoration: none;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #f5d8a8;
}
.footer-content {
    width: 27%;
    font-size: 14px;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
    color: white;
    text-wrap: nowrap;
}
.footer-content a {
    text-decoration: none;
    display: inline-block;
    padding: 6px 0;
    font-size: 14px;
    color: white;
}
.footer-content p {
    padding: 6px 0;
}
.small-link {
    margin: auto;
    max-width: 1200px;
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 18px 20px;
    border-top: 1px solid #fae6c5;
}
.small-link a {
    color: white;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    margin-left: 22px;
}
/* Footer End */

/* ==================================== */
/* ===== RESPONSIVE DESIGN STYLES ===== */
/* HOMEPAGE START */
/* Modal Appointment Start */
/* Service Selection */
@media (max-width: 768px) {
    .modal {
        width: 100%;
        height: 100%;
        padding: 20px 20px;
    }
    .modal-body {
        flex-direction: column;
        font-size: small;
    }
    .section {
        padding: 0;
    }
}
/* Time Selection */
@media (max-width: 425px) {
    .calendar {
        max-width: fit-content;
    }
    .month {
        padding: 0 14px;
    }
    .month span{
        font-size: smaller;
    }
    .weekdays {
        justify-content: center;
        width: 348px;
    }
    .weekdays span, .days span {
        width: 47px;
        height: 30px;
        margin: 1px;
    }
    .days {
        width: 348px;
        padding-left: 3px;
    }
    .section.active{
        margin: 10px;
    }
    .summary-section{
        margin: 10px;
    }
    .section.active h2 {
        font-size: large;
    }
}
@media (max-width: 375px) {
    .month {
        padding: 0 8px;
    }
    .weekdays {
        width: 294px;
    }
    .days {
        width: 294px;
        padding-left: 0;
    }
    .weekdays span, .days span {
        width: 40px;
    }
}

/* Modal Appointment End */


/* Navigation Bar Start */
@media (max-width:1024px) {
    #menu-icon {
        display: block;
    }
    .navbar .nav-links {
        position: absolute;
        top: -400%;
        right: 12%;
        width: 140px;
        background: rgb(255, 255, 255);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-radius: 8px;
        z-index: 10;
        gap: 0;
        opacity: 0;
    }
    .nav-links li a {
        display: block;
        margin: 10px 0;
        padding: 0 25px;
        color: #caa367;
    }
    .navbar .nav-links.open {
        top: 116%;
        right: 50px;
        padding: 6px;
        opacity: 1;
        transition: opacity 0.15s cubic-bezier(0.46, 0.03, 0.52, 0.96);
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }
    .navflex div a.logo {
        margin-right: 0;
    }
    .sub-notif {
        right: -82px;
    }
}
@media (max-width:768px) {
    .right-bar input {
        display: none;
    }
}
@media (max-width:425px) {
    .navflex div a.logo {
        padding: 0;
        margin: 0;
    }
    .book-now button {
        display: none;
    }
}
/* Navigation Bar End */

/* Image Slider Start */
@media (max-width: 425px) {
    .slider-container {
        width: 100%;
        margin-top: 0;
        height: 64vw;
    }
    .slideText {
        padding: 0;
    }
    .slideText h2 {
        font-size: 23px;
        line-height: 25px;
        margin: 0 auto 5px;
        width: 97%;
    }
    .slideText p {
        margin: 0 auto;
        font-size: 12px;
        width: 85%;
    }
    .slideText p.slide1 {
        display: none;
    }
    .slideText a {
        font-weight: 400;
    }
    .slideText div {
        margin-top: 22px;
    }
    footer {
        padding: 40px 30px;
    }
}
@media (max-width: 375px) {
    .slideText {
        width: 85%;
    }
}
/* Image Slider End */

/* Featured Services Start */
@media (max-width:1024px) {
    .fs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width:1024px) {
    .fs-boxes.last {
        grid-column: 2/3;
    }
}
@media (max-width:480px) {
    .fs-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width:768px) {
    .fs-boxes-inner h2 {
        font-size: 18px;
        font-weight: 600;
    }
}
@media (max-width:425px) {
    .fs-container h1 {
        font-size: 6vw;
    }
}
/* Featured Services End */

/* Booknow Banner Start */
@media (max-width: 768px) {
    .bn-subtext p {
        margin-bottom: 26px;
        font-size: 13px;
    }
    .bn-subtext h3 {
        font-size: 25px;
        padding: 8px 0;
        line-height: normal;
    }
}
@media (max-width: 425px) {
    .bn-inner-bg {
        padding: 9vw 0 10.6vw;
    }
    .bn-content {
        display: grid;
        grid-template-rows: 1fr;
    }
    .bn-img img {
        width: 100%;
        height: 100%;
        position: unset;
        translate: unset;
    }
    .bn-subtext h3 {
        font-size: 22px;
        padding: 8px 0;
        line-height: normal;
        margin-bottom: 0.4vw;
        font-weight: 500;
        font-family: none;
        color: #ad7d32;
    }
    .bn-subtext p {
        margin-bottom: 26px;
        font-size: 3vw;
        color: #957c6c;
        font-style: italic;
    }
    .bn-subtext {
        padding: 0;
    }
}
/* Booknow Banner End */
/* Appointment Start*/
@media (max-width: 425px){
    .appointmentProfile-wrapper {
        padding: 25px 20px;
    }
}
/* Appointment End*/
/* Settings & Privacy Start */
@media (max-width:700px) {
    .pwdRow {
        grid-template-columns: 1fr
    }
}
@media (max-width: 425px) {
    .toggle{
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .hint {
        display: none;
    }
    .settingsPrivacy-wrapper {
        padding: 25px 20px;
    }
    .top-bar {
        padding-right: 40px;
    }
    .navIcon {
        width: 23px;
    }
    #menu-icon {
        font-size: 25px;
    }
}
/* Settings & Privacy End */
/* HOMEPAGE END */

/* SERVICES SECTION START */
@media (max-width: 768px) {
    .service-wrapper {
        grid-template-columns: 1fr;
        background-color: white;
        padding: 20px;
        border-radius: 8px;
        gap: 10px;
    }
    .service-section img {
        order: 1;
    }
    .service-section.content {
        order: 2;
    }
}
@media (max-width: 425px) {
    .services-header {
        font-size: 2rem;
    }
    .services-grid-container {
        width: 80%;
    }
}
/* SERVICES SECTION END */

/* PROMO SECTION START */
@media (min-width: 1440px) {
    .promo-grid-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .promo-grid-container {
        grid-template-columns: 1fr;
    }
}
/* PROMO SECTION END */

/* CONTACT SECTION START */
@media (max-width: 768px) {
    .column {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .side-info {
        margin: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
@media (max-width: 425px) {
    .row-header {
        padding: 0 0 40px;
    }
    .row-header h1 {
        font-size: 2rem;
    }
    .row-header p {
        font-size: 14px;
    }
    .side-info {
        margin: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .side-info p {
        font-size: 14px;
    }
    .cf-input {
        padding: 12px;
        margin: 6px 0;
    }
    .c-container {
        width: 78%;
    }
    .fs-container {
        width: 80%;
    }
    .bn-container {
        width: 75%;
    }
    .Profile-wrapper {
        flex-direction: column;
        padding: 25px 20px;
        gap: 25px;
    }
    .left-panel {
        width: auto;
    }
    .profile-pic img {
        border-radius: 100%;
    }
    .sub-notif {
        right: -70px;
    }
}
@media (max-width: 375px) {
    .sub-notif {
        right: -77px;
    }
    .sub-profile-menu {
        right: -7px;
    }
}
@media (max-width: 320px) {
    .sub-notif {
        right: -82px;
    }
    .sub-profile-menu {
        right: -12px;
    }
}
/* CONTACT SECTION END */

/* Footer Start */
@media (max-width:768px) {
    .footer-wrap {
        flex-direction: column;
        align-items: center;
    }
    .footer-contentF, .footer-content {
        width: 90%;
        text-align: center;
        align-items: center;
    }
}
/* Footer End */
/*Chatbot*/
.chatbot-container {
  background: #fff;
  border: 1px solid;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  max-width: 500px;
  margin-top: 10px;
}

.chatbot-messages {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 10px;
  height: 250px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.user-msg, .bot-msg {
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 14px;
}

.user-msg {
  text-align: right;
  color: #2c2c2c;
}

.bot-msg {
  text-align: left;
  color: #333;
}

.chat-input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

#chatInput {
  flex: 1;
  padding: 10px;
  border: 1px solid;
  border-radius: 10px;
  outline: none;
}

.send-btn {
  background: #CAA367;
  border: none;
  color: white;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.send-btn:hover {
  background: #b38d55;
}




.modal-content .header {
    display: flex;
    justify-content: center;
    align-items: center;
}
.week-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; margin-top: 20px; }
.day-card { background: #f4f4f4; border-radius: 8px; padding: 15px; text-align: center; cursor: pointer; transition: 0.3s; }
.day-card:hover { background: #dfe9ff; }
ul { margin: 0; padding: 0; text-align: none; }
li { cursor: pointer; margin-bottom: 5px; list-style: none; }
table { width: 100%; border-collapse: collapse; margin-top: 10px; }
th, td { border: 1px solid #ccc; padding: 8px; text-align: center; }
button.week-btn { margin-right: 6px; margin-bottom: 6px; padding: 6px 10px; }
.staff-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 15px; }
.staff-card { background: #f4f4f4; padding: 10px; text-align: center; border-radius: 6px; cursor: pointer; transition: 0.2s; }
.staff-card:hover { background: #dfe9ff; }
.week-btn.selected { background-color: #4CAF50; color: white; }
.selected-day { background-color: #4CAF50 !important; color: #fff !important; border: 2px solid orange !important; }
#passwordRules li {
  transition: color 0.2s ease-in-out;
  font-size: 12px;
  margin: 2px 0;
  text-decoration: none;
  color: #caa367;
  pointer-events: none;
}
.password-wrapper {
    position: relative; /* needed for absolute positioning inside */
    display: inline-block;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px; /* make room for the eye */
    box-sizing: border-box;
}

.password-wrapper .togglePassword {
    position: absolute;
    top: 50%; /* vertically centered */
    right: 10px; /* distance from the right edge */
    transform: translateY(-50%); /* vertical centering */
    cursor: pointer;
    z-index: 2; /* make sure it’s above other elements */
}
/* Input text color */
.password-wrapper input {
    width: 100%;
    padding-right: 40px; /* space for eye icon */
    box-sizing: border-box;
    color: black; /* input text */
    border: 1px solid #ccc; /* optional: keep border visible */
    background-color: #fff; /* optional: white background */
}
/* All input text and placeholders in signup form */
#signupForm input {
    width: 100%;
    padding-right: 40px; /* for password fields, ignored for normal inputs */
    box-sizing: border-box;
    color: black; /* text color */
    border: 1px solid #ccc; /* optional border */
    background-color: #fff; /* optional background */
}

/* Placeholder text */
#signupForm input::placeholder {
    color: black;
    opacity: 0.6; /* slightly faded */
}
 .modalLogin {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modalLogin .modal-dialog {
            background: white;
            padding: 20px;
            border-radius: 5px;
            max-width: 600px;
            width: 100%;
        }

        .no-scroll {
            overflow: hidden;
        }

        /* Password rules */
        #passwordRules {
            list-style-type: none;
            padding-left: 0;
        }

        #passwordRules li {
            color: red;
        }

        #passwordRules li.pass-checked {
            color: green;
        }

        #allRulesMet {
            color: green;
            font-weight: 600;
            font-size: 12px;
        }

        .togglePassword {
            cursor: pointer;
        }
/* Modal styles */
.modalLogin {
    display: none; /* Hide the modal by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-dialog {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    max-width: 100%;
}

.modal-content {
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .btn-close {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
}

/* Other modal styles */
.modal-title {
    font-size: 1.5em;
}

.password-wrapper {
    position: relative;
}

.togglePassword {
    position: absolute;
    top: 50%;
    right: 10px;
    cursor: pointer;
    transform: translateY(-50%);
}

/* Optional: Styling for password rules */
.password-rules {
    margin-top: 10px;
    font-size: 0.9em;
}

.password-rules li {
    margin: 4px 0;
}

#allRulesMet {
    margin-top: 10px;
    color: green;
    font-weight: bold;
}
/* Outer signup modal overlay */
#signupform.modalLogin {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow-y: auto; /* ✅ allow full modal to scroll */
    overflow-x: hidden;
    padding: 40px 0;  /* adds space above/below when scrolling */
    z-index: 10000; 
}

/* Modal dialog (centered) */
#signupform .modal-dialog {
    position: relative;
    margin: 0 auto;
    width: 90%;
    max-width: 500px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Modal content layout */
#signupform .modal-content {
    display: flex;
    flex-direction: column;
}

/* Header (unchanged color) */
#signupform .header {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Body (content area) */
#signupform .modalLogin-body {
    padding: 20px;
}

/* Optional: nice scrollbar for the whole modal */
#signupform.modalLogin::-webkit-scrollbar {
    width: 8px;
}
#signupform.modalLogin::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}
#signupform.modalLogin:hover::-webkit-scrollbar-thumb {
    background-color: #999;
}
/* Terms modal — must be ABOVE signupform */
#termsModal {
    z-index: 11000; /* ✅ higher so it appears above signupform */
    position: fixed; /* ensure it overlays everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: none; /* hidden by default */
}
.feedback-text {
    font-size: 12px;
    margin-top: 3px;
    display: block;
}
.feedback-text.success { color: green; }
.feedback-text.error { color: red; }
/* FAQ Section Styling */
.faq-container {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  color: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #a16e56; /* Match your spa color */
  font-size: 1.8rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 15px;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* enough for most answers */
  padding: 10px 15px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.5;
  color: #555;
}
