/* ==============================================
   صفحه اصلی — home.css
   دکتر وحید عبدالرحیمی
============================================== */

/* ===== متغیرهای رنگ ===== */
:root {
    --primary:       #1a56db;
    --primary-dark:  #1241a8;
    --primary-light: #e8f0fe;
    --accent:        #0ea5e9;
    --text-dark:     #1e293b;
    --text-muted:    #64748b;
    --bg-light:      #f8fafc;
    --border:        #e2e8f0;
    --shadow-md:     0 4px 20px rgba(0,0,0,.09);
    --shadow-lg:     0 10px 40px rgba(0,0,0,.13);
}

/* ===========================
   قانون پایه تصاویر آپلودی
   هر تصویر درون کانتینر فیکس
=========================== */
.img-fixed {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===========================
   هیرو
=========================== */
.hero-section {
    /* margin-top = header-top(47px) + #header(76px) تا تصویر زیر هدر نرود */
    margin-top: 123px;
    min-height: calc(100vh - 123px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* crossfade بنر هیرو */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active { opacity: 1; }

/* overlay نیمه‌شفاف */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        140deg,
        rgba(7,26,53,0.72) 0%,
        rgba(13,43,85,0.60) 55%,
        rgba(10,61,114,0.55) 100%
    );
}

.hero-circle-1 {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.04);
    top: -150px; left: -200px;
    pointer-events: none;
    z-index: 2;
}

.hero-circle-2 {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(26,86,219,.12);
    bottom: -100px; right: -80px;
    pointer-events: none;
    z-index: 2;
}

.hero-content { position: relative; z-index: 3; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,86,219,.25);
    border: 1px solid rgba(96,165,250,.35);
    color: #93c5fd;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 24px;
    animation: badgeGlow 3s ease-in-out infinite;
}

.hero-badge i { font-size: 14px; color: #60a5fa; }

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(96,165,250,.3); }
    50%       { box-shadow: 0 0 18px 5px rgba(96,165,250,.1); }
}

.hero-title {
    font-size: 54px !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.25 !important;
    margin-bottom: 22px !important;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #60a5fa 0%, #38bdf8 30%, #818cf8 65%, #60a5fa 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s linear infinite;
    display: inline-block;
}

@keyframes gradientFlow {
    from { background-position: 0% center; }
    to   { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 18px !important;
    color: #93c5fd !important;
    font-weight: 500 !important;
    margin-bottom: 26px !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.hero-subtitle::before {
    content: '';
    width: 4px;
    min-height: 24px;
    border-radius: 2px;
    background: linear-gradient(to bottom, #60a5fa, #38bdf8);
    flex-shrink: 0;
}

.hero-desc {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.85;
    max-width: 500px;
    margin-bottom: 48px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
    background: var(--primary);
    color: #fff !important;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--primary);
    transition: all .3s;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,86,219,.45);
}

.btn-hero-outline {
    background: transparent;
    color: #fff !important;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(255,255,255,.3);
    transition: all .3s;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    transform: translateY(-2px);
}

/* آمار داخل هیرو */
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.1);
    flex-wrap: wrap;
}

.hero-stat { text-align: right; }

