:root {
    --navy-900: #071322;
    --navy-800: #0a1c31;
    --navy-700: #0e2540;
    --navy-600: #133156;
    --gold: #d4b483;
    --gold-2: #e9d4a8;
    --gold-deep: #b98f4e;
    --ink: #f2f7fd;
    --muted: #a7b8cc;
    --line: rgba(212, 180, 131, .18);
    --line-soft: rgba(167, 184, 204, .14);
    --card: rgba(255, 255, 255, .03);
    --grad-gold: linear-gradient(135deg, #ecd9ae 0%, #c9a468 100%);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .35);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .45);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    color: var(--ink);
    background:
        linear-gradient(rgba(7, 19, 34, .88), rgba(7, 19, 34, .92)),
        url('../img/bg.png') center / cover fixed no-repeat;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-nav {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.gold-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

::selection {
    background: rgba(212, 180, 131, .35);
    color: #fff;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 18px 0;
}

.header.scrolled {
    background: rgba(7, 19, 34, .88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .35);
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

/* ✅ لوگو سمت راست */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gold);
    order: -1;
}

.logo-icon {
    width: 42px;
    height: 42px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
}

.logo-text small {
    font-size: .62rem;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    /* فاصله کمتر شد */
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    /* جلوگیری از شکستن خطوط */
    z-index: 10;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    font-size: .9rem;
    transition: var(--transition);
    position: relative;
}

.nav-link .caret {
    width: 13px;
    height: 13px;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--grad-gold);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-2);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.has-drop {
    position: relative;
}

.drop-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 210px;
    background: rgba(10, 28, 49, .97);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
    margin-top: 14px;
}

.has-drop:hover .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop-menu li a {
    display: block;
    padding: 8px 14px;
    color: var(--muted);
    text-decoration: none;
    font-size: .86rem;
    border-radius: 8px;
    transition: var(--transition);
}

.drop-menu li a:hover {
    background: rgba(212, 180, 131, .12);
    color: var(--gold-2);
    padding-right: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--gold);
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Vazirmatn', sans-serif;
}

.btn-gold {
    background: var(--grad-gold);
    color: #16283d;
    box-shadow: 0 6px 22px rgba(201, 164, 104, .35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 164, 104, .5);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(233, 212, 168, .4);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-2);
    transform: translateY(-3px);
    background: rgba(212, 180, 131, .08);
}

.btn-lg {
    padding: 15px 38px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ================= HERO ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(212, 180, 131, .07) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-2);
    font-weight: 600;
    font-size: .88rem;
}

.badge-line {
    width: 44px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.5;
    margin: 18px 0 14px;
}

.title-line {
    display: block;
}

.brand-word {
    color: var(--gold);
    position: relative;
    display: inline-block;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-word::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: -6px;
    height: 3px;
    background: var(--grad-gold);
    border-radius: 3px;
    transform: skewX(-12deg);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 34px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-top: 52px;
    padding-top: 30px;
    border-top: 1px solid var(--line-soft);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--gold-2);
}

.stat-number.has-plus::after {
    content: '+';
}

.stat-label {
    font-size: .82rem;
    color: var(--muted);
    margin-top: 2px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 42px;
    background: var(--line-soft);
}

/* --- hero visual --- */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-outer {
    width: 440px;
    height: 440px;
    border: 1.5px dashed rgba(212, 180, 131, .3);
    animation: spin 40s linear infinite;
}

.orbit-inner {
    width: 330px;
    height: 330px;
    border: 1px solid rgba(212, 180, 131, .14);
    background: radial-gradient(circle, rgba(19, 49, 86, .5), transparent 70%);
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.tooth-svg {
    width: min(400px, 78%);
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 46px rgba(212, 180, 131, .18));
}

.hero-spark {
    position: absolute;
    color: var(--gold);
    z-index: 3;
    animation: twinkle 2.6s ease-in-out infinite;
}

.hero-spark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hs1 {
    width: 30px;
    height: 30px;
    top: 34%;
    left: 4%;
}

.hs2 {
    width: 20px;
    height: 20px;
    top: 22%;
    right: 10%;
    animation-delay: .9s;
}

