/* ===== ریست ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== فونت‌ها ===== */
@font-face {
    font-family: vazir;
    src: url(./fonts/Vazirmatn-Black.woff2);
}

@font-face {
    font-family: Sahel;
    src: url(./fonts/Sahel.woff);
}

body {
    font-family: vazir, sans-serif;
    color: #1C2B33;
    line-height: 1.8;
}

/* ===== پیام خطا ===== */
.alert-box {
    position: fixed;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: #ea4937;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.alert-box__content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
}

.alert-box__icon {
    font-size: 1.3rem;
}

.alert-box__message {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.alert-box__progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.alert-box__bar {
    display: block;
    height: 100%;
    width: 100%;
    background: #fff;
}

@keyframes alertProgress {
    from { width: 100%; }
    to { width: 0%; }
}

/* ===== پیام موفقیت ===== */
.success-box {
    position: fixed;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: linear-gradient(135deg, #1F5F5B 0%, #154743 100%);
    box-shadow: 0 12px 32px rgba(21, 92, 67, 0.35);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 99;
    overflow: hidden;
    transition: top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-box.show {
    top: 80px;
}

.success-box__content {
    padding: 14px 18px;
}

.success-box__row {
    display: flex;
    align-items: center;
    gap: 7px;
}

.success-box__icon {
    font-size: 1.3rem;
}

.success-box__message {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.success-box__progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.success-box__bar {
    display: block;
    height: 100%;
    width: 100%;
    background: #fff;
}

@keyframes successProgress {
    from { width: 100%; }
    to { width: 0%; }
}
/* ===== منو ===== */
#right_menu{
    width: 40%;
    height: 100vh;
    background-color: white;
    border-top-left-radius: 90px;
    border: 1px solid rgb(230, 230, 230);
    position: fixed;
    right: -40%;
    top: -1px;
    padding-top: 0;
    z-index: 999;
    overflow: hidden;
    transition: 0.45s;
}
#logo_burger{
    display: flex;
    gap: 18px;
    align-items: center;
}
#burger{
    font-size: 25px;
    display: none;
}
#div_menu{
    width: 100%;
    height: 100px;
    background: linear-gradient(to right, rgb(120, 174, 255),rgb(38, 119, 218));
    margin-top: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#menu_hero{
    font-size: 25px;
    color: white;
}
.menu_nav{
    display: flex;
    flex-direction: column;
    margin-right: 30px;
    margin-top: 20px;
}
.menu_link{
    text-decoration: none;
    color: black;
    width: 120px;
}
.menu_link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: #0E7C7B;
    transition: width 0.3s ease;
}
#btn_close{
    background: none;
    border: none;
}