.hero-stat-num {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.hero-stat-num sup {
    font-size: 20px;
    color: #60a5fa;
    vertical-align: super;
}

.hero-stat-lbl {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 6px;
}

/* کارت‌های شناور */
.hero-right {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* wrapper با فضا برای حلقه‌های تزئینی */
.hero-right-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 52px 64px;
}

/* حلقه‌های نبضی تزئینی */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-ring-1 {
    width: 460px; height: 460px;
    border: 1px solid rgba(96,165,250,.14);
    animation: ringPulse 4.5s ease-in-out infinite;
}

.hero-ring-2 {
    width: 548px; height: 548px;
    border: 1px solid rgba(96,165,250,.07);
    animation: ringPulse 4.5s ease-in-out infinite .9s;
}

@keyframes ringPulse {
    0%, 100% { opacity: .35; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: .9;  transform: translate(-50%, -50%) scale(1.025); }
}

.hero-img-bg {
    width: 420px; height: 480px;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    background: linear-gradient(135deg, rgba(26,86,219,.42), rgba(14,165,233,.25));
    position: relative;
    box-shadow: 0 0 90px rgba(26,86,219,.22), 0 0 180px rgba(14,165,233,.08);
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatY 3.5s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

.floating-card:nth-child(3) { animation-delay: 1.2s; }
.floating-card:nth-child(4) { animation-delay: 2.2s; }

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

.floating-card.fc-top    { top: -28px;    left: -44px; }
.floating-card.fc-tr     { top: -20px;    right: -52px;  animation-delay: .6s; }
.floating-card.fc-bottom { bottom: -24px; right: -44px;  animation-delay: 1.2s; }
.floating-card.fc-bl     { bottom: -20px; left: -52px;   animation-delay: 1.8s; }
.floating-card.fc-mid    { top: 36%;      right: -68px;  transform: translateY(-50%); animation-delay: .9s; }

a.floating-card { text-decoration: none; cursor: pointer; }
a.floating-card:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.35);
    box-shadow: 0 14px 44px rgba(0,0,0,.32);
}

