/* ==========================
   GOOGLE FONT
========================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* ==========================
   ROOT VARIABLES
========================== */

:root{

    --primary:#0066ff;
    --primary-hover:#0052cc;

    --heading:#0f172a;
    --text:#64748b;

    --white:#ffffff;

    --border:#e5e7eb;

    --bg:#f8fafc;

    --shadow:
    0 30px 80px rgba(15,23,42,.08);

}

/* ==========================
   GLOBAL
========================== */

body{
    font-family:'Manrope',sans-serif;
    color:var(--heading);
}
body, html{overflow-x: hidden;}

.container{
    max-width:1320px;
}

/* ==========================
   HERO SECTION
========================== */

.hero-section{

    position:relative;

    padding:60px 0;

    background:
    radial-gradient(
    circle at top right,
    rgba(0,102,255,.08),
    transparent 35%),

    radial-gradient(
    circle at bottom left,
    rgba(0,102,255,.05),
    transparent 30%),

    #f8fafc;

    overflow:hidden;
}

.hero-wrapper{

    display:grid;

    grid-template-columns:
    minmax(0,650px)
    minmax(420px,500px);

    justify-content:space-between;

    align-items:center;

    gap:80px;
}

/* ==========================
   LEFT CONTENT
========================== */

.review-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    padding:12px 22px;

    border-radius:50px;

    box-shadow:
    0 8px 25px rgba(0,0,0,.05);

    margin-bottom:25px;

    font-size:15px;

    font-weight:700;
}

.hero-content h1{

    font-size:45px;

    line-height:1.08;

    font-weight:600;

    letter-spacing:-2px;

    color:var(--heading);

    margin-bottom:22px;

    max-width:700px;
}

.hero-content p{

    font-size:18px;

    line-height:1.8;

    color:var(--text);

    max-width:600px;

    margin-bottom:35px;
}

/* ==========================
   FEATURES
========================== */

.hero-features{

    display:grid;

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

    gap:15px;

    margin-bottom:35px;
}

.feature-item{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:14px;

    padding:16px 20px;

    font-size:16px;

    font-weight:700;

    transition:.3s;
}

.feature-item:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.05);
}

/* ==========================
   BUTTONS
========================== */

.hero-buttons{

    display:flex;

    gap:15px;
}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    height:58px;

    background:
    linear-gradient(
    135deg,
    #0066ff,
    #1a7cff);

    color:#fff;

    text-decoration:none;

    border-radius:14px;

    font-weight:700;

    transition:.3s;
}

.btn-primary:hover{

    transform:translateY(-4px);
}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:180px;

    height:58px;

    background:#fff;

    color:#111827;

    text-decoration:none;

    border:1px solid #e5e7eb;

    border-radius:14px;

    font-weight:700;

    transition:.3s;
}

.btn-secondary:hover{

    transform:translateY(-4px);
}

/* ==========================
   BOOKING CARD
========================== */

.booking-card{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:28px;

    padding:40px;

    box-shadow:var(--shadow);
}

.booking-card h3{

    text-align:center;

    font-size:36px;

    line-height:1.3;

    margin-bottom:30px;

    color:var(--heading);

    font-weight:600;
}

.treatment-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    height:68px;

    margin-bottom:15px;

    background:
    linear-gradient(
    135deg,
    #0066ff,
    #1a7cff);

    color:#fff;

    border-radius:16px;

    font-size:18px;

    font-weight:700;

    box-shadow:
    0 12px 25px rgba(0,102,255,.18);

    transition:.3s;
}

.treatment-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 20px 40px rgba(0,102,255,.25);
}

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

@media(max-width:991px){

.hero-section{
    padding:30px 0;
}

.hero-wrapper{
    grid-template-columns:1fr;
    gap:40px;
}

.hero-content h1{
    font-size:28px;
    line-height: 1.2;
}

.hero-content p{
    font-size:17px;
}

.hero-features{
    grid-template-columns:1fr;
}

.hero-buttons{
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    width:100%;
}

.booking-card h3{
    font-size:28px;
}

.treatment-btn{
    font-size:16px;
    height:60px;
}

}

.top-trust-bar{
    background:#fff;
    border-bottom:1px solid #edf2f7;
    padding:18px 0;
}