#out_menu{
    width: 100%;
    height: 100vh;
    z-index: 998;
    position: fixed;
    background-color: rgba(218, 218, 218,0.4);
    backdrop-filter: blur(2.5px);
    display: none;
}
/* ===== هدر ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(14, 124, 123, 0.08);
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header__logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 50%;
}

.header__logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0E7C7B;
}

.header__nav {
    display: flex;
    gap: 28px;
}

.header__link {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1C2B33;
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: #0E7C7B;
    transition: width 0.3s ease;
}

.header__link:hover {
    color: #0E7C7B;
}

.header__link:hover::after {
    width: 100%;
}

.header__btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, #0E7C7B, #0A5C5B);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 6px 16px rgba(14, 124, 123, 0.25);
}



/* ===== بنر اصلی ===== */
.hero {
    position: relative;
    padding: 45px 24px 60px;
    overflow: hidden;
    background: 
        radial-gradient(circle at 15% 20%, rgba(14,124,123,0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(212,160,138,0.12) 0%, transparent 40%),
        linear-gradient(160deg, #FFFFFF 0%, #F2FAF9 60%, #FDF8F6 100%);
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    animation: fadeUp 0.85s ease-out forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(11, 98, 96, 0.08);
    color: #0A5C5B;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(14, 124, 123, 0.15);
}

.badge__dot {
    width: 8px;
    height: 8px;
    background-color: #0E7C7B;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #1C2B33;
}

.hero-title__accent {
    background: linear-gradient(135deg, #13e7e3, #0c8583, #096c6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.hero-desc {
    font-size: 1.13rem;
    color: #38434b;
    margin-bottom: 36px;
    max-width: 490px;
    line-height: 1.6;
    font-family: Sahel;
}

.hero-actions {
    display: flex;
    height: 60px;
    align-items: center;
    margin-top: 25px;
}

.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 32px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    font-family: vazir;
    cursor: pointer;
    width: 35%;
    height: 100%;
}

.hero-btn--primary {
    background: linear-gradient(135deg, #0E7C7B 0%, #0A5C5B 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 24px rgba(14, 124, 123, 0.28);
    gap: 7px;
}

.hero-btn--secondary {
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid #0E7C7B;
    color: #0E7C7B;
    margin-right: 20px;
    font-size: 17.5px;
    font-weight: bold;
}
.hero-btn--primary,
.hero-btn--secondary {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-btn--primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(15, 198, 195, 0.35);
}

.hero-btn--secondary:hover {
    background: #f8ffff;
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(11, 51, 71, 0.18);
}
.hero-trust {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.hero-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #3e484f;
}

.hero-trust__icon {
    width: 22px;
    height: 22px;
    background: #E0F2F1;
    color: #0E7C7B;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* ===== ستون تصویر بنر ===== */
.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-media__img-wrapper {
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(28, 43, 51, 0.12);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.hero-media__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
    transition: 0.3s;
}
.hero-media__img-wrapper:hover{
    transform: rotate(2deg) scale(1.03);
}
.float-card {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    padding: 14px 22px;
    box-shadow: 0 8px 24px rgba(28, 43, 51, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    animation: floate 3.5s ease-in-out infinite;
}

.float-card--exp {
    top: 30px;
    right: -30px;
}

.float-card--satisfaction {
    bottom: 40px;
    left: -30px;
    animation-delay: 1.7s;
}

.float-card__icon {
    font-size: 1.8rem;
}

.float-card__num {
    font-weight: 800;
    font-size: 1.4rem;
    color: #0E7C7B;
}

.float-card__label {
    color: #5B6B76;
    font-size: 0.85rem;
}

.hero-decor {
    position: absolute;
    pointer-events: none;
}

.hero-decor--circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,124,123,0.12) 0%, transparent 70%);
    bottom: -80px;
    right: -40px;
}

.hero-decor--ring {
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(14,124,123,0.2);
    border-radius: 50%;
    top: -20px;
    left: -30px;
    animation: spin 20s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes floate {
    0%, 100% { transform: translateY(-12px); }
    50% { transform: translateY(0px); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== بخش ویدیو ===== */
.showcase {
    position: relative;
    padding: 60px 24px;
    overflow: hidden;
}

.showcase__container {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase__header {
    text-align: center;
}

.showcase__badge {
    display: inline-block;
    font-size: 0.87rem;
    font-weight: 500;
    color: #186967;
    padding: 6px 16px;
    border: 1px solid rgba(47, 172, 170, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
    background: rgba(20, 245, 241, 0.05);
}

.showcase__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1C2B33;
    margin-bottom: 16px;
}

.showcase__desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: #535e66;
    max-width: 600px;
    margin: 0 auto;
    line-height: 2;
}

.showcase__content {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 60px;
    align-items: center;
}

.showcase__text {
    margin-top: 40px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #2C3E4C;
}

.feature-list__icon {
    width: 26px;
    height: 26px;
    background: #E0F2F1;
    color: #1c8584;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 0px 3px rgba(14, 124, 123, 0.15);
}

.feature-list__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #12c6bd, #0E7C7B);
    box-shadow: 0 0 8px rgba(18, 198, 189, 0.5);
}

.feature-list--compact {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 16px;
    gap: 12px;
    margin: 0;
}

.feature-list--compact li {
    font-size: 0.95rem;
    color: #3e484f;
}

.showcase__quote {
    font-size: 30px;
    font-weight: 700;
    color: #1C2B33;
    line-height: 1.7;
    margin-top: -10px;
    margin-bottom: 15px;
}

.showcase__bottom {
    display: flex;
    align-items: center;
    margin-top: 0;
}

.call-btn-wrapper {
    width: 215px;
    height: 68px;
    border: 1px solid #0eb48b;
    border-radius: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-right: 40px;
    margin-top: 40px;
    animation: floatSoft 3s ease-in-out infinite;
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.call-btn {
    display: flex;
    width: 205px;
    height: 58px;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #0E7C7B, #0A5C5B);
    color: #fff;
    border: none;
    border-radius: 26px;
    font-weight: 600;
    font-size: 1rem;
    font-family: vazir;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(14, 124, 123, 0.25);
    margin: auto;
    position: relative;
    text-decoration: none;
}

.call-btn__shine {
    position: absolute;
    width: 50px;
    height: 140%;
    border-radius: 2px;
    background-color: rgba(238, 238, 238, 0.4);
    left: -55px;
    transition: 0.43s;
    transform: rotate(15deg);
    box-shadow: -5px 3px 20px rgba(187, 187, 187, 0.45);
}

.call-btn:hover .call-btn__shine {
    left: 110%;
}

/* ===== امتیاز ===== */
.rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 10px;
}

.rating__avatars {
    display: flex;
    align-items: center;
}

.rating__avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rating__more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0E7C7B, #0A5C5B);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-decoration: none;
}

.rating__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating__stars {
    color: #F5A623;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.rating__text {
    font-size: 0.85rem;
    color: #5B6B76;
}

/* ===== قاب ویدیو ===== */
.showcase__video-side {
    position: relative;
    display: flex;
    justify-content: center;
}

.video-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 9 / 26;
    height: 480px;
    border-radius: 32px;
    padding: 6px;
    background: linear-gradient(135deg, #18a09e, #0f9e9c);
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
    box-shadow: 0 10px 40px rgba(14, 124, 123, 0.4);
    transition: all 0.5s ease;
    z-index: 1;
}

.video-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(14, 124, 123, 0.5);
}

.video-frame__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #fff;
    border-radius: 26px;
    cursor: pointer;
}

.video-frame__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(14, 124, 123, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0E7C7B;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.video-frame__play.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-frame__badge {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1C2B33;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: floatBadge 4s ease-in-out infinite;
}

.video-frame__badge--exp {
    top: 30px;
    right: -20px;
}

.video-frame__badge--tech {
    bottom: 40px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.showcase__ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px dashed rgba(14, 124, 123, 0.3);
    border-radius: 50%;
    top: -40px;
    left: -20px;
    animation: spin 20s linear infinite;
    z-index: -1;
}

/* ===== نوار آمار ===== */
.stats-bar {
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: space-around;
    margin-top: 150px;
    width: 90%;
    padding: 20px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 124, 123, 0.2);
    box-shadow: 0 8px 24px rgba(14, 124, 123, 0.08);
}

.stats-bar__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats-bar__icon {
    font-size: 1.8rem;
}

.stats-bar__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stats-bar__label {
    font-size: 0.85rem;
    color: #5B6B76;
    font-weight: 300;
}

.stats-bar__value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #117776;
}

