/* ==================== Reset & Base ==================== */

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

body {
    font-family: 'Vazirmatn', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

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


/* ==================== Header ==================== */

.header {
    background: #ffffff;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo i {
    font-size: 30px;
    color: #0ea5e9;
}

.logo-title {
    display: block;
    font-weight: 700;
    font-size: 17px;
    color: #0f172a;
}

.logo-subtitle {
    display: block;
    font-size: 12px;
    color: #64748b;
}

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

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    transition: color 0.25s;
}

.nav a:hover,
.nav a.active {
    color: #0ea5e9;
}

.btn-appointment {
    background: #0f172a;
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-appointment:hover {
    background: #0ea5e9;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #0f172a;
}


/* ==================== Hero ==================== */

.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 70px 0 80px;
}

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

.hero-text h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.35;
    color: #0f172a;
    margin-bottom: 18px;
}

.hero-text h1 span {
    color: #0ea5e9;
}

.hero-text p {
    font-size: 16.5px;
    color: #475569;
    margin-bottom: 30px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-dark {
    background: #0f172a;
    color: white;
}

.btn-dark:hover {
    background: #0ea5e9;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid #0f172a;
    color: #0f172a;
}

.btn-outline-dark:hover {
    background: #0f172a;
    color: white;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 14px;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
    max-width: 420px;
    margin: 0 auto;
}


/* ==================== Specialties ==================== */

.specialties {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 45px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 55px;
    height: 4px;
    background: #0ea5e9;
    margin: 12px auto 0;
    border-radius: 2px;
}

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

.specialty-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s;
}

.specialty-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #0ea5e9;
}

.specialty-item .icon {
    width: 60px;
    height: 60px;
    background: #e0f2fe;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 26px;
    color: #0ea5e9;
}

.specialty-item h3 {
    font-size: 15px;
    font-weight: 600;
}


/* ==================== About Section ==================== */

.about-section {
    padding: 80px 0;
    background: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-content p {
    color: #475569;
    margin-bottom: 22px;
}

.check-list {
    list-style: none;
    margin-bottom: 28px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

.check-list i {
    color: #10b981;
    font-size: 18px;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}


/* ==================== Locations ==================== */

.locations {
    padding: 80px 0;
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.location-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px;
    transition: all 0.3s;
}

.location-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0ea5e9;
    margin-bottom: 16px;
}

.location-card h3 {
    font-size: 19px;
    margin-bottom: 16px;
}

.location-card p {
    font-size: 14.5px;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.location-card p i {
    color: #0ea5e9;
    margin-top: 3px;
}


/* ==================== Footer ==================== */

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 28px;
    color: #0ea5e9;
}

.footer-logo strong {
    display: block;
    color: white;
    font-size: 17px;
}

.footer-logo span {
    font-size: 13px;
    color: #94a3b8;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col ul a:hover {
    color: #0ea5e9;
}

.contact-info li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-info i {
    color: #0ea5e9;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}


/* ==================== Responsive ==================== */

@media (max-width: 992px) {
    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 34px;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-image {
        order: -1;
    }
    .hero-image img {
        max-width: 340px;
    }
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .check-list {
        display: inline-block;
        text-align: right;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 78px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 78px);
        background: white;
        flex-direction: column;
        padding: 30px 25px;
        gap: 18px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.35s ease;
        z-index: 999;
    }
    .nav.active {
        right: 0;
    }
    .menu-toggle {
        display: block;
    }
    .btn-appointment {
        display: none;
    }
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 26px;
    }
}


/* ==================== Modal (دریافت نوبت) ==================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: white;
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    max-width: 380px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 14px;
    left: 18px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #94a3b8;
    line-height: 1;
}

.modal-close:hover {
    color: #0f172a;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #0ea5e9;
}

.modal-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.modal-box p {
    color: #64748b;
    margin-bottom: 18px;
    font-size: 15px;
}

.modal-phone {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    transition: background 0.3s;
}

.modal-phone:hover {
    background: #0ea5e9;
}

.modal-note {
    font-size: 13px !important;
    color: #94a3b8 !important;
}


/* ==================== Page Header ==================== */

