
/* ===================================
   NURA DENTAL CLINIC
   HEADER + HERO + STATS
=================================== */

@font-face{
    font-family:'YekanBakh';
    src:url('../../fonts/YekanBakh/YekanBakh-Regular.woff2') format('woff2');
    font-weight:200;
}

@font-face{
    font-family:'YekanBakh';
    src:url('../../fonts/YekanBakh/YekanBakh-Bold.woff2') format('woff2');
    font-weight:350;
}

:root{
    --primary:#7C3AED;
    --primary-light:#A855F7;
    --text:#17172B;
    --gray:#6B7280;
    --bg:#FAF9FF;
}

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


html{
    scroll-behavior:smooth;
}

#consultation{
    scroll-margin-top:120px;
}
body{
    font-family:'Vazirmatn',sans-serif;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

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

.container{
    width:90%;
    max-width:1320px;
    margin:auto;
}
@media (max-width:768px){

.container{
    width:100%;
    max-width:100%;
    padding:0 12px;
}

}
/* ==========================
   HEADER
========================== */

.header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid #f1f1f1;
}

.header .container{
    height:95px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:180px;
    height:auto;
}

.navbar ul{
    display:flex;
    gap:45px;
}

.navbar a{
    color:#1F1F2E;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.navbar a:hover,
.navbar a.active{
    color:#7C3AED;
}

.phone-btn{

    background:
    linear-gradient(
    135deg,
    #7C3AED,
    #A855F7
    );

    color:#fff;

    padding:14px 30px;

    border-radius:14px;

    font-weight:700;

    box-shadow:
    0 10px 30px rgba(124,58,237,.25);
}

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

.hero{

    padding:40px 0 80px;

    background:
    linear-gradient(
        180deg,
        #faf9ff 0%,
        #f6f2ff 100%
    );
}

/* ===================================
   HERO BANNER
=================================== */

.hero-banner{

    position:relative;

    overflow:hidden;

    width:100%;

    background:
    linear-gradient(
        -45deg,
        #faf9ff,
        #f3edff,
        #fff3fb,
        #f5f0ff
    );

    background-size:400% 400%;

    animation:heroGradient 12s ease infinite;
}

@keyframes heroGradient{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }
}

/* نور بالا */

.hero-banner::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-350px;
    right:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(168,85,247,.18),
        transparent 70%
    );

    pointer-events:none;
}

/* نور پایین */

.hero-banner::after{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    bottom:-300px;
    left:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(236,72,153,.12),
        transparent 70%
    );

    pointer-events:none;
}

/* ===================================
   IMAGE
=================================== */

.hero-banner img{

    width:100%;

    max-width:800px;

    display:block;

    margin:0 auto;

    position:relative;

    z-index:2;

    filter:
    drop-shadow(
        0 25px 50px rgba(0,0,0,.08)
    );
}

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

@media (max-width:768px){

.hero{

    padding:20px 0 40px;
}

.hero-banner{

    width:100%;

    margin:0;

    padding:0;
}

.hero-banner img{

    width:100%;

    max-width:100%;

    height:auto;

    display:block;
}

.hero-banner::before{

    width:350px;
    height:350px;

    top:-150px;
    right:-120px;
}

.hero-banner::after{

    width:300px;
    height:300px;

    bottom:-150px;
    left:-120px;
}

}
/* ===================================
   ANIMATION
=================================== */

@keyframes heroGradient{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }
}

/* ===================================
   TABLET
=================================== */

@media(max-width:992px){

    .hero-banner{

        width:95%;

        padding:25px;
    }

    .hero-banner img{

        max-width:550px;
    }
}

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

@media(max-width:768px){

    .hero{

        padding:20px 0 50px;
    }

    .hero-banner{

        width:100%;

        padding:15px;

        border-radius:25px;
    }

    .hero-banner img{

        max-width:100%;
    }

    .hero-banner::before{

        width:300px;
        height:300px;

        top:-120px;
        right:-120px;
    }

    .hero-banner::after{

        width:250px;
        height:250px;

        bottom:-120px;
        left:-120px;
    }
}
/* ==========================
   FLOATING ACTIONS
========================== */