.stats-bar__value--gold {
    color: #ffd000;
    font-size: 1.4rem;
    font-weight: 800;
}

.stats-bar__separator {
    width: 1.3px;
    height: 45px;
    background: linear-gradient(180deg, transparent, rgba(14, 124, 123, 0.3), transparent);
}
/* ===== رزومه کلینیک ===== */
.clinic-resume {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 24px;
}

.clinic-resume__container {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 8px 30px rgba(14, 124, 123, 0.08);
    border: 1px solid rgba(14, 124, 123, 0.1);
    padding: 40px;
}

.clinic-resume__header {
    text-align: center;
    margin-bottom: 40px;
}

.clinic-resume__title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #1C2B33;
    margin-top: 15px;
    margin-bottom: 10px;
}

.clinic-resume__desc {
    font-size: 1rem;
    font-weight: 300;
    color: #5B6B76;
}

.clinic-resume__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-around;
}

.clinic-resume__image img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.clinic-resume__doctor-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1C2B33;
    margin-bottom: 5px;
}

.clinic-resume__specialty {
    display: inline-block;
    font-size: 0.95rem;
    color: #0E7C7B;
    font-weight: 600;
    margin-bottom: 20px;
}

.clinic-resume__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.clinic-resume__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #2C3E4C;
}

.clinic-resume__icon {
    font-size: 1.3rem;
}
/* ===== بخش خدمات ===== */
.services {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
    position: relative;
    overflow: visible;
}

.services__intro {
    text-align: center;
    margin-bottom: 70px;
}

.services__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1C2B33;
    margin-bottom: 12px;
}

.services__desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: #5B6B76;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    direction: rtl;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(28, 43, 51, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-align: center;
    border: 1px solid rgba(14, 124, 123, 0.08);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(14, 124, 123, 0.2);
    border-color: rgba(14, 124, 123, 0.3);
}



.service-card__img-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    background-color: #D6EAF8;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-card__img-wrapper {
    background-color: #0E7C7B;
    transform: scale(1.03);
}

.service-card__img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all 0.5s ease;
}
.hair_img{
    width: 70px;
    height: 70px;
}
.laser_img{
    width: 95px;
    height: 95px;
}
.service-card:hover .service-card__img {
    transform: scale(1.05);
}

.service-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #324948;
}

.service-card__text {
    font-size: 0.9rem;
    color: #5B6B76;
    line-height: 1.8;
    margin: 15px 0 20px;
    min-height: 65px;
}

.service-card__btn {
    display: inline-block;
    padding: 10px 40px;
    background: transparent;
    border: 1.5px solid #0E7C7B;
    color: #0E7C7B;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    font-family: vazir;
    margin-top: 10px;
    transition: 0.2s;
}

.service-card__btn:hover {
    background: #0E7C7B;
    color: #fff;
}

/* ===== بخش تجهیزات ===== */
.equipment {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    direction: rtl;
}
.equipment__type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0E7C7B;
    background: #E0F2F1;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
    font-family: Sahel;
}
.equipment__header {
    text-align: center;
    margin-bottom: 40px;
}
.btn_call{
    display: none;
}
.equipment__badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0E7C7B;
    padding: 6px 16px;
    border: 1px solid rgba(14, 124, 123, 0.3);
    border-radius: 50px;
    background: rgba(14, 124, 123, 0.05);
    margin-bottom: 16px;
}

.equipment__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1C2B33;
    margin-bottom: 10px;
}

.equipment__desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: #5B6B76;
}

.equipment__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
}

.equipment__card {
    background: #fff;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 4px 16px rgba(28, 43, 51, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 124, 123, 0.08);
    user-select: none;
}

.equipment__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(14, 124, 123, 0.15);
    border-color: rgba(14, 124, 123, 0.25);
}

.equipment__card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
    pointer-events: none;
}

.equipment__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1C2B33;
    margin-bottom: 8px;
}

.equipment__text {
    font-size: 0.85rem;
    color: #5B6B76;
    line-height: 1.8;
}

/* ===== سوالات متداول ===== */
.faq {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(14, 124, 123, 0.1);
    box-shadow: 0 2px 8px rgba(28, 43, 51, 0.04);
    overflow: hidden;
    transition: all 0.1s ease;
}

.faq__item:hover {
    border-color: rgba(14, 124, 123, 0.3);
    box-shadow: 0 4px 16px rgba(14, 124, 123, 0.08);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    font-family: vazir;
    font-size: 1rem;
    font-weight: 600;
    color: #1C2B33;
    cursor: pointer;
}

.faq__question:hover {
    color: #0d5c5a;
}

.faq__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E0F2F1;
    color: #0E7C7B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.6s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
    background: #09817f;
    color: #fff;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease;
}

.faq__answer p {
    padding: 0 20px 18px;
    font-size: 0.9rem;
    color: #5B6B76;
    line-height: 1.8;
}