.hs3 {
    width: 16px;
    height: 16px;
    bottom: 16%;
    right: 22%;
    animation-delay: 1.6s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: .35;
        transform: scale(.85) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.15) rotate(10deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 26px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: .78rem;
}

.scroll-line {
    width: 1px;
    height: 42px;
    background: var(--line-soft);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* ================= ANIMATIONS ================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .9s cubic-bezier(.4, 0, .2, 1) forwards;
}

.delay-1 {
    animation-delay: .15s;
}

.delay-2 {
    animation-delay: .3s;
}

.delay-3 {
    animation-delay: .45s;
}

.delay-4 {
    animation-delay: .6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.4, 0, .2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= TRUST STRIP (نرم) ================= */
.trust-strip {
    padding: 26px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 19, 34, .6) 18%, rgba(7, 19, 34, .6) 82%, transparent 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    color: var(--gold);
    background: rgba(212, 180, 131, .1);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-item strong {
    display: block;
    font-size: .95rem;
    color: var(--ink);
}

.trust-item span {
    font-size: .78rem;
    color: var(--muted);
}

/* ================= SECTIONS COMMON (جداسازی نرم) ================= */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 999px;
    background: rgba(212, 180, 131, .1);
    border: 1px solid var(--line);
    color: var(--gold-2);
    font-weight: 600;
    font-size: .83rem;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.6;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1rem;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto;
}

