@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;
}
.password-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.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: 60px 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 */
.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 {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.modalLogin.active {
    display: flex;
}
.modal-dialog {
    border-radius: 5px;
    width: 90%;
    max-width: 400px;
    overflow: hidden;
}
.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: 30px 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 {
    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 {
    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;
    gap: 20px;
}
/* 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;
    gap: 20px;
}
.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;
    transform: translateX(1%);  
    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;
}
.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 */
/* 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%;
        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 a {
        font-weight: 400;
    }
    .slideText div {
        margin-top: 22px;
    }
}
/* 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;
    }
}
/* Settings & Privacy End */
/* HOMEPAGE END */

/* SERVICES SECTION START */
@media (max-width: 768px) {
    .service-wrapper {
        grid-template-columns: 1fr;
    }
    .service-section img {
        order: 1;
    }
    .service-section.content {
        order: 2;
    }
}
@media (max-width: 425px) {
    .services-header {
        font-size: 2rem;
    }
}
/* 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;
    }
}
/* 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 */