.faq__item.active .faq__answer {
    max-height: 200px;
}

/* ===== بخش رزرو نوبت ===== */
.booking {
    padding: 20px 24px;
}

.booking__free {
    background: linear-gradient(135deg, #13e7e3, #0c8583, #096c6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-booking {
    position: relative;
    width: 1050px;
    max-width: 95%;
    height: 500px;
    margin: auto;
    margin-top: -25px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.panel {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.7s;
}

.contact-panel {
    background: linear-gradient(135deg, #0b6291 0%, #0D4543 100%);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        inset 0 0 30px rgba(0, 0, 0, 0.15);
    left: 25%;
    opacity: 0;
}

.booking-panel {
    background: #ffffff;
    right: 0;
}

.panel-content {
    text-align: center;
    width: 100%;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.contact-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.contact-card__phone {
    font-size: 1.5rem;
    font-weight: 700;
    direction: ltr;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    padding: 10px 24px;
    border-radius: 14px;
    transition: 0.3s;
}
.contact-card__phone:hover {
    background: rgba(255, 255, 255, 0.25);
}
.contact-card__info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.booking-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.booking-form h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1C2B33;
    text-align: center;
    margin-bottom: 6px;
}

.booking-form input,
.booking-form select {
    padding: 13px 16px;
    border: 1.5px solid #E0E0E0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    text-align: right;
    color: #1C2B33;
    background: #F8F8F6;
}

.booking-form input::placeholder {
    font-family: Sahel;
    font-size: 16px;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: #0E7C7B;
    box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.1);
    background: #fff;
}

.booking-form button {
    padding: 14px;
    background: #0E7C7B;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.booking-form button:hover {
    background: #0A5C5B;
}

.overlay {
    position: absolute;
    top: 0;
    right: 50%;
    width: 50%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 235, 210, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(0, 0, 0, 0.20) 0%, transparent 60%),
        linear-gradient(135deg, #1A6E6B 0%, #0F4C4A 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 0 40px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    padding: 30px;
    border-left: 1px solid rgba(14, 124, 123, 0.08);
}

.overlay__title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-top: -50px;
    margin-bottom: 20px;
}

.overlay__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.overlay__btn {
    padding: 13px 32px;
    background: #FFFFFF;
    border: none;
    border-radius: 18px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    color: #0F4C4A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.overlay__btn:hover {
    background: #F2FAF9;
    color: #0A5C5B;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
}

/* ===== بخش نظرات ===== */
.reviews-section {
    padding: 20px 24px;
}

.reviews {
    max-width: 950px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(14, 124, 123, 0.08);
    border: 1px solid rgba(14, 124, 123, 0.1);
}

.review-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid rgba(14, 124, 123, 0.08);
    transition: all 0.1s ease;
}

.review-row:hover {
    background: rgba(41, 192, 189, 0.03);
    border-radius: 12px;
}

.review-row__user {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.review-row__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0E7C7B;
}

.review-row__name {
    font-size: 1rem;
    font-weight: 700;
    color: #1C2B33;
}

.review-row__service {
    font-size: 0.8rem;
    color: #5B6B76;
}