/* ================= ABOUT ================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy-600), var(--navy-700) 60%);
    border: 1px solid var(--line);
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about-tooth {
    width: min(300px, 80%);
    filter: drop-shadow(0 0 34px rgba(212, 180, 131, .15));
}

.about-pattern {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 110px;
    height: 110px;
    opacity: .25;
    background: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
}

.exp-badge {
    position: absolute;
    bottom: 22px;
    right: 22px;
    text-align: center;
    background: var(--grad-gold);
    color: #16283d;
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0 10px 26px rgba(201, 164, 104, .4);
}

.exp-badge strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.exp-badge span {
    font-size: .75rem;
    font-weight: 600;
}

.about-card {
    position: absolute;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    background: rgba(10, 28, 49, .92);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: .88rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    animation: floatCard 4.5s ease-in-out infinite;
    z-index: 3;
    color: var(--ink);
}

.about-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: var(--gold);
    background: rgba(212, 180, 131, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card .card-icon svg {
    width: 20px;
    height: 20px;
}

.card-1 {
    top: -18px;
    left: 8px;
}

.card-2 {
    bottom: -18px;
    right: 60px;
    animation-delay: 2.2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-text {
    color: var(--muted);
    margin-bottom: 30px;
    line-height: 2;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--card);
    border: 1px solid var(--line-soft);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(-8px);
    border-color: var(--line);
    background: rgba(212, 180, 131, .06);
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    color: #16283d;
    background: var(--grad-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
}

.feature-text strong {
    display: block;
    font-size: .95rem;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: .82rem;
    color: var(--muted);
}

/* ================= SERVICES ================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 22px;
}

.service-card {
    padding: 34px 26px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border: 1px solid var(--line-soft);
    transition: var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: right;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--line);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    margin-bottom: 20px;
    background: rgba(212, 180, 131, .08);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: rgba(212, 180, 131, .16);
    transform: scale(1.06) rotate(-3deg);
}

.service-icon {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    font-size: .87rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 600;
    font-size: .87rem;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--gold-2);
}

/* ================= WHY (✨ انیمیشن‌های زیاد) ================= */
.why {
    background: linear-gradient(180deg, transparent 0%, rgba(7, 19, 34, .55) 12%, rgba(7, 19, 34, .55) 88%, transparent 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.why-card {
    --d: 0s;
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--line-soft);
    transition: border-color .4s, box-shadow .4s, background .4s;
    position: relative;
    overflow: hidden;
}

.why-card:nth-child(2) {
    --d: .5s;
}

.why-card:nth-child(3) {
    --d: 1s;
}

.why-card:nth-child(4) {
    --d: 1.5s;
}

.why-card:nth-child(5) {
    --d: 2s;
}

.why-card:nth-child(6) {
    --d: 2.5s;
}

/* شناوری مداوم بعد از ورود */
.why-card.active {
    animation: cardBob 6s ease-in-out infinite;
    animation-delay: var(--d);
}

.why-card.active:hover {
    animation: cardBobHover 2.2s ease-in-out infinite;
    animation-delay: var(--d);
}

@keyframes cardBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes cardBobHover {

    0%,
    100% {
        transform: translateY(-6px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* جاروی نور */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 45%;
    right: -60%;
    background: linear-gradient(90deg, transparent, rgba(233, 212, 168, .12), transparent);
    transform: skewX(-20deg);
    transition: right .9s ease;
    pointer-events: none;
}

.why-card:hover::before {
    right: 120%;
}

/* هاله نرم بالای کارت در هاور */
.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(160px 90px at 50% 0%, rgba(212, 180, 131, .14), transparent 70%);
    transition: opacity .5s;
    pointer-events: none;
}

.why-card:hover::after {
    opacity: 1;
}

.why-card:hover {
    border-color: var(--line);
    box-shadow: var(--shadow-xl);
    background: rgba(212, 180, 131, .06);
}

/* آیکون شناور + حلقه پالس + چرخش در هاور */
.why-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    color: var(--gold);
    background: rgba(212, 180, 131, .1);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: iconFloat 3.4s ease-in-out infinite;
    animation-delay: var(--d);
    transition: var(--transition);
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.why-icon::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1px solid rgba(212, 180, 131, .45);
    animation: ringPing 2.8s ease-out infinite;
    animation-delay: var(--d);
}

@keyframes ringPing {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    70% {
        transform: scale(1.55);
        opacity: 0;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

.why-icon svg {
    width: 26px;
    height: 26px;
    transition: transform .8s cubic-bezier(.4, 0, .2, 1);
}

.why-card:hover .why-icon {
    background: rgba(212, 180, 131, .2);
}

.why-card:hover .why-icon svg {
    transform: rotate(360deg) scale(1.1);
}

.why-card h3 {
    font-size: 1.02rem;
    margin-bottom: 6px;
    transition: var(--transition);
}

.why-card:hover h3 {
    color: var(--gold-2);
}

.why-card p {
    font-size: .84rem;
    color: var(--muted);
}

/* ================= STEPS ================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 40px 22px 30px;
    border-radius: var(--radius-lg);
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border: 1px solid var(--line-soft);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--line);
}

.step-num {
    position: absolute;
    top: -18px;
    right: 50%;
    transform: translateX(50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-gold);
    color: #16283d;
    font-weight: 900;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(201, 164, 104, .4);
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 8px auto 14px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 34px;
    height: 34px;
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.step-card p {
    font-size: .83rem;
    color: var(--muted);
}

/* ================= TEAM (نرم) ================= */
.team {
    background: linear-gradient(180deg, transparent 0%, rgba(7, 19, 34, .5) 12%, rgba(7, 19, 34, .5) 88%, transparent 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 26px;
}

.team-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    background: var(--card);
    border: 1px solid var(--line-soft);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--line);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    height: 240px;
    background: radial-gradient(circle at 50% 30%, var(--navy-600), var(--navy-700));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-avatar {
    width: 130px;
    height: 130px;
    transition: var(--transition);
}

.team-card:hover .team-avatar {
    transform: scale(1.08);
}

.team-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    background: linear-gradient(to top, rgba(201, 164, 104, .55), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: #16283d;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(16px);
    transition: var(--transition);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social svg {
    width: 20px;
    height: 20px;
}

.team-info {
    padding: 22px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.team-role {
    color: var(--gold);
    font-size: .8rem;
}

/* ================= TESTIMONIALS ================= */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
}

.testimonial-card {
    padding: 34px;
    border-radius: var(--radius-lg);
    position: relative;
    background: var(--card);
    border: 1px solid var(--line-soft);
    transition: var(--transition);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 14px;
    left: 24px;
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--gold);
    opacity: .18;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--line);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: .92rem;
    color: var(--muted);
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-gold);
    color: #16283d;
    font-weight: 800;
}

.author-info strong {
    display: block;
    font-size: .9rem;
    color: var(--ink);
}

.author-info span {
    font-size: .78rem;
    color: var(--muted);
}

/* ================= GALLERY (نرم) ================= */
.gallery {
    background: linear-gradient(180deg, transparent 0%, rgba(7, 19, 34, .5) 12%, rgba(7, 19, 34, .5) 88%, transparent 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.g-tile {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(160deg, var(--navy-600), var(--navy-700));
    border: 1px solid var(--line-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: var(--transition);
    cursor: pointer;
}

.g-tile:hover {
    border-color: var(--line);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.g-art {
    width: 74px;
    height: 74px;
    color: var(--gold);
    transition: var(--transition);
}

.g-tile:hover .g-art {
    transform: scale(1.12) rotate(-4deg);
}

.g-art svg {
    width: 100%;
    height: 100%;
}

.g-tile span {
    font-size: .9rem;
    font-weight: 600;
    color: var(--muted);
}

.g-tile:hover span {
    color: var(--gold-2);
}

/* ================= BLOG ================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    background: var(--card);
    border: 1px solid var(--line-soft);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--line);
    box-shadow: var(--shadow-xl);
}

.blog-head {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.blog-head svg {
    width: 56px;
    height: 56px;
    transition: var(--transition);
}

.blog-card:hover .blog-head svg {
    transform: scale(1.12);
}

.bh1 {
    background: linear-gradient(150deg, #14325a, #0e2540);
}

.bh2 {
    background: linear-gradient(150deg, #1a3a63, #102a46);
}

.bh3 {
    background: linear-gradient(150deg, #173559, #0c2138);
}

.blog-body {
    padding: 24px;
}

.blog-date {
    font-size: .75rem;
    color: var(--gold);
}

.blog-body h3 {
    font-size: 1rem;
    margin: 8px 0;
    line-height: 1.7;
}

.blog-body p {
    font-size: .84rem;
    color: var(--muted);
    margin-bottom: 14px;
}

/* ================= ONLINE CTA ================= */
.online-card {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 40px;
    align-items: center;
    padding: 56px;
    border-radius: var(--radius-xl);
    background: linear-gradient(140deg, var(--navy-600), var(--navy-700) 70%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.online-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(500px 220px at 15% 50%, rgba(212, 180, 131, .12), transparent 70%);
}

.online-art {
    color: var(--gold);
    display: flex;
    justify-content: center;
    position: relative;
}

.online-art svg {
    width: 170px;
    height: 170px;
    animation: floatCard 5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(212, 180, 131, .25));
}

.online-content {
    position: relative;
}

.online-content p {
    color: var(--muted);
    margin: 14px 0 26px;
}

/* ================= FAQ ================= */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    background: var(--card);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--line);
    background: rgba(212, 180, 131, .05);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    font-family: 'Vazirmatn', sans-serif;
    font-size: .98rem;
    font-weight: 600;
    text-align: right;
}

.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    min-width: 18px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.faq-icon::before {
    top: 8px;
    right: 0;
    width: 18px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    right: 8px;
    width: 2px;
    height: 18px;
}

.faq-item.open .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4, 0, .2, 1);
}

.faq-a p {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: .9rem;
}

/* ================= APPOINTMENT (نرم) ================= */
.appointment {
    background: linear-gradient(180deg, transparent 0%, rgba(7, 19, 34, .5) 12%, rgba(7, 19, 34, .5) 88%, transparent 100%);
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 56px;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.appointment-desc {
    color: var(--muted);
    margin-bottom: 28px;
}

.appointment-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.appt-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.appt-feature svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: .84rem;
    font-weight: 600;
    color: var(--gold-2);
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    font-size: .93rem;
    font-family: 'Vazirmatn', sans-serif;
    transition: var(--transition);
    background: rgba(7, 19, 34, .5);
    color: var(--ink);
    color-scheme: dark;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 180, 131, .12);
}

