  /* =========================================================
   🦷 DENTAL WEBSITE — PREMIUM CSS
   همان کلاس‌های قبلی | بدون نیاز به تغییر HTML
========================================================= */

:root {
    --primary: #4ac495;
    --primary-light: #8ee0bd;
    --primary-dark: #507d6c;

    --gold: #c7a45a;
    --gold-light: #dfc887;

    --bg: #e8ffdf;
    --surface: #ffffff;
    --surface-2: #eef5f1;

    --text: #23332d;
    --text-light: #64746d;

    --border: rgba(74,196,149,.18);

    --shadow:
        0 20px 60px rgba(52,85,72,.10);

    --shadow-hover:
        0 35px 90px rgba(52,85,72,.18);

    --radius: 26px;

    --ease: cubic-bezier(.2,.8,.2,1);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Vazirmatn", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.9;
    overflow-x: hidden;
    transition:
        background .5s ease,
        color .5s ease;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================================================
   ✨ GLOBAL BACKGROUND
========================================================= */

body::before {
    content: "";
    position: fixed;

    width: 450px;
    height: 450px;

    top: 10%;
    right: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(74,196,149,.16),
            transparent 70%
        );

    filter: blur(20px);

    pointer-events: none;

    z-index: -1;

    animation: floatingOrb 9s ease-in-out infinite;
}

body::after {
    content: "";

    position: fixed;

    width: 350px;
    height: 350px;

    bottom: 5%;
    left: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(199,164,90,.10),
            transparent 70%
        );

    filter: blur(25px);

    pointer-events: none;

    z-index: -1;

    animation: floatingOrb2 11s ease-in-out infinite;
}

@keyframes floatingOrb {

    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-50px,40px);
    }
}

@keyframes floatingOrb2 {

    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(40px,-50px);
    }
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =========================================================
   SECTION
========================================================= */

.section {
    padding: 120px 0;
    position: relative;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;

    top: 15px;
    right: 50%;

    transform: translateX(50%);

    width: min(1180px, calc(100% - 30px));

    z-index: 1000;

    background: rgba(255,255,255,.72);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border: 1px solid rgba(74,196,149,.18);

    border-radius: 22px;

    box-shadow:
        0 12px 45px rgba(52,85,72,.10);

    transition:
        .5s var(--ease);

    animation: headerDrop .8s var(--ease);
}

@keyframes headerDrop {

    from {
        opacity: 0;
        transform:
            translate(50%,-30px);
    }

    to {
        opacity: 1;
        transform:
            translate(50%,0);
    }
}

.header:hover {
    box-shadow:
        0 18px 60px rgba(52,85,72,.15);
}

.dark .header {
    background: rgba(38,58,50,.82);
    border-color: rgba(142,224,189,.15);
}


.nav-container {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 0 18px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    width: 62px;
    height: 62px;

    object-fit: contain;

    border-radius: 18px;

    padding: 6px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.8),
            rgba(74,196,149,.08)
        );

    border: 1px solid rgba(74,196,149,.25);

    box-shadow:
        0 10px 30px rgba(74,196,149,.15);

    animation:
        logoFloat 4s ease-in-out infinite;

    transition: .4s var(--ease);
}

@keyframes logoFloat {

    0%,100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-5px) rotate(1deg);
    }
}

.header-logo:hover {
    transform:
        translateY(-5px)
        rotate(-3deg)
        scale(1.06);

    border-color: var(--gold);

    box-shadow:
        0 15px 35px rgba(199,164,90,.25),
        0 0 25px rgba(74,196,149,.15);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 15px;
}

.logo-text small {
    font-size: 9px;
    color: var(--text-light);
}


/* =========================================================
   NAV
========================================================= */

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav a {
    position: relative;

    color: var(--text-light);

    font-size: 13px;

    transition: .35s var(--ease);
}

.nav a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav a::after {
    content: "";

    position: absolute;

    right: 50%;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--primary)
        );

    transform: translateX(50%);

    transition: .4s var(--ease);
}

.nav a:hover::after {
    width: 80%;
}


/* =========================================================
   HEADER BUTTONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.theme-btn,
.menu-btn {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 1px solid var(--border);

    background: var(--surface);

    color: var(--text);

    cursor: pointer;

    transition: .35s var(--ease);
}

.theme-btn:hover,
.menu-btn:hover {
    transform:
        translateY(-3px)
        rotate(8deg);

    color: var(--gold);

    border-color: var(--gold);

    box-shadow:
        0 8px 25px rgba(199,164,90,.18);
}

.appointment-btn,
.primary-btn {

    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 25px;

    border-radius: 100px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: white;

    font-size: 13px;

    overflow: hidden;

    box-shadow:
        0 12px 30px rgba(74,196,149,.25);

    transition: .4s var(--ease);

    animation:
        buttonPulse 3s infinite;
}

.appointment-btn::before,
.primary-btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.4),
            transparent
        );

    transform: skewX(-20deg);

    transition: .7s;
}

.appointment-btn:hover::before,
.primary-btn:hover::before {
    left: 140%;
}

.appointment-btn:hover,
.primary-btn:hover {

    transform:
        translateY(-4px)
        scale(1.03);

    box-shadow:
        0 18px 45px rgba(74,196,149,.35);
}

@keyframes buttonPulse {

    0%,100% {
        box-shadow:
            0 12px 30px rgba(74,196,149,.20);
    }

    50% {
        box-shadow:
            0 12px 40px rgba(74,196,149,.38);
    }
}

.menu-btn {
    display: none;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    position: fixed;

    top: 105px;
    right: 15px;
    left: 15px;

    padding: 18px;

    display: none;

    flex-direction:column;
    gap: 7px;

    background: rgba(255,255,255,.88);

    backdrop-filter: blur(20px);

    border: 1px solid var(--border);

    border-radius: 22px;

    box-shadow: var(--shadow);

    animation: menuIn .4s var(--ease);

    z-index: 9999;
}

.mobile-menu.active {
    display: flex;
}

@keyframes menuIn {

    from {
        opacity: 0;
        transform: translateY(-15px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mobile-menu a {

    padding: 13px 15px;

    border-radius: 14px;

    color: var(--text-light);

    transition: .3s;
}

.mobile-menu a:hover {
    background: var(--surface-2);
    color: var(--primary);
    transform: translateX(-5px);
}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    padding-top: 150px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;
}

.hero-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}


/* ورود Hero */

.hero-content {

    animation:
        heroContentIn 1s var(--ease);
}

@keyframes heroContentIn {

    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-label {

    display: inline-flex;

    align-items: center;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 18px;

    padding-right: 35px;

    position: relative;
}

.section-label::before {

    content: "";

    position: absolute;

    right: 0;

    width: 24px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--primary)
        );

    border-radius: 20px;

    animation:
        labelLine 2s infinite;
}

@keyframes labelLine {

    0%,100% {
        width: 20px;
    }

    50% {
        width: 32px;
    }
}

.hero h1 {

    font-size: clamp(45px,6vw,75px);

    line-height: 1.25;

    letter-spacing: -2px;

    margin-bottom: 18px;

    color: var(--text);

    animation:
        titleReveal 1s .2s var(--ease) both;
}

@keyframes titleReveal {

    from {
        opacity: 0;
        transform: translateY(35px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero h1 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            #0ea5b7,
            var(--gold)
        );

    background-size: 200%;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    animation:
        gradientMove 5s ease infinite;
}

@keyframes gradientMove {

    0%,100% {
        background-position: 0%;
    }

    50% {
        background-position: 100%;
    }
}

.hero-content > p {

    max-width: 570px;

    color: var(--text-light);

    font-size: 15px;

    margin-bottom: 32px;

    animation:
        fadeUp .8s .4s both;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {

    display: flex;

    gap: 12px;

    margin-bottom: 42px;
}

.secondary-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 24px;

    border-radius: 100px;

    border: 1px solid var(--border);

    background: rgba(255,255,255,.35);

    color: var(--text);

    transition: .35s var(--ease);
}

.secondary-btn:hover {

    transform: translateY(-4px);

    border-color: var(--gold);

    color: var(--gold);

    box-shadow:
        0 10px 30px rgba(199,164,90,.12);
}


/* =========================================================
   HERO INFO
========================================================= */

.hero-info {

    display: flex;

    gap: 35px;
}

.hero-info div {

    display: flex;

    flex-direction: column;

    position: relative;
}

.hero-info div::before {

    content: "";

    position: absolute;

    right: -17px;

    top: 5px;

    width: 1px;

    height: 35px;

    background: var(--border);
}

.hero-info strong {

    font-size: 23px;

    color: var(--gold);

    animation:
        numberFloat 3s ease-in-out infinite;
}

@keyframes numberFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.hero-info span {

    font-size: 11px;

    color: var(--text-light);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image-wrapper {

    position: relative;

    padding: 25px;

    animation:
        heroImageIn 1.2s var(--ease);
}

@keyframes heroImageIn {

    from {
        opacity: 0;
        transform:
            translateX(-50px)
            scale(.94);
    }

    to {
        opacity: 1;
        transform:
            translateX(0)
            scale(1);
    }
}

.hero-image {

    height: 590px;

    border-radius:
        160px 160px 35px 35px;

    overflow: hidden;

    background: var(--surface-2);

    box-shadow:
        0 35px 90px rgba(52,85,72,.18);

    position: relative;

    z-index: 2;

    transition: .6s var(--ease);
}

.hero-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(74,196,149,.12),
            transparent 40%,
            rgba(199,164,90,.08)
        );

    pointer-events: none;
}