.fc-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.fc-icon.blue   { background: rgba(96,165,250,.25);  color: #60a5fa; }
.fc-icon.green  { background: rgba(52,211,153,.25);  color: #34d399; }
.fc-icon.gold   { background: rgba(251,191,36,.22);  color: #fbbf24; }
.fc-icon.purple { background: rgba(167,139,250,.22); color: #a78bfa; }

.fc-text strong {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1.3;
}

.fc-text span { font-size: 11px; color: #94a3b8; }

/* responsive */
@media (max-width: 991px) {
    .hero-right-wrap { padding: 28px 32px; }
    .hero-ring { display: none; }
    .hero-img-bg { width: 300px; height: 340px; }
    .floating-card.fc-mid { display: none; }
    .floating-card.fc-tr  { display: none; }
    .floating-card.fc-top    { top: -18px;    left: -22px; }
    .floating-card.fc-bottom { bottom: -16px; right: -22px; }
    .floating-card.fc-bl     { bottom: -16px; left: -22px; }
}

/* ===========================
   نوار آمار
=========================== */
.stats-bar {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.stat-item {
    padding: 40px 24px;
    text-align: center;
    border-left: 1px solid var(--border);
    transition: background .3s;
}

.stat-item:last-child { border-left: none; }
.stat-item:hover { background: var(--bg-light); }

.stat-num {
    font-size: 48px !important;
    font-weight: 900 !important;
    color: var(--primary) !important;
    line-height: 1 !important;
    display: block !important;
    font-family: 'Vazirmatn', sans-serif !important;
}

.stat-lbl {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

.stat-icon {
    font-size: 24px;
    color: var(--primary);
    opacity: .25;
    margin-bottom: 12px;
    display: block;
}

/* ===========================
   عنوان بخش‌ها
=========================== */
.sec-head {
    margin-bottom: 56px;
    text-align: center;
}

.sec-head .pre-title {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.sec-head h2 {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: var(--text-dark) !important;
    margin-bottom: 14px !important;
}

.sec-head p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.sec-divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(to left, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 14px auto;
}

/* نسخه روشن divider برای section‌های تاریک */
.sec-divider-light {
    background: linear-gradient(to left, #ef4444, #f97316);
}

/* ===========================
   کارت‌های تخصص
=========================== */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.feat-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    border: 1px solid var(--border);
    transition: all .35s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feat-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 3px;
    background: linear-gradient(to left, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s;
}

.feat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feat-card:hover::after { transform: scaleX(1); }

.feat-icon {
    width: 68px; height: 68px;
    border-radius: 16px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--primary);
    transition: all .35s;
    /* آیکون گوشه بالا-راست در RTL */
    align-self: flex-start;
}

.feat-card:hover .feat-icon {
    background: var(--primary);
    color: #fff;
}

.feat-card h3 {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin-bottom: 12px !important;
    text-transform: none !important;
}

.feat-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.85;
    margin: 0;
    text-align: justify;
}

/* ===========================
   معرفی دکتر
=========================== */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-img-wrap {
    position: relative;
}

/* تصویر دکتر — ارتفاع فیکس، object-fit:cover */
.about-img-wrap img {
    border-radius: 20px;
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    display: block;
    box-shadow: var(--shadow-lg);
}

.exp-badge {
    position: absolute;
    bottom: 28px;
    left: -18px;
    background: var(--primary);
    color: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(26,86,219,.4);
    z-index: 2;
}

.exp-badge .yrs {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.exp-badge .lbl {
    font-size: 11px;
    opacity: .85;
    margin-top: 4px;
    display: block;
}

.about-text .pre-title {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: var(--text-dark) !important;
    margin-bottom: 16px !important;
}

.about-text > p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 28px;
    font-size: 15px;
    text-align: justify;
}

/* کادر متن رسمی معرفی دکتر */
.about-quote-box {
    background: linear-gradient(135deg, rgba(26,86,219,.04) 0%, rgba(14,165,233,.04) 100%);
    border: 1px solid rgba(26,86,219,.15);
    border-right: 4px solid var(--primary, #1a56db);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 28px;
    position: relative;
}

.about-quote-box p {
    margin: 0;
    font-size: 15px;
    line-height: 2;
    color: var(--text-dark, #1e293b);
    text-align: justify;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
    font-size: 14px;
}

.about-list li:last-child { border-bottom: none; }

.about-list li .li-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.btn-about {
    background: var(--primary);
    color: #fff !important;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    transition: all .3s;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-about:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,86,219,.4);
    color: #fff !important;
}

/* ===========================
   کارت‌های خدمات — مشترک
   تصاویر با ارتفاع فیکس + object-fit
=========================== */
.srv-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.srv-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* کانتینر تصویر — ارتفاع ثابت */
.srv-card .card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

/* تصویر کارت خدمات — هر سایزی که آپلود شود، کادر ثابت می‌ماند */
.srv-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s;
}

.srv-card:hover .card-img img { transform: scale(1.07); }

.srv-card .card-img .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,26,53,.65), transparent);
}

.srv-card .card-img .tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

/* tag قرمز برای بخش جراحی */
.srv-card .card-img .tag.tag-surgery { background: #ef4444; }

.srv-card .card-body-inner {
    padding: 20px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.srv-card h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin-bottom: 8px !important;
    text-transform: none !important;
    /* عنوان: حداکثر ۲ خط */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.srv-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.75;
    flex: 1;
    text-align: justify;
    /* متن خلاصه: حداکثر ۳ خط */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.srv-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 14px;
    transition: gap .2s;
}

.srv-card .card-link:hover { gap: 10px; }

/* ===========================
   Owl Carousel — خدمات
   grid mode وقتی کاروسل فعال نیست
=========================== */
.srv-carousel:not(.owl-loaded) {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.srv-carousel:not(.owl-loaded) .srv-carousel-item {
    flex: 0 0 calc(25% - 18px);
    min-width: 240px;
}

/* وقتی کاروسل فعال است — فاصله پایین برای dots */
.srv-carousel.owl-loaded {
    padding-bottom: 44px;
}

.srv-carousel.owl-loaded .srv-carousel-item {
    padding: 0 6px;
    height: 100%;
}

/* دکمه‌های nav کاروسل */
.srv-carousel .owl-nav button {
    width: 40px; height: 40px;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-md);
    color: var(--primary) !important;
    font-size: 16px !important;
    transition: all .25s;
}

.srv-carousel .owl-nav button:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}

.srv-carousel .owl-nav .owl-prev { margin-left: 6px; }
.srv-carousel .owl-nav .owl-next { margin-right: 6px; }

/* نقطه‌های dots */
.srv-carousel .owl-dot span {
    background: var(--border) !important;
    transition: background .25s;
}

.srv-carousel .owl-dot.active span { background: var(--primary) !important; }

/* ===========================
   کاروسل تیم مطب (owl) — ارتفاع برابر کارت‌ها + نقطه‌ها
=========================== */
.team-carousel { position: relative; }
.team-carousel .owl-stage { display: flex; }
.team-carousel .owl-item { display: flex; height: auto; }
.team-carousel .owl-item .team-slide { display: flex; width: 100%; }
.team-carousel .team-card { width: 100%; }
.team-carousel.owl-loaded { padding-bottom: 42px; }
.team-carousel .owl-dots {
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.team-carousel .owl-dot span {
    background: var(--border) !important;
    transition: background .25s;
}
.team-carousel .owl-dot.active span { background: var(--primary) !important; }

/* ===========================
   بخش خدمات مطب
   پس‌زمینه آبی روشن — متمایز از about
=========================== */
.services-office-section {
    padding: 100px 0;
    background: #eff6ff;
    position: relative;
}

/* خط جداکننده بالا */
.services-office-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 4px;
    background: linear-gradient(to left, var(--primary), var(--accent));
}

.srv-more-btn { margin-top: 48px; }

/* ===========================
   بخش خدمات جراحی
   پس‌زمینه navy dark + diagonal shape
=========================== */
.services-surgery-section {
    padding: 120px 0 100px;
    background: linear-gradient(140deg, #071a35 0%, #0d2b55 60%, #0a3d72 100%);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 56px, 100% 0, 100% 100%, 0 100%);
    margin-top: -56px;
}

/* دکور دایره پس‌زمینه */
.services-surgery-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(26,86,219,.08);
    top: -200px; left: -150px;
    pointer-events: none;
}

.services-surgery-section::after {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(14,165,233,.07);
    bottom: -80px; right: -80px;
    pointer-events: none;
}

/* عنوان section جراحی — رنگ روشن */
.services-surgery-section .sec-head h2 { color: #fff !important; }
.services-surgery-section .sec-head p  { color: #94a3b8; }

.services-surgery-section .sec-head .pre-title {
    background: rgba(239,68,68,.18);
    border: 1px solid rgba(239,68,68,.3);
    color: #fca5a5;
}

/* nav کاروسل بخش جراحی */
.services-surgery-section .srv-carousel .owl-nav button {
    background: rgba(255,255,255,.1) !important;
    border-color: rgba(255,255,255,.2) !important;
    color: #fff !important;
}

.services-surgery-section .srv-carousel .owl-nav button:hover {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
}

.services-surgery-section .srv-carousel .owl-dot span {
    background: rgba(255,255,255,.2) !important;
}

.services-surgery-section .srv-carousel .owl-dot.active span {
    background: #ef4444 !important;
}

/* دکمه "مشاهده همه" در section جراحی */
.btn-surgery-outline {
    background: transparent;
    color: #fff !important;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(255,255,255,.35);
    transition: all .3s;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-surgery-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
    color: #fff !important;
}

/* ===========================
   تیم مطب
   - تصویر fade پس‌زمینه با JS
   - لینک‌های اجتماعی خاکستری زیر نام
=========================== */
.team-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    /* جلوگیری از فرار z-index فرزندان به خارج از section */
    isolation: isolate;
}

/* خط جداکننده بالا */
.team-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 4px;
    background: linear-gradient(to left, var(--primary), var(--accent));
    z-index: 4;
}

/* لایه ۱ — تصویر پس‌زمینه بزرگ و محو */
.team-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transform: scale(1.15);
    filter: blur(14px) saturate(0.5);
    opacity: 0;
    transition: opacity 0.65s ease;
    z-index: 1;
    pointer-events: none;
}

.team-bg-img.active { opacity: 1; }

/* لایه ۲ — overlay سفید برای کمرنگ کردن تصویر پس‌زمینه */
.team-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.78);
    opacity: 0;
    transition: opacity 0.65s ease;
    z-index: 2;
    pointer-events: none;
}

.team-bg-overlay.active { opacity: 1; }

/* container محتوا — بالاتر از لایه‌های پس‌زمینه */
.team-container {
    position: relative;
    z-index: 3;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .3s;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(26,86,219,.25);
}

/* کانتینر تصویر تیم — ارتفاع ثابت */
.team-card .img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
    flex-shrink: 0;
}

/* تصویر اعضای تیم — فیکس */
.team-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .4s;
}

