/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --gold: #B59440;
    --dark: #2C2B29;
    --cream: #F5F0E6;
    --white: #ffffff;
    --text-muted: #D1D1D1;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: #f5f0e6;
    margin: 0;
}

h1, h2, h3, h4, h5, .logo {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0 10px;
    border-bottom: 1px solid #ffff;
}

.logo {
    font-size: 32px;
    color: var(--white);
    font-weight: 500;
}

#menu {
    display: flex;
    justify-content: center;
    gap: 80px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu li a {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: 'Montserrat';
}

#menu li a:hover {
    color: var(--gold);
}
a:hover {
    color: #b59440;
}
.btn-contact, .btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    color: var(--dark);
    padding: 10px 10px 10px 35px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: unset;
    transition: all 0.3s ease-in-out;
}
.btn-contact:hover, .btn-reserve:hover {
    color: var(--gold);
    transform: scale(1.05);
    background: var(--dark);
}
.arrow-circle {
    width: 40px;
    height: 40px;
    /* background: var(--gold); */
    /* color: var(--white); */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.btn-contact .arrow-circle {
    /* background: var(--gold); */
}

/* Banner */
.banner {
    position: relative;
    background: #2c2b2903 url(../images/banner-bg.png) no-repeat;
    /* min-height: 100vh; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    color: var(--white);
    padding-top: 0;
    /* overflow: hidden; */
    background-size: cover;
    background-size: 100% 100%;
    height: 730px;
    padding-top: 7px;
}

.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.5); */
}

.slide-item {
    padding-bottom: 200px;
    padding-top: 100px;
}

.banner-txt {
    position: relative;
    z-index: 10;
    margin-bottom: 200px;
}

.subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.subtitle .line {
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.subtitle h6, .subtitle h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
}

.subtitle h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    letter-spacing: 0px;
    font-weight: 400;
    text-transform: capitalize;
}

.banner-txt h1 {
    font-size: 43px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}

.banner-txt h1 span.italic {
    /* font-style: italic; */
    font-weight: 400;
}

.banner-txt h1 span.gold {
    color: var(--gold);
}

.banner-txt p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
}

.btn-reserve.dark {
    background: var(--dark);
    color: var(--white);
}

/* Right Side Banner */
.banner-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.banner-img-circle {
    width: 814px;
    height: 788px;
    /* border-radius: 50%; */
    overflow: hidden;
    /* border: 30px solid var(--white); */
    position: relative;
    z-index: 41;
    margin-right: -56px;
    margin-top: 55px;
}

.banner-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease-in-out;
}

.banner-img-circle:hover img {
    transform: scale(1.1);
}

.badge-gold {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 230px;
    background: var(--gold);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 42;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    color: var(--white);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-content .number {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 60px;
}

.badge-content .dashed-line {
    width: 1px;
    height: 60px;
    border-left: 1px dashed rgba(255,255,255,0.6);
    margin: 20px 0;
    display: none;
}

.badge-content .text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.5;
    text-transform: uppercase;
}

/* Slider Controls Bar */
.slider-controls-bar {
    position: absolute;
    bottom: -115px;
    left: 0;
    width: 56%;
    background: #ede7dd;
    padding: 35px 60px;
    z-index: 0;
    /* border-radius: 80px 0 0 0; */
}

.controls-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.prev-arrow, .next-arrow {
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.prev-arrow img, .next-arrow img {
    width: 45px;
}

.prev-arrow:hover, .next-arrow:hover {
    opacity: 0.7;
}

.arrow-circle img {
    width: 40px;
}

.paging-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Playfair Display', serif;
}

.paging-info .current, .paging-info .total {
    font-size: 24px;
    color: var(--dark);
}

.paging-info .total {
    color: var(--gold);
    opacity: 0.5;
}

.progress-line {
    width: 350px;
    height: 1px;
    background: rgba(181, 148, 64, 0.2);
    position: relative;
}

.active-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 15%;
    background: var(--gold);
}

/* About Section */
.about {
    padding: 320px 0 100px;
    /* background-color: var(--cream); */
}

.about-card {
    background: transparent;
    overflow: visible;
    display: flex;
}

