/* ===========================
   GOOGLE FONTS
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

:root{

    --primary:#6CAEC2;
    --secondary:#D8EEF4;

    --background:#EEF8FB;

    --card:#FFFFFF;

    --heading:#28424D;

    --text:#5E747C;

    --gold:#C79B5C;

}

body{
    background:#EAF6F9;
    color:#4F6670; 
    font-family:'Poppins',sans-serif;
    line-height:1.7;

}
h1,h2,h3,h4{

    font-family:'Playfair Display',serif;

}

img{

    width:100%;
    display:block;

}

section{

    padding:100px 10%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/* ===========================
      NAVBAR
=========================== */

header{

    position:fixed;
    width:100%;
    top:0;
    left:0;

    z-index:1000;

    background:rgba(217,240,247,.9);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(0,0,0,.06);
    box-shadow:0 4px 15px rgba(0,0,0,.05);

}

.navbar{
    max-width:1200px;
    width:90%;
    margin:auto;

    height:70px;

    display:flex;
    justify-content:space-between;
    align-items:center;

}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-img{
    width:68px;
    height:50px;
    object-fit:contain;
    flex-shrink:0;
}

.logo-text h2{
    margin:0;
    font-family:'Playfair Display', serif;
    font-size:2rem;
    color:var(--primary);
    line-height:1;
}

.logo-text span{
    display:block;
    margin-top:4px;
    font-size:.9rem;
    color:var(--text);
    font-family:'Poppins', sans-serif;
}
.nav-links{
    display:flex;
    align-items:center;
    gap:0;
    list-style:none;
}

.nav-links li{
    position:relative;
    padding:0 25px;
}

.nav-links li:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    height:25px;
    width:1px;
    background:rgba(95,116,124,.35);
}

.nav-links a{
    color:var(--text);
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--primary);
}
.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#C79B5C;
    color:white;

    padding:12px 28px;
    border-radius:50px;

    font-size:.95rem;
    font-weight:600;
    letter-spacing:.3px;

    border:2px solid transparent;

    box-shadow:0 8px 20px rgba(199,155,92,.25);

    transition:.35s ease;
}

.btn-primary:hover{
    background:white;
    color:#C79B5C;
    border-color:#C79B5C;

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(199,155,92,.35);
}
/* ===========================
      HERO SECTION
=========================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:120px 10%;

    background:linear-gradient(
        135deg,
        #EEF8FB 0%,
        #D8EEF4 45%,
        #C8E3EB 100%
    );

}
.hero-text{

    flex:1;

}

.hero-text h1{

    font-size:4rem;

    color:var(--text);

    margin-bottom:25px;

    line-height:1.2;

}

.hero-text p{

    font-size:1.1rem;

    line-height:1.8;

    color:#5E7277;

    margin-bottom:35px;

}

.hero-benefits{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-bottom:40px;

    font-weight:600;

    color:var(--primary);

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.hero-buttons .btn-primary{
    background:#CFA05D;
    color:white;
    font-weight:600;
}

.hero-buttons .btn-primary:hover{
    background:#B98B4A;
}



.btn-secondary{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:16px 34px;

    border-radius:50px;

    transition:.3s;

}

.btn-secondary:hover{

    background:var(--primary);

    color:white;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

    border-radius:30px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}


/* ===========================
        ABOUT
=========================== */

.about{

    display:grid;

    grid-template-columns:40% 60%;

    align-items:center;

    gap:60px;

    padding:100px 10%;

   background:linear-gradient(
180deg,
#F5FCFE 0%,
#ECF8FC 100%);

}

.about-image{

    display:flex;

    justify-content:center;

}

.about-image img{

    width:100%;

    border-radius:30px;

    border:8px solid white;

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.about-content{

    flex:1;

}

.about-content h2{

    font-size:3.2rem;

    line-height:1.2;

    color:#2F4F59;

    margin-bottom:25px;

}

.about-content h3{

    font-size:1.3rem;

    color:#6AA7B8;

    font-weight:600;

    margin-bottom:25px;

}

.about-content p{

    font-size:1.05rem;

    line-height:1.9;

    color:#5F7074;

    margin-bottom:22px;

}
.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:30px;

}

.feature{

    background:white;

    padding:20px;

    border-radius:18px;

    text-align:center;

    font-weight:600;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

    border:1px solid #E6F0F3;

}

.feature:hover{

    transform:translateY(-8px);

}

/* ===========================
        SERVICES
=========================== */

.services{

    padding:100px 10%;

  background:#FFFFFF;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:3rem;

    color:#2F4F59;

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    color:#60757B;

}

.service-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.service-card{

    background:white;

     border-radius:24px;

    box-shadow:0 20px 45px rgba(63,104,120,.08);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(110,175,193,.18);

}

.service-icon{

    font-size:3rem;

    margin-bottom:20px;

}

.service-card h3{

    margin-bottom:15px;

    color:#2F4F59;

}

.service-card p{

    color:#60757B;

    line-height:1.8;

}

/* ===========================
        BENEFITS
=========================== */

.benefits{

    padding:100px 10%;

 background:linear-gradient(
180deg,
#F7FCFE 0%,
#EDF8FB 100%
);

}

.benefit-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:50px;

}