.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 60px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header p {
    color: #94a3b8;
    font-size: 16px;
}


/* ==================== Contact Page ==================== */

.contact-section {
    padding: 70px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

.contact-info-card,
.addresses-card {
    background: white;
    border-radius: 18px;
    padding: 36px;
    border: 1px solid #e2e8f0;
}

.contact-info-card h2,
.addresses-card h2 {
    font-size: 22px;
    margin-bottom: 28px;
    color: #0f172a;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    font-size: 18px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 4px;
}

.info-item a {
    color: #0f172a;
    font-weight: 600;
    font-size: 16px;
}

.info-item a:hover {
    color: #0ea5e9;
}

.social-links {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.social-links h4 {
    margin-bottom: 14px;
    font-size: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0f172a;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #0ea5e9;
    color: white;
}

.address-box {
    background: #f8fafc;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
}

.address-box h3 {
    font-size: 17px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-box h3 i {
    color: #0ea5e9;
}

.address-box p {
    font-size: 14.5px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.6;
}

.nav-apps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s;
}

.nav-btn.google {
    background: #e8f0fe;
    color: #1a73e8;
}

.nav-btn.google:hover {
    background: #1a73e8;
    color: white;
}

.nav-btn.waze {
    background: #e0f7fa;
    color: #00bcd4;
}

.nav-btn.waze:hover {
    background: #00bcd4;
    color: white;
}

.nav-btn.neshan {
    background: #e8f5e9;
    color: #2e7d32;
}

.nav-btn.neshan:hover {
    background: #2e7d32;
    color: white;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================== Gallery ==================== */

.gallery-page {
    padding: 70px 0;
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    /* همه عکس‌ها نسبت یکسان */
    background: #f1f5f9;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* مهم‌ترین خط: عکس را پر می‌کند بدون کشیدگی */
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

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


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

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


/* ==================== Articles Page ==================== */

.articles-page {
    padding: 70px 0 90px;
    background: #f8fafc;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* کارت مقاله */

.article-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0ea5e9;
}


/* تصویر مقاله */

.article-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.06);
}


/* محتوای کارت */

.article-content {
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-category {
    display: inline-block;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    width: fit-content;
}

.article-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
    margin-bottom: 12px;
    color: #0f172a;
}

.article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s;
}

.article-title a:hover {
    color: #0ea5e9;
}

.article-summary {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0ea5e9;
    text-decoration: none;
    transition: gap 0.25s;
}

.article-link:hover {
    gap: 12px;
}

.article-link i {
    font-size: 13px;
}


/* حالت خالی */

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #94a3b8;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}


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

@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 576px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .article-content {
        padding: 20px 18px 24px;
    }
    .article-title {
        font-size: 16px;
    }
}


/* ==================== Article Detail ==================== */

.breadcrumb-nav {
    background: #f8fafc;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    font-size: 14px;
    color: #64748b;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-right: 8px;
    color: #cbd5e1;
}

.breadcrumb a {
    color: #0ea5e9;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .active {
    color: #334155;
}

.article-detail {
    padding: 50px 0 80px;
}

.article-detail-wrapper {
    max-width: 820px;
    margin: 0 auto;
}


/* هدر مقاله */

.article-header {
    text-align: center;
    margin-bottom: 36px;
}

.article-header .article-category {
    display: inline-block;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.article-header .article-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
    color: #0f172a;
    margin-bottom: 18px;
}

.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #64748b;
}

.article-meta i {
    margin-left: 6px;
    color: #0ea5e9;
}


/* تصویر شاخص */

.article-featured-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}


/* بدنه مقاله */

.article-body {
    font-size: 17px;
    line-height: 1.9;
    color: #334155;
}

.article-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 40px 0 16px;
}

.article-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 32px 0 12px;
}