.review-row__body {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.review-row__text {
    font-size: 0.9rem;
    color: #2C3E4C;
    line-height: 1.8;
    max-width: 70%;
    margin-top: 30px;
}

.review-row__stars {
    color: #F5A623;
    letter-spacing: 2px;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* ===== آمار نظرات ===== */
.reviews-stats {
    padding: 20px;
}

.reviews-stats__label {
    color: #4e585f;
}

.reviews-stats__row {
    margin-top: 25px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.reviews-stats__mark {
    font-size: 45px;
    color: #0b3c27;
}

.reviews-stats__value {
    color: rgb(255, 203, 33);
}

.reviews-stats__line {
    width: 78%;
    height: 5px;
    border-radius: 5px;
    background: rgba(14, 124, 123, 0.1);
    overflow: hidden;
}

.reviews-stats__fill {
    width: 0%;
    height: 5.5px;
    border-radius: 5px;
    background: linear-gradient(90deg, #018482, #04765d, #14da8b);
    box-shadow: 0 0 15px rgba(14, 124, 123, 0.4);
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reviews-stats__fill.animate {
    width: 95%;
}

/* ===== فرم افزودن نظر ===== */
.add-review {
    max-width: 800px;
    margin: 40px auto;
    padding: 24px;
    background: #F8F8F6;
    border-radius: 20px;
    border: 1px solid #E7E3DC;
}

.add-review__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1C2B33;
    text-align: center;
    margin-bottom: 20px;
}

.add-review__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.add-review__form input,
.add-review__form select,
.add-review__form textarea {
    padding: 12px 16px;
    border: 1.5px solid #E0E0E0;
    border-radius: 12px;
    font-family: vazir;
    font-size: 0.95rem;
    color: #1C2B33;
    background: #fff;
}

.add-review__form input:focus,
.add-review__form select:focus,
.add-review__form textarea:focus {
    outline: none;
    border-color: #0E7C7B;
    box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.1);
}

.add-review__form textarea {
    resize: vertical;
    min-height: 100px;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    direction: ltr;
}

.star-rating span {
    font-size: 2rem;
    color: #E0E0E0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating span.active {
    color: #F5A623;
}

.add-review__form button {
    padding: 14px;
    background: #0E7C7B;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: vazir;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.add-review__form button:hover {
    background: #0A5C5B;
}

/* ===== فوتر ===== */
.footer {
    background: #0F1115;
    color: #AAB4BD;
    padding: 60px 24px 0;
    direction: rtl;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.links{
    margin-top: 10px;
}
.quick_action{
    margin-right: 50px;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer__logo-img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: contain;
}

.footer__logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.footer__about {
    font-size: 0.9rem;
    line-height: 2;
    color: #8B95A0;
    max-width: 350px;
}

.footer__social {
    gap: 12px;
    margin-top: 5px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: #1A1E24;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AAB4BD;
    transition: all 0.3s ease;
    border: none;
}

.footer__social-link:hover {
    background: #0E7C7B;
    color: #fff;
    transform: translateY(-2px);
}
.social_div{
    display: flex;
    gap: 10px;
    align-items: center;
}
.copy{
    width: 55px;
    height: 30px;
    background-color: rgb(22, 22, 22);
    font-size: 12px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    margin-right: -7px;
    transition: 0.4s;
    opacity: 0;
}
.footer__social:has(.footer__social-link:hover) .copy {
    opacity: 1;
}
.footer__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.footer__links {
    list-style: none;
    width: 100px;
}

.footer__links li {
    margin-top: 10px;
}

.footer__links a {
    color: #8B95A0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer__links a:hover {
    color: #12c6bd;
    margin-right: 10px;
}

.footer__contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #8B95A0;
}

.footer__contact-label {
    color: rgb(227, 227, 227);
}

.footer__contact a {
    color: #8B95A0;
    text-decoration: none;
}

.footer__contact a:hover {
    color: #12c6bd;
}

.footer__bottom {
    margin-top: 50px;
    padding: 20px 24px;
    border-top: 1px solid #1A1E24;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: #6B7680;
}
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* //////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////// */
/* //////////////////////     رسپانسیو     //////////////// */
/* //////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////// */

@media (max-width: 1012px){
    .hero-btn{
        width: 46%;
        height: 94%;
    }
}
@media (max-width: 860px){
    #burger{
        display: block;
    }
    .hero {
        padding: 10px 24px 60px;
    }
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .equipment__grid {
        grid-template-columns: repeat(2, 1.5fr);
    }
    .video-frame {
        width: 80%;
        aspect-ratio: 9 / 16;
        max-height: 400px;
    }
    .service-card__btn{
        margin-top: 20px;
    }
    .hero-media {
        margin-top: -35px;
    }

    .hero-actions {
        width: 100%;
        gap: 10px;
    }

    .hero-btn {
        width: auto;
        padding: 15px 24px;
        font-size: 0.9rem;
    }

    .hero-btn--secondary {
        margin-right: 0;
    }
    .header__nav {
        display: none;
    }
    .menu_nav{
        display: flex;
    }
    .header__container {
        justify-content: space-between;
        padding-left: 60px;
        padding-right: 60px;
    }
    .float-card{
        width: 180px;
        height: 55px;
        font-size: 0.7rem;
        
    }
    .float-card__num{
        font-size: 1.2rem;

    }
    .float-card__icon {
        font-size: 1.4rem;
    }
    .float-card--exp {
        top: 30px;
        right: -60px;
    }

    .float-card--satisfaction {
        display: none;
    }

    .call-btn-wrapper {
        display: none;
    }
    .btn_call{
        display: flex;
        margin-right: 0px;
    }
    .showcase__content {
        grid-template-columns: repeat(1,1fr);
    }
    .video-frame {
        margin-top: 50px;
        height: 500px;
    }
    .video-frame {
        max-width: 300px;
    }
    .showcase__ring {
        top: 10px;
        left: 150px;
    }

    .feature-list {
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
    }
    .feature-list--compact{
        display: flex;
        gap: 16px;
    }

    .showcase__bottom{
        margin-top: 30px;
    }

    .showcase__text{
        margin: auto;
    }
    .showcase__quote{
        text-align: center;
        margin-top: 50PX;
    }
    .rating{
        width: 250px;
        display: flex;
        justify-content: center;
        margin: auto;
        margin-top: 40px;
    }
    .btn_call{
        margin: auto;
        margin-top: 40px;
    }
    .stats-bar{
        margin-top: 60px;
    }
    .footer__contact li {
        display: block;
    }
    .clinic-resume {
        padding: 0 16px;
        margin: 60px auto;
    }

    .clinic-resume__container {
        padding: 30px 20px;
    }

    .clinic-resume__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .clinic-resume__image img {
        max-width: 250px;
    }

    .clinic-resume__list li {
        justify-content: center;
        text-align: right;
    }

    .clinic-resume__doctor-name {
        font-size: 1.4rem;
    }
}


@media (max-width: 730px){
    .hero {
        padding: 20px 24px 60px;
    }
    .hero__container{
        grid-template-columns: 1fr;
    }
    .hero__content{
        margin: auto;
        text-align: center;
    }
    .hero-title{
        text-align: center;
    }
    .hero-desc{
        text-align: center;
        margin: auto;
        max-width: 400px;
    }
    .hero-actions{
        margin: auto;
        margin-top: 20px;
        justify-content: center;
        gap: 20px;
    }
    .hero-btn {
        width: 32%;
    }
    .hero-trust {
        margin: auto;
        margin-top: 20px;
        justify-content: center;
    }
    .hero-media {
        margin-top: 0px;
    }

    .hero-media__img-wrapper {
        transform: none;
        transition: transform 0.5s ease;
        border-radius: 40px;
        max-width: 380px;
        max-height: 380px;
        padding: 0;
        animation: float 3.5s ease-in-out infinite;
    }

    .hero-media__img:hover{
        transform: none;
    }
    .float-card--exp {
        top: 30px;
        right: 30px;
    }
    .hero-decor--ring {
        top: -10;
        left: 50px;
    }
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
        
    }
    .comunicate{
        margin-right: 50px;
    }
    .review-row {
        display: block;
    }
    .review-row__body{
        align-items: center;
    }
    .stats-bar {
        width: 99%;
    }
    .contact-card__info{
        display: block;
    }
}
@media (max-width: 580px){
    .booking {
        padding: 20px 0px;
    }
    .showcase__video-side {
        max-width: 580px;
    }
    .feature-list {
        grid-template-columns: repeat(1,1fr);
    }
    .tajrobe,
    .interdus{
        margin-right: 45%;
    }

    .panel{
        width: 100%;
        height: 100%;
        position: static;
    }
    .overlay{
        display: none;
    }
    .contact-panel{
        opacity: 1;
        z-index: 50;
    }
    .contact-booking{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        height: 900px;
    }
    .stats-bar {
        width: 100%;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .stats-bar__icon {
        font-size: 1.35rem;
    }
    .hero-btn {
        width: 34%;
    }
    #right_menu{
        width: 55%;
        right: -55%;
    }
    .clinic-resume {
        padding: 0 12px;
        margin: 50px auto;
    }

    .clinic-resume__container {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .clinic-resume__title {
        font-size: 1.5rem;
    }

    .clinic-resume__desc {
        font-size: 0.9rem;
    }

    .clinic-resume__image img {
        max-width: 200px;
    }

    .clinic-resume__doctor-name {
        font-size: 1.2rem;
    }

    .clinic-resume__specialty {
        font-size: 0.85rem;
    }

    .clinic-resume__list li {
        font-size: 0.85rem;
        gap: 8px;
    }

    .clinic-resume__icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 470px){
    .services__grid {
        grid-template-columns: repeat(1, 0.75fr);
        justify-content: center;
    }
    .equipment__grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .feature-list--compact {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .tajrobe,
    .interdus{
        margin-right: 30%;
    }
    .feature-list--compact li {
        font-size: 0.843rem;
    }
    .stats-bar__label {
        font-size: 0.77rem;
    }
    .stats-bar__value{
        font-size: 0.75rem;
    }
    #right_menu{
        width: 60%;
        right: -60%;
    }
    .hero-btn {
        width: 45%;
    }
    .booking-form input::placeholder {
        font-size: 14px;
    }
}

@media(max-width: 440px){
    .header__btn {
        font-size: 0.8rem;
    }
    .header__container {
        padding: 0 18px;
    }
    .float-card--exp{
        display: none;
    }
    .hero {
        padding: 45px 24px 30px;
    }
    .hero-decor{
        display: none;
    }
    .feature-list--compact li {
        font-size: 0.76rem;
    }
    .rating{
        margin-top: 20px;
    }
    .equipment__desc,
    .services__desc,
    .showcase__desc{
        font-size: 0.9rem;
    }
    .footer__container {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }
    .footer__logo{
        margin: auto;
    }
    .footer__social{
        margin: auto;
    }
    .footer__col {
        margin: auto;
    }
    .footer__title{
        margin: auto;
    }
    .header__logo-text {
        font-size: 1.1rem;
    }
    .clinic-resume {
        padding: 0 8px;
        margin: 40px auto;
    }

    .clinic-resume__container {
        padding: 18px 12px;
        border-radius: 16px;
    }

    .clinic-resume__title {
        font-size: 1.3rem;
    }

    .clinic-resume__desc {
        font-size: 0.82rem;
    }

    .clinic-resume__image img {
        max-width: 170px;
    }

    .clinic-resume__doctor-name {
        font-size: 1.1rem;
    }

    .clinic-resume__specialty {
        font-size: 0.8rem;
    }

    .clinic-resume__list {
        gap: 10px;
    }

    .clinic-resume__list li {
        font-size: 0.78rem;
        gap: 6px;
    }

    .clinic-resume__icon {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .hero-btn {
        width: 100%;
        padding: 12px 8px;
        font-size: 0.8rem;
    }
}

@media(max-width: 360px){
    .tajrobe,
    .interdus{
        margin-right: 0;
    }
    .feature-list li {
        font-size: 0.92rem;
    }
    .feature-list--compact{
        grid-template-columns: repeat(1,1fr);
        margin: auto;
    }
    .stats-bar__icon{
        display: none;
    }
    .stats-bar__label{
        font-size: 0.9rem;
    }
    .stats-bar__value{
        font-size: 0.88rem;
    }
    .hero-desc{
        font-size: 0.9rem;
    }
    .hero-btn {
        font-size: 0.8rem;
        width: 50%;
        padding: 17px 10px;
    }
    .services__grid {
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    }
    .contact-booking{
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
    .booking {
        padding: 0;
    }
   .video-frame {
        width: 120%;
    }
    .clinic-resume {
        padding: 0 6px;
        margin: 30px auto;
    }

    .clinic-resume__container {
        padding: 14px 10px;
    }

    .clinic-resume__title {
        font-size: 1.2rem;
    }

    .clinic-resume__desc {
        font-size: 0.78rem;
    }

    .clinic-resume__image img {
        max-width: 150px;
    }

    .clinic-resume__doctor-name {
        font-size: 1rem;
    }

    .clinic-resume__specialty {
        font-size: 0.75rem;
    }

    .clinic-resume__list li {
        font-size: 0.72rem;
    }
}

@media (max-width: 320px) {
    /* هدر */
    .header__container {
        padding: 0 10px;
        height: 60px;
    }

    .header__logo-img {
        width: 42px;
        height: 42px;
    }

    .header__logo-text {
        font-size: 1rem;
    }

    #burger {
        font-size: 22px;
    }

    /* بنر اصلی */
    .hero {
        padding: 30px 12px 40px;
    }

    .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-desc {
        font-size: 0.83rem;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        height: auto;
        gap: 12px;
    }

    .hero-btn {
        width: 100%;
        padding: 14px 10px;
        font-size: 0.85rem;
    }

    .hero-btn--secondary {
        margin-right: 0;
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .hero-trust__item {
        font-size: 0.75rem;
    }

    /* بخش ویدیو */
    .showcase {
        padding: 40px 10px;
    }

    .showcase__badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .showcase__title {
        font-size: 1.4rem;
    }

    .showcase__desc {
        font-size: 0.83rem;
    }

    .video-frame {
        max-width: 260px;
        height: 400px;
    }

    .video-frame__play {
        width: 60px;
        height: 60px;
    }

    .showcase__ring {
        display: none;
    }

    .feature-list li {
        font-size: 0.83rem;
        gap: 8px;
    }

    .feature-list__icon {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }

    .showcase__quote {
        font-size: 22px;
    }

    .feature-list--compact li {
        font-size: 0.72rem;
    }

    .call-btn {
        width: 97%;
        height: 90%;
        font-size: 0.85rem;
    }

    .rating {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .rating__avatars img {
        width: 34px;
        height: 34px;
    }

    .rating__more {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    /* خدمات */
    .services {
        padding: 0 12px;
        margin: 40px auto;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 20px 14px;
    }

    .service-card__img-wrapper {
        width: 70px;
        height: 70px;
    }

    .service-card__img {
        width: 45px;
        height: 45px;
    }

    .service-card__name {
        font-size: 1rem;
    }

    .service-card__text {
        font-size: 0.8rem;
        min-height: auto;
    }

    .service-card__btn {
        padding: 8px 24px;
        font-size: 0.8rem;
    }

    /* تجهیزات */
    .equipment {
        padding: 0 12px;
        margin: 50px auto;
    }

    .equipment__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .equipment__card {
        padding: 18px 14px;
    }

    .equipment__card img {
        height: 130px;
    }

    .equipment__name {
        font-size: 1rem;
    }

    .equipment__text {
        font-size: 0.78rem;
    }

    /* سوالات متداول */
    .faq {
        padding: 0 12px;
        margin: 50px auto;
    }

    .faq__question {
        padding: 14px 12px;
        font-size: 0.83rem;
    }

    .faq__icon {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }

    .faq__answer p {
        font-size: 0.8rem;
        padding: 0 12px 14px;
    }

    /* رزرو نوبت */
    .booking {
        padding: 0 8px;
    }

    .contact-booking {
        height: auto;
        min-height: 800px;
        border-radius: 16px;
    }

    .panel {
        padding: 24px 16px;
    }

    .contact-card h2 {
        font-size: 1.4rem;
    }

    .contact-card__phone {
        font-size: 1.1rem;
        padding: 8px 16px;
    }

    .contact-card__info {
        font-size: 0.78rem;
    }

    .booking-form h2 {
        font-size: 1.4rem;
    }

    .booking-form input,
    .booking-form select {
        padding: 10px 12px;
        font-size: 0.83rem;
    }

    .booking-form input::placeholder {
        font-size: 12px;
    }

    .booking-form button {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* نظرات */
    .reviews-section {
        padding: 10px 8px;
    }

    .reviews {
        padding: 12px;
        margin: 25px auto;
    }

    .review-row {
        padding: 14px 10px;
    }

    .review-row__avatar {
        width: 40px;
        height: 40px;
    }

    .review-row__name {
        font-size: 0.9rem;
    }

    .review-row__service {
        font-size: 0.72rem;
    }

    .review-row__text {
        font-size: 0.78rem;
        max-width: 100%;
        margin-top: 15px;
    }

    .review-row__stars {
        font-size: 0.85rem;
    }

    .reviews-stats__mark {
        font-size: 32px;
    }

    .reviews-stats__line {
        width: 65%;
    }

    .add-review {
        padding: 16px 12px;
    }

    .add-review__title {
        font-size: 1.1rem;
    }

    .add-review__form input,
    .add-review__form select,
    .add-review__form textarea {
        padding: 10px 12px;
        font-size: 0.83rem;
    }

    .star-rating span {
        font-size: 1.6rem;
    }

    .add-review__form button {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* فوتر */
    .footer {
        padding: 40px 12px 0;
    }

    .footer__logo-img {
        width: 50px;
        height: 50px;
    }

    .footer__logo-text {
        font-size: 1.1rem;
    }

    .footer__about {
        font-size: 0.8rem;
    }

    .footer__title {
        font-size: 1rem;
    }

    .footer__links a {
        font-size: 0.8rem;
    }

    .footer__contact li {
        font-size: 0.78rem;
    }

    .footer__bottom p {
        font-size: 0.72rem;
    }
    .clinic-resume__container {
        padding: 10px 6px;
    }

    .clinic-resume__title {
        font-size: 1rem;
    }

    .clinic-resume__desc {
        font-size: 0.7rem;
    }

    .clinic-resume__image img {
        max-width: 130px;
    }

    .clinic-resume__doctor-name {
        font-size: 0.9rem;
    }

    .clinic-resume__specialty {
        font-size: 0.7rem;
    }

    .clinic-resume__list li {
        font-size: 0.68rem;
    }
}



@media (max-width: 300px) {
    /* هدر */
    .header__container {
        padding: 0 8px;
        height: 55px;
    }

    .header__logo-img {
        width: 38px;
        height: 38px;
    }

    .header__logo-text {
        font-size: 0.95rem;
    }

    #burger {
        font-size: 20px;
    }

    /* بنر */
    .hero {
        padding: 20px 8px 30px;
    }

    .badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-desc {
        font-size: 0.78rem;
    }

    

    .hero-trust__item {
        font-size: 0.7rem;
    }

    /* بخش ویدیو */
    .showcase {
        padding: 30px 8px;
    }

    .showcase__badge {
        font-size: 0.7rem;
    }

    .showcase__title {
        font-size: 1.3rem;
    }

    .showcase__desc {
        font-size: 0.78rem;
    }

    .video-frame {
        max-width: 240px;
        height: 380px;
    }

    .video-frame__play {
        width: 55px;
        height: 55px;
    }

    .feature-list li {
        font-size: 0.78rem;
        gap: 6px;
    }

    .feature-list__icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .showcase__quote {
        font-size: 20px;
    }

    .feature-list--compact li {
        font-size: 0.7rem;
    }

    .call-btn {
        width: 97%;
        height: 90%;
        font-size: 0.8rem;
    }

    .rating__avatars img {
        width: 30px;
        height: 30px;
    }

    .rating__more {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    /* خدمات */
    .services {
        padding: 0 8px;
        margin: 30px auto;
    }

    .service-card {
        padding: 16px 10px;
    }

    .service-card__img-wrapper {
        width: 60px;
        height: 60px;
    }

    .service-card__img {
        width: 40px;
        height: 40px;
    }

    .service-card__name {
        font-size: 0.9rem;
    }

    .service-card__text {
        font-size: 0.75rem;
    }

    .service-card__btn {
        padding: 7px 20px;
        font-size: 0.75rem;
    }

    /* تجهیزات */
    .equipment {
        padding: 0 8px;
        margin: 40px auto;
    }

    .equipment__card {
        padding: 14px 10px;
    }

    .equipment__card img {
        height: 110px;
    }

    .equipment__name {
        font-size: 0.9rem;
    }

    .equipment__text {
        font-size: 0.73rem;
    }

    /* سوالات متداول */
    .faq {
        padding: 0 8px;
        margin: 40px auto;
    }

    .faq__question {
        padding: 12px 10px;
        font-size: 0.78rem;
    }

    .faq__icon {
        width: 22px;
        height: 22px;
        font-size: 0.9rem;
    }

    .faq__answer p {
        font-size: 0.75rem;
        padding: 0 10px 12px;
    }

    /* رزرو نوبت */
    .booking {
        padding: 0 4px;
    }

    .contact-booking {
        min-height: 720px;
        border-radius: 12px;
    }

    .panel {
        padding: 20px 12px;
    }

    .contact-card h2 {
        font-size: 1.3rem;
    }

    .contact-card__phone {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .contact-card__info {
        font-size: 0.72rem;
    }

    .booking-form h2 {
        font-size: 1.3rem;
    }

    .booking-form input,
    .booking-form select {
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    .booking-form input::placeholder {
        font-size: 11px;
    }

    .booking-form button {
        padding: 10px;
        font-size: 0.85rem;
    }

    /* نظرات */
    .reviews {
        padding: 10px;
        margin: 20px auto;
    }

    .review-row {
        padding: 12px 8px;
    }

    .review-row__avatar {
        width: 36px;
        height: 36px;
    }

    .review-row__name {
        font-size: 0.85rem;
    }

    .review-row__service {
        font-size: 0.68rem;
    }

    .review-row__text {
        font-size: 0.72rem;
        margin-top: 10px;
    }

    .review-row__stars {
        font-size: 0.78rem;
    }

    .reviews-stats__mark {
        font-size: 28px;
    }

    .reviews-stats__line {
        width: 60%;
    }

    .add-review {
        padding: 14px 10px;
    }

    .add-review__title {
        font-size: 1rem;
    }

    .add-review__form input,
    .add-review__form select,
    .add-review__form textarea {
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    .star-rating span {
        font-size: 1.4rem;
    }

    .add-review__form button {
        padding: 10px;
        font-size: 0.85rem;
    }

    /* فوتر */
    .footer {
        padding: 30px 8px 0;
    }

    .footer__logo-img {
        width: 45px;
        height: 45px;
    }

    .footer__logo-text {
        font-size: 1rem;
    }

    .footer__about {
        font-size: 0.75rem;
    }

    .footer__title {
        font-size: 0.9rem;
    }

    .footer__links a {
        font-size: 0.75rem;
    }

    .footer__contact li {
        font-size: 0.72rem;
    }

    .footer__bottom p {
        font-size: 0.68rem;
    }
}