/*=========================
Google Fonts
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.7;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*=========================
Header
=========================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    color:#fff;
    font-weight:700;
}

.logo span{
    color:#d4af37;
}

nav ul{
    display:flex;
    align-items:center;
    gap:28px;
}

nav ul li{
    position:relative;
}

nav ul li a{
    color:#fff;
    font-size:15px;
    transition:.3s;
}

nav ul li a:hover{
    color:#d4af37;
}

/*=========================
Dropdown
=========================*/

.dropdown-menu{
    position:absolute;
    top:45px;
    left:0;
    background:#111;
    min-width:260px;
    display:none;
    border-radius:8px;
    overflow:hidden;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu li a{
    display:block;
    padding:14px 18px;
}

.dropdown-menu li a:hover{
    background:#d4af37;
    color:#000;
}

/*=========================
Buttons
=========================*/

.book-btn,
.btn-gold{
    background:#d4af37;
    color:#000;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
    transition:.4s;
}

.book-btn:hover,
.btn-gold:hover{
    background:#f2d77c;
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    transition:.4s;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
}

/*=========================
Hero
=========================*/

.hero{
    width:100%;
    height:100vh;
    background:url("../images/hero1.png") center center/cover no-repeat;
    position:relative;
    transition:background-image 1s ease-in-out;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.hero .container{
    position:relative;
    z-index:2;
}
.hero{
    animation:zoomHero 5s linear infinite;
}

@keyframes zoomHero{

    0%{
        background-size:100%;
    }

    100%{
        background-size:110%;
    }

}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:850px;
    padding:20px;
}

.hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:68px;
    margin-bottom:15px;
}