.floating-actions{

    position:fixed;

    right:30px;

    top:50%;

    transform:translateY(-50%);

    background:#fff;

    border-radius:22px;

    padding:15px;

    display:flex;

    flex-direction:column;

    gap:12px;

    z-index:900;

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

.floating-item{

    min-width:90px;

    text-align:center;

    padding:15px 10px;

    color:#444;

    font-size:14px;

    border-radius:12px;

    transition:.3s;
}

.floating-item:hover{

    background:#F6F1FF;

    color:#7C3AED;
}

/* ==========================
   STATS
========================== */

.stats{

    margin-top:-50px;

    margin-bottom:60px;

    position:relative;

    z-index:50;
}

.stats-grid{

    background:#fff;

    border-radius:28px;

    display:grid;

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

    overflow:hidden;

    box-shadow:
    0 20px 60px rgba(0,0,0,.06);
}

.stat-card{

    padding:40px;

    text-align:center;

    border-left:1px solid #F2F2F2;
}

.stat-card:last-child{
    border-left:none;
}

.stat-card h3{

    color:#7C3AED;

    font-size:36px;

    margin-bottom:10px;
}

.stat-card p{

    color:#6B7280;

    font-size:15px;
}

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

@media(max-width:992px){

    .hero-wrapper{
        flex-direction:column-reverse;
        text-align:center;
    }

    .hero-image img{
        width:420px;
    }

    .hero h1{
        font-size:54px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-features{
        justify-content:center;
    }

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

    .floating-actions{
        display:none;
    }
}

@media(max-width:768px){

    .navbar{
        display:none;
    }

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

    .hero-image img{
        width:320px;
    }

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

    .phone-btn{
        font-size:13px;
        padding:12px 18px;
    }

    .logo img{
        width:130px;
    }
}
/* ==========================
   CONSULTATION
========================== */

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

.consultation-box{
    background:#fff;
    border-radius:30px;
    padding:50px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
}

.consultation-box h2{
    font-size:40px;
    margin-bottom:15px;
    color:#17172B;
}

.consultation-box p{
    color:#6B7280;
    margin-bottom:35px;
}

.consultation-form{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.consultation-form input,
.consultation-form select{

    height:60px;

    border:1px solid #E5E7EB;

    border-radius:14px;

    padding:0 15px;

    font-family:'Vazirmatn',sans-serif;
}

.consultation-form button{

    border:none;

    cursor:pointer;

    border-radius:14px;

    font-weight:700;

    color:#fff;

    background:
    linear-gradient(
    135deg,
    #7C3AED,
    #A855F7
    );

    box-shadow:
    0 10px 30px rgba(124,58,237,.25);
}

/* ==========================
   GALLERY
========================== */

.gallery{

    padding:110px 0;

    background:#FAF9FF;
}

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title h2{

    font-size:42px;

    color:#17172B;

    margin-bottom:12px;
}

.section-title p{

    color:#6B7280;
}

.gallery-grid{

    display:grid;

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

    gap:25px;
}

.gallery-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    transition:.3s;

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

.gallery-card:hover{

    transform:translateY(-8px);

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

.gallery-card img{

    width:100%;

    display:block;
}

.gallery-card span{

    display:block;

    padding:18px;

    text-align:center;

    font-weight:700;

    color:#17172B;
}

/* ==========================
   ADVANTAGES
========================== */

.advantages{

    padding:100px 0;
}

.advantages-grid{

    display:grid;

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

    gap:25px;
}

.adv-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    text-align:center;

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

    transition:.3s;
}

.adv-card:hover{

    transform:translateY(-8px);
}

.adv-card h3{

    margin-top:15px;

    font-size:18px;

    color:#17172B;
}

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

.footer{

    margin-top:120px;

    background:
    linear-gradient(
        135deg,
        #231942,
        #4C1D95,
        #7C3AED
    );

    color:#fff;

    position:relative;

    overflow:hidden;

    border-top:3px solid #FBBF24;
}

/* Glow */

.footer::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    top:-250px;
    right:-150px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(255,255,255,.08),
        transparent 70%
    );
}

.footer::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    bottom:-200px;
    left:-150px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(236,72,153,.10),
        transparent 70%
    );
}

/* Container */

.footer-container{

    width:90%;

    max-width:1400px;

    margin:auto;

    padding:90px 0;

    display:grid;

    grid-template-columns:
    1.3fr
    1fr
    1fr
    1.2fr;

    gap:50px;

    position:relative;

    z-index:2;
}