.article-body p {
    margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
    margin: 16px 0 24px 24px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body img {
    max-width: 100%;
    border-radius: 12px;
    margin: 24px 0;
}

.article-body a {
    color: #0ea5e9;
    text-decoration: underline;
}


/* CTA */

.article-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 18px;
    padding: 40px 30px;
    margin: 50px 0 30px;
    text-align: center;
    color: white;
}

.article-cta h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.article-cta p {
    color: #94a3b8;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.article-cta .btn-dark {
    background: #0ea5e9;
}

.article-cta .btn-dark:hover {
    background: #0284c7;
}

.article-cta .btn-outline-dark {
    border-color: white;
    color: white;
}

.article-cta .btn-outline-dark:hover {
    background: white;
    color: #0f172a;
}


/* فوتر مقاله */

.article-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0ea5e9;
    font-weight: 600;
    font-size: 15px;
}

.back-link:hover {
    gap: 12px;
}


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

@media (max-width: 768px) {
    .article-header .article-title {
        font-size: 26px;
    }
    .article-body {
        font-size: 16px;
    }
    .article-cta {
        padding: 30px 20px;
    }
}


/* ==================== About Luxury Page ==================== */

.about-luxury {
    padding: 60px 0 90px;
    background: #f8fafc;
}


/* کارت اصلی معرفی */

.about-hero-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.about-photo-wrapper {
    position: relative;
}

.about-photo-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 14px 18px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.experience-badge .number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    opacity: 0.9;
}

.section-label {
    display: inline-block;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.about-intro h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.about-intro .lead {
    font-size: 17px;
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-intro p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
}

.highlight-item i {
    color: #0ea5e9;
}


/* کارت‌های بخش‌ها */

.about-section-card {
    background: white;
    border-radius: 20px;
    padding: 32px 36px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0ea5e9;
}

.section-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}


/* تایم‌لاین سوابق */

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 12px;
}

.timeline-item {
    display: flex;
    gap: 18px;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    right: 7px;
    top: 24px;
    width: 2px;
    height: calc(100% + 8px);
    background: #e2e8f0;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: #0ea5e9;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
    border: 3px solid #e0f2fe;
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 14px;
    color: #64748b;
}


/* چیپ‌های تخصص */

.specialties-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.specialty-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: #334155;
    transition: all 0.25s;
}

.specialty-chip:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.specialty-chip i {
    color: #10b981;
    font-size: 14px;
}


/* بخش CTA */

.about-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
    margin-top: 10px;
}

.about-cta h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-cta p {
    color: #94a3b8;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.about-cta .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.about-cta .btn-outline-dark:hover {
    background: white;
    color: #0f172a;
    border-color: white;
}


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

@media (max-width: 768px) {
    .about-hero-card {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 30px;
        text-align: center;
    }
    .about-photo-wrapper {
        max-width: 240px;
        margin: 0 auto;
    }
    .about-highlights {
        justify-content: center;
    }
    .specialties-list {
        grid-template-columns: 1fr;
    }
    .about-section-card {
        padding: 24px;
    }
}


/* ==================== Services Page ==================== */

.services-page {
    padding: 70px 0 90px;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* دقیقاً ۳ ستون */
    gap: 28px;
}


/* کارت خدمت */

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #0ea5e9;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: #e0f2fe;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #0ea5e9;
    margin-bottom: 22px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: #0ea5e9;
    color: white;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.4;
}

.service-card p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card .btn {
    margin-top: auto;
}


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

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .service-card {
        padding: 30px 22px;
    }
}


/* اصلاح چیدمان صفحه تماس */

.contact-grid {
    grid-template-columns: 1fr 1fr !important;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ==================== Testimonials ==================== */

.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.testimonial-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #0ea5e9;
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 13px;
    color: #64748b;
}


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

.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: right;
    gap: 12px;
}

.faq-question i {
    color: #0ea5e9;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}


/* ریسپانسیو Testimonials & FAQ */

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .faq-question {
        font-size: 15px;
        padding: 16px 20px;
    }
}


/* ==================== Contact Page Equal Columns ==================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.contact-info-card,
.addresses-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}


/* ریسپانسیو موبایل */

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}