.hero-content h2{
    color:#d4af37;
    font-size:28px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    margin-bottom:35px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/*=========================
Menu Toggle
=========================*/

.menu-toggle{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}
/*=========================
About Section
=========================*/

.about{
    padding:100px 0;
    background:#fff;
}

.about .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about span{
    color:#c9a227;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
}

.about h2{
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    margin:15px 0 25px;
    color:#111;
}

.about p{
    margin-bottom:20px;
    color:#555;
}

.about-image img{
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

/*=========================
Features
=========================*/

.features{
    background:#111;
    padding:90px 0;
}

.features .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{
    background:#1c1c1c;
    text-align:center;
    padding:40px 30px;
    border-radius:15px;
    transition:.4s;
}

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

.feature-card i{
    font-size:42px;
    color:#d4af37;
    margin-bottom:20px;
}

.feature-card h3{
    color:#fff;
    margin-bottom:15px;
}

.feature-card p{
    color:#ccc;
}
/*=========================
Services
=========================*/

.services{

padding:100px 0;

background:#faf7f2;

}

.section-title{

text-align:center;

max-width:700px;

margin:auto auto 70px;

}

.section-title span{

color:#c9a227;

letter-spacing:2px;

font-weight:600;

}

.section-title h2{

font-family:'Cormorant Garamond',serif;

font-size:48px;

margin:15px 0;

color:#111;

}

.section-title p{

color:#666;

}

.services-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

}

.service-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.service-card:hover{

transform:translateY(-10px);

}

.service-card img{

height:280px;

object-fit:cover;

}

.service-content{

padding:30px;

}

.service-content h3{

font-family:'Cormorant Garamond',serif;

font-size:30px;

margin-bottom:15px;

}

.service-content p{

color:#666;

margin-bottom:20px;

}

.service-content a{

color:#c9a227;

font-weight:600;

}
/*=========================
Founder
=========================*/

.founder{

padding:110px 0;

background:#fff;

}

.founder .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.founder-image img{

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.founder-content span{

color:#c9a227;

font-weight:600;

letter-spacing:2px;

}

.founder-content h2{

font-family:'Cormorant Garamond',serif;

font-size:50px;

margin:15px 0;

}

.founder-content h4{

font-size:22px;

margin-bottom:10px;

}

.founder-content h5{

color:#777;

margin-bottom:30px;

font-weight:500;

}

.founder-content p{

margin-bottom:20px;

color:#555;

}
/*=========================
Booking Process
=========================*/

.booking-process{

padding:100px 0;

background:#faf7f2;

}

.process-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.process-card{

background:#fff;

padding:40px 30px;

border-radius:18px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.process-card:hover{

transform:translateY(-8px);

}

.number{

width:65px;

height:65px;

background:#d4af37;

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:26px;

font-weight:bold;

margin:auto auto 20px;

}

/*=========================
Opening Hours
=========================*/

.hours{

padding:100px 0;

background:#fff;

}

.hours .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.hours-image img{

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.hours-content h2{

font-family:'Cormorant Garamond',serif;

font-size:48px;

margin-bottom:30px;

}

.hours-content ul{

margin-bottom:30px;

}

.hours-content ul li{

display:flex;

justify-content:space-between;

padding:15px 0;

border-bottom:1px solid #ddd;

}
/*=========================
Testimonials
=========================*/

.testimonials{

padding:100px 0;

background:#faf7f2;

}

.testimonial-card{

max-width:800px;

margin:50px auto 0;

background:#fff;

padding:50px;

text-align:center;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.testimonial-card i{

font-size:40px;

color:#d4af37;

margin-bottom:25px;

}

/*=========================
CTA
=========================*/

.cta{

padding:100px 20px;

background:#111;

text-align:center;

color:#fff;

}

.cta h2{

font-family:'Cormorant Garamond',serif;

font-size:48px;

margin-bottom:20px;

}

.cta p{

margin-bottom:35px;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

/*=========================
Footer
=========================*/

footer{

background:#000;

color:#ddd;

padding:70px 0 20px;

}

.footer-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:40px;

}

footer h3,
footer h4{

color:#d4af37;

margin-bottom:20px;

}

footer ul li{

margin-bottom:12px;

}

footer ul li a{

color:#ddd;

}

footer ul li a:hover{

color:#d4af37;

}

.social-icons{

display:flex;

gap:15px;

}

.social-icons a{

width:45px;

height:45px;

background:#222;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

transition:.3s;

}

.social-icons a:hover{

background:#d4af37;

color:#000;

}

.copyright{

border-top:1px solid #333;

margin-top:50px;

padding-top:20px;

text-align:center;

font-size:14px;

}
/*=========================
Sticky Header
=========================*/

header.sticky{

background:#000;

padding:0;

box-shadow:0 5px 20px rgba(0,0,0,.2);

}

/*=========================
WhatsApp
=========================*/

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:30px;

z-index:999;

box-shadow:0 10px 25px rgba(0,0,0,.3);

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

}

/*=========================
Back To Top
=========================*/

.top-btn{

position:fixed;

left:25px;

bottom:25px;

width:55px;

height:55px;

background:#d4af37;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.3s;

z-index:999;

}

.top-btn.show{

opacity:1;

visibility:visible;

}

.top-btn:hover{

background:#111;

}


/*=========================
Price List
=========================*/

.price-banner{
    background:url("../images/price-banner.jpg") center center/cover no-repeat;
}

.price-section{
    padding:100px 0;
    background:#faf7f2;
}

.price-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.price-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

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

.price-card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
    margin-bottom:20px;
}

.price-card h1{
    color:#d4af37;
    font-size:48px;
    margin-bottom:15px;
}

.price-card p{
    margin-bottom:30px;
    color:#666;
}
/*=========================
Booking Page
=========================*/

.booking-page{

padding:100px 0;

background:#faf7f2;

}

.booking-page .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:flex-start;

}

.booking-info h2{

font-family:'Cormorant Garamond',serif;

font-size:46px;

margin-bottom:20px;

}

.booking-info p{

margin-bottom:20px;

color:#666;

}

.contact-box{

margin-top:40px;

}

.contact-box p{

font-size:18px;

margin-bottom:18px;

}

.contact-box i{

color:#d4af37;

margin-right:12px;

}
.page-hero{
    padding-top:15%;
    text-align: center;
}
.form{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.form input,
.form select,
.form textarea{

width:100%;

padding:16px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

outline:none;

}

.form input:focus,
.form select:focus,
.form textarea:focus{

border-color:#d4af37;

}
/*=========================
Luxury Input Fields
=========================*/

.input-box{
    position:relative;
    margin-bottom:22px;
}

.input-box i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#c9a227;
    font-size:18px;
}

.input-box input,
.input-box select{
    width:100%;
    height:58px;
    padding-left:55px;
    border:1px solid #ddd;
    border-radius:12px;
    background:#fff;
    font-size:16px;
    transition:.3s;
}

.textarea-box i{
    top:24px;
    transform:none;
}

.textarea-box textarea{
    width:100%;
    padding:18px 18px 18px 55px;
    border:1px solid #ddd;
    border-radius:12px;
    resize:vertical;
    font-size:16px;
    min-height:160px;
    transition:.3s;
}

.input-box input:focus,
.input-box select:focus,
.textarea-box textarea:focus{
    outline:none;
    border-color:#d4af37;
    box-shadow:0 0 12px rgba(212,175,55,.25);
}
/*=========================
Contact Page
=========================*/

.contact-page{
    padding:100px 0;
    background:#faf7f2;
}

.contact-page .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact-details h2{
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    margin:15px 0 30px;
}

.contact-details span{
    color:#d4af37;
    font-weight:600;
    letter-spacing:2px;
}

.contact-info{
    margin-top:40px;
}

.info-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.info-box i{
    width:60px;
    height:60px;
    background:#d4af37;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.info-box h4{
    margin-bottom:6px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
/*=========================
FAQ Page
=========================*/

.faq-page{
    padding:100px 0;
    background:#faf7f2;
}

.faq-page .faq-container{
    max-width:900px;
    margin:60px auto 0;
}

/*=================================
Treatments Section
=================================*/

.treatments-page{
    padding:100px 0;
    background:#f8f6f2;
}

.treatment-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-top:60px;
}

.treatment-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s ease;
}

.treatment-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}