.form-group input::placeholder {
    color: rgba(167, 184, 204, .5);
}

.form-group select option {
    background: var(--navy-800);
}

/* ================= CONTACT ================= */
.contact-desc {
    color: var(--muted);
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    color: var(--gold);
    background: rgba(212, 180, 131, .1);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item strong {
    display: block;
    margin-bottom: 2px;
}

.contact-item p {
    color: var(--muted);
    font-size: .88rem;
}

.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.map-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ================= FOOTER (نرم) ================= */
.footer {
    background: linear-gradient(180deg, rgba(7, 19, 34, 0) 0%, var(--navy-900) 10%);
    padding: 90px 0 24px;
    color: rgba(242, 247, 253, .75);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 44px;
    margin-bottom: 44px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: .88rem;
    opacity: .7;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: var(--gold);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--grad-gold);
    color: #16283d;
    transform: translateY(-4px);
}

.footer-social svg {
    width: 19px;
    height: 19px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--gold-2);
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(242, 247, 253, .6);
    text-decoration: none;
    font-size: .88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-2);
    padding-right: 8px;
}

.footer-newsletter p {
    font-size: .87rem;
    opacity: .7;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    color: var(--ink);
    font-family: 'Vazirmatn', sans-serif;
    font-size: .88rem;
}

.newsletter-form input::placeholder {
    color: rgba(167, 184, 204, .5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    text-align: center;
}

.footer-bottom p {
    font-size: .82rem;
    opacity: .55;
}

/* ================= FAB پرسش و پاسخ (راست) ================= */
.fab-faq {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: #16283d;
    border: none;
    cursor: pointer;
    z-index: 998;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(201, 164, 104, .45);
    transition: var(--transition);
    animation: fabPulse 2.6s ease-in-out infinite;
}

.fab-faq::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 2px solid rgba(212, 180, 131, .5);
    animation: ringPing 2.4s ease-out infinite;
}