/* Logo */

.footer-logo{

    width:180px;

    margin-bottom:20px;

    filter:brightness(0) invert(1);
}

.footer-about{

    line-height:2.4;

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

    font-size:15px;
}

/* Titles */

.footer-col h3,
.footer-cta h3{

    font-size:24px;

    margin-bottom:25px;

    color:#fff;

    font-weight:800;
}

/* Lists */

.footer-col ul{

    list-style:none;
}

.footer-col li{

    margin-bottom:16px;
}

.footer-col a{

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

    text-decoration:none;

    transition:.3s;
}

.footer-col a:hover{

    color:#fff;

    padding-right:6px;
}

/* Contact */

.footer-contact li{

    display:flex;

    align-items:center;

    gap:12px;
}

.footer-contact i{

    color:#FBBF24;

    width:20px;

    text-align:center;
}

/* CTA */

.footer-cta{

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

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

    border-radius:25px;

    padding:35px;

    backdrop-filter:blur(10px);
}

.footer-cta p{

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

    line-height:2.2;

    margin-bottom:25px;
}

.footer-btn{

    display:block;

    width:100%;

    text-align:center;

    background:#fff;

    color:#7C3AED;

    text-decoration:none;

    padding:16px;

    border-radius:16px;

    font-weight:800;

    transition:.3s;
}