.team-card:hover .img-wrap img { transform: scale(1.06); }

.team-card .card-info {
    padding: 18px 16px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-card .card-info h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin-bottom: 4px !important;
    text-transform: none !important;
}

.team-card .card-info .role {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

/* لینک‌های اجتماعی — خاکستری ساده، بدون کادر */
.member-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.member-socials a {
    color: #94a3b8;
    font-size: 16px;
    text-decoration: none;
    transition: color .2s, transform .2s;
    line-height: 1;
}

.member-socials a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.team-card .card-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
    flex: 1;
    text-align: justify;
}

/* ===========================
   گالری تصاویر
   — پس‌زمینه تاریک + لبه مورب از بخش تیم
=========================== */
.gallery-section {
    padding: 130px 0 100px;
    background: linear-gradient(140deg, #111827 0%, #1e2d40 55%, #1a3550 100%);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 56px, 100% 0, 100% 100%, 0 100%);
    margin-top: -56px;
}

/* دایره دکوراتیو پس‌زمینه چپ */
.gallery-section::before {
    content: '';
    position: absolute;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: rgba(26, 86, 219, 0.07);
    top: -120px; left: -100px;
    pointer-events: none;
    z-index: 0;
}

/* دایره دکوراتیو پس‌زمینه راست */
.gallery-section::after {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.06);
    bottom: -60px; right: -60px;
    pointer-events: none;
    z-index: 0;
}