.benefit-card{

    background:#F5FBFD;

    padding:35px;

    border-radius:24px;

    box-shadow:0 20px 45px rgba(63,104,120,.08);

    transition:.3s;

}

.benefit-card:hover{

    transform:translateY(-8px);

}

.benefit-card h3{

    margin-bottom:15px;

    color:var(--primary);

}

.benefit-card p{

    color:#60757B;

    line-height:1.8;
}

.treatment-note{

    margin-top:60px;

    background:white;

    padding:40px;

    border-left:6px solid var(--accent);

    border-radius:20px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.treatment-note h3{

    margin-bottom:15px;

    color:var(--text);

}

.treatment-note p{

    line-height:1.9;

    color:#60757B;

}

/* ===========================
        PRICING
=========================== */

.pricing{

    padding: 100px 8%;

    background: linear-gradient(
        180deg,
        #F5FCFE 0%,
        #EEF9FC 100%
    );

}

.pricing-grid{

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.price-card{

    background:#D9F0F7;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 20px 45px rgba(63,104,120,.08);

    transition:.3s;

    position:relative;

}

.price-card:hover{

    transform:translateY(-10px);

}

.featured{

    border:3px solid #C99A5A;

}

.popular{

    position:absolute;

    top:20px;

    right:20px;

    background:#C99A5A;

    color:rgb(11, 8, 8);

    padding:6px 14px;

    border-radius:20px;

    font-size:.8rem;

    font-weight:600;

}

.price-card h3{

    font-size:1.6rem;

    margin-bottom:10px;

    color:#2F4F59;

}

.price-card h4{

    color:#6AA7B8;

    font-size:2rem;

    margin-bottom:25px;

}

.price-card ul{

    list-style:none;

    margin-bottom:35px;

}

.price-card ul li{

    margin:15px 0;

    color:#60757B;

}

/* ===========================
        TESTIMONIALS
=========================== */

.testimonials{

    padding:100px 10%;

    background:#F9FCFD;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:50px;

    margin-top:60px;

}

.testimonial-card{


    background:white;

    border-radius:24px;

    border:1px solid #E4F0F3;
    box-shadow:0 20px 45px rgba(63,104,120,.08);

    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:30px;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.testimonial-card p{

     font-style:normal;
   
     font-size:0.9rem;

    line-height:1.6;

    color:#60757B;

    margin-bottom:25px;

}

.testimonial-card h4{

    color:#C89B63;

    font-size:1.4rem;

    margin-bottom:10px;

}

.testimonial-card span{

    font-weight:600;

    color:#2F4F59;

}

.quote{

    font-size:4rem;

    color:var(--primary);

    line-height:1;

    margin-bottom:10px;

}

.google-rating{

    text-align:center;

    margin:40px auto 60px;

}

.google-rating h3{

    font-size:2rem;

    color:#C99A5A;

    margin-bottom:10px;

}

.google-rating p{

    color:#60757B;

    max-width:600px;

    margin:auto;

}


/* ===========================
        CONTACT
=========================== */

.contact{

    padding:100px 10%;
     background:#F6FCFD;

}

.contact-container{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

    margin-top:60px;

}

.contact-info{

   background: #7BAFC8;

    padding:40px;

    border-radius:24px;

    box-shadow:0 20px 45px rgba(63,104,120,.08);

}

.contact-info h3{
    color:#FFFFFF;
}

.info-box h4{
    color:#EAF8FC;
}

.info-box p{
    color:#F8FCFD;
}


.info-box i{
    color:#E84D8A;   /* or #FFFFFF */
    margin-right:10px;
}


.contact-card{
    background: #FFFFFF;
    color: #4F6475;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #DCEAF2;
    box-shadow: 0 12px 30px rgba(63, 104, 120, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card h3{

    font-size:2rem;

    margin-bottom:20px;

}

.contact-card p{

    margin-bottom:30px;

    line-height:1.8;

}


/* ===========================
        FAQ
=========================== */

.faq{

    padding:100px 10%;
    background:#DCEFF4;
}

.faq-container{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    background:#F8FCFD;

    padding:30px;

    margin-bottom:25px;

    border-left:5px solid #6AA7B8;

    border-radius:24px;
    box-shadow:0 20px 45px rgba(63,104,120,.08);

}

.faq-item h3{

    color:#2F4F59;

    margin-bottom:15px;

}

.faq-item p{

    color:#60757B;

    line-height:1.8;

}

/* ==========================
        GALLERY
=========================== */

.gallery{

    padding:100px 10%;

    background:#F8FCFD;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.gallery-grid img{

    width:100%;

    height:350px;

    object-fit:cover;

    border-radius:22px;

    transition:.4s;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.gallery-grid img:hover{

    transform:scale(1.03);

}

/* ==========================
        WHATSAPP
=========================== */

.whatsapp{

    position:fixed;

    right:30px;

    bottom:30px;

    width:65px;

    height:65px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:2rem;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

.whatsapp:hover{

    transform:scale(1.1);

}

/* ===========================
        FOOTER
=========================== */

footer{

 background:#2F4858;

    color:white;

    padding:50px 10%;

    text-align:center;

}

.footer-content h2{

    font-size:2rem;

    margin-bottom:20px;

}

.footer-content p{

    margin:10px 0;

    opacity:.9;

}

/* ===========================
        TABLETS
=========================== */

@media (max-width:992px){

    .hero{

        flex-direction:column;

        text-align:center;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-image img{

        max-width:450px;

    }

    .about{

        grid-template-columns:1fr;

        text-align:center;

    }

    .service-container{

        grid-template-columns:repeat(2,1fr);

    }

    .benefit-grid{

        grid-template-columns:1fr;

    }

    .pricing-grid{

        grid-template-columns:1fr;

    }

    .testimonial-grid{

        grid-template-columns:1fr;

    }

    .gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .contact-container{

        grid-template-columns:1fr;

    }

}

/* ===========================
        MOBILE
=========================== */

@media (max-width:768px){

    /* NAVIGATION */

   .hamburger{
    display:none;
}

    header{
        background:rgba(255,255,255,.92);
        backdrop-filter:blur(20px);
        box-shadow:0 10px 35px rgba(0,0,0,.05);
    }

    .navbar{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        padding:15px 6%;
        position:relative;
    }
   .service-container{
    padding:0 15px;
}

    .logo-img{
        width:55px;
        height:45px;
    }

    .logo-text h2{
        font-size:1.5rem;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        align-items:center;
        width:100%;
        gap:18px;
        padding:20px;
        margin-top:15px;
        background:white;
        border-radius:20px;
        box-shadow:0 10px 30px rgba(0,0,0,.1);
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        padding:0;
    }

    .nav-links li:not(:last-child)::after{
        display:none;
    }

    .nav-links a{
        font-size:1rem;
    }


    /* HERO */

    .hero{

        min-height:auto;

        flex-direction:column;

        justify-content:center;

        align-items:center;

        text-align:center;

        gap:40px;

        padding:120px 6% 80px;

    }

    .hero-text h1{
        font-size:2.4rem;
    }

    .hero-text p{
        font-size:1rem;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
        margin-top:30px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary{
        width:220px;
        text-align:center;
        padding:14px 0;
    }

    .hero-image{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .hero-image img{
        width:100%;
        max-width:320px;
        height:auto;
        display:block;
        margin:auto;
        animation:none;
        transform:none;
    }


    /* HEADINGS */

    .section-title h2{
        font-size:2rem;
    }


    /* GRIDS */

    .service-container,
    .benefit-grid,
    .pricing-grid,
    .testimonial-grid,
    .gallery-grid,
    .contact-container,
    .about-features{

        grid-template-columns:1fr;

    }


    /* ABOUT */

    .about{
        grid-template-columns:1fr;
        text-align:center;
    }

    .about-image{
        display:flex;
        justify-content:center;
    }

    .about-image img{
        max-width:320px;
        width:100%;
    }


    /* GALLERY */

    .gallery-grid img{
        height:260px;
    }
.hamburger{
    display:none;
    background:none;
    border:none;
    font-size:2rem;
    color:var(--heading);
    cursor:pointer;
}
}


/* ===========================
        PAGE ANIMATIONS
=========================== */

.fade-up{
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/* Image animation */

.hero-image img,
.about-image img,
.gallery-grid img{

    animation: fadeIn 1s ease forwards;

}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:scale(.95);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}


/* Card hover animation */

.service-card,
.benefit-card,
.price-card,
.testimonial-card,
.feature{

    transition:.4s ease;

}

.service-card:hover,
.benefit-card:hover,
.price-card:hover,
.testimonial-card:hover,
.feature:hover{

    transform:translateY(-10px);

}
nav{

    animation:navFade 1s ease;

}

@keyframes navFade{

    from{

        opacity:0;
        transform:translateY(-30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.hero-text{

    animation:slideLeft 1.2s ease;

}

.hero-image{

    animation:slideRight 1.2s ease;

}

@keyframes slideLeft{

    from{

        opacity:0;
        transform:translateX(-60px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}

@keyframes slideRight{

    from{

        opacity:0;
        transform:translateX(60px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}
.btn{

    transition:.35s ease;

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(0,0,0,.12);

}
.service-card,
.benefit-card,
.price-card,
.testimonial-card,
.contact-card{

    transition:.4s ease;

}

.service-card:hover,
.benefit-card:hover,
.price-card:hover,
.testimonial-card:hover,
.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}
.about-image{

    overflow:hidden;

    border-radius:30px;

}

.about-image img{

    transition:.5s ease;

}

.about-image:hover img{

    transform:scale(1.05);

}
html{

    scroll-behavior:smooth;

}

.hidden{

    opacity:0;

    transform:translateY(60px);

    transition:all 1s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}
.hero-image img{

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}
nav a{

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:#6CAEC2;

    transition:.3s;

}

nav a:hover::after{

    width:100%;

}