.hero-image:hover {

    transform:
        translateY(-10px)
        rotate(-1deg);

    box-shadow:
        0 45px 100px rgba(52,85,72,.25);
}

.hero-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s var(--ease);
}

.hero-image:hover img {
    transform: scale(1.06);
}

.image-caption {

    position: absolute;

    bottom: 25px;

    right: 25px;
    left: 25px;

    padding: 18px 20px;

    border-radius: 18px;

    background: rgba(255,255,255,.78);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,.5);

    display: flex;

    flex-direction: column;

    z-index: 3;

    transition: .4s;
}

.hero-image:hover .image-caption {
    transform: translateY(-5px);
}

.image-caption span {
    font-size: 10px;
    color: var(--gold);
}

.image-caption strong {
    font-size: 17px;
}


/* =========================================================
   DECORATIONS
========================================================= */

.gold-circle {

    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    border: 1px solid var(--gold);

    left: -45px;

    bottom: -50px;

    opacity: .45;

    z-index: 1;

    animation:
        circleRotate 12s linear infinite;
}

@keyframes circleRotate {

    to {
        transform: rotate(360deg);
    }
}

.hero-decoration {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    animation:
        decorationFloat 8s ease-in-out infinite;
}

.decoration-one {

    width: 500px;
    height: 500px;

    right: -250px;
    top: 120px;

    background:
        radial-gradient(
            circle,
            rgba(74,196,149,.12),
            transparent 70%
        );
}

.decoration-two {

    width: 300px;
    height: 300px;

    left: -150px;
    bottom: 50px;

    background:
        radial-gradient(
            circle,
            rgba(199,164,90,.12),
            transparent 70%
        );
}

@keyframes decorationFloat {

    0%,100% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(25px,-25px) scale(1.05);
    }
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 650px;
    margin-bottom: 65px;
}

.section-heading.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading > span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}

.section-heading h2 {

    font-size: clamp(32px,4vw,48px);

    line-height: 1.4;

    margin: 12px 0 18px;

    color: var(--text);

    position: relative;

    animation:
        headingReveal 1s var(--ease) both;
}

@keyframes headingReveal {

    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.section-heading p {

    color: var(--text-light);

    font-size: 14px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background:
        linear-gradient(
            135deg,
            var(--surface-2),
            rgba(232,255,223,.75)
        );

    position: relative;
}

.about-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.about-image {

    height: 570px;

    border-radius: 35px;

    overflow: hidden;

    background: var(--surface);

    box-shadow: var(--shadow);

    position: relative;
}

.about-image::after {

    content: "";

    position: absolute;

    inset: 12px;

    border: 1px solid rgba(255,255,255,.5);

    border-radius: 28px;

    pointer-events: none;

    z-index: 2;
}

.about-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s var(--ease);
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-content h3 {
    font-size: 30px;
    margin-bottom: 25px;
}

.about-content p {

    color: var(--text-light);

    margin-bottom: 18px;

    font-size: 14px;
}

.about-features {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 15px;

    margin-top: 35px;
}

.about-features div {

    padding: 20px;

    background: rgba(255,255,255,.65);

    border: 1px solid rgba(74,196,149,.12);

    border-radius: 18px;

    display: flex;

    flex-direction: column;

    transition: .4s var(--ease);
}

.about-features div:hover {

    transform:
        translateY(-8px)
        rotate(-1deg);

    box-shadow:
        0 20px 40px rgba(52,85,72,.12);

    border-color: rgba(74,196,149,.3);
}

.about-features strong {

    color: var(--gold);

    font-size: 12px;
}

.about-features span {

    font-size: 12px;

    margin-top: 5px;
}


/* =========================================================
   🦷 SERVICES
========================================================= */

.services-list {

    display: flex;

    flex-direction: column;

    gap: 45px;
}

.service-card {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 60px;

    align-items: center;

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.95),
            rgba(255,255,255,.75)
        );

    border-radius: 35px;

    border: 1px solid rgba(74,196,149,.12);

    box-shadow:
        0 15px 50px rgba(40,70,59,.07);

    position: relative;

    overflow: hidden;

    transition:
        transform .55s var(--ease),
        box-shadow .55s var(--ease);
}

.service-card::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(74,196,149,.10),
            transparent 70%
        );

    left: -180px;
    bottom: -180px;

    transition: .7s;
}

.service-card:hover::after {

    transform: scale(1.5);

}

.service-card:hover {

    transform:
        translateY(-12px)
        scale(1.01);

    box-shadow:
        0 35px 80px rgba(40,70,59,.16);
}

.service-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    border: 1px solid rgba(199,164,90,.20);

    top: -100px;
    left: -80px;

    transition: .7s;
}

.service-card:hover::before {
    transform:
        scale(1.7)
        rotate(45deg);
}

.service-card.reverse {
    grid-template-columns: 1.2fr .8fr;
}

.service-card.reverse .service-image {
    order: 2;
}

.service-card.reverse .service-content {
    order: 1;
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image {

    height: 360px;

    background: var(--surface-2);

    border-radius: 28px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 15px 35px rgba(52,85,72,.08);
}

.service-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            145deg,
            rgba(74,196,149,.08),
            transparent 50%,
            rgba(199,164,90,.10)
        );

    pointer-events: none;
}

.service-image img {

    width: 100%;
    height: 100%;

    object-fit:fill;

    transition:
        transform 1s var(--ease);
}

.service-card:hover .service-image img {

    transform:
        scale(1.10)
        rotate(1deg);
}

.service-image span {

    position: absolute;

    top: 18px;
    right: 18px;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.82);

    backdrop-filter: blur(10px);

    color: var(--primary);

    font-size: 12px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.08);

    z-index: 2;

    transition: .4s;
}

.service-card:hover .service-image span {

    transform:
        rotate(360deg)
        scale(1.08);

    color: var(--gold);
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-content {
    position: relative;
    z-index: 2;
}

.service-number {

    display: inline-block;

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 4px;
}

.service-content h3 {

    font-size: 30px;

    margin: 5px 0 20px;

    transition: .4s;
}

.service-card:hover .service-content h3 {
    color: var(--primary-dark);
    transform: translateX(-5px);
}

.service-content p {

    color: var(--text-light);

    font-size: 14px;

    margin-bottom: 14px;
}


/* =========================================================
   SERVICES DROPDOWN
========================================================= */

.services-dropdown {
    position: relative;
}

.services-trigger {

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 0;

    border: none;

    background: transparent;

    color: var(--text);

    font-size: 14px;

    cursor: pointer;

    transition: .3s;
}

.services-trigger:hover {
    color: var(--primary);
}

.dropdown-arrow {
    transition: .4s var(--ease);
}

.services-menu {

    position: absolute;

    top: calc(100% + 18px);

    right: 50%;

    transform:
        translateX(50%)
        translateY(15px)
        scale(.96);

    width: 420px;

    padding: 12px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 5px;

    background:
        rgba(255,255,255,.92);

    backdrop-filter: blur(22px);

    border: 1px solid var(--border);

    border-radius: 22px;

    box-shadow:
        0 30px 80px rgba(52,85,72,.17);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .3s,
        transform .4s var(--ease);

    z-index: 9999;
}

.services-dropdown:hover .services-menu,
.services-dropdown.open .services-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(50%)
        translateY(0)
        scale(1);
}

.services-menu::before {

    content: "";

    position: absolute;

    top: -7px;

    right: 50%;

    width: 14px;
    height: 14px;

    transform:
        translateX(50%)
        rotate(45deg);

    background: rgba(255,255,255,.92);

    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.services-menu a {

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 12px 10px;

    border-radius: 13px;

    color: var(--text);

    transition:
        .3s var(--ease);
}

.services-menu a:hover {

    background:
        linear-gradient(
            90deg,
            rgba(74,196,149,.10),
            rgba(255,255,255,.6)
        );

    transform:
        translateX(-5px);
}

.services-menu a > span {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(74,196,149,.15),
            rgba(199,164,90,.10)
        );

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    transition: .4s;
}

.services-menu a:hover > span {

    transform:
        rotate(-8deg)
        scale(1.08);

    background: var(--primary);

    color: white;
}

.services-menu a div {

    display: flex;
    flex-direction: column;
    gap: 2px;
}