/* grid داخل z-index بالاتر */
.gallery-section .container { position: relative; z-index: 1; }

/* عنوان گالری — رنگ روشن روی پس‌زمینه تاریک */
.gallery-section .sec-head h2       { color: #fff !important; }
.gallery-section .sec-head p        { color: #94a3b8; }
.gallery-section .sec-head .pre-title {
    background: rgba(255, 255, 255, 0.1);
    color: #93c5fd;
}
.gallery-section .sec-divider {
    background: linear-gradient(to left, #60a5fa, #0ea5e9);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}

/* آیتم ۱ — بزرگ ۲×۲ */
.gallery-item.gi-wide-tall {
    grid-column: span 2;
    grid-row: span 2;
}

/* آیتم ۶ — عریض ۲×۱ */
.gallery-item.gi-wide {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,86,219,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.gallery-overlay i {
    font-size: 28px;
    color: #fff;
    transform: scale(0.7);
    transition: transform .3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* ===========================
   بخش اورژانس (کامنت — CSS نگه داشته شده)
=========================== */
.emergency-section {
    padding: 90px 0;
    background: linear-gradient(140deg, #071a35 0%, #0d2b55 100%);
    position: relative;
    overflow: hidden;
}

.emergency-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(26,86,219,.15);
    top: -150px; left: -150px;
    pointer-events: none;
}

.emergency-section::after {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(14,165,233,.1);
    bottom: -100px; right: -80px;
    pointer-events: none;
}

.emg-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.emg-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239,68,68,.18);
    border: 1px solid rgba(239,68,68,.35);
    color: #fca5a5;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.emg-content h2 {
    font-size: 38px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 12px !important;
}

.emg-phone {
    font-size: 52px;
    font-weight: 900;
    color: #60a5fa;
    display: block;
    margin: 14px 0 20px;
    letter-spacing: 3px;
    font-family: 'Vazirmatn', sans-serif;
}

.emg-content p {
    color: #94a3b8;
    font-size: 15px;
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.btn-emg {
    background: var(--primary);
    color: #fff !important;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all .3s;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-emg:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,86,219,.45);
    color: #fff !important;
}

/* ===========================
   ریسپانسیو
=========================== */
/* ===========================
   Lightbox گالری
=========================== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 30, 0.94);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    padding: 20px;
}

.gallery-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lb-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 24px 80px rgba(0,0,0,.7);
    transform: scale(0.92);
    transition: transform .35s ease;
}

.gallery-lightbox.open .lb-img { transform: scale(1); }

.lb-close {
    position: absolute;
    top: 18px;
    left: 24px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lb-close:hover { background: rgba(255,255,255,.25); }

/* ===========================
   ریسپانسیو
=========================== */
@media (max-width: 991px) {
    /* تبلت: header-top در flow (47px) + #header fixed (76px) → اختلاف = 29px */
    .hero-section {
        margin-top: 29px;
        min-height: calc(100vh - 76px);
        padding-top: 50px;
    }
    .hero-title        { font-size: 36px !important; }
    .hero-right        { display: none; }
    .stat-item         { border-left: none; border-bottom: 1px solid var(--border); }
    .exp-badge         { left: 10px; }
    .about-img-wrap    { margin-bottom: 40px; }
    .about-img-wrap img { height: 360px; }

    .srv-carousel:not(.owl-loaded) .srv-carousel-item {
        flex: 0 0 calc(50% - 12px);
    }

    .services-surgery-section {
        clip-path: polygon(0 36px, 100% 0, 100% 100%, 0 100%);
        margin-top: -36px;
        padding-top: 100px;
    }

    /* گالری — ۲ ستون */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item.gi-wide-tall { grid-column: span 2; grid-row: span 1; }
    .gallery-item.gi-wide      { grid-column: span 2; }
}

@media (max-width: 767px) {
    /* موبایل: محتوا دقیقاً زیر هدر ۶۰px تا نوار navy نباشد و نیم‌دایره روی هیرو بیفتد */
    .hero-section {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
        padding-top: 40px;
    }

    /* تصویر بنر از بالا-مرکز نمایش داده شود تا کات نشود */
    .hero-slide {
        background-position: center top !important;
    }

    /* پرده گرادیان سمت چپ و راست برای پوشاندن لبه برش */
    .hero-section::before,
    .hero-section::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 60px;
        z-index: 2;
        pointer-events: none;
    }
    .hero-section::before {
        right: 0;
        background: linear-gradient(to left, rgba(7, 26, 53, 0.6), transparent);
    }
    .hero-section::after {
        left: 0;
        background: linear-gradient(to right, rgba(7, 26, 53, 0.6), transparent);
    }
    .hero-title         { font-size: 28px !important; }
    .hero-stats         { gap: 20px; }
    .hero-stat-num      { font-size: 30px; }

    /* نوار آمار: ۲ کارت در هر ردیف با ابعاد جمع‌وجور */
    .stat-item  { padding: 22px 8px; }
    .stat-num   { font-size: 30px !important; }
    .stat-lbl   { font-size: 11px; margin-top: 5px; }
    .stat-icon  { font-size: 20px; margin-bottom: 8px; }
    .exp-badge          { position: static; margin-top: -30px; display: inline-block; }
    .about-img-wrap img { height: 280px; }
    .srv-card .card-img { height: 150px; }
    .team-card .img-wrap { height: 220px; }

    /* کارت‌های خدمات: ۲تا در هر ردیف روی موبایل */
    .srv-carousel:not(.owl-loaded) { gap: 16px; }
    .srv-carousel:not(.owl-loaded) .srv-carousel-item {
        flex: 0 0 calc(50% - 8px);
        min-width: 0;
    }
    /* کوچک‌کردن متن کارت‌ها متناسب با عرض کمتر */
    .srv-card h3 { font-size: 16px; }
    .srv-card .card-body-inner { padding: 16px 14px; }

    .services-surgery-section {
        clip-path: none;
        margin-top: 0;
        padding-top: 100px;
    }

    /* گالری — ۱ ستون موبایل */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .gallery-item.gi-wide-tall,
    .gallery-item.gi-wide { grid-column: span 1; grid-row: span 1; }

    /* کارت‌های ویژگی صفحه اصلی — ۲ ستون در موبایل */
    .features-section .row > .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 8px;
        padding-left: 8px;
    }

    /* تیم همکاران — ۲ ستون در موبایل (<576px) */
    .team-section .row > .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 8px;
        padding-left: 8px;
    }

    /* تماس — موبایل */
    .contact-home-section { padding-top: 60px; }

    .contact-map-row {
        flex-direction: column;
        height: auto;
    }

    /* روی موبایل: نقشه تمام‌عرض و بلندتر، عکس ساختمان مخفی (دفورمه نشدن) */
    .contact-map-wrap {
        height: 360px;
        flex: none;
        width: 100%;
    }

    .contact-building-wrap {
        display: none;
    }

    .ci-item {
        border-left: none;
        border-bottom: 1px solid var(--border);
        padding: 16px 0;
    }

    .ci-btn-wrap {
        padding: 16px 0;
        justify-content: flex-start;
    }
}

/* ===========================
   بخش ارتباط با ما
=========================== */
.contact-home-section {
    padding-top: 156px; /* 100px + 56px برای offset لبه مورب */
    background: #fff;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 56px, 100% 0, 100% 100%, 0 100%);
    margin-top: -56px;
}

/* دکور گرادیان دایره‌ای جای خط بالا */
.contact-home-section::before {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.05) 0%, transparent 70%);
    top: 80px; left: -80px;
    pointer-events: none;
}