.treatment-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.treatment-card:hover img{
    transform:scale(1.08);
}

.treatment-content{
    padding:30px;
}

.treatment-content h3{
    font-family:'Cormorant Garamond', serif;
    font-size:30px;
    color:#111;
    margin-bottom:15px;
}

.treatment-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.btn-gold{
    display:inline-block;
    padding:14px 32px;
    background:#d4af37;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-gold:hover{
    background:#111;
}

@media (max-width:992px){

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

}

@media (max-width:768px){

.treatment-grid{
    grid-template-columns:1fr;
}

.treatment-card img{
    height:220px;
}

.treatment-content{
    padding:25px;
}

.treatment-content h3{
    font-size:26px;
}

}

.thank-you{

padding:150px 20px;

text-align:center;

background:#faf7f2;

}

.thank-you i{

font-size:80px;

color:#d4af37;

margin-bottom:30px;

}

.thank-you h1{

font-size:55px;

margin-bottom:20px;

font-family:'Cormorant Garamond',serif;

}

.thank-you p{

font-size:18px;

color:#666;

max-width:650px;

margin:auto auto 35px;

line-height:1.8;

}

.barcode{
    width: 70px;
    height:70px ;
}
/* ================================
   REVIEWS PAGE
================================ */

.reviews-hero {
    min-height: 55vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 100px 20px;

    background:
        linear-gradient(
            rgba(0,0,0,0.72),
            rgba(0,0,0,0.72)
        ),
        url("../images/reviews.jpg");

    background-size: cover;
    background-position: center;
}


.reviews-hero-content {
    max-width: 800px;
}


.reviews-subtitle,
.small-title {
    color: #c9a44c;

    font-size: 14px;

    letter-spacing: 4px;

    font-weight: 600;

    margin-bottom: 15px;
}