.about-card .row {
    width: 100%;
}

.abt-img-box {
    height: 100%;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.abt-img-box img {
    width: 129%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    transition: transform 0.6s ease-in-out;
}

.abt-img-box:hover img {
    transform: scale(1.05);
}

.abt-txt-wrapper {
    position: relative;
    height: 100%;
}

.abt-gold-offset {
    position: absolute;
    top: -12px;
    right: -20px;
    bottom: -20px;
    background: var(--gold);
    border-radius: 20px;
    z-index: 1;
    width: 50%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.abt-txt-box {
    position: relative;
    background: var(--dark);
    padding: 60px 30px;
    border-radius: 20px;
    z-index: 2;
    height: 100%;
    color: var(--white);
}

.subtitle.white h3 {
    color: var(--white);
    font-size: 55px;
    margin: 0;
}

.abt-txt-box h5 {
    font-size: 21px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.abt-txt-box p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
}

/* System Section */
.system-sec {
    padding: 210px 0 0px;
}

.system-txt h2 {
    font-size: 55px;
    margin-bottom: 30px;
    color: var(--dark);
}

.system-txt p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.system-txt h6 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.check-list li i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 5px;
}

.check-list li span {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid #EAE1C8;
    padding-bottom: 10px;
    flex: 1;
}

.check-list.white li span {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}

.system-img {
    overflow: hidden;
    border-radius: 10px;
}

.system-img img {
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    width: 100%;
    height: 655px;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
}

.system-img:hover img {
    transform: scale(1.05);
}

.system-txt .btn-contact {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Pricing Section */
.pricing-sec {
    padding: 100px 0;
}

.pricing-card-main {
    background: var(--dark);
    border-radius: 10px;
    padding: 40px 25px;
    color: var(--white);
}

.pricing-txt h2 {
    font-size: 55px;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 300;
}

.pricing-txt p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.expect-card {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    color: var(--dark);
}

.expect-card h3 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: left;
}

.expect-list {
    margin-bottom: 40px;
}

.expect-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #EEE;
}

.expect-item .label {
    font-size: 14px;
    color: #666;
}

.expect-item .val {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.expect-btn .btn-contact {
    /* width: 100%; */
    justify-content: space-between;
    padding: 15px 15px 15px 30px;
}

/* What We Treat */
.treat-sec {
    padding: 0px 0 0px;
    /* background: var(--white); */
    position: relative;
    z-index: 999;
}

.treat-head h2 {
    font-size: 55px;
    margin-bottom: 20px;
    color: var(--dark);
}

.treat-head p {
    font-size: 14px;
    color: #666;
    margin-bottom: 60px;
}

.treat-card {
    text-align: center;
    transition: 0.4s;
    position: relative;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 130px;
}

.treat-img img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
}

.treat-info h4 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

.treat-hover-box {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    opacity: 0;
}

.treat-hover-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.treat-card:hover {
    background: #F9F7F2;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    margin-bottom: -20px;
}

.treat-card:hover .treat-hover-box {
    max-height: 400px;
    opacity: 1;
    margin-top: 20px;
}

/* Reserve Your Spot */
.reserve-sec {
    padding: 120px 0 0px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    top: -100px;
    margin-bottom: -100px;
    height: 850px;
}

.reserve-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.7); */
}

.reserve-sec .container {
    position: relative;
    z-index: 1;
}

.reserve-txt h2 {
    font-size: 55px;
    margin-bottom: 20px;
}

.reserve-txt p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.reserve-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.reserve-stats .num {
    font-size: 60px;
    font-family: 'Playfair Display', serif;
}

.reserve-stats .divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
}

.reserve-stats .stat-txt {
    text-align: left;
}

.reserve-stats .stat-txt h6 {
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}

.reserve-stats .stat-txt p {
    font-size: 12px;
    margin: 0;
    color: var(--gold);
}

.reserve-form-card {
    max-width: 1190px;
    margin: 0 auto;
}

.gold-form-box {
    background: var(--gold);
    padding: 50px;
    border-radius: 20px;
    position: relative;
    border: 15px solid var(--white);
}