/* ردیف نقشه + تصویر ساختمان — فول‌ویدث، هم‌ارتفاع */
.contact-map-row {
    display: flex;
    /* ارتفاع مشترک نقشه و تصویر — جهت تغییر همین مقدار را ویرایش کنید */
    height: 500px;
}

/* نقشه — ۷۵٪ عرض (flex 3 از 4) — برای تغییر نسبت: مقدار flex را ویرایش کنید */
.contact-map-wrap {
    flex: 3;
    position: relative;
    overflow: hidden;
}

/* position:absolute تضمین می‌کند ارتفاع نقشه در flex layout صحیح باشد */
#neshanMap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* تصویر ساختمان — ۲۵٪ عرض (flex 1 از 4) — برای تغییر نسبت: مقدار flex را ویرایش کنید */
.contact-building-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-building-wrap .building-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
}

.contact-building-wrap:hover .building-photo { transform: scale(1.04); }

.contact-building-wrap .building-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7,26,53,0.1), rgba(7,26,53,0.38));
    pointer-events: none;
}

/* نوار اطلاعات تماس زیر نقشه */
.contact-info-bar {
    background: #fff;
    padding: 36px 0;
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 16px rgba(0,0,0,0.05);
}

/* آیتم تماس — جداکننده در RTL با border-left */
.ci-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 24px;
    border-left: 1px solid var(--border);
}