.footer-btn:hover{

    transform:translateY(-3px);

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

/* TRUST BAR */

.footer-trust{

    width:90%;

    max-width:1200px;

    margin:auto;

    padding:25px 0;

    border-top:
    1px solid rgba(255,255,255,.12);

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:20px;

    position:relative;

    z-index:2;
}

.footer-trust div{

    display:flex;

    align-items:center;

    gap:10px;

    color:#fff;

    font-weight:600;
}

.footer-trust i{

    color:#FBBF24;
}

/* Bottom */

.footer-bottom{

    text-align:center;

    padding:25px;

    border-top:
    1px solid rgba(255,255,255,.10);

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

    position:relative;

    z-index:2;
}

/* Mobile */

@media(max-width:768px){

.footer-container{

    grid-template-columns:1fr;

    text-align:center;

    gap:35px;

    padding:60px 0;
}

.footer-logo{

    margin:auto auto 20px;
}

.footer-contact li{

    justify-content:center;
}

.footer-col a:hover{

    padding-right:0;
}

.footer-trust{

    justify-content:center;
}

.footer-trust div{

    width:100%;

    justify-content:center;
}
}
/* ==========================
   RESPONSIVE EXTRA
========================== */

@media(max-width:992px){

    .consultation-form{
        grid-template-columns:1fr;
    }

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

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

@media(max-width:768px){

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

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

    .consultation-box{
        padding:30px;
    }

    .section-title h2{
        font-size:32px;
    }
}
.hero-banner{

width:85%;

margin:40px auto;

border-radius:30px;

overflow:hidden;

box-shadow:
0 20px 60px rgba(124,58,237,.15);

}

.hero-banner img{

width:100%;

display:block;
{
    margin-top:15px;
}
height:auto;

}
.caseSwiper{
    width:85%;
    padding-bottom:50px;
}

.caseSwiper img{
    width:100%;
    border-radius:24px;
    display:block;
}
.consultation-section{
    width:90%;
    max-width:1400px;
    margin:80px auto;
}

.consultation-card{

    background:#fff;

    border-radius:30px;

    display:flex;

    align-items:center;

    gap:30px;

    padding:25px;

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

.consultation-image{
    width:280px;
    flex-shrink:0;
}

.consultation-image img{
    width:100%;
    border-radius:24px;
    display:block;
}

.consultation-content{
    flex:1;
}

.consultation-content h2{

    color:#2D1B69;

    font-size:38px;

    margin-bottom:10px;
}

.consultation-content p{

    color:#777;

    margin-bottom:25px;
}

.consultation-form{

    display:grid;

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

    gap:15px;
}

.consultation-form input,
.consultation-form select{

    height:60px;

    border:1px solid #E8E8E8;

    border-radius:14px;

    padding:0 18px;

    font-family:inherit;
}

.consultation-form button{

    grid-column:span 3;

    height:60px;

    border:none;

    border-radius:16px;

    background:
    linear-gradient(
    135deg,
    #7C3AED,
    #A855F7
    );

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    box-shadow:
    0 10px 30px rgba(124,58,237,.25);
}

@media(max-width:768px){

    .consultation-card{
        flex-direction:column;
    }

    .consultation-image{
        width:100%;
    }

    .consultation-form{
        grid-template-columns:1fr;
    }

    .consultation-form button{
        grid-column:span 1;
    }

    .consultation-content h2{
        font-size:30px;
        text-align:center;
    }

    .consultation-content p{
        text-align:center;
    }
}
/* ==========================
   CONSULTATION FORM
========================== */

.consultation-section{
    width:90%;
    max-width:1500px;
    margin:80px auto;
}

.consultation-card{

    background:#fff;

    border-radius:32px;

    padding:30px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;

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

/* تصویر */

.consultation-image{

    width:350px;

    flex-shrink:0;
}

.consultation-image img{

    width:100%;

    display:block;

    border-radius:24px;

    object-fit:cover;
}

/* محتوا */

.consultation-content{

    flex:1;
}

.consultation-content h2{

    font-size:52px;

    font-weight:800;

    color:#231942;

    text-align:center;

    margin-bottom:10px;
}

.consultation-content h2 span{

    color:#F53D92;
}

.consultation-content p{

    text-align:center;

    color:#8A8AA3;

    font-size:17px;

    margin-bottom:25px;
}

/* فرم */

.consultation-form{

    display:grid;

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

    gap:12px;
}

.input-group{

    position:relative;
}

.input-group input,
.input-group select{

    width:100%;

    height:64px;

    border:1px solid #ECECF5;

    border-radius:18px;

    padding:0 55px 0 20px;

    font-size:15px;

    background:#fff;

    transition:.3s;
}

.input-group input:focus,
.input-group select:focus{

    border-color:#7C3AED;

    outline:none;
}

/* آیکون ها */

.icon{

    position:absolute;

    right:18px;

    top:50%;

    transform:translateY(-50%);

    color:#7C3AED;

    font-size:20px;

    font-style:normal;
}

/* دکمه */

.consult-btn{

    grid-column:span 3;

    height:64px;

    border:none;

    border-radius:18px;

    cursor:pointer;

    color:#fff;

    font-size:18px;

    font-weight:700;

    background:
    linear-gradient(
    90deg,
    #5B21FF,
    #7C3AED,
    #B245FF
    );

    box-shadow:
    0 10px 30px rgba(124,58,237,.25);

    transition:.3s;
}

.consult-btn:hover{

    transform:translateY(-2px);
}

/* مزایا */

.consultation-features{

    margin-top:18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

    font-size:15px;

    font-weight:600;

    color:#4B4B60;
}

.consultation-features div{

    display:flex;

    align-items:center;

    gap:8px;
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .consultation-card{

        flex-direction:column;
    }

    .consultation-image{

        width:100%;
        max-width:450px;
    }

    .consultation-content{

        width:100%;
    }

    .consultation-form{

        grid-template-columns:1fr;
    }

    .consult-btn{

        grid-column:span 1;
    }

    .consultation-features{

        flex-direction:column;

        text-align:center;
    }
}

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

@media(max-width:768px){

    .consultation-section{

        width:95%;
    }

    .consultation-card{

        padding:20px;
    }

    .consultation-content h2{

        font-size:36px;
    }

    .consultation-content p{

        font-size:14px;
    }

    .consultation-image{

        width:100%;
    }

    .consultation-image img{

        border-radius:20px;
    }

    .input-group input,
    .input-group select{

        height:58px;

        font-size:14px;
    }

    .consult-btn{

        height:58px;

        font-size:16px;
    }

    .consultation-features{

        font-size:14px;
    }
}
/* ==========================
   HERO BUTTONS
========================== */

.hero-buttons{

    display:flex;

    gap:16px;

    justify-content:center;

    margin-top:25px;
}

.btn-primary{

    background:linear-gradient(
    135deg,
    #7C3AED,
    #A855F7
    );

    color:#fff;

    padding:18px 36px;

    border-radius:16px;

    font-weight:700;

    font-size:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

    box-shadow:
    0 10px 30px rgba(124,58,237,.25);
}

.btn-secondary{

    background:#fff;

    color:#231942;

    border:2px solid #DDD6FE;

    padding:18px 36px;

    border-radius:16px;

    font-weight:700;

    font-size:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;
}

.btn-primary:hover,
.btn-secondary:hover{

    transform:translateY(-2px);
}

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

@media(max-width:768px){

    .hero-buttons{

        width:100%;

        display:flex;

        gap:10px;

        margin-top:18px;
    }

    .hero-buttons a{

        flex:1;

        height:50px;

        min-height:46px;

        padding:0 10px;

        font-size:13px;

        font-weight:700;

        border-radius:12px;

        white-space:nowrap;

        display:flex;

        align-items:center;

        justify-content:center;
    }

    .btn-primary{

        box-shadow:
        0 8px 20px rgba(124,58,237,.20);
    }

    .btn-secondary{

        border-width:1px;
    }
}

/* ==========================
   INSURANCE SECTION
========================== */

.insurance-section{

    width:90%;

    max-width:1400px;

    margin:80px auto;

    text-align:center;
}

.insurance-section h2{

    font-size:48px;

    font-weight:800;

    color:#231942;

    margin-bottom:10px;
}

.insurance-section p{

    color:#8A8AA3;

    font-size:18px;

    margin-bottom:40px;
}

/* ==========================
   SWIPER
========================== */

.insuranceSwiper{

    padding:20px 0 40px;
}

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

.insurance-card{

    width:190px !important;

    height:130px;

    background:#fff;

    border:1px solid #EFEFF6;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

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

    transition:.35s;
}

.insurance-card:hover{

    transform:translateY(-6px);

    border-color:#DDD6FE;

    box-shadow:
    0 20px 40px rgba(124,58,237,.12);
}

/* ==========================
   LOGO
========================== */

.insurance-card img{

    width:150px;

    height:90px;

    object-fit:contain;

    transition:.3s;
}

.insurance-card:hover img{

    transform:scale(1.05);
}

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

@media(max-width:768px){

    .insurance-section{

        width:95%;

        margin:60px auto;
    }

    .insurance-section h2{

        font-size:32px;
    }

    .insurance-section p{

        font-size:15px;

        margin-bottom:25px;
    }

    .insurance-card{

        width:170px !important;

        height:120px;

        border-radius:20px;
    }

    .insurance-card img{

        width:130px;

        height:80px;
    }
}
/* ==========================
   MOBILE FOOTER
========================== */

.mobile-footer{

    display:none;
}

/* فقط موبایل */

@media(max-width:768px){

.footer{

    display:none;
}

/* فوتر جدید */

.mobile-footer{

    display:block;

    background:
    linear-gradient(
        135deg,
        #4C1D95,
        #7C3AED,
        #A855F7
    );

    padding:40px 25px;

    text-align:center;

    color:#fff;

    border-radius:30px 30px 0 0;

    margin-top:70px;
}

.mobile-footer-logo{

    width:120px;

    margin-bottom:15px;

    filter:brightness(0) invert(1);
}

.mobile-footer h3{

    font-size:20px;

    line-height:1.8;

    margin-bottom:25px;
}

.mobile-call{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#fff;

    font-size:28px;

    font-weight:800;

    margin-bottom:25px;
}

.mobile-buttons{

    display:flex;

    gap:10px;

    margin-bottom:25px;
}

.mobile-buttons a{

    flex:1;

    background:#fff;

    color:#7C3AED;

    text-decoration:none;

    padding:14px;

    border-radius:14px;

    font-weight:700;
}

.mobile-trust{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:10px;

    margin-top:20px;

    margin-bottom:25px;
}

.mobile-trust div{

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

    padding:12px;

    border-radius:14px;

    font-size:13px;
}

.mobile-address{

    margin-top:20px;

    line-height:2;

    font-size:14px;

    opacity:.95;
}

.mobile-copy{

    margin-top:20px;

    padding-top:20px;

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

    font-size:12px;

    opacity:.8;
}
}
/* ===== Why Nura Section ===== */

.advantages{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
    color:#111827;
}

.section-subtitle{
    font-size:18px;
    color:#6b7280;
    line-height:1.8;
}

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

.adv-card{
    background:#fff;
    border-radius:24px;
    padding:28px 22px;
    text-align:center;
    border:1px solid #f1f1f1;
    transition:all .3s ease;
    min-height:280px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
}

.adv-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(124,58,237,.15);
    border-color:rgba(124,58,237,.15);
}

.adv-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background:rgba(124,58,237,.12);
    color:#7c3aed;

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

    margin-bottom:18px;
}

.adv-icon svg{
    width:32px;
    height:32px;
    stroke-width:1.8;
}

.adv-card h3{
    font-size:26px;
    font-weight:700;
    line-height:1.5;
    margin-bottom:12px;
    color:#111827;
}

.adv-card p{
    font-size:15px;
    line-height:2;
    color:#6b7280;
    margin:0;
}

@media(max-width:992px){

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

}

@media(max-width:768px){

    .section-title h2{
        font-size:38px;
    }

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

    .adv-card{
        min-height:auto;
    }

}
/* =========================
   NURA STATS BAR
========================= */

.stats-bar{
    margin-top:60px;

    background:linear-gradient(
        135deg,
        #3c1c82 0%,
        #6d35f5 100%
    );

    border-radius:30px;

    padding:25px 20px;

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

    box-shadow:
    0 20px 60px rgba(109,53,245,.25);

    overflow:hidden;
}

.stats-item{
    flex:1;

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

    gap:18px;
}

.stats-icon{
    width:80px;
    height:80px;

    background:#fff;

    border-radius:50%;

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

    flex-shrink:0;
}

.stats-icon svg{
    width:38px;
    height:38px;

    color:#5B21B6;

    stroke-width:2;
}

.stats-content{
    display:flex;
    flex-direction:column;
}

.stats-number{
    color:#ffcf5a;

    font-size:42px;
    font-weight:800;
    line-height:1;
}

.stats-title{
    color:#fff;

    font-size:18px;
    font-weight:600;

    margin-top:8px;
}

.stats-divider{
    width:1px;
    height:80px;

    background:rgba(255,255,255,.20);
}

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

@media(max-width:768px){

    .stats-bar{

        display:grid;

        grid-template-columns:1fr;

        padding:0;

        margin-top:40px;
    }

    .stats-item{

        justify-content:flex-start;

        padding:22px;
    }

    .stats-divider{

        width:100%;
        height:1px;
    }

    .stats-icon{

        width:65px;
        height:65px;
    }

    .stats-icon svg{

        width:28px;
        height:28px;
    }

    .stats-number{

        font-size:34px;
    }

    .stats-title{

        font-size:16px;
    }

}
/* HERO */

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

.hero{
padding:90px 0 70px;
background:
radial-gradient(
circle at top right,
rgba(124,58,237,.08),
transparent 40%
),
linear-gradient(
180deg,
#faf8ff 0%,
#f5f0ff 100%
);
overflow:hidden;
}

.hero-grid{
    display:grid;
    grid-template-columns: 45% 55%;
    align-items:center;
    gap:40px;
}

.hero-content{
flex:1;
max-width:620px;
}

.hero-logo{
width:200px;
height:auto;
margin-bottom:20px;
display:block;
}

.hero-badge{
display:inline-block;
padding:10px 22px;
border-radius:30px;
background:rgba(212,175,55,.12);
color:#c89d2c;
font-size:15px;
font-weight:700;
margin-bottom:20px;
}

.hero-title{
font-size:78px;
line-height:1.05;
color:#2b1468;
font-weight:900;
margin-bottom:20px;
}

.hero-subtitle{
font-size:30px;
line-height:1.5;
color:#444;
font-weight:700;
margin-bottom:25px;
}

.hero-desc{
font-size:19px;
line-height:2.1;
color:#666;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:linear-gradient(
135deg,
#7c3aed,
#9333ea
);
color:#fff;
padding:18px 38px;
border-radius:18px;
text-decoration:none;
font-weight:800;
box-shadow:0 15px 35px rgba(124,58,237,.25);
transition:.3s;
}

.btn-primary:hover{
transform:translateY(-4px);
}

.btn-secondary{
background:#fff;
color:#4c1d95;
border:2px solid #d6bcfa;
padding:18px 38px;
border-radius:18px;
text-decoration:none;
font-weight:800;
transition:.3s;
}

.btn-secondary:hover

.hero-image{
flex:1;
display:flex;
justify-content:flex-start;
align-items:center;
}

.hero-image img{
width:100%;
max-width:850px;
height:auto;
display:block;
transform:scale(1.08);
}

/* =========================
STATS
========================= */

.hero-stats{
margin-top:-30px;
padding-bottom:80px;
}

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

.stat-item{
background:#fff;
border-radius:24px;
padding:35px 25px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.06);
transition:.3s;
}