@keyframes fabPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }
}

.fab-faq:hover {
    transform: scale(1.12);
    box-shadow: 0 14px 40px rgba(201, 164, 104, .6);
}

.fab-faq.active {
    background: rgba(10, 28, 49, .95);
    color: var(--gold-2);
    border: 1px solid var(--line);
    animation: none;
}

/* ================= پنل پرسش و پاسخ ================= */
.faq-panel {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 350px;
    max-height: min(560px, 75vh);
    background: rgba(10, 28, 49, .97);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(.97);
    transition: var(--transition);
}

.faq-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.faq-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line-soft);
}

.faq-panel-head h4 {
    color: var(--gold-2);
    font-size: 1rem;
}

.faq-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, .06);
    color: var(--muted);
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-close:hover {
    background: rgba(212, 180, 131, .15);
    color: var(--gold-2);
    transform: rotate(90deg);
}

.faq-panel-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.faq-panel-body::-webkit-scrollbar {
    width: 6px;
}

.faq-panel-body::-webkit-scrollbar-thumb {
    background: rgba(212, 180, 131, .3);
    border-radius: 3px;
}

.faq-cat,
.faq-search {
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid var(--line-soft);
    background: rgba(7, 19, 34, .6);
    color: var(--ink);
    font-family: 'Vazirmatn', sans-serif;
    font-size: .85rem;
    transition: var(--transition);
    width: 100%;
}

.faq-cat:focus,
.faq-search:focus {
    outline: none;
    border-color: var(--gold);
}

.faq-cat option {
    background: var(--navy-800);
}

.faq-search::placeholder {
    color: rgba(167, 184, 204, .5);
}