/* آیکون هر آیتم */
.ci-icon-wrap {
    width: 46px;
    height: 46px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.ci-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.ci-text span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ستون دکمه — بدون جداکننده */
.ci-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 24px;
}

@media (max-width: 991px) {
    .contact-map-row { height: 420px; }

    /* کاهش اندازه diagonal در تبلت */
    .gallery-section {
        clip-path: polygon(0 36px, 100% 0, 100% 100%, 0 100%);
        margin-top: -36px;
        padding-top: 100px;
    }
    .contact-home-section {
        clip-path: polygon(0 36px, 100% 0, 100% 100%, 0 100%);
        margin-top: -36px;
        padding-top: 136px;
    }
}

@media (max-width: 767px) {
    /* حذف diagonal در موبایل */
    .gallery-section {
        clip-path: none;
        margin-top: 0;
        padding-top: 80px;
    }
    .contact-home-section {
        clip-path: none;
        margin-top: 0;
    }
}


/* ===========================
   سوالات متداول — home
=========================== */
.faq-home-section {
    background: #f8fafc;
    padding: 90px 0 100px;
}

.faq-accordion { margin-top: 10px; }

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .25s, border-color .25s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(26,86,219,.08);
    border-color: #c7d7f7;
}

.faq-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    text-align: right;
    cursor: pointer;
    transition: background .2s;
}