.enrollment-tag {
    display: block;
    text-align: center;
    font-size: 12px;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.gold-form-box .form-control {
    background: var(--white);
    border: none;
    height: 55px;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
}

.gold-form-box textarea.form-control {
    height: 150px;
}

}

/* Blog Section */
.blog-sec {
    padding: 100px 0;
}

.blog-head h2 {
    font-size: 55px;
    margin-bottom: 20px;
}

.blog-head p {
    font-size: 14px;
    color: #666;
    margin-bottom: 60px;
}

.blog-card {
    position: relative;
    margin-bottom: 50px;
    transition: transform 0.4s ease-in-out;
}

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

.blog-img {
    overflow: hidden;
    border-radius: 15px;
}

.blog-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.6s ease-in-out;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-txt-box {
    background: #f5f0e8;
    padding: 35px;
    border-radius: 0;
    width: 72%;
    margin-top: -100px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.blog-card.small .blog-img img {
    height: 300px;
}

.blog-card.small .blog-txt-box {
    width: 80%;
    padding: 25px;
    margin-top: -60px;
}

.blog-txt-box h6 {
    font-size: 14px;
    color: var(--dark);
    text-transform: capitalize;
    margin-bottom: 10px;
    font-family: 'Playfair Display';
}

.blog-txt-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.blog-txt-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-admin {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-admin .avatar {
    width: 40px;
    height: 40px;
    color: #b8953a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 1px solid #b0ada7;
}

/* Footer Section */
footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 100px;
}

.footer-main {
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 25px;
}

.footer-main .row > [class*="col-"] {
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-left: 40px;
    padding-right: 40px;
}

.footer-main .row > [class*="col-"]:last-child {
    border-right: none;
}

.footer-main .row > [class*="col-"]:first-child {
    padding-left: 15px;
}

.footer-col p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social h5 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.social-icons {
    display: flex;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.social-icons li a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: 0.3s;
    font-size: 14px;
}

.social-icons li.active a, .social-icons li a:hover {
    background: var(--white);
    color: var(--dark);
}

.footer-head {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links, .contact-list {
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.contact-list li i {
    color: var(--white);
    font-size: 16px;
    margin-top: 3px;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 50px;
    color: var(--white);
    font-size: 12px;
    margin-bottom: 20px;
    padding: 10px 20px;
}

.btn-subscribe {
    background: var(--cream);
    color: var(--dark);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    width: 100%;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-subscribe:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .banner-txt h1 { font-size: 60px; }
    .banner-img-circle { width: 500px; height: 500px; }
}

@media (max-width: 991px) {
    .banner-txt h1 { font-size: 50px; }
    .banner-img-circle { width: 400px; height: 400px; }
    .badge-gold { width: 140px; height: 140px; }
    .treat-card { margin-bottom: 30px; }
}

@media (max-width: 767px) {
    .banner-txt { text-align: center; margin-bottom: 50px; }
    .subtitle { justify-content: center; }
    .banner-img-circle { width: 300px; height: 300px; }
    .banner { padding-top: 150px; }
    .logo { font-size: 24px; }
    .btn-contact { padding: 5px 5px 5px 15px; }
    .arrow-circle { width: 30px; height: 30px; font-size: 12px; }
    .progress-line { width: 100px; }
    .about-card { flex-direction: column; }
    .abt-img-box img { border-radius: 20px 20px 0 0; width: 100%; }
    .abt-gold-offset { display: none; }
    .abt-txt-box { border-radius: 0 0 20px 20px; padding: 40px 20px; }
    .treat-head h2, .reserve-txt h2 { font-size: 36px; }
    .reserve-stats { flex-direction: column; gap: 10px; }
    .reserve-stats .divider { display: none; }
    .reserve-stats .stat-txt { text-align: center; }
    .gold-form-box { padding: 30px 15px; border-width: 10px; }
    .form-btn-row .btn-contact { position: relative; bottom: 0; margin-top: 20px; }
}
.container-fluid {
    padding: 0 4%;
}
.banner-txt h1 br {
    font-size: 59px;
    line-height: 1;
}
.banner-txt h2 {
    font-size: 59px;
    line-height: 1;
}

span.gold {
    color: #b8953a;
}