/* =====================================================
   HOME PAGE
   PART 1
   Hero
   Trust Stats
   Why Choose Us
   Conditions
   Services
===================================================== */

.site-content{
    overflow:hidden;
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero-section{
    position:relative;
    padding:100px 0;
    background:
    radial-gradient(circle at top right,
    #dbeafe 0%,
    #ffffff 45%);
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-content{
    animation:heroLeft .8s ease forwards;
}

@keyframes heroLeft{

    from{
        opacity:0;
        transform:translateX(-40px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:40px;
    background:#e0f2fe;
    color:#0b5ed7;
    font-weight:600;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:58px;
    line-height:1.1;
    color:#0f172a;
    margin-bottom:25px;
    font-weight:800;
}

.hero-content p{
    font-size:19px;
    line-height:1.8;
    color:#475569;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:35px;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 30px;
    background:#0b5ed7;
    color:#fff;
    border-radius:60px;
    font-weight:700;
    transition:.35s;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(11,94,215,.25);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 30px;
    border-radius:60px;
    border:2px solid #0b5ed7;
    color:#0b5ed7;
    font-weight:700;
    transition:.35s;
}

.btn-secondary:hover{
    background:#0b5ed7;
    color:#fff;
}

.hero-points{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.hero-points span{
    padding:10px 16px;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

/* =====================================================
   HERO IMAGE
===================================================== */

.hero-image{
    position:relative;
    animation:heroRight .8s ease forwards;
}

@keyframes heroRight{

    from{
        opacity:0;
        transform:translateX(40px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

.hero-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 30px 80px rgba(0,0,0,.12);
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:15px 20px;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    font-size:14px;
    font-weight:700;
    color:#0f172a;
}

.card-1{
    top:40px;
    left:-20px;
    animation:floatOne 4s ease-in-out infinite;
}

.card-2{
    right:-20px;
    top:180px;
    animation:floatTwo 4s ease-in-out infinite;
}

.card-3{
    left:40px;
    bottom:20px;
    animation:floatThree 4s ease-in-out infinite;
}

@keyframes floatOne{

    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}

@keyframes floatTwo{

    0%{transform:translateY(0);}
    50%{transform:translateY(12px);}
    100%{transform:translateY(0);}
}

@keyframes floatThree{

    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}
}

/* =====================================================
   TRUST STATS
===================================================== */

.trust-stats{
    padding:0 0 100px;
    margin-top:-40px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h3{
    color:#0b5ed7;
    margin-bottom:12px;
    font-size:24px;
}

.stat-box p{
    color:#64748b;
    line-height:1.8;
}

/* =====================================================
   COMMON SECTION
===================================================== */

.section-header{
    max-width:800px;
    margin:0 auto 60px;
    text-align:center;
}

.section-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:#e0f2fe;
    color:#0b5ed7;
    font-weight:600;
    margin-bottom:18px;
}

.section-header h2{
    font-size:44px;
    line-height:1.2;
    color:#0f172a;
    margin-bottom:20px;
}

.section-header p{
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-choose-us{
    padding:100px 0;
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    border:1px solid #e5e7eb;
    transition:.35s;
    position:relative;
}

.why-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:4px;
    background:#0b5ed7;
    transition:.35s;
}

.why-card:hover::before{
    width:100%;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.why-card h3{
    font-size:22px;
    margin-bottom:15px;
    color:#0f172a;
}

.why-card p{
    color:#64748b;
    line-height:1.8;
}

/* =====================================================
   CONDITIONS
===================================================== */

.conditions-section{
    padding:100px 0;
    background:#f8fafc;
}

.conditions-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.condition-card{
    background:#fff;
    border-radius:24px;
    padding:40px 25px;
    text-align:center;
    transition:.35s;
    border:1px solid #e2e8f0;
}

.condition-card:hover{
    transform:translateY(-8px) scale(1.03);
    border-color:#0b5ed7;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.condition-card h3{
    font-size:22px;
    color:#0f172a;
}

/* =====================================================
   SERVICES
===================================================== */

.services-section{
    padding:100px 0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid #e5e7eb;
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.10);
}

.service-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.service-card h3{
    padding:25px 25px 15px;
    color:#0f172a;
    font-size:24px;
}

.service-card p{
    padding:0 25px 25px;
    color:#64748b;
    line-height:1.8;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1200px){

    .hero-content h1{
        font-size:48px;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .conditions-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:991px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-content{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-points{
        justify-content:center;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .hero-section{
        padding:70px 0;
    }

    .hero-content h1{
        font-size:38px;
    }

    .section-header h2{
        font-size:32px;
    }

    .services-grid,
    .conditions-grid,
    .stats-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .floating-card{
        display:none;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }
}

/* =====================================================
   HOME PAGE
   PART 2
   About
   Physiotherapist
   Recovery Process
   Counter
   Testimonials
   FAQ
   Blog
   CTA
   Contact & Map
===================================================== */


/* =====================================================
   ABOUT CLINIC
===================================================== */

.about-clinic-section{
    padding:120px 0;
    background:#ffffff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 30px 80px rgba(0,0,0,.12);
    transition:.4s;
}

.about-image:hover img{
    transform:scale(1.02);
}

.about-content h2{
    font-size:46px;
    line-height:1.2;
    color:#0f172a;
    margin-bottom:25px;
}

.about-content p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:20px;
}

.about-list{
    margin-top:30px;
}

.about-list li{
    position:relative;
    padding-left:32px;
    margin-bottom:18px;
    color:#334155;
    font-weight:600;
}

.about-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#0b5ed7;
    font-weight:700;
}

/* =====================================================
   PHYSIOTHERAPIST
===================================================== */

.physiotherapist-section{
    padding:120px 0;
    background:#f8fafc;
}

.doctor-grid{
    display:grid;
    grid-template-columns:480px 1fr;
    gap:70px;
    align-items:center;
}

.doctor-image{
    position:relative;
}

.doctor-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 70px rgba(0,0,0,.12);
}

.doctor-content h2{
    font-size:44px;
    line-height:1.2;
    color:#0f172a;
    margin-bottom:25px;
}

.doctor-content p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:18px;
}

.doctor-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:35px;
}

.highlight-box{
    background:#ffffff;
    border:1px solid #dbeafe;
    padding:14px 20px;
    border-radius:50px;
    color:#0b5ed7;
    font-weight:700;
    transition:.3s;
}

.highlight-box:hover{
    background:#0b5ed7;
    color:#ffffff;
}

/* =====================================================
   RECOVERY PROCESS
===================================================== */

.recovery-process-section{
    padding:120px 0;
    background:#ffffff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.process-card{
    position:relative;
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:35px 25px;
    transition:.35s;
    text-align:center;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.step-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:70px;
    height:70px;
    border-radius:50%;
    background:#dbeafe;
    color:#0b5ed7;
    font-size:24px;
    font-weight:800;
    margin-bottom:20px;
}

.process-card h3{
    font-size:22px;
    color:#0f172a;
    margin-bottom:15px;
}

.process-card p{
    color:#64748b;
    line-height:1.8;
}

/* =====================================================
   COUNTER SECTION
===================================================== */
.counter-section{
    padding:120px 0;
    background:
    radial-gradient(circle at top left,
    rgba(20,184,166,.12),
    transparent 35%),
    radial-gradient(circle at bottom right,
    rgba(59,130,246,.15),
    transparent 35%),
    #0f172a;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.counter-box{
    text-align:center;
    padding:45px 30px;
    border-radius:28px;
    background:rgba(255,255,255,.07);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.counter-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#14b8a6;
}


.counter-box h3{
    color:#ffffff;
    font-size:30px;
    font-weight:800;
    margin-bottom:18px;
    line-height:1.25;
}

.counter-box p{
    color:#cbd5e1;
    line-height:1.8;
}

.counter-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.10);
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonial-section{
    padding:120px 0;
    background:#f8fafc;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#ffffff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card p{
    color:#64748b;
    line-height:1.9;
}

/* =====================================================
   FAQ
===================================================== */

.faq-section{
    padding:120px 0;
    background:#ffffff;
}

.faq-list{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:30px;
    margin-bottom:20px;
}

.faq-item h3{
    font-size:22px;
    color:#0f172a;
    margin-bottom:12px;
}

.faq-item p{
    color:#64748b;
    line-height:1.9;
}

/* =====================================================
   BLOG
===================================================== */

.blog-preview-section{
    padding:120px 0;
    background:#f8fafc;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    background:#ffffff;
    padding:35px;
    border-radius:24px;
    border:1px solid #e5e7eb;
    transition:.35s;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.blog-card h3{
    color:#0f172a;
    line-height:1.4;
    margin-bottom:15px;
    font-size:24px;
}

.blog-card p{
    color:#64748b;
    line-height:1.8;
}

/* =====================================================
   CTA SECTION
===================================================== */

.cta-section{
    padding:120px 0;
    background:
    linear-gradient(
    135deg,
    #0b5ed7,
    #2563eb
    );
}

.cta-content{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.cta-content h2{
    color:#ffffff;
    font-size:54px;
    line-height:1.2;
    margin-bottom:25px;
}

.cta-content p{
    color:rgba(255,255,255,.9);
    font-size:19px;
    line-height:1.9;
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}

.cta-section .btn-primary{
    background:#ffffff;
    color:#0b5ed7;
}

.cta-section .btn-secondary{
    border-color:#ffffff;
    color:#ffffff;
}

.cta-section .btn-secondary:hover{
    background:#ffffff;
    color:#0b5ed7;
}

/* =====================================================
   CONTACT + MAP
===================================================== */

.contact-map-section{
    padding:120px 0;
    background:#ffffff;
}

.contact-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:40px;
    align-items:start;
}

.contact-info{
    background:#f8fafc;
    padding:40px;
    border-radius:24px;
}

.contact-info h2{
    font-size:36px;
    color:#0f172a;
    margin-bottom:25px;
}

.contact-info p{
    color:#64748b;
    margin-bottom:15px;
    line-height:1.8;
}

.map-area iframe{
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* =====================================================
   SCROLL ANIMATION SUPPORT
===================================================== */

[data-aos]{
    transition-duration:.8s;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1200px){

    .process-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .counter-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .doctor-grid{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:991px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .cta-content h2{
        font-size:42px;
    }
}

@media(max-width:768px){

    .about-clinic-section,
    .physiotherapist-section,
    .recovery-process-section,
    .counter-section,
    .testimonial-section,
    .faq-section,
    .blog-preview-section,
    .cta-section,
    .contact-map-section{
        padding:80px 0;
    }

    .about-content h2,
    .doctor-content h2{
        font-size:34px;
    }

    .contact-info h2{
        font-size:30px;
    }

    .cta-content h2{
        font-size:34px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .process-grid,
    .counter-grid{
        grid-template-columns:1fr;
    }

    .doctor-highlights{
        justify-content:center;
    }

    .contact-info{
        padding:30px;
    }
}

@media(max-width:480px){

    .step-number{
        width:60px;
        height:60px;
        font-size:20px;
    }

    .process-card,
    .testimonial-card,
    .blog-card,
    .faq-item{
        padding:25px;
    }

    .cta-content h2{
        font-size:28px;
    }
}