.faq-panel-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fp-item {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.fp-item:hover {
    border-color: var(--line);
}

.fp-item.open {
    background: rgba(212, 180, 131, .06);
    border-color: var(--line);
}

.fp-q {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 14px;
    background: none;
    border: none;
    color: var(--ink);
    font-family: 'Vazirmatn', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
    line-height: 1.7;
}

.fp-q .plus {
    color: var(--gold);
    font-size: 1.05rem;
    line-height: 1.4;
    transition: transform .35s;
    min-width: 14px;
}

.fp-item.open .plus {
    transform: rotate(45deg);
}

.fp-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.fp-a p {
    padding: 0 14px 12px 14px;
    color: var(--muted);
    font-size: .8rem;
}

/* ================= BACK TO TOP (چپ، جدا) ================= */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 28, 49, .9);
    border: 1px solid var(--line);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 24px rgba(212, 180, 131, .25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 997;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(212, 180, 131, .45);
    background: var(--grad-gold);
    color: #16283d;
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1350px) {

    /* breakpoint رو بردیم بالاتر */
    .nav-menu {
        gap: 14px;
    }

    .nav-link {
        font-size: .8rem;
        /* فونت ریزتر */
    }

    .nav-link .caret {
        width: 11px;
        height: 11px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .hero-btns,
    .hero-stats {
        justify-content: center;
    }

    .about-grid,
    .appointment-wrapper,
    .contact-grid,
    .online-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid,
    .gallery-grid,
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .orbit-outer {
        width: 360px;
        height: 360px;
    }

    .orbit-inner {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: var(--navy-900);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 28px 28px;
        gap: 6px;
        transition: var(--transition);
        z-index: 998;
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
        transform: none;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        padding: 10px 0;
        font-size: .95rem;
    }

    .drop-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 4px 0 8px;
        background: rgba(255, 255, 255, .03);
        box-shadow: none;
        display: none;
    }

    .has-drop.open .drop-menu {
        display: block;
    }

    .hamburger {
        display: flex;
        z-index: 999;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-visual {
        min-height: 380px;
    }

    .orbit-outer {
        width: 300px;
        height: 300px;
    }

    .orbit-inner {
        width: 230px;
        height: 230px;
    }

    .trust-grid,
    .why-grid,
    .gallery-grid,
    .blog-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    section {
        padding: 70px 0;
    }

    .appointment-wrapper,
    .online-card {
        padding: 34px 24px;
    }

    .faq-panel {
        right: 16px;
        left: 16px;
        width: auto;
        bottom: 96px;
    }

    .fab-faq {
        right: 16px;
        bottom: 20px;
    }

    .back-to-top {
        left: 16px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-lg {
        padding: 14px 28px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .card-2 {
        right: 12px;
    }
}


/* ================= LICENSES BAR ================= */
.licenses-bar {
    padding: 0 0 40px;
}

.licenses-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.license-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: .84rem;
    font-weight: 600;
}

.license-item svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
    min-width: 28px;
}

/* ================= ABOUT TIMELINE ================= */
.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
    padding-right: 20px;
    border-right: 2px solid var(--line);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -25px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--grad-gold);
    box-shadow: 0 0 10px rgba(212, 180, 131, .5);
}

.tl-year {
    font-weight: 900;
    color: var(--gold-2);
    font-size: .9rem;
    min-width: 48px;
}

.tl-text {
    font-size: .85rem;
    color: var(--muted);
}

/* ================= SERVICE DETAILS ================= */
.service-details-list {
    list-style: none;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-details-list li {
    font-size: .8rem;
    color: var(--muted);
    padding-right: 16px;
    position: relative;
}

.service-details-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: .75rem;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(212, 180, 131, .06);
    border: 1px solid var(--line-soft);
    font-size: .82rem;
}

.service-price span {
    color: var(--muted);
}

.service-price strong {
    color: var(--gold-2);
    font-size: .9rem;
}

/* ================= BEFORE/AFTER ================= */
.before-after {
    background: linear-gradient(180deg, transparent 0%, rgba(7, 19, 34, .5) 12%, rgba(7, 19, 34, .5) 88%, transparent 100%);
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.ba-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--line-soft);
    transition: var(--transition);
}

.ba-card:hover {
    transform: translateY(-6px);
    border-color: var(--line);
    box-shadow: var(--shadow-xl);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.ba-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-700);
    padding: 12px;
}

.ba-img svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.ba-label {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    background: rgba(245, 87, 108, .8);
    color: #fff;
}

.ba-label-after {
    background: rgba(76, 175, 80, .8);
}

.ba-info {
    padding: 18px;
}

.ba-info h4 {
    font-size: .95rem;
    margin-bottom: 6px;
    color: var(--gold-2);
}

.ba-info p {
    font-size: .8rem;
    color: var(--muted);
}

/* ================= TEAM RESUME ================= */
.team-resume {
    list-style: none;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}

.team-resume li {
    font-size: .76rem;
    color: var(--muted);
    padding-right: 14px;
    position: relative;
    line-height: 1.6;
}

.team-resume li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--gold);
}