.reviews-hero h1 {
    color: #fff;

    font-size: 58px;

    line-height: 1.1;

    margin-bottom: 25px;
}


.reviews-hero h1 span {
    color: #d4af5a;
}


.reviews-hero p {
    color: #f4eee4;

    font-size: 18px;

    line-height: 1.8;

    max-width: 650px;

    margin: auto;
}


/* ================================
   OVERALL RATING
================================ */

.overall-rating {
    text-align: center;
    padding: 200px 20px;

    background: #f4eadc;
}


.overall-rating h2 {
    color: #111;

    font-size: 36px;

    margin-bottom: 20px;
}


.overall-rating .stars {
    color: #c9a44c;

    font-size: 38px;

    letter-spacing: 7px;

    margin: 15px 0;
}


.overall-rating p:last-child {
    color: #555;

    max-width: 600px;

    margin: auto;

    line-height: 1.7;
}


/* ================================
   REVIEW SECTION
================================ */

.review-section {
    background: #111;

    padding: 90px 20px;
}


.review-container {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 70px;

    align-items: center;
}


.review-info {
    color: #fff;
}


.review-info h2 {
    font-size: 44px;

    color: #d4af5a;

    margin-bottom: 25px;
}


.review-info p:not(.small-title) {
    color: #ddd;

    line-height: 1.8;

    margin-bottom: 20px;
}


/* ================================
   FORM
================================ */

.review-form-box {
    background: #f4eadc;

    padding: 40px;

    border: 1px solid #c9a44c;

    border-radius: 8px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}


.form-group {
    margin-bottom: 22px;
}


.form-group label {
    display: block;

    color: #222;

    font-weight: 600;

    margin-bottom: 8px;
}


.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid #c9a44c;

    background: #fff;

    color: #222;

    font-size: 15px;

    border-radius: 4px;

    outline: none;

    box-sizing: border-box;
}


.form-group textarea {
    resize: vertical;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #111;

    box-shadow: 0 0 0 2px rgba(201,164,76,0.2);
}


/* ================================
   STAR RATING
================================ */

.rating-select {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.rating-select label {
    cursor: pointer;

    color: #c9a44c;

    font-size: 20px;
}


.rating-select input {
    display: none;
}


.rating-select label:has(input:checked) {
    color: #111;
}


/* ================================
   BUTTON
================================ */

.review-submit {
    width: 100%;

    padding: 16px;

    background: #111;

    color: #d4af5a;

    border: 1px solid #c9a44c;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s;
}


.review-submit:hover {
    background: #c9a44c;

    color: #111;
}


/* ================================
   SUCCESS / ERROR
================================ */

.success-message {
    text-align: center;

    padding: 30px 10px;
}


.success-icon {
    width: 60px;

    height: 60px;

    line-height: 60px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #111;

    color: #d4af5a;

    font-size: 28px;
}


.success-message h3 {
    font-size: 30px;

    color: #111;

    margin-bottom: 15px;
}


.success-message p {
    color: #555;

    line-height: 1.7;
}


.error-message {
    background: #f8d7da;

    color: #842029;

    padding: 12px;

    margin-bottom: 20px;

    border-radius: 4px;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    .reviews-hero {
        min-height: 65vh;

        padding: 80px 20px;
    }


    .reviews-hero h1 {
        font-size: 40px;
    }


    .reviews-hero p {
        font-size: 16px;
    }


    .overall-rating {
        padding: 170px 20px;
    }


    .overall-rating h2 {
        font-size: 28px;
    }


    .overall-rating .stars {
        font-size: 30px;

        letter-spacing: 4px;
    }


    .review-section {
        padding: 60px 20px;
    }


    .review-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .review-info h2 {
        font-size: 36px;
    }


    .review-form-box {
        padding: 25px 20px;
    }


    .rating-select {
        flex-direction: column;

        gap: 5px;
    }

    
}