.services-menu strong {
    font-size: 12px;
}

.services-menu small {

    color: var(--text-light);

    font-size: 9px;
}
/* ================================
   SERVICES DROPDOWN - FAST
================================ */

.services-dropdown {
    position: relative;
}


/* دکمه خدمات */

.services-trigger {
    display: flex;
    align-items: center;
    gap: 6px;

    background: transparent;
    border: none;

    color: var(--text);

    font-family: inherit;
    font-size: 14px;

    cursor: pointer;

    padding: 10px 0;
}


/* فلش */

.dropdown-arrow {
    font-size: 17px;
    line-height: 1;

    transition: transform .2s ease;
}


/* ================================
   MENU
================================ */

.services-menu {

    position: absolute;

    top: 100%;
    right: 50%;

    transform: translateX(50%);

    width: 600px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 6px;

    padding: 12px;

    margin-top: 8px;

    background:#e8ffdf;

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.14);

    z-index: 9999;

    /* حالت بسته */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    /* انیمیشن خیلی سریع */
    transition:
        opacity .12s ease,
        visibility .12s ease;
}


/* باز شدن */

.services-dropdown:hover .services-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* فلش */

.services-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}


/* ================================
   ITEMS
================================ */

.services-menu > a {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px;

    border-radius: 13px;

    text-decoration: none;

    color: var(--text);

    transition:
        background .15s ease,
        transform .15s ease;
}


.services-menu > a:hover {

    background: rgba(111,159,117,.12);

    transform: translateX(-3px);
}


.services-menu > a > span {

    min-width: 28px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;
}


.services-menu strong {

    display: block;

    font-size: 13px;

    margin-bottom: 3px;
}


.services-menu small {

    display: block;

    color: var(--muted);

    font-size: 10px;
}


/* ================================
   DARK MODE
================================ */

body.dark .services-menu {

    background: #10291f;

    box-shadow:
        0 20px 60px rgba(0,0,0,.45),
        0 0 30px rgba(169,217,140,.08);
}


body.dark .services-menu > a:hover {

    background: rgba(169,217,140,.10);
}


/* ================================
   MOBILE
================================ */

@media (max-width: 950px) {

    .services-menu {

        position: static;

        width: 100%;

        display: none;

        margin-top: 8px;

        transform: none;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;
    }

}

/* =========================================================
   VIDEO
========================================================= */

.video-section {
    padding-top: 20px;
}

.video-box {

    height: 560px;

    background: var(--surface-2);

    border-radius: 35px;

    overflow: hidden;

    position: relative;

    box-shadow: var(--shadow);

    transition: .5s;
}

.video-box:hover {

    transform: translateY(-8px);

    box-shadow:
        0 35px 80px rgba(52,85,72,.18);
}

.video-box video {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .7s;
}

.video-box:hover video {
    transform: scale(1.025);
}

.video-overlay {

    position: absolute;

    right: 40px;
    bottom: 40px;

    padding: 25px 30px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.78);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,.5);

    pointer-events: none;

    animation:
        overlayFloat 4s ease-in-out infinite;
}

@keyframes overlayFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

.video-overlay span {
    color: var(--gold);
    font-size: 11px;
}

.video-overlay h2 {
    margin-top: 5px;
    font-size: 25px;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
    background: var(--surface-2);
}

.faq-list {
    max-width: 1000px;
    margin: auto;
}

.faq-item {

    background: var(--surface);

    border-radius: 18px;

    margin-bottom: 13px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(63,93,82,.06);

    border: 1px solid transparent;

    transition:
        .4s var(--ease);
}

.faq-item:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(74,196,149,.18);

    box-shadow:
        0 15px 40px rgba(63,93,82,.10);
}

.faq-question {

    width: 100%;

    padding: 21px;

    border: 0;

    background: transparent;

    color: var(--text);

    display: flex;

    justify-content: space-between;

    align-items: center;

    text-align: right;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;
}

.faq-question span {

    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(74,196,149,.09);

    color: var(--gold);

    font-size: 19px;

    transition: .4s var(--ease);
}

.faq-item.active .faq-question span {

    transform:
        rotate(45deg);

    background: var(--primary);

    color: white;
}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height .5s var(--ease);
}

.faq-answer p {

    padding: 0 21px 21px;

    color: var(--text-light);

    font-size: 13px;
}


/* =========================================================
   ARTICLES
========================================================= */

.articles {
    background: var(--bg);
}

.articles-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;

    margin: 0;
}

.article-card {

    background: var(--surface);

    border-radius: 23px;

    overflow: hidden;

    box-shadow: var(--shadow);

    border: 1px solid var(--border);

    transition:
        .5s var(--ease);

    position: relative;
}

.article-card:hover {

    transform:
        translateY(-12px);

    box-shadow: var(--shadow-hover);
}

.article-image {

    height: 210px;

    width: 100%;

    overflow: hidden;

    position: relative;
}

.article-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(35,51,45,.18),
            transparent
        );

    pointer-events: none;
}

.article-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s var(--ease);
}

.article-card:hover .article-image img {

    transform:
        scale(1.1)
        rotate(1deg);
}

.article-content {
    padding: 22px;
}

.article-content span {

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;
}

.article-content h3 {

    color: var(--text);

    font-size: 17px;

    line-height: 1.7;

    margin: 8px 0;

    transition: .3s;
}

.article-card:hover h3 {
    color: var(--primary-dark);
}

.article-content p {

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.9;

    margin-bottom: 13px;
}

.article-content strong {
    color: var(--primary-dark);
    font-size: 12px;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {

    width: 100%;

    padding: 100px 20px;

    background: var(--bg);

    color: var(--text);
}

.reviews-container {
    max-width: 1100px;
    margin: auto;
}

.reviews-heading {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-heading > span {

    display: inline-block;

    padding: 6px 15px;

    border-radius: 50px;

    background:
        rgba(74,196,149,.10);

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;
}

.reviews-heading h2 {

    margin: 12px 0 6px;

    color: var(--text);

    font-size: clamp(25px,3vw,34px);
}

.reviews-heading p {

    color: var(--text-light);

    font-size: 13px;
}

.reviews-slider {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.reviews-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 6px 2px 14px;
    flex: 1;
    scrollbar-width: thin;
}
.reviews-track::-webkit-scrollbar { height: 8px; }
.reviews-track::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
.reviews-track::-webkit-scrollbar-track { background: transparent; }

.review-slide {
    flex: 0 0 340px;
    max-width: 82vw;
    scroll-snap-align: start;
}

.review-nav {
    flex: 0 0 auto;
    align-self: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--primary);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: .25s;
}
.review-nav:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.review-card {

    position: relative;

    padding: 23px;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition:
        .45s var(--ease);

    overflow: hidden;
}

.review-card::before {

    content: "";

    position: absolute;

    top: 0;

    right: 25px;
    left: 25px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            var(--gold),
            transparent
        );

    opacity: .7;
}

.review-card:hover {

    transform:
        translateY(-9px)
        rotate(-.5deg);

    box-shadow: var(--shadow-hover);
}

.review-user {

    display: flex;

    align-items: center;

    gap: 11px;
}

.review-avatar {

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: white;

    font-size: 16px;

    transition: .4s;
}

.review-card:hover .review-avatar {
    transform:
        rotate(-8deg)
        scale(1.08);
}

.review-user h3 {

    color: var(--text);

    font-size: 14px;
}

.review-user small {

    color: var(--text-light);

    font-size: 10px;
}

.review-stars {

    margin: 18px 0 10px;

    color: var(--gold);

    font-size: 14px;

    letter-spacing: 2px;

    direction: ltr;
}

.review-card p {

    min-height: 78px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 2;
}

.review-service {

    display: inline-block;

    margin-top: 15px;

    padding: 5px 10px;

    border-radius: 50px;

    background: var(--surface-2);

    color: var(--primary-dark);

    font-size: 9px;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
    background: var(--surface-2);
}

.gallery-grid {

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr;

    grid-template-rows:
        250px 250px;

    gap: 15px;
}

.gallery-item,
.gallery-items {

    background: var(--surface);

    border-radius: 25px;

    overflow: hidden;

    position: relative;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img,
.gallery-items img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s var(--ease);
}

.gallery-item:hover img,
.gallery-items:hover img {

    transform:
        scale(1.09)
        rotate(1deg);
}


/* =========================================================
   REGISTER / CONTACT
========================================================= */

.register {
    background: var(--bg);
}

.contact-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 80px;

    align-items: start;
}

.contact-info h2 {

    font-size: 45px;

    line-height: 1.45;

    margin-bottom: 20px;
}

.contact-info h2 span {

    display: block;

    color: var(--primary);

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--gold)
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    background-size: 200%;

    animation:
        gradientMove 4s infinite;
}

.contact-info > p {

    color: var(--text-light);

    margin-bottom: 35px;
}