/* ================= TESTIMONIALS EXTRA ================= */
.testimonial-link {
    display: inline-block;
    margin-top: 12px;
    font-size: .78rem;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.testimonial-link:hover {
    color: var(--gold-2);
}

.testimonials-cta {
    text-align: center;
    margin-top: 36px;
}

/* ================= INSURANCE ================= */
.insurance {
    padding: 60px 0;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.insurance-item {
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    background: var(--card);
    border: 1px solid var(--line-soft);
    transition: var(--transition);
}

.insurance-item:hover {
    border-color: var(--line);
    transform: translateY(-3px);
}

.insurance-item strong {
    font-size: .88rem;
    color: var(--ink);
}

.insurance-note {
    text-align: center;
    font-size: .84rem;
    color: var(--muted);
}

.insurance-note a {
    color: var(--gold);
    text-decoration: none;
}

/* ================= GALLERY VIDEO ================= */
.gallery-video {
    margin-top: 30px;
}

.video-placeholder {
    border-radius: var(--radius-lg);
    border: 2px dashed var(--line);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(212, 180, 131, .03);
}

.video-placeholder:hover {
    border-color: var(--gold);
    background: rgba(212, 180, 131, .06);
}

.video-placeholder svg {
    width: 56px;
    height: 56px;
    color: var(--gold);
}

.video-placeholder span {
    color: var(--muted);
    font-size: .9rem;
}

/* ================= TOOLS ================= */
.tools {
    background: linear-gradient(180deg, transparent 0%, rgba(7, 19, 34, .5) 12%, rgba(7, 19, 34, .5) 88%, transparent 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.tool-card {
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--line-soft);
    transition: var(--transition);
}

.tool-card:hover {
    border-color: var(--line);
    transform: translateY(-4px);
}

.tool-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(212, 180, 131, .1);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 16px;
}

.tool-icon svg {
    width: 24px;
    height: 24px;
}

.tool-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.tool-card>p {
    font-size: .84rem;
    color: var(--muted);
    margin-bottom: 18px;
}

.tool-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    color: var(--muted);
    cursor: pointer;
}

.tool-form input[type="checkbox"] {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
}

.tool-form input[type="number"],
.tool-form select {
    padding: 11px 14px;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: rgba(7, 19, 34, .6);
    color: var(--ink);
    font-family: 'Vazirmatn', sans-serif;
    font-size: .88rem;
}

.tool-form input:focus,
.tool-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-sm {
    padding: 10px 22px;
    font-size: .88rem;
}

.tool-result {
    margin-top: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: .84rem;
    display: none;
}

.tool-result.show {
    display: block;
}

.tool-result.success {
    background: rgba(76, 175, 80, .12);
    border: 1px solid rgba(76, 175, 80, .3);
    color: #a5d6a7;
}

.tool-result.warning {
    background: rgba(255, 193, 7, .12);
    border: 1px solid rgba(255, 193, 7, .3);
    color: #ffe082;
}

.tool-result.danger {
    background: rgba(245, 87, 108, .12);
    border: 1px solid rgba(245, 87, 108, .3);
    color: #f8a4b0;
}

/* ================= ONLINE FORM ================= */
.online-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.form-row-online {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.online-form textarea {
    padding: 14px 18px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    background: rgba(7, 19, 34, .5);
    color: var(--ink);
    font-family: 'Vazirmatn', sans-serif;
    font-size: .9rem;
    resize: vertical;
}

.online-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 180, 131, .12);
}

.online-form textarea::placeholder {
    color: rgba(167, 184, 204, .5);
}

.upload-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.upload-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border: 2px dashed var(--line);
    border-radius: var(--radius-md);
    cursor: pointer;
    color: var(--muted);
    font-size: .88rem;
    transition: var(--transition);
}

.upload-label:hover {
    border-color: var(--gold);
    color: var(--gold-2);
}

.upload-label svg {
    color: var(--gold);
}

.upload-group input[type="file"] {
    display: none;
}

.upload-preview {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.upload-preview img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
}

/* ================= CARE GUIDES ================= */
.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
}

.care-card {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--line-soft);
    transition: var(--transition);
}

.care-card:hover {
    border-color: var(--line);
    transform: translateY(-4px);
}

.care-card h4 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: var(--gold-2);
}

.care-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.care-card li {
    font-size: .82rem;
    color: var(--muted);
    padding-right: 16px;
    position: relative;
    line-height: 1.7;
}