.stat-item:hover{
transform:translateY(-6px);
}

.stat-item h3{
font-size:42px;
font-weight:900;
color:#6d28d9;
margin-bottom:10px;
}

.stat-item p{
font-size:16px;
color:#666;
}

/* =========================
TABLET
========================= */

@media(max-width:992px){

```
.hero{
    padding:60px 0;
}

.hero-grid{
    flex-direction:column-reverse;
    text-align:center;
    gap:40px;
}

.hero-logo{
    width:180px;
    margin:0 auto 20px;
}

.hero-title{
    font-size:52px;
}

.hero-subtitle{
    font-size:24px;
}

.hero-desc{
    font-size:17px;
}

.hero-buttons{
    justify-content:center;
}

.hero-image img{
    max-width:550px;
    transform:none;
    margin:auto;
}

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

}

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

@media(max-width:576px){

```
.hero-title{
    font-size:38px;
    line-height:1.2;
}

.hero-subtitle{
    font-size:20px;
}

.hero-desc{
    font-size:15px;
    line-height:2;
}

.hero-logo{
    width:150px;
}

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

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

.stat-item{
    padding:25px;
}

.stat-item h3{
    font-size:34px;
}
```

}
/* ===================================
   SERVICE PAGES — implant / composite / veneer
   Compatible with nuraaa.com design
=================================== */

/* ==========================
   PAGE HERO
========================== */

.service-hero {
    padding: 120px 0 60px;
    background:
        radial-gradient(
            circle at top right,
            rgba(124, 58, 237, .08),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #faf8ff 0%,
            #f5f0ff 100%
        );
    overflow: hidden;
}

.service-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.service-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #2b1468;
    font-weight: 900;
    margin-bottom: 20px;
}

.service-hero .hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
    font-weight: 600;
    margin-bottom: 30px;
}

.service-hero .hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-hero .hero-cta .btn-primary,
.service-hero .hero-cta .btn-outline {
    padding: 16px 34px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.service-hero .hero-cta .btn-primary {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    box-shadow: 0 15px 35px rgba(124, 58, 237, .25);
}

.service-hero .hero-cta .btn-primary:hover {
    transform: translateY(-3px);
}

.service-hero .hero-cta .btn-outline {
    background: #fff;
    color: #4c1d95;
    border: 2px solid #d6bcfa;
}

.service-hero .hero-cta .btn-outline:hover {
    transform: translateY(-3px);
    border-color: #7c3aed;
}

.service-hero .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-hero .hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, .08));
}

/* ==========================
   STATS (reuse existing)
========================== */

.service-stats {
    margin-top: -40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 50;
}

.service-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
}

.service-stats .stat-item {
    padding: 35px 25px;
    text-align: center;
    border-left: 1px solid #F2F2F2;
}

.service-stats .stat-item:last-child {
    border-left: none;
}

.service-stats .stat-number {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: #6d28d9;
    margin-bottom: 8px;
}

.service-stats .stat-label {
    display: block;
    font-size: 15px;
    color: #666;
}

/* ==========================
   CONTENT SECTION
========================== */

.content-section {
    padding: 80px 0;
    background: #fff;
}

.content-section .container {
    max-width: 900px;
}

.content-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #17172B;
    margin-bottom: 20px;
    margin-top: 50px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 18px;
    line-height: 2;
    color: #444;
    margin-bottom: 20px;
}

.content-section ul {
    list-style: none;
    margin-bottom: 30px;
}

.content-section ul li {
    font-size: 17px;
    line-height: 2.2;
    color: #444;
    padding-right: 30px;
    position: relative;
}

.content-section ul li::before {
    content: "✅";
    position: absolute;
    right: 0;
    top: 2px;
}

.content-section a {
    color: #7c3aed;
    font-weight: 600;
    transition: .3s;
}

.content-section a:hover {
    color: #5b21b6;
}

.content-section strong {
    color: #17172B;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0 50px;
}

.feature-card {
    background: #FAF9FF;
    border: 1px solid #f1f1f1;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, .12);
    border-color: rgba(124, 58, 237, .15);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(124, 58, 237, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #17172B;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #6B7280;
    margin: 0;
}

/* ==========================
   STEPS
========================== */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0 50px;
}

.step {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 24px;
    padding: 35px 25px;
    position: relative;
    transition: .3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, .10);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(124, 58, 237, .25);
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #17172B;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    line-height: 1.8;
    color: #6B7280;
    margin: 0;
}

/* ==========================
   COMPARISON TABLE
========================== */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0 50px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.comparison-table thead {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
}

.comparison-table th {
    padding: 20px 25px;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
}

.comparison-table td {
    padding: 16px 25px;
    font-size: 16px;
    color: #444;
    text-align: center;
    border-bottom: 1px solid #f1f1f1;
    background: #fff;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: #FAF9FF;
}

.comparison-table td:first-child {
    font-weight: 700;
    color: #17172B;
}

/* ==========================
   FAQ
========================== */

.faq {
    margin: 30px 0 50px;
}

.faq details {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 18px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: .3s;
}

.faq details:hover {
    border-color: #d6bcfa;
}

.faq summary {
    padding: 22px 25px;
    font-size: 18px;
    font-weight: 700;
    color: #17172B;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}

.faq summary::after {
    content: "+";
    font-size: 28px;
    color: #7c3aed;
    font-weight: 300;
    transition: .3s;
}

.faq details[open] summary::after {
    transform: rotate(45deg);
}

.faq details[open] summary {
    background: #FAF9FF;
}

.faq details p {
    padding: 0 25px 22px;
    font-size: 16px;
    line-height: 2;
    color: #6B7280;
    margin: 0;
}

/* ==========================
   CTA SECTION (Consultation)
========================== */

.cta-section {
    padding: 80px 0;
    background: #FAF9FF;
}

.cta-section .container {
    max-width: 800px;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 800;
    color: #17172B;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 35px;
}

.consult-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.consult-form input,
.consult-form select {
    height: 60px;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 0 18px;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 15px;
    transition: .3s;
}

.consult-form input:focus,
.consult-form select:focus {
    border-color: #7c3aed;
    outline: none;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, .1);
}

.consult-form select {
    grid-column: span 2;
}

.consult-form button {
    grid-column: span 2;
    height: 60px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(124, 58, 237, .25);
    transition: .3s;
}

.consult-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, .30);
}

.form-note {
    font-size: 14px !important;
    color: #9CA3AF !important;
    margin-top: 15px !important;
}

/* ==========================
   PAGE HEADER (reuse header)
========================== */

.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #f1f1f1;
}

.header .container {
    height: 95px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================
   RESPONSIVE — TABLET
========================== */

@media (max-width: 992px) {
    .service-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-hero .hero-cta {
        justify-content: center;
    }

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

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

    .content-section h2 {
        font-size: 36px;
    }
}

/* ==========================
   RESPONSIVE — MOBILE
========================== */

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 40px;
    }

    .service-hero h1 {
        font-size: 36px;
    }

    .service-hero .hero-subtitle {
        font-size: 18px;
    }

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

    .service-stats .stat-item {
        border-left: none;
        border-bottom: 1px solid #F2F2F2;
    }

    .service-stats .stat-item:last-child {
        border-bottom: none;
    }

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

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

    .content-section p {
        font-size: 16px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }

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

    .consult-form {
        grid-template-columns: 1fr;
    }

    .consult-form select,
    .consult-form button {
        grid-column: span 1;
    }

    .navbar {
        display: none;
    }
}
/* ===== Mobile Menu ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #6B2D8C;
    border-radius: 3px;
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 5px;
}

.mobile-nav ul li a {
    display: block;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    transition: 0.3s;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    background: #f3e8f7;
    color: #6B2D8C;
}

.mobile-nav .btn-consult {
    margin-top: 15px;
    background: linear-gradient(135deg, #8B3DA8, #6B2D8C);
    color: #fff !important;
    text-align: center;
    font-weight: 700;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-overlay.active {
    display: block;
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 768px) {
    .navbar {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header .container {
        position: relative;
    }

    .phone-btn {
        font-size: 14px;
        padding: 8px 14px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-nav {
        display: none !important;
    }

    .mobile-overlay {
        display: none !important;
    }
}
.faq-answer {
    display: none;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    display: block;
    padding: 0 1.5rem 1.3rem;
}