.contact-details {

    display: flex;

    flex-direction: column;

    gap: 15px;
}

.contact-details div {

    display: flex;

    flex-direction: column;

    padding: 18px;

    background: var(--surface);

    border-radius: 15px;

    border: 1px solid var(--border);

    transition: .35s;
}

.contact-details div:hover {

    transform: translateX(-7px);

    border-color: var(--primary);

    box-shadow:
        0 12px 30px rgba(74,196,149,.10);
}

.contact-details strong {

    font-size: 12px;

    color: var(--gold);
}

.contact-details span {

    font-size: 13px;

    color: var(--text-light);
}

.contact-form {

    background: var(--surface);

    padding: 40px;

    border-radius: 30px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    transition: .4s;
}

.contact-form:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-hover);
}

.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-bottom: 18px;
}

.form-group label {

    font-size: 12px;

    color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border: 1px solid var(--border);

    background: var(--surface-2);

    color: var(--text);

    padding: 14px 16px;

    border-radius: 14px;

    outline: none;

    transition: .35s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--primary);

    background: var(--surface);

    box-shadow:
        0 0 0 4px rgba(74,196,149,.08);

    transform: translateY(-2px);
}

.form-btn {

    border: none;

    cursor: pointer;

    width: 100%;
}

#formMessage {

    margin-top: 15px;

    font-size: 12px;

    text-align: center;
}


/* =========================================================
   CONTACT SIMPLE
========================================================= */

.contact-simple {
    padding-top: 20px;
}

.contact-simple-box {

    background:
        linear-gradient(
            135deg,
            var(--surface-2),
            rgba(255,255,255,.7)
        );

    border-radius: 30px;

    padding: 45px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

    border: 1px solid var(--border);
}

.contact-simple-box > div:first-child {
    max-width: 550px;
}

.contact-simple-box span {

    color: var(--gold);

    font-size: 12px;
}

.contact-simple-box h2 {

    font-size: 35px;

    margin: 8px 0;
}

.contact-simple-box p {

    color: var(--text-light);

    font-size: 13px;
}

.contact-simple-details {

    display: flex;

    gap: 20px;
}

.contact-simple-details div {

    padding: 20px;

    min-width: 190px;

    background: var(--surface);

    border-radius: 18px;

    display: flex;

    flex-direction: column;

    transition: .4s;
}

.contact-simple-details div:hover {

    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(52,85,72,.10);
}

.contact-simple-details strong {

    color: var(--gold);

    font-size: 12px;
}

.contact-simple-details span,
.contact-simple-details a {

    color: var(--text-light);

    font-size: 12px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background:
        linear-gradient(
            145deg,
            #233e34,
            #172c24
        );

    color: #eaf3ee;

    padding-top: 75px;

    position: relative;

    overflow: hidden;
}

.footer::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    right: -250px;
    top: -250px;

    border: 1px solid rgba(199,164,90,.12);

    animation:
        circleRotate 20s linear infinite;
}

.footer-top {

    display: grid;

    grid-template-columns:
        1.6fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 60px;

    position: relative;

    z-index: 2;
}

.footer-brand p {

    color: rgba(234,243,238,.65);

    font-size: 13px;

    line-height: 2;

    max-width: 360px;

    margin-top: 20px;
}

.footer-logo {

    display: flex;

    align-items: center;

    gap: 12px;
}

.footer-logo strong {

    display: block;

    font-size: 16px;
}

.footer-logo small {

    color: rgba(234,243,238,.55);

    font-size: 10px;
}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {

    color: var(--gold-light);

    font-size: 14px;

    margin-bottom: 10px;
}

.footer-column a,
.footer-column span {

    color: rgba(234,243,238,.65);

    font-size: 12px;

    transition: .3s;
}

.footer-column a:hover {

    color: var(--gold-light);

    transform: translateX(-5px);
}

.footer-bottom {

    min-height: 75px;

    border-top:
        1px solid rgba(255,255,255,.10);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: rgba(234,243,238,.5);

    font-size: 10px;

    position: relative;

    z-index: 2;
}

.designer-credit {

    font-size: 10px;

    color: rgba(234,243,238,.55);

    transition: .3s;
}

.designer-credit:hover {
    color: var(--gold-light);
}

.footer-logo-img {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: contain;
    background: #fff;
    padding: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}
.footer-ig {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(234, 243, 238, .8);
    transition: .3s;
}
.footer-ig:hover { color: var(--gold-light); }
.footer-ig svg { flex: none; }
.designer-credit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 7px 16px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(199, 164, 90, .35);
    transition: .3s;
}
.designer-credit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(199, 164, 90, .45);
}


/* =========================================================
   🌙 DARK MODE
========================================================= */

body.dark {

    --bg: #182a23;

    --surface: #223a30;

    --surface-2: #29453a;

    --text: #f1f7f4;

    --text-light: #bdcec5;

    --border:
        rgba(142,224,189,.16);

    --shadow:
        0 20px 60px rgba(0,0,0,.25);
}

body.dark::before {

    background:
        radial-gradient(
            circle,
            rgba(74,196,149,.08),
            transparent 70%
        );
}

body.dark .header {
    background: rgba(24,42,35,.82);
}

body.dark .service-card,
body.dark .article-card,
body.dark .review-card,
body.dark .contact-form,
body.dark .contact-details div,
body.dark .contact-simple-details div,
body.dark .faq-item {

    background:
        linear-gradient(
            145deg,
            #223a30,
            #1e342b
        );

    border-color:
        rgba(142,224,189,.10);
}

body.dark .services-menu {

    background:
        rgba(34,58,48,.96);

    border-color:
        rgba(142,224,189,.15);
}

body.dark .services-menu::before {
    background: #223a30;
}

body.dark .services-menu a:hover {
    background: #29453a;
}

body.dark .about,
body.dark .gallery,
body.dark .faq {
    background: #1e342b;
}

body.dark .about-features div,
body.dark .contact-simple-box {
    background: rgba(34,58,48,.8);
}

body.dark .form-group input,
body.dark .form-group textarea,
body.dark .form-group select {
    background: #1a3027;
    color: var(--text);
}

body.dark .video-overlay,
body.dark .image-caption {
    background: rgba(34,58,48,.88);
    color: var(--text);
}

body.dark .article-content h3 {
    color: var(--text);
}


/* =========================================================
   📱 TABLET
========================================================= */

@media (max-width: 1100px) {

    .nav {
        gap: 16px;
    }

    .nav a {
        font-size: 12px;
    }

    .hero-grid {
        gap: 45px;
    }

    .service-card {
        gap: 35px;
    }
}


/* =========================================================
   📱 MOBILE
========================================================= */

@media (max-width: 950px) {

    .header {
        top: 10px;
    }

    .nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .appointment-btn {
        display: none;
    }

    .hero-grid,
    .about-grid,
    .contact-grid {

        grid-template-columns: 1fr;

    }

    .hero {
        padding-top: 130px;
    }

    .hero-image-wrapper {

        max-width: 600px;

        width: 100%;

        margin: auto;
    }

    .about-image {
        height: 450px;
    }

    .service-card,
    .service-card.reverse {

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .service-card.reverse .service-image,
    .service-card.reverse .service-content {

        order: initial;
    }

    .articles-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .review-slide {
        flex: 0 0 300px;
    }

    .contact-simple-box {

        flex-direction: column;

        align-items: stretch;
    }

    .footer-top {
        grid-template-columns:
            1fr 1fr;
    }
}


/* =========================================================
   📱 SMALL MOBILE
========================================================= */

@media (max-width: 650px) {

    .container {
        width: min(
            100% - 25px,
            1180px
        );
    }

    .section {
        padding: 80px 0;
    }

    .header-logo {
        width: 54px;
        height: 54px;
    }

    .logo-text {
        display: none;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-image {
        height: 430px;
    }

    .hero-info {
        gap: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 18px;
        border-radius: 25px;
    }

    .service-image {
        height: 280px;
    }

    .service-content h3 {
        font-size: 25px;
    }

    .services-menu {

        position: static;

        width: auto;

        margin: 5px 15px;

        padding: 5px;

        display: none;

        grid-template-columns: 1fr;

        transform: none;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        box-shadow: none;

        border-radius: 15px;
    }

    .services-menu::before {
        display: none;
    }

    .services-dropdown.open .services-menu {
        display: grid;
    }

    .video-box {
        height: 380px;
    }

    .video-overlay {

        right: 15px;
        left: 15px;
        bottom: 15px;

        padding: 18px;
    }

    .gallery-grid {

        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            220px
            180px
            180px;
    }

    .gallery-item.large {

        grid-column: span 2;

        grid-row: auto;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .review-slide {
        flex: 0 0 85vw;
    }

    .review-nav {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .contact-form {
        padding: 25px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-simple-box {
        padding: 25px;
    }

    .contact-simple-details {
        flex-direction: column;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {

        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 20px 0;
    }
}


/* =========================================================
   ✨ REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;
    }
}
/* =========================================================
   REVIEW FORM — PREMIUM
========================================================= */

.review-form-box {
    position: relative;

    max-width: 900px;
    margin: 30px auto 0;
    padding: 22px 26px;

    display: flex;
    align-items: center;
    gap: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.96),
            rgba(238,245,241,.92)
        );

    border: 1px solid var(--border);
    border-radius: 24px;

    box-shadow:
        0 18px 50px rgba(52,85,72,.09);

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        background .4s ease,
        border-color .4s ease;
}

.review-form-box::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -95px;
    bottom: -110px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(74,196,149,.15),
            transparent 70%
        );

    animation: reviewOrb 7s ease-in-out infinite;
}

.review-form-box::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    border: 1px solid rgba(199,164,90,.15);

    animation: reviewRotate 10s linear infinite;
}

@keyframes reviewOrb {
    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(25px,-15px);
    }
}