.care-card li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--gold);
}

/* ================= CLINICS ================= */
.clinics {
    background: linear-gradient(180deg, transparent 0%, rgba(7, 19, 34, .5) 12%, rgba(7, 19, 34, .5) 88%, transparent 100%);
}

.clinics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.clinic-card {
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--line-soft);
    transition: var(--transition);
    position: relative;
}

.clinic-card:hover {
    border-color: var(--line);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.clinic-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 4px 14px;
    border-radius: 999px;
    background: var(--grad-gold);
    color: #16283d;
    font-size: .72rem;
    font-weight: 800;
}

.clinic-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--gold-2);
}

.clinic-address {
    font-size: .84rem;
    color: var(--muted);
    margin-bottom: 10px;
    line-height: 1.8;
}

.clinic-phone a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
}

.clinic-phone a:hover {
    color: var(--gold-2);
}

.clinic-hours {
    font-size: .8rem;
    color: var(--muted);
    margin: 8px 0 14px;
}

.clinic-map-link {
    display: inline-block;
    font-size: .82rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.clinic-map-link:hover {
    color: var(--gold-2);
}

/* ================= PRIVACY ================= */
.privacy {
    padding: 40px 0 80px;
}

.privacy-wrapper {
    padding: 36px;
    border-radius: var(--radius-xl);
    background: var(--card);
    border: 1px solid var(--line-soft);
}

.privacy-wrapper h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--gold-2);
}

.privacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.privacy-col h4 {
    font-size: .95rem;
    margin-bottom: 10px;
    color: var(--ink);
}

.privacy-col p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 2;
}

/* ================= CONTACT LINKS ================= */
.contact-link {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--gold-2);
}

.contact-map-link {
    display: inline-block;
    margin-top: 6px;
    font-size: .8rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.contact-map-link:hover {
    color: var(--gold-2);
}

/* ================= FOOTER CONTACT MINI ================= */
.footer-contact-mini {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-mini p {
    font-size: .82rem;
    opacity: .7;
}

.footer-contact-mini a {
    color: var(--gold);
    text-decoration: none;
}

/* ================= RESPONSIVE ADDITIONS ================= */
@media (max-width: 1024px) {
    .privacy-content {
        grid-template-columns: 1fr;
    }

    .form-row-online {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .licenses-grid {
        gap: 18px;
    }

    .license-item {
        font-size: .76rem;
    }

    .ba-grid {
        grid-template-columns: 1fr;
    }

    .clinics-grid {
        grid-template-columns: 1fr;
    }

    .about-timeline {
        padding-right: 16px;
    }
}



/* ================= BEFORE/AFTER (عکس واقعی) ================= */
.ba-img {
    padding: 0;
    aspect-ratio: 3/4;
}

.ba-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-img:first-child img {
    filter: grayscale(1);
    transition: var(--transition);
}

.ba-card:hover .ba-img:first-child img {
    filter: grayscale(0);
}

.ba-label {
    top: auto;
    bottom: 10px;
    right: 10px;
}

/* ================= SATISFACTION ================= */
.satisfaction {
    background: linear-gradient(180deg, transparent 0%, rgba(7, 19, 34, .5) 12%, rgba(7, 19, 34, .5) 88%, transparent 100%);
    overflow: hidden;
}

.sat-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 24px 26px;
    max-width: 1440px;
    margin: 0 auto;
    scrollbar-width: none;
}

.sat-track::-webkit-scrollbar {
    display: none;
}

.sat-card {
    position: relative;
    min-width: 270px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    scroll-snap-align: start;
}

.sat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sat-card:hover img {
    transform: scale(1.06);
}

.sat-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: rgba(242, 247, 253, .7);
    backdrop-filter: blur(6px);
    color: var(--navy-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.sat-play svg {
    width: 24px;
    height: 24px;
}

.sat-card:hover .sat-play {
    background: var(--grad-gold);
    color: #16283d;
    transform: translate(-50%, -50%) scale(1.1);
}

.sat-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.sat-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--card);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sat-arrow:hover {
    background: var(--grad-gold);
    color: #16283d;
}

.sat-arrow svg {
    width: 20px;
    height: 20px;
}