.trust-strip{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.location-list{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.location-item{
    display:flex;
    align-items:center;
    gap:8px;
}

.location-item i{
    color:#07a7e3;
    font-size:14px;
    width:16px;
}

.location-item span{
    font-size:14px;
    font-weight:600;
    color:#0f172a;
    line-height:1.2;
}

.trust-logo img{
    max-height:60px;
    width:auto;
    display:block;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:12px;

    font-size:17px;
    font-weight:700;
    color:#0f172a;
}

.trust-item i{
    color:#0066ff;
    font-size:20px;
}

.trust-item.phone i{
    color:#00b67a;
}

.trust-item.phone a{
    text-decoration:none;
    color:#00a86b;
    font-size:26px;
    font-weight:800;
    white-space:nowrap;
}

.trust-item.phone a:hover{
    color:#008f5b;
}

@media(max-width:991px){

    .trust-strip{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
        padding:10px;
    }

    .trust-logo{
        width:100%;
        text-align:center;
    }

    .trust-logo img{
        margin:auto;
        height: 50px;
    }

    .trust-item{
        width:100%;
        justify-content:center;
        text-align:center;
    }

    .trust-item.phone{
        justify-content:center;
    }

    .trust-item.phone a{
        font-size:22px;
    }
}

/* ===================================
WHY CHOOSE BEFIT STRIP
=================================== */

.why-choose-strip{
    padding: 30px 0;
    background: linear-gradient(135deg,#0f172a,#1e293b);
    position: relative;
    overflow: hidden;
}

.why-choose-strip::before{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.why-choose-strip::after{
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
    bottom: -120px;
    left: -120px;
}

/* GRID */

.why-strip-wrapper{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

/* CARD */

.why-item{
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 18px;

    padding: 22px;

    display: flex;
    align-items: center;
    gap: 18px;

    transition: .35s ease;

    min-height: 120px;
}

.why-item:hover{
    transform: translateY(-5px);

    background: rgba(255,255,255,.10);

    box-shadow:
    0 20px 40px rgba(0,0,0,.25);
}

/* ICON */

.why-icon{
    width: 65px;
    height: 65px;
    min-width: 65px;

    border-radius: 18px;

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

    background: linear-gradient(
    135deg,
    #07a7e3,
    #07a7e3);

    color: #fff;

    font-size: 24px;
}

/* CONTENT */

.why-content h4{
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 6px;
}

.why-content p{
    color: rgba(255,255,255,.75);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* TABLET */

@media(max-width:1199px){

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

}

/* MOBILE */

@media(max-width:767px){

    .why-choose-strip{
        padding: 25px 0;
    }

    .why-strip-wrapper{
        grid-template-columns: 1fr;
    }

    .why-item{
        padding: 18px;
        min-height: auto;
    }

    .why-icon{
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 20px;
    }

    .why-content h4{
        font-size: 18px;
    }

    .why-content p{
        font-size: 13px;
    }

}

/* ==========================
FIRST VISIT
========================== */

.first-visit-section{

    padding:60px 0;

    background:#ffffff;
}

.visit-image{

    position:relative;
}

.visit-image img{

    width:100%;

    border-radius:24px;

    display:block;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.section-tag{

    display:inline-block;

    background:#eaf4ff;

    color:#0066ff;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;
}

.visit-content h2{

    font-size:36px;

    font-weight:600;

    line-height:1.2;

    margin-bottom:20px;

    color:#0f172a;
}

.visit-content p{

    font-size:18px;

    line-height:1.8;

    color:#64748b;

    margin-bottom:35px;
}

.visit-list{

    display:grid;

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

    gap:18px;

    margin-bottom:35px;
}

.visit-item{

    display:flex;

    align-items:center;

    gap:12px;

    background:#f8fafc;

    padding:16px 18px;

    border-radius:14px;

    font-weight:600;
}

.visit-item i{

    color:#07a7e3;

    font-size:18px;
}

.visit-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:58px;

    padding:0 30px;

    background:#0066ff;

    color:#fff;

    text-decoration:none;

    border-radius:14px;

    font-weight:700;

    transition:.3s;
}

.visit-btn:hover{

    background:#0052cc;
}

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

.appointment-cta{

    padding:40px 0;

    background:
    linear-gradient(
    135deg,
    #07a7e3,
    #07a7e3);
}

.cta-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;
}

.cta-content{

    color:#fff;
}

.cta-tag{

    display:inline-block;

    background:
    rgba(255,255,255,.15);

    padding:8px 16px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    margin-bottom:15px;

    text-transform:uppercase;

    letter-spacing:1px;
}

.cta-content h2{

    font-size:40px;

    font-weight:600;

    line-height:1.2;

    margin-bottom:10px;
}

.cta-content p{

    font-size:18px;

    opacity:.9;

    margin:0;
}

.cta-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    height:62px;

    padding:0 35px;

    background:#fff;

    color:#07a7e3;

    text-decoration:none;

    border-radius:14px;

    font-size:18px;

    font-weight:600;
    white-space: nowrap;
    transition:.3s;
}

.cta-btn:hover{

    transform:translateY(-4px);

    color:#07a7e3;

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

@media(max-width:991px){

.cta-wrapper{

    flex-direction:column;

    text-align:center;
}

.cta-content h2{

    font-size:32px;
}

.cta-btn{

    width:100%;

    justify-content:center;
}

}


.about-befit,
.treatment-section{
    padding:50px 0;
}

.treatment-section{
    background:#f8fafc;
}

.section-tag{
    display:inline-block;
    background:#eaf4ff;
    color:#0066ff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.about-befit h2,
.treatment-section h2{
    font-size:40px;
    font-weight:600;
    line-height:1.2;
    margin-bottom:20px;
    color:#0f172a;
}

.about-befit p,
.treatment-section p{
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}

.about-image img,
.treatment-image img{
    width:100%;
    border-radius:24px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.about-list{
    margin-top:30px;
    margin-bottom:35px;
}

.about-item{
    margin-bottom:15px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
}

.about-item i{
    color:#07a7e3;
}

.theme-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:58px;
    padding:0 30px;
    background:#0066ff;
    color:#fff;
    text-decoration:none;
    border-radius:14px;
    font-weight:700;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.service-item{
    background:#fff;
    padding:18px;
    border-radius:14px;
    border:1px solid #e5e7eb;
    font-weight:600;
    transition:.3s;
}

.service-item:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

@media(max-width:991px){

    .about-befit,
    .treatment-section{
        padding:70px 0;
    }

    .about-befit h2,
    .treatment-section h2{
        font-size:34px;
    }

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

    .about-image{
        margin-bottom:30px;
    }

    .treatment-image{
        margin-bottom:30px;
    }
}

.reviews-section{
    padding:60px 0;
    background:#fff;
}

.section-heading{
    max-width:800px;
    margin:0 auto 60px;
}

.section-heading h2{
    font-size:40px;
    font-weight:600;
    margin-bottom:15px;
    color:#0f172a;
}

.section-heading p{
    font-size:18px;
    color:#64748b;
}

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

.review-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-5px);
}

.featured{
    border:2px solid #0066ff;
}

.review-stars{
    color:#fbbf24;
    font-size:22px;
    margin-bottom:15px;
}

.review-card h4{
    font-size:24px;
    font-weight:800;
    margin-bottom:15px;
}

.review-card p{
    color:#64748b;
    line-height:1.8;
}

.review-author{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:25px;
}

.author-avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#0066ff;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.review-author span{
    display:block;
    color:#64748b;
    font-size:14px;
}

.google-rating{
    margin-top:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.rating-number{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#07a7e3;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    font-weight:800;
}

@media(max-width:991px){

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

.section-heading h2{
    font-size:28px;
}

}

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

.final-cta-section{

    padding:60px 0;

    background:
    linear-gradient(
    135deg,
    #07a7e3,
    #07a7e3);
}

.final-cta-wrapper{

    background:
   rgb(255 255 255 / 30%);

    border:1px solid
    rgba(255,255,255,.15);

    border-radius:30px;

    padding:50px;

    backdrop-filter:blur(10px);
}

.cta-map img{

    width:100%;

    border-radius:20px;

    display:block;

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

.cta-badge{

    display:inline-block;

    background:
    rgba(255,255,255,.15);

    color:#fff;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;
}

.cta-content h2{

    color:#fff;

    font-size:40px;

    font-weight:600;

    line-height:1.1;

    margin-bottom:20px;
}

.cta-content p{

    color:
    rgba(255,255,255,.9);

    font-size:19px;

    line-height:1.8;

    margin-bottom:30px;
}

.cta-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:25px;
}

.book-btn{

    background:#fff;

    color:#07a7e3;

    text-decoration:none;

    height:60px;

    padding:0 35px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    font-weight:700;

    transition:.3s;
}

.book-btn:hover{

    transform:translateY(-3px);
}

.call-btn{

    background:#0f172a;

    color:#fff;

    text-decoration:none;

    height:60px;

    padding:0 30px;

    border-radius:14px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:700;
}

.cta-rating{

    display:flex;

    align-items:center;

    gap:12px;
}

.cta-rating span{

    color:#ffd700;

    font-size:24px;
}

.cta-rating p{

    margin:0;

    color:#fff;

    font-weight:600;
}

@media(max-width:991px){

.final-cta-section{

    padding:30px 0;
}

.final-cta-wrapper{

    padding:15px;
}

.cta-map{

    margin-bottom:30px;
}

.cta-content{

    text-align:center;
}

.cta-content h2{

    font-size:28px;
}

.cta-buttons{

    justify-content:center;
}

.book-btn,
.call-btn{

    width:auto;
}

.cta-rating{

    justify-content:center;
}

}

/* ==========================
LANDING FOOTER
========================== */

.landing-footer{

    background:#ffffff;

    border-top:1px solid #e5e7eb;

    padding:50px 0 25px;
}

.footer-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

    padding-bottom:30px;
}

.footer-logo img{

    max-height:70px;

    width:auto;
}

.footer-info{

    display:flex;

    gap:60px;
}

.footer-item h4{

    font-size:16px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:8px;
}

.footer-item p{

    margin:0;

    color:#64748b;

    font-size:15px;
}

.footer-bottom{

    border-top:1px solid #e5e7eb;

    padding-top:20px;

    text-align:center;
}

.footer-bottom p{

    margin:0;

    color:#64748b;

    font-size:14px;
}

/* ==========================
FOOTER RESPONSIVE
========================== */

@media (max-width: 991px){

    .landing-footer{
        padding:40px 0 20px;
    }

    .footer-wrapper{

        flex-direction:column;

        text-align:center;

        gap:30px;

        padding-bottom:25px;
    }

    .footer-logo img{

        max-height:60px;
    }

    .footer-info{

        width:100%;

        flex-wrap:wrap;

        justify-content:center;

        gap:25px;
    }

    .footer-item{

        min-width:180px;
    }

}

@media (max-width: 767px){

    .landing-footer{
        padding:35px 0 15px;
    }

    .footer-wrapper{
        gap:25px;
    }

    .footer-info{

        flex-direction:column;

        align-items:center;

        gap:20px;
    }

    .footer-item{

        width:100%;

        text-align:center;
    }

    .footer-item h4{

        font-size:15px;

        margin-bottom:5px;
    }

    .footer-item p{

        font-size:14px;
    }

    .footer-logo img{

        max-height:50px;
    }

    .footer-bottom{

        padding-top:15px;
    }

    .footer-bottom p{

        font-size:13px;

        line-height:1.6;
    }

}

@media (max-width: 480px){

    .landing-footer{

        padding:30px 0 15px;
    }

    .footer-info{

        gap:15px;
    }

    .footer-item h4{

        font-size:14px;
    }

    .footer-item p{

        font-size:13px;
    }

    .footer-logo img{

        max-height:45px;
    }

}

@media (max-width: 767px){
    .booking-card{padding: 15px;}
    .booking-card h3{font-size: 24px;}
    .first-visit-section{padding: 30px 0px;}
    .visit-content h2{font-size: 28px;}
    .visit-content{margin-top: 20px;}
    .visit-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.cta-wrapper{gap: 0}
.about-befit, .treatment-section{padding: 30px 0px;}
    .about-befit h2, .treatment-section h2 {
        font-size: 28px;
    }
    .treatment-section .row{flex-direction: column-reverse;}
    .reviews-section{padding: 30px 0px;}
    .reviews-section .section-heading {
    max-width: 800px;
    margin: 0 auto 0px;
}
.review-card h4{font-size: 18px;}
}