@keyframes reviewRotate {
    to {
        transform: rotate(360deg);
    }
}

.review-form-box:hover {
    transform: translateY(-5px);

    box-shadow:
        0 25px 65px rgba(52,85,72,.14);
}


/* =========================================================
   TITLE
========================================================= */

.review-form-title {
    position: relative;
    z-index: 2;

    min-width: 205px;

    display: flex;
    align-items: center;

    gap: 12px;
}

.form-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(74,196,149,.15),
            rgba(199,164,90,.10)
        );

    border: 1px solid rgba(74,196,149,.16);

    color: var(--primary);

    font-size: 18px;

    box-shadow:
        0 8px 20px rgba(74,196,149,.10);

    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%,100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-3px) rotate(4deg);
    }
}

.review-form-title h3 {
    margin: 0;

    color: var(--text);

    font-size: 15px;
    font-weight: 800;
}

.review-form-title p {
    margin: 4px 0 0;

    color: var(--text-light);

    font-size: 10px;
}


/* =========================================================
   FORM
========================================================= */

.review-form {
    position: relative;
    z-index: 2;

    flex: 1;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9px;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 11px 13px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: rgba(238,245,241,.75);

    color: var(--text);

    font-family: inherit;
    font-size: 11px;

    outline: none;

    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
    color: var(--text-light);
}

.review-form input:hover,
.review-form select:hover,
.review-form textarea:hover {
    border-color:
        rgba(74,196,149,.30);
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    border-color: var(--primary);

    background: var(--surface);

    box-shadow:
        0 0 0 4px rgba(74,196,149,.08),
        0 8px 20px rgba(74,196,149,.06);

    transform: translateY(-2px);
}

.review-form textarea {
    grid-column: 1 / 3;

    height: 48px;

    resize: none;

    line-height: 1.8;
}


/* =========================================================
   BUTTON
========================================================= */

.review-form button {
    position: relative;

    grid-column: 1 / 3;

    justify-self: start;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-width: 105px;

    padding: 9px 17px;

    border: none;
    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: #fff;

    font-family: inherit;

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;

    overflow: hidden;

    box-shadow:
        0 8px 22px rgba(74,196,149,.20);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.review-form button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -110%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    transform: skewX(-20deg);

    transition: .65s ease;
}

.review-form button:hover::before {
    left: 140%;
}

.review-form button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(74,196,149,.30);
}

.review-form button span {
    transition: transform .3s ease;
}

.review-form button:hover span {
    transform: translateX(-5px);
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark .review-form-box {
    background:
        linear-gradient(
            135deg,
            #223a30,
            #1e342b
        );

    border-color:
        rgba(142,224,189,.13);

    box-shadow:
        0 20px 60px rgba(0,0,0,.20);
}

body.dark .review-form input,
body.dark .review-form select,
body.dark .review-form textarea {
    background: #182a23;

    color: var(--text);

    border-color:
        rgba(142,224,189,.12);
}

body.dark .review-form input:focus,
body.dark .review-form select:focus,
body.dark .review-form textarea:focus {
    background: #223a30;

    border-color: var(--primary);
}

body.dark .form-icon {
    background:
        rgba(74,196,149,.08);

    border-color:
        rgba(142,224,189,.12);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .review-form-box {
        flex-direction: column;

        align-items: stretch;

        gap: 18px;

        padding: 20px;
    }

    .review-form-title {
        min-width: 0;
    }

    .review-form {
        width: 100%;

        grid-template-columns: 1fr;
    }

    .review-form textarea,
    .review-form button {
        grid-column: auto;
    }

    .review-form textarea {
        height: 80px;
    }

    .review-form button {
        width: 100%;

        justify-self: stretch;
    }
}

@media (max-width: 500px) {

    .review-form-box {
        padding: 18px;
        border-radius: 20px;
    }

    .review-form-title h3 {
        font-size: 14px;
    }

    .review-form-title p {
        font-size: 9px;
    }
}
/* =========================
   MORE ARTICLES BUTTON
========================= */

.articles-more {
    display: flex;
    justify-content: center;

    margin-top: 35px;
}

.articles-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 25px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(74,196,149,.20);

    transition: .35s ease;
}

.articles-more-btn span {
    transition: .35s ease;
}

.articles-more-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(74,196,149,.30);
}

.articles-more-btn:hover span {
    transform: translateX(-5px);
}
/* =========================================================
   ARTICLES PAGE
========================================================= */

.articles-page {
    position: relative;

    min-height: 100vh;

    padding: 155px 0 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(74,196,149,.14),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(199,164,90,.08),
            transparent 25%
        ),
        var(--bg);
}


/* پس زمینه متحرک */

.articles-page-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(4px);
}

.glow-one {
    width: 320px;
    height: 320px;

    right: -180px;
    top: 280px;

    border: 1px solid rgba(74,196,149,.12);

    box-shadow:
        0 0 0 35px rgba(74,196,149,.025),
        0 0 0 70px rgba(74,196,149,.015);

    animation:
        articlePageRotate 15s linear infinite;
}

.glow-two {
    width: 260px;
    height: 260px;

    left: -150px;
    bottom: 120px;

    background:
        radial-gradient(
            circle,
            rgba(199,164,90,.12),
            transparent 70%
        );

    animation:
        articlePageFloat 9s ease-in-out infinite;
}

@keyframes articlePageRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes articlePageFloat {
    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(35px,-25px);
    }
}


/* لینک فعال */

.active-link {
    color: var(--primary) !important;
}


/* =========================================================
   HEADER
========================================================= */

.articles-page-header {
    position: relative;

    z-index: 2;

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;

    animation:
        articlesHeaderIn .9s ease both;
}

@keyframes articlesHeaderIn {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.articles-page-label {
    display: inline-flex;

    padding: 7px 17px;

    border-radius: 50px;

    background:
        rgba(74,196,149,.10);

    border: 1px solid var(--border);

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.articles-page-header h1 {
    margin: 15px 0 10px;

    color: var(--text);

    font-size: clamp(31px,5vw,52px);

    line-height: 1.5;
}

.articles-page-header h1 span {
    display: inline;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--gold),
            var(--primary)
        );

    background-size: 200%;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    animation:
        articleTextGradient 5s ease infinite;
}

@keyframes articleTextGradient {
    0%,100% {
        background-position: 0;
    }

    50% {
        background-position: 100%;
    }
}

.articles-page-header p {
    max-width: 650px;

    margin: auto;

    color: var(--text-light);

    font-size: 14px;

    line-height: 2.2;
}


/* =========================================================
   GRID
========================================================= */

.articles-page-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}


/* =========================================================
   CARD
========================================================= */

.article-page-card {
    position: relative;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.96),
            rgba(255,255,255,.83)
        );

    border: 1px solid var(--border);

    border-radius: 28px;

    box-shadow: var(--shadow);

    transition:
        transform .5s cubic-bezier(.2,.8,.2,1),
        box-shadow .5s ease,
        border-color .4s ease;

    animation:
        articleCardIn .8s ease both;
}

.article-page-card:nth-child(2) {
    animation-delay: .08s;
}

.article-page-card:nth-child(3) {
    animation-delay: .16s;
}

.article-page-card:nth-child(4) {
    animation-delay: .24s;
}

@keyframes articleCardIn {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-page-card:hover {
    transform:
        translateY(-10px);

    border-color:
        rgba(74,196,149,.32);

    box-shadow:
        0 30px 75px rgba(52,85,72,.17);
}


/* نور داخل کارت */

.article-page-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -100px;
    bottom: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(74,196,149,.13),
            transparent 70%
        );

    pointer-events: none;

    transition: .6s ease;
}

.article-page-card:hover::after {
    transform: scale(1.5);
}


/* =========================================================
   IMAGE
========================================================= */

.article-page-image {
    position: relative;

    height: 245px;

    overflow: hidden;

    background: var(--surface-2);
}