.faq-toggle:focus { outline: none; box-shadow: none; }
.faq-toggle:not(.collapsed) { background: #eff6ff; }

.faq-num {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e8f0fe;
    color: #1a56db;
    font-size: .75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}

.faq-toggle:not(.collapsed) .faq-num {
    background: #1a56db;
    color: #fff;
}

.faq-q-text {
    flex: 1;
    font-size: .92rem;
    font-weight: 600;
    color: #1e293b;
    text-align: right;
    line-height: 1.4;
    transition: color .2s;
}

.faq-toggle:not(.collapsed) .faq-q-text { color: #1a56db; }

.faq-chevron {
    flex-shrink: 0;
    color: #94a3b8;
    font-size: .8rem;
    transition: transform .25s;
}

.faq-toggle:not(.collapsed) .faq-chevron {
    transform: rotate(180deg);
    color: #1a56db;
}

.faq-body {
    padding: 2px 22px 20px;
    color: #475569;
    font-size: .9rem;
    line-height: 1.9;
    border-top: 1px solid #e8f0fe;
    margin: 0 16px;
}

/* ===========================
   بخش نظرات بیماران — Swiper
=========================== */
.testimonials-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #071a35 0%, #0d2b55 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,86,219,.12), transparent 70%);
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,.1), transparent 70%);
    pointer-events: none;
}

.testimonials-section .sec-head h2 { color: #fff !important; }
.testimonials-section .sec-head .pre-title { color: #60a5fa; }
.testimonials-section .sec-head p { color: #94a3b8; }
.testimonials-section .sec-divider { background: linear-gradient(to left, #1a56db, #0ea5e9); }

/* Swiper wrapper */
.tst-swiper {
    overflow: visible !important;
    padding-bottom: 60px;
}

/* اسلاید غیر فعال: تار و کمرنگ */
.tst-swiper .swiper-slide {
    opacity: 0.38;
    filter: blur(2px);
    transform: scale(0.87);
    transition: opacity .45s ease, filter .45s ease, transform .45s ease;
}

/* اسلاید فعال (وسط): واضح */
.tst-swiper .swiper-slide-active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/* کارت */
.tst-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 280px;
    backdrop-filter: blur(8px);
    transition: border-color .45s, box-shadow .45s;
}

.tst-swiper .swiper-slide-active .tst-card {
    border-color: rgba(96,165,250,.4);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

/* هدر: آواتار + نام + نقش + ستاره */
.tst-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.tst-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a56db, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.tst-info { display: flex; flex-direction: column; gap: 4px; }

.tst-name {
    color: #e2e8f0;
    font-weight: 700;
    font-size: .97rem;
    margin: 0;
}

.tst-role { color: #60a5fa; font-size: .78rem; }

.tst-stars {
    display: flex;
    gap: 2px;
    direction: ltr;
    margin-top: 2px;
}

.tst-stars i { font-size: .8rem; color: #f59e0b; }
.tst-stars i.fa-star-o { color: #475569; }

/* محتوا: آیکون نقل‌قول + متن */
.tst-content { flex: 1; display: flex; flex-direction: column; gap: 8px; }

.tst-quote-icon {
    color: rgba(96,165,250,.28);
    font-size: 2.6rem;
    line-height: 1;
}

.tst-body {
    color: #cbd5e1;
    font-size: .9rem;
    line-height: 1.9;
    text-align: justify;
    margin: 0;
}

/* فلش‌های ناوبری */
.tst-swiper .swiper-button-next,
.tst-swiper .swiper-button-prev {
    color: #60a5fa;
    background: rgba(255,255,255,.08);
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    transition: all .25s;
}

.tst-swiper .swiper-button-next::after,
.tst-swiper .swiper-button-prev::after {
    font-size: 13px;
    font-weight: 900;
}

.tst-swiper .swiper-button-next:hover,
.tst-swiper .swiper-button-prev:hover {
    background: #1a56db;
    border-color: #1a56db;
    color: #fff;
}

/* pagination */
.tst-swiper .swiper-pagination { bottom: 20px; }

.tst-swiper .swiper-pagination-bullet {
    background: rgba(255,255,255,.3);
    opacity: 1;
    transition: all .2s;
}

.tst-swiper .swiper-pagination-bullet-active {
    background: #60a5fa;
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .testimonials-section { padding: 60px 0 90px; }
    .tst-card { min-height: 220px; padding: 22px 18px; }
    .tst-swiper .swiper-button-next,
    .tst-swiper .swiper-button-prev { display: none; }
}