.article-page-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20,40,32,.18),
            transparent 55%
        );

    pointer-events: none;
}

.article-page-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.2,.8,.2,1),
        filter .5s ease;
}

.article-page-card:hover .article-page-image img {
    transform:
        scale(1.08)
        rotate(1deg);

    filter: saturate(1.06);
}


/* دسته بندی */

.article-page-category {
    position: absolute;

    top: 16px;
    right: 16px;

    z-index: 3;

    padding: 7px 12px;

    border-radius: 50px;

    background:
        rgba(255,255,255,.88);

    backdrop-filter: blur(10px);

    color: var(--primary-dark);

    font-size: 9px;

    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(0,0,0,.08);
}


/* =========================================================
   CONTENT
========================================================= */

.article-page-content {
    position: relative;

    z-index: 2;

    padding: 23px;
}

.article-page-meta {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text-light);

    font-size: 9px;
}

.article-page-meta span:first-child {
    color: var(--gold);

    font-size: 11px;

    font-weight: 800;
}

.article-page-content h2 {
    margin: 9px 0 10px;

    color: var(--text);

    font-size: 19px;

    line-height: 1.8;

    transition: .35s ease;
}

.article-page-card:hover .article-page-content h2 {
    color: var(--primary-dark);
}

.article-page-content p {
    min-height: 65px;

    margin-bottom: 16px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 2;
}


/* =========================================================
   LINK
========================================================= */

.article-page-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    transition: .35s ease;
}

.article-page-link span {
    transition: .35s ease;
}

.article-page-link:hover {
    color: var(--gold);
}

.article-page-link:hover span {
    transform: translateX(-5px);
}


/* =========================================================
   BACK BUTTON
========================================================= */

.articles-page-back {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;

    margin-top: 42px;
}

.articles-page-back a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 13px 25px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(74,196,149,.20);

    transition: .35s ease;
}

.articles-page-back a:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(74,196,149,.30);
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark .articles-page {
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(74,196,149,.07),
            transparent 28%
        ),
        var(--bg);
}

body.dark .article-page-card {
    background:
        linear-gradient(
            145deg,
            rgba(49,73,64,.96),
            rgba(41,69,58,.96)
        );

    border-color:
        rgba(142,224,189,.12);
}

body.dark .article-page-category {
    background:
        rgba(38,58,50,.88);

    color: var(--primary-light);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .articles-page {
        padding: 130px 0 80px;
    }

    .articles-page-grid {
        grid-template-columns: 1fr 1fr;
    }

    .article-page-image {
        height: 220px;
    }

}

@media (max-width: 600px) {

    .articles-page {
        padding: 115px 0 65px;
    }

    .articles-page-header {
        margin-bottom: 35px;
    }

    .articles-page-header h1 {
        font-size: 29px;
    }

    .articles-page-header p {
        font-size: 12px;
    }

    .articles-page-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .article-page-image {
        height: 215px;
    }

    .article-page-content {
        padding: 20px;
    }

    .article-page-content h2 {
        font-size: 17px;
    }

    .article-page-content p {
        min-height: auto;
    }

}
/* =========================================================
   ARTICLES TOOLS
========================================================= */

.articles-tools {
    position: relative;
    z-index: 5;

    max-width: 950px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 12px;

    background:
        rgba(255,255,255,.58);

    border: 1px solid var(--border);

    border-radius: 22px;

    box-shadow:
        0 15px 45px rgba(52,85,72,.07);

    backdrop-filter: blur(15px);

    animation:
        toolsIn .7s .15s ease both;
}

@keyframes toolsIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   SEARCH
========================================================= */

.articles-search {
    position: relative;

    flex: 1;

    min-width: 240px;
}

.articles-search input {
    width: 100%;

    height: 46px;

    padding:
        0 43px 0 42px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: var(--surface);

    color: var(--text);

    outline: none;

    font-family: inherit;

    font-size: 12px;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.articles-search input::placeholder {
    color: var(--text-light);
}

.articles-search input:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(74,196,149,.08);

    transform: translateY(-1px);
}

.search-icon {
    position: absolute;

    right: 15px;
    top: 50%;

    color: var(--primary);

    font-size: 20px;

    transform: translateY(-50%);

    pointer-events: none;
}

.search-clear {
    position: absolute;

    left: 9px;
    top: 50%;

    width: 29px;
    height: 29px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: var(--surface-2);

    color: var(--text-light);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-50%)
        scale(.8);

    transition: .25s ease;
}

.search-clear.show {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(-50%)
        scale(1);
}

.search-clear:hover {
    background: var(--primary);

    color: #fff;
}


/* =========================================================
   FILTERS
========================================================= */

.articles-filters {
    display: flex;

    align-items: center;

    gap: 7px;

    flex-wrap: wrap;
}

.article-filter {
    border: 1px solid transparent;

    padding: 10px 14px;

    border-radius: 50px;

    background: transparent;

    color: var(--text-light);

    font-family: inherit;

    font-size: 10px;

    font-weight: 700;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color .3s ease,
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.article-filter:hover {
    color: var(--primary);

    background:
        rgba(74,196,149,.07);

    transform: translateY(-2px);
}

.article-filter.active {

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: #fff;

    box-shadow:
        0 8px 20px rgba(74,196,149,.18);
}


/* =========================================================
   RESULT TEXT
========================================================= */

.articles-results {
    position: relative;

    z-index: 2;

    max-width: 950px;

    margin: 0 auto 22px;

    color: var(--text-light);

    font-size: 10px;

    text-align: right;

    opacity: .8;
}


/* =========================================================
   HIDE CARD
========================================================= */

.article-page-card.is-hidden {

    display: none !important;

}


/* =========================================================
   NO RESULT
========================================================= */

.articles-no-result {

    grid-column: 1 / -1;

    padding: 60px 20px;

    text-align: center;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 25px;

    color: var(--text-light);

    box-shadow: var(--shadow);

    animation:
        noResultIn .4s ease both;
}

@keyframes noResultIn {

    from {
        opacity: 0;
        transform: scale(.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

.articles-no-result strong {

    display: block;

    margin-bottom: 8px;

    color: var(--text);

    font-size: 18px;
}

.articles-no-result span {

    font-size: 11px;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark .articles-tools {

    background:
        rgba(34,58,48,.82);

    border-color:
        rgba(142,224,189,.12);

    box-shadow:
        0 18px 55px rgba(0,0,0,.16);
}

body.dark .articles-search input {

    background: var(--surface);

    border-color:
        rgba(142,224,189,.12);

    color: var(--text);
}

body.dark .search-clear {

    background: var(--surface-2);

    color: var(--text-light);
}

body.dark .article-filter.active {

    color: #fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .articles-tools {
        flex-direction: column;

        align-items: stretch;

        max-width: 700px;
    }

    .articles-search {
        min-width: 0;

        width: 100%;
    }

    .articles-filters {
        justify-content: center;
    }

    .articles-results {
        max-width: 700px;

        padding: 0 5px;
    }

}


@media (max-width: 500px) {

    .articles-tools {
        padding: 10px;

        border-radius: 18px;
    }

    .articles-filters {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }

    .article-filter {
        width: 100%;

        padding: 9px 7px;

        font-size: 9px;
    }

}
/* =========================================
   CHILDREN ARTICLE — PREMIUM
========================================= */

.article-page {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(74,196,149,.13),
            transparent 27%
        ),
        radial-gradient(
            circle at 10% 75%,
            rgba(199,164,90,.08),
            transparent 25%
        ),
        var(--bg);
}

.article-body {
    animation: childrenArticleIn .9s ease both;
}

@keyframes childrenArticleIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-body p {
    font-size: 14px;
    line-height: 2.5;
}

.article-body h2 {
    transition: .35s ease;
}

.article-body h2:hover {
    color: var(--primary);
    transform: translateX(-4px);
}

.article-body li {
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.article-body li:hover {
    transform: translateX(-7px);
    border-color: rgba(74,196,149,.3);

    box-shadow:
        0 15px 35px rgba(52,85,72,.10);
}

.article-highlight {
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.88),
            rgba(238,245,241,.95)
        );
}

body.dark .article-highlight {
    background:
        linear-gradient(
            135deg,
            #314940,
            #29453a
        );
}/* =========================================================
   CHILDREN ARTICLE — LUXURY MEDICAL UI
========================================================= */

.article-page {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(74,196,149,.15),
            transparent 24%
        ),
        radial-gradient(
            circle at 5% 60%,
            rgba(199,164,90,.10),
            transparent 23%
        ),
        linear-gradient(
            135deg,
            var(--bg),
            var(--surface-2)
        );
}


/* =========================================================
   CONTENT
========================================================= */

.article-body {
    position: relative;
    max-width: 850px;

    padding: 18px 0 20px;

    animation: articleContentIn 1s cubic-bezier(.2,.8,.2,1);
}

@keyframes articleContentIn {
    from {
        opacity: 0;
        transform: translateY(35px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}


/* =========================================================
   INTRO PARAGRAPH
========================================================= */

.article-body > p:first-child {
    position: relative;

    margin-bottom: 40px;
    padding: 28px 30px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.92),
            rgba(238,245,241,.82)
        );

    border: 1px solid var(--border);
    border-radius: 25px;

    color: var(--text);

    font-size: 15px;
    line-height: 2.45;

    box-shadow:
        0 15px 45px rgba(52,85,72,.08),
        0 0 35px rgba(74,196,149,.04);

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.article-body > p:first-child::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    top: -65px;
    left: -55px;

    border-radius: 50%;

    border: 1px solid rgba(74,196,149,.15);

    box-shadow:
        0 0 35px rgba(74,196,149,.08);
}

.article-body > p:first-child::after {
    content: "";

    position: absolute;

    right: 0;
    top: 25px;

    width: 4px;
    height: 70%;

    border-radius: 10px;

    background:
        linear-gradient(
            to bottom,
            var(--primary),
            var(--gold)
        );
}

.article-body > p:first-child:hover {
    transform: translateY(-5px);

    box-shadow:
        0 25px 60px rgba(52,85,72,.13),
        0 0 35px rgba(74,196,149,.08);
}


/* =========================================================
   H2
========================================================= */

.article-body h2 {
    position: relative;

    margin: 62px 0 25px;

    padding: 18px 22px;

    color: var(--text);

    font-size: 25px;
    font-weight: 800;

    line-height: 1.7;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.55),
            rgba(255,255,255,0)
        );

    border-radius: 18px;

    transition:
        color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.article-body h2::before {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 5px;
    height: 48px;

    border-radius: 10px;

    background:
        linear-gradient(
            to bottom,
            var(--primary),
            var(--gold)
        );

    transform: translateY(-50%);

    box-shadow:
        0 0 15px rgba(74,196,149,.35),
        0 0 25px rgba(199,164,90,.12);
}

.article-body h2::after {
    content: "";

    position: absolute;

    left: 20px;
    bottom: 10px;

    width: 35px;
    height: 2px;

    border-radius: 20px;

    background: var(--gold);

    opacity: .5;

    transition: width .4s ease;
}

.article-body h2:hover {
    color: var(--primary);

    transform: translateX(-5px);

    box-shadow:
        0 10px 30px rgba(52,85,72,.05);
}

.article-body h2:hover::after {
    width: 70px;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.article-body p:not(:first-child) {
    position: relative;

    margin-bottom: 24px;

    padding: 2px 3px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 2.55;

    transition: color .3s ease;
}

.article-body p:not(:first-child):hover {
    color: var(--text);
}


/* =========================================================
   HIGHLIGHT BOX
========================================================= */

.article-highlight {
    position: relative;

    margin: 42px 0;

    padding: 30px 32px;

    background:
        linear-gradient(
            135deg,
            rgba(74,196,149,.09),
            rgba(255,255,255,.88),
            rgba(199,164,90,.07)
        );

    border: 1px solid rgba(74,196,149,.18);

    border-right: 4px solid var(--primary);

    border-radius: 26px;

    color: var(--text);

    font-size: 14px;
    line-height: 2.35;

    box-shadow:
        0 18px 50px rgba(52,85,72,.09),
        0 0 30px rgba(74,196,149,.06);

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.article-highlight::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -95px;
    bottom: -110px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(74,196,149,.14),
            transparent 70%
        );

    animation:
        highlightGlow 6s ease-in-out infinite;
}

.article-highlight::after {
    content: "✦";

    position: absolute;

    top: 14px;
    left: 20px;

    color: var(--gold);

    font-size: 22px;

    opacity: .55;

    animation:
        sparkle 3s ease-in-out infinite;
}

@keyframes highlightGlow {
    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(25px,-15px);
    }
}

@keyframes sparkle {
    0%,100% {
        transform: scale(1) rotate(0);
        opacity: .4;
    }

    50% {
        transform: scale(1.15) rotate(8deg);
        opacity: .8;
    }
}

.article-highlight:hover {
    transform: translateY(-7px);

    box-shadow:
        0 28px 70px rgba(52,85,72,.13),
        0 0 40px rgba(74,196,149,.10);
}


/* =========================================================
   LIST — GLASS CARDS
========================================================= */

.article-body ul {
    display: flex;

    flex-direction: column;

    gap: 12px;

    list-style: none;

    margin: 30px 0 45px;

    padding: 0;
}

.article-body li {
    position: relative;

    min-height: 58px;

    display: flex;

    align-items: center;

    padding: 14px 58px 14px 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.94),
            rgba(238,245,241,.75)
        );

    border: 1px solid var(--border);

    border-radius: 18px;

    color: var(--text-light);

    font-size: 13px;

    box-shadow:
        0 10px 30px rgba(52,85,72,.06);

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        box-shadow .35s ease,
        border-color .35s ease,
        color .35s ease;
}

.article-body li::before {
    content: "✓";

    position: absolute;

    right: 17px;
    top: 50%;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(74,196,149,.16),
            rgba(199,164,90,.10)
        );

    border: 1px solid rgba(74,196,149,.15);

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    transform: translateY(-50%);

    box-shadow:
        0 0 18px rgba(74,196,149,.08);

    transition: .35s ease;
}

.article-body li:hover {
    transform:
        translateX(-8px)
        translateY(-2px);

    color: var(--text);

    border-color:
        rgba(74,196,149,.30);

    box-shadow:
        0 18px 40px rgba(52,85,72,.10),
        0 0 25px rgba(74,196,149,.06);
}

.article-body li:hover::before {
    background: var(--primary);

    color: #fff;

    transform:
        translateY(-50%)
        rotate(-8deg)
        scale(1.08);

    box-shadow:
        0 0 20px rgba(74,196,149,.25);
}


/* =========================================================
   DOCTOR NOTE
========================================================= */

.doctor-note {
    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 60px;

    padding: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.95),
            rgba(238,245,241,.82)
        );

    border: 1px solid var(--border);

    border-radius: 25px;

    box-shadow:
        0 18px 50px rgba(52,85,72,.09),
        0 0 35px rgba(74,196,149,.04);

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.doctor-note::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -90px;
    bottom: -110px;

    border-radius: 50%;

    border: 1px solid rgba(199,164,90,.18);

    animation:
        doctorRing 10s linear infinite;
}

.doctor-note::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            var(--gold),
            transparent
        );

    opacity: .7;
}

@keyframes doctorRing {
    to {
        transform: rotate(360deg);
    }
}

.doctor-note:hover {
    transform: translateY(-7px);

    box-shadow:
        0 28px 65px rgba(52,85,72,.13),
        0 0 35px rgba(74,196,149,.08);
}

.doctor-note-logo {
    position: relative;

    z-index: 2;

    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(74,196,149,.10),
            rgba(255,255,255,.75)
        );

    border: 1px solid rgba(74,196,149,.18);

    border-radius: 18px;

    box-shadow:
        0 0 25px rgba(74,196,149,.09);

    overflow: hidden;

    transition: .4s ease;
}

.doctor-note:hover .doctor-note-logo {
    transform:
        rotate(-4deg)
        scale(1.05);

    border-color: var(--gold);

    box-shadow:
        0 0 25px rgba(199,164,90,.13);
}

.doctor-note-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.doctor-note-text {
    position: relative;
    z-index: 2;
}

.doctor-note-text strong {
    display: block;

    margin-bottom: 5px;

    color: var(--text);

    font-size: 14px;
}

.doctor-note-text span {
    color: var(--text-light);

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   BACK BUTTON
========================================================= */

.article-back {
    margin-top: 55px;

    display: flex;

    justify-content: center;
}

.article-back a {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 14px 28px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: #fff;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 12px 30px rgba(74,196,149,.25),
        0 0 25px rgba(74,196,149,.08);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.article-back a::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.40),
            transparent
        );

    transform: skewX(-20deg);

    transition: .7s;
}

.article-back a:hover::before {
    left: 140%;
}

.article-back a:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(74,196,149,.32),
        0 0 30px rgba(74,196,149,.12);
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark .article-body > p:first-child,
body.dark .article-highlight,
body.dark .article-body li,
body.dark .doctor-note {
    background:
        linear-gradient(
            135deg,
            rgba(49,73,64,.96),
            rgba(41,69,58,.96)
        );

    border-color:
        rgba(142,224,189,.13);
}

body.dark .article-body h2 {
    background:
        linear-gradient(
            90deg,
            rgba(49,73,64,.65),
            transparent
        );
}

body.dark .article-body li:hover {
    border-color:
        rgba(90,213,162,.28);

    box-shadow:
        0 18px 45px rgba(0,0,0,.20),
        0 0 25px rgba(74,196,149,.07);
}

body.dark .doctor-note-logo {
    background:
        rgba(255,255,255,.04);

    border-color:
        rgba(142,224,189,.13);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .article-body > p:first-child {
        padding: 22px 20px;

        font-size: 13px;

        line-height: 2.3;

        border-radius: 20px;
    }

    .article-body h2 {
        margin-top: 45px;

        padding: 14px 17px;

        font-size: 20px;

        border-radius: 15px;
    }

    .article-body h2::before {
        height: 35px;
    }

    .article-body p:not(:first-child) {
        font-size: 12px;

        line-height: 2.3;
    }

    .article-highlight {
        padding: 23px 20px;

        border-radius: 20px;

        font-size: 12px;
    }

    .article-body li {
        min-height: 55px;

        padding:
            13px 53px 13px 15px;

        font-size: 11px;

        border-radius: 15px;
    }

    .article-body li::before {
        width: 27px;
        height: 27px;

        right: 13px;
    }

    .doctor-note {
        padding: 19px;

        gap: 13px;

        border-radius: 20px;
    }

    .doctor-note-logo {
        width: 54px;
        height: 54px;

        border-radius: 15px;
    }

    .doctor-note-text strong {
        font-size: 12px;
    }

    .doctor-note-text span {
        font-size: 9px;
    }

}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .article-page *,
    .article-page::before,
    .article-page::after {
        animation: none !important;
        transition: none !important;
    }
}
/* =========================================
   MOBILE MENU + DARK MODE FIX
========================================= */

.mobile-menu {
    background: rgba(255,255,255,.94) !important;

    border: 1px solid var(--border) !important;

    box-shadow:
        0 20px 60px rgba(35,51,45,.14) !important;

    backdrop-filter: blur(20px) !important;

    transition:
        background .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.mobile-menu a {
    color: var(--text-light) !important;

    background: transparent !important;

    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    color: var(--primary) !important;

    background: var(--surface-2) !important;

    transform: translateX(-4px);
}


/* دکمه حالت شب */

.theme-btn {
    background: var(--surface) !important;

    color: var(--text) !important;

    border: 1px solid var(--border) !important;

    transition:
        background .4s ease,
        color .4s ease,
        border-color .4s ease,
        transform .3s ease;
}

.theme-btn:hover {
    color: var(--gold) !important;

    border-color: var(--gold) !important;

    transform:
        translateY(-2px)
        rotate(12deg);
}


/* =========================================
   DARK MODE
========================================= */

body.dark .mobile-menu {
    background:
        rgba(34,58,48,.97) !important;

    border-color:
        rgba(142,224,189,.14) !important;

    box-shadow:
        0 25px 70px rgba(0,0,0,.35) !important;
}

body.dark .mobile-menu a {
    color: #c1d0c9 !important;

    background: transparent !important;
}

body.dark .mobile-menu a:hover,
body.dark .mobile-menu a:active {
    background:
        rgba(74,196,149,.09) !important;

    color:
        #7ce0b5 !important;
}


/* دکمه منو در حالت شب */

body.dark .menu-btn {
    background:
        #314940 !important;

    color:
        #f1f7f4 !important;

    border-color:
        rgba(142,224,189,.16) !important;
}


/* دکمه حالت شب در حالت شب */

body.dark .theme-btn {
    background:
        #314940 !important;

    color:
        #dfc887 !important;

    border-color:
        rgba(142,224,189,.16) !important;

    box-shadow:
        0 0 18px rgba(199,164,90,.08);
}

body.dark .theme-btn:hover {
    background:
        #385349 !important;

    color:
        #f0d995 !important;

    border-color:
        #c7a45a !important;

    box-shadow:
        0 0 22px rgba(199,164,90,.15);
}
/* =========================
   ABOUT MORE BUTTON
========================= */

.about-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 28px;
    padding: 14px 22px;

    color: #355b4d;
    background: rgba(202, 230, 192, 0.45);

    border: 1px solid rgba(106, 156, 137, 0.35);
    border-radius: 14px;

    text-decoration: none;
    font-weight: 700;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(73, 110, 92, 0.12),
        inset 0 0 20px rgba(255, 255, 255, 0.35);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        color 0.35s ease;
}

/* افکت نور */
.about-more-btn::before {
    content: "";
    position: absolute;

    width: 80px;
    height: 100%;

    top: 0;
    right: -100px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.65),
        transparent
    );

    transform: skewX(-20deg);

    transition: right 0.6s ease;
}

.about-more-btn:hover::before {
    right: 120%;
}

.about-more-btn:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(73, 110, 92, 0.2),
        0 0 20px rgba(166, 211, 150, 0.25);

    color: #24483a;
}

.about-btn-arrow {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.65);

    transition: transform 0.35s ease;
}

.about-more-btn:hover .about-btn-arrow {
    transform: translateX(-5px);
}


/* =========================
   DARK MODE
========================= */

body.dark-mode .about-more-btn {
    color: #dff5d6;

    background: rgba(82, 126, 105, 0.18);

    border-color: rgba(150, 205, 170, 0.25);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.25),
        0 0 18px rgba(130, 190, 150, 0.08);
}

body.dark-mode .about-more-btn:hover {
    color: #ffffff;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.35),
        0 0 25px rgba(150, 220, 170, 0.15);
}

body.dark-mode .about-btn-arrow {
    background: rgba(255,255,255,0.1);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .about-more-btn {
        margin-top: 22px;
        padding: 13px 18px;
        font-size: 14px;
    }

    .about-btn-arrow {
        width: 30px;
        height: 30px;
    }

}
/* =========================================================
   🌙 ABOUT BUTTON — DARK MODE
   بدون تغییر رنگ‌های اصلی سایت
========================================================= */

body.dark-mode .about-more-btn {

    color: #dff8eb;

    background:
        linear-gradient(
            135deg,
            rgba(74, 196, 149, 0.18),
            rgba(80, 125, 108, 0.20)
        );

    border-color: rgba(142, 224, 189, 0.28);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.28),
        0 0 20px rgba(74, 196, 149, 0.08);
}


body.dark-mode .about-more-btn:hover {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(74, 196, 149, 0.28),
            rgba(80, 125, 108, 0.30)
        );

    border-color: rgba(142, 224, 189, 0.45);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.40),
        0 0 30px rgba(74, 196, 149, 0.16);
}


body.dark-mode .about-btn-arrow {

    color: #dff8eb;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(142, 224, 189, 0.18);

    box-shadow:
        0 0 12px rgba(74, 196, 149, 0.08);
}


body.dark-mode .about-more-btn:hover .about-btn-arrow {

    background: rgba(74, 196, 149, 0.18);

    box-shadow:
        0 0 18px rgba(74, 196, 149, 0.20);
}
/* =========================================
   CONTACT BUTTON — PREMIUM
========================================= */

.contact-page-btn {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    margin: 22px auto 0;

    padding: 12px 22px;

    gap: 10px;

    background: linear-gradient(
        135deg,
        #4ac495,
        #78d7ad
    );

    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,.35);

    box-shadow:
        0 8px 22px rgba(74,196,149,.22),
        inset 0 1px 0 rgba(255,255,255,.4);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        gap .3s ease;
}


/* نور متحرک */

.contact-page-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform: skewX(-20deg);

    transition: left .6s ease;
}


/* محتوا */

.contact-page-btn span {
    position: relative;
    z-index: 2;
}


/* فلش */

.contact-page-btn-icon {
    font-size: 17px;

    transition:
        transform .3s ease;
}


/* Hover */

.contact-page-btn:hover {

    transform: translateY(-3px);

    gap: 15px;

    box-shadow:
        0 13px 30px rgba(74,196,149,.32),
        0 0 18px rgba(142,224,189,.2);
}


.contact-page-btn:hover::before {
    left: 130%;
}


.contact-page-btn:hover .contact-page-btn-icon {
    transform: translateX(-4px);
}


/* کلیک */

.contact-page-btn:active {
    transform: translateY(0) scale(.97);
}


/* =========================================
   DARK MODE
========================================= */

body.dark .contact-page-btn {

    background: linear-gradient(
        135deg,
        #357c63,
        #4ac495
    );

    box-shadow:
        0 10px 28px rgba(0,0,0,.35),
        0 0 18px rgba(74,196,149,.15);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .contact-page-btn {
        padding: 11px 20px;
        font-size: 13px;
        border-radius: 13px;
    }

}
.service-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 18px;
    padding: 9px 15px;

    border-radius: 12px;

    background: rgba(74, 196, 149, 0.10);
    border: 1px solid rgba(74, 196, 149, 0.20);

    color: #507d6c;
    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease,
        box-shadow .35s ease;
}

.service-more span {
    font-size: 16px;

    transition:
        transform .35s ease;
}

.service-more:hover {
    transform: translateY(-3px);

    background: #4ac495;
    color: #fff;

    box-shadow:
        0 10px 25px rgba(74, 196, 149, .25);
}

.service-more:hover span {
    transform: translateX(-5px);
}