/* ========================================
   تنظیمات عمومی
   ======================================== */
:root {
    --dark-green: #3A4D3A;
    --olive-green: #7A8B6E;
    --sage-green: #9CAF88;
    --matte-gold: #C4A882;
    --off-white: #F9FBF7;
    --white: #ffffff;
    --radius: 0.75rem;
}

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

body {
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
    background-color: var(--off-white);
    color: var(--dark-green);
    line-height: 1.6;
}

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

/* ========================================
   هدر
   ======================================== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid rgba(122, 139, 110, 0.2);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--sage-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 500;
}
.logo-text h1 {
    font-size: 20px;
    color: var(--dark-green);
}
.site-description {
    font-size: 14px;
    color: var(--olive-green);
}
.main-navigation .menu-list {
    display: flex;
    list-style: none;
    gap: 4px;
}
.main-navigation .menu-list a {
    display: block;
    padding: 8px 16px;
    color: var(--dark-green);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.2s;
}
.main-navigation .menu-list a:hover,
.main-navigation .menu-list .current-menu-item a {
    background: rgba(156, 175, 136, 0.2);
}
.btn-reserve {
    background: var(--matte-gold);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-reserve:hover {
    background: #b3966f;
    transform: scale(1.05);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--dark-green);
    border-radius: 3px;
}

/* ========================================
   اسلایدر
   ======================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 520px;
}
.slides {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.slide.active {
    opacity: 1;
}
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}
.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 600px;
    padding: 0 20px;
    color: var(--white);
}
.slide-tag {
    display: inline-block;
    background: rgba(196, 168, 130, 0.8);
    backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 16px;
    width: fit-content;
}
.slide-content h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 16px;
}
.slide-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 24px;
}
.slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}
.btn-primary {
    background: var(--matte-gold);
    color: var(--white);
}
.btn-primary:hover {
    background: #b3966f;
    transform: scale(1.05);
}
.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
}
.btn-outline {
    background: transparent;
    color: var(--dark-green);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    background: var(--muted);
}
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    cursor: pointer;
    font-size: 20px;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}
.slider-prev { right: 20px; }
.slider-next { left: 20px; }
.slider-prev:hover,
.slider-next:hover {
    background: rgba(255,255,255,0.3);
}
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.slider-dots button.active {
    width: 32px;
    background: var(--white);
}
.slider-counter {
    position: absolute;
    bottom: 24px;
    left: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    z-index: 10;
}

/* ========================================
   بخش‌های اصلی
   ======================================== */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--matte-gold);
    margin: 12px auto 0;
}

.services-section,
.why-us-section,
.stats-section,
.testimonials-section,
.cta-section {
    padding: 60px 0;
}
.stats-section {
    background: var(--dark-green);
    color: var(--white);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
}
.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* ========================================
   خدمات
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.service-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}
.service-item:hover {
    transform: translateY(-4px);
}
.service-item i {
    font-size: 2.5rem;
    color: var(--matte-gold);
    margin-bottom: 16px;
}
.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.service-item p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

/* ========================================
   ویژگی‌ها
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.feature-item {
    text-align: center;
    padding: 20px;
}
.feature-item i {
    font-size: 2.5rem;
    color: var(--matte-gold);
    margin-bottom: 12px;
}
.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.feature-item p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

/* ========================================
   نظرات
   ======================================== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.testimonial-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
}
.testimonial-item .stars {
    color: #f5a623;
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.testimonial-item p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 12px;
}
.testimonial-item .patient-name {
    color: var(--olive-green);
    font-weight: 500;
}

/* ========================================
   فراخوان
   ======================================== */
.cta-section {
    text-align: center;
    background: var(--off-white);
    border-top: 1px solid var(--border);
}
.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}
.cta-section .btn-primary,
.cta-section .btn-secondary {
    margin: 0 8px;
}

/* ========================================
   صفحه پزشکان
   ======================================== */
.doctors-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 32px;
}
.doctor-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    padding: 24px;
    transition: transform 0.3s ease;
}
.doctor-card:hover {
    transform: translateY(-4px);
}
.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    aspect-ratio: 3/4;
}
.doctor-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.doctor-info h3 {
    font-size: 1.6rem;
    color: var(--dark-green);
    margin: 0;
}
.doctor-title {
    color: var(--olive-green);
    font-size: 1.1rem;
    margin: 0;
}
.doctor-stats {
    display: flex;
    gap: 32px;
    margin: 8px 0;
}
.doctor-stats .stat-item {
    display: flex;
    flex-direction: column;
}
.doctor-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--matte-gold);
}
.doctor-stats .stat-label {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}
.doctor-education h4,
.doctor-specialties h4 {
    font-size: 1rem;
    color: var(--dark-green);
    margin-bottom: 6px;
}
.doctor-education ul,
.doctor-specialties ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.doctor-education ul li,
.doctor-specialties ul li {
    position: relative;
    padding-right: 16px;
    font-size: 0.95rem;
    color: var(--foreground);
}
.doctor-education ul li::before,
.doctor-specialties ul li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--matte-gold);
    font-weight: bold;
}
.doctor-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.doctor-actions .btn-primary,
.doctor-actions .btn-secondary {
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}
.doctor-actions .btn-primary {
    background: var(--matte-gold);
    color: var(--white);
}
.doctor-actions .btn-primary:hover {
    background: #b3966f;
    transform: scale(1.03);
}
.doctor-actions .btn-secondary {
    background: transparent;
    color: var(--dark-green);
    border: 1px solid var(--border);
}
.doctor-actions .btn-secondary:hover {
    background: var(--muted);
}

/* بخش مشاوره */
.consultation-section {
    background: var(--off-white);
    padding: 48px 32px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 48px;
    border: 1px solid var(--border);
}
.consultation-section h2 {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 12px;
}
.consultation-section p {
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto 24px;
}
.consultation-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   صفحه تماس با ما
   ======================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 32px;
}
.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--olive-green);
    outline: none;
}
.contact-info-side {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-info-side h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.contact-info-side ul {
    list-style: none;
    padding: 0;
}
.contact-info-side ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.contact-info-side ul li i {
    width: 24px;
    color: var(--matte-gold);
}

/* ========================================
   فوتر
   ======================================== */
.site-footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 40px 0 20px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.footer-col h4 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col a {
    color: var(--sage-green);
    text-decoration: none;
}
.footer-col a:hover {
    color: var(--white);
}
.footer-bottom {
    border-top: 1px solid var(--olive-green);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: var(--sage-green);
}

/* ========================================
   واکنش‌گرایی
   ======================================== */
@media (max-width: 992px) {
    .main-navigation {
        display: none;
    }
    .main-navigation.open {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .main-navigation.open .menu-list {
        flex-direction: column;
        gap: 8px;
    }
    .menu-toggle {
        display: flex;
    }
    .btn-reserve {
        display: none;
    }
    .slide-content h2 {
        font-size: 2rem;
    }
    .doctor-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .doctor-image img {
        max-height: 320px;
        width: 100%;
        object-fit: cover;
    }
    .doctor-stats {
        gap: 16px;
        flex-wrap: wrap;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .hero-slider {
        height: 420px;
    }
    .slide-content h2 {
        font-size: 1.8rem;
    }
    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .doctor-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .doctor-actions .btn-primary,
    .doctor-actions .btn-secondary {
        text-align: center;
    }
    .consultation-section {
        padding: 32px 16px;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
} 
/* ========================================
   بخش گالری
   ======================================== */
.gallery-section {
    padding: 80px 0;
    background: var(--off-white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1/1;
}
.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   بخش رویکرد ما
   ======================================== */
.approach-section {
    padding: 80px 0;
    background: var(--white);
}
.approach-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.section-tag {
    display: inline-block;
    color: var(--matte-gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.approach-content h2 {
    font-size: 2.2rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}
.approach-content p {
    color: var(--muted-foreground);
    margin-bottom: 16px;
    line-height: 1.8;
}
.approach-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.approach-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}
.approach-list li i {
    color: var(--matte-gold);
    font-size: 1.2rem;
}
.approach-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ========================================
   بخش تیم ما
   ======================================== */
.team-section {
    padding: 80px 0;
    background: var(--off-white);
}
.section-subtitle {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}
.team-card:hover {
    transform: translateY(-6px);
}
.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
}
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card h3 {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 4px;
}
.team-card .team-title {
    color: var(--olive-green);
    font-size: 0.95rem;
    margin-bottom: 12px;
}
.team-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.team-stats strong {
    color: var(--matte-gold);
}
.team-cta {
    text-align: center;
    margin-top: 30px;
}
.btn-outline-small {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--dark-green);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-outline-small:hover {
    background: var(--matte-gold);
    color: var(--white);
    border-color: var(--matte-gold);
}

/* ========================================
   بخش حوزه‌های درمانی
   ======================================== */
.treatments-section {
    padding: 80px 0;
    background: var(--white);
}
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.treatment-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.treatment-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: var(--matte-gold);
}
.treatment-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.treatment-icon i {
    font-size: 1.8rem;
    color: var(--matte-gold);
}
.treatment-item h3 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 8px;
}
.treatment-item p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

/* ========================================
   بخش دستگاه‌های درمانی
   ======================================== */
.devices-section {
    padding: 80px 0;
    background: var(--off-white);
}
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.device-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}
.device-item:hover {
    transform: translateY(-4px);
}
.device-icon {
    font-size: 2.5rem;
    color: var(--matte-gold);
    margin-bottom: 12px;
}
.device-item h3 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 6px;
}
.device-item p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* ========================================
   واکنش‌گرایی بخش‌های جدید
   ======================================== */
@media (max-width: 992px) {
    .approach-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .approach-image {
        order: -1;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item--large {
        grid-column: span 1;
        grid-row: span 1;
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .treatments-grid {
        grid-template-columns: 1fr 1fr;
    }
    .devices-grid {
        grid-template-columns: 1fr 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .approach-content h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    .devices-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   صفحه خدمات
   ======================================== */

/* هدر صفحه */
.page-header {
    text-align: center;
    padding: 40px 0 20px;
}
.page-title {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 8px;
}
.page-subtitle {
    font-size: 1.15rem;
    color: var(--muted-foreground);
}

/* بخش ۱: خدمات برجسته */
.services-highlight {
    padding: 40px 0 20px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: var(--matte-gold);
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.service-icon i {
    font-size: 1.8rem;
    color: var(--matte-gold);
}
.service-card h3 {
    font-size: 1.25rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}
.service-card p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
}
.service-features {
    list-style: none;
    padding: 0;
}
.service-features li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-features li i {
    color: var(--matte-gold);
    font-size: 0.8rem;
}

/* بخش ۲: حوزه‌های درمانی */
.treatments-section {
    padding: 60px 0;
}
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 8px;
}
.section-subtitle {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 1.05rem;
    margin-bottom: 40px;
}
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.treatment-item {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.treatment-item:hover {
    border-color: var(--matte-gold);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.treatment-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.treatment-icon i {
    font-size: 1.5rem;
    color: var(--matte-gold);
}
.treatment-item h3 {
    font-size: 1.05rem;
    color: var(--dark-green);
    margin-bottom: 6px;
}
.treatment-item p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* بخش ۳: دستگاه‌های درمانی */
.devices-section {
    padding: 60px 0;
    background: var(--off-white);
    border-radius: var(--radius);
}
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}
.device-item {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}
.device-item:hover {
    transform: translateY(-4px);
}
.device-icon {
    font-size: 2.2rem;
    color: var(--matte-gold);
    margin-bottom: 10px;
}
.device-item h3 {
    font-size: 1.05rem;
    color: var(--dark-green);
    margin-bottom: 4px;
}
.device-item p {
    color: var(--muted-foreground);
    font-size: 0.85rem;
}

/* بخش ۴: آمار */
.services-page .stats-section {
    background: var(--dark-green);
    color: var(--white);
    padding: 60px 0;
    border-radius: var(--radius);
    margin: 20px 0;
}
.services-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}
.services-page .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
}
.services-page .stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* بخش ۵: فراخوان */
.services-cta {
    padding: 60px 0 40px;
}
.cta-content {
    background: var(--off-white);
    padding: 50px 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}
.cta-content h2 {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 12px;
}
.cta-content p {
    color: var(--muted-foreground);
    font-size: 1.05rem;
    margin-bottom: 24px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   واکنش‌گرایی صفحه خدمات
   ======================================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-page .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .services-page .stat-number {
        font-size: 2.2rem;
    }
    .page-title {
        font-size: 2rem;
    }
    .cta-content {
        padding: 30px 20px;
    }
    .cta-content h2 {
        font-size: 1.6rem;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    .devices-grid {
        grid-template-columns: 1fr;
    }
} 
/* ========================================
   صفحه درباره ما
   ======================================== */

/* هدر صفحه */
.about-header {
    text-align: center;
    padding: 40px 0 30px;
}
.about-header .page-title {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 8px;
}
.about-header .page-subtitle {
    font-size: 1.15rem;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
}

/* بخش ۲: معرفی کلینیک */
.about-intro {
    padding: 40px 0 20px;
}
.about-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-intro-text h2 {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 16px;
}
.about-intro-text p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 14px;
}
.about-intro-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* بخش ۳: رویکرد درمانی */
.about-approach {
    padding: 60px 0;
    background: var(--off-white);
    border-radius: var(--radius);
}
.about-approach-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-approach-text p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-approach-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.approach-list {
    list-style: none;
    padding: 0;
}
.approach-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--dark-green);
}
.approach-list li i {
    color: var(--matte-gold);
    font-size: 1.2rem;
}

/* بخش ۴: تیم پزشکی */
.about-team {
    padding: 60px 0;
}
.about-team .section-subtitle {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 1.05rem;
    margin-bottom: 40px;
}
.about-team .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.about-team .team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}
.about-team .team-card:hover {
    transform: translateY(-6px);
}
.about-team .team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
}
.about-team .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-team .team-card h3 {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 4px;
}
.about-team .team-card .team-title {
    color: var(--olive-green);
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.about-team .team-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
.about-team .team-stats strong {
    color: var(--matte-gold);
}
.about-team .team-desc {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.about-team .team-cta {
    text-align: center;
    margin-top: 30px;
}

/* بخش ۵: مزایا */
.about-benefits {
    padding: 60px 0;
    background: var(--off-white);
    border-radius: var(--radius);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.benefit-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}
.benefit-item:hover {
    transform: translateY(-4px);
}
.benefit-item i {
    font-size: 2.5rem;
    color: var(--matte-gold);
    margin-bottom: 14px;
}
.benefit-item h3 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 6px;
}
.benefit-item p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   واکنش‌گرایی صفحه درباره ما
   ======================================== */
@media (max-width: 992px) {
    .about-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-approach-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-approach-image {
        order: -1;
    }
}
@media (max-width: 768px) {
    .about-header .page-title {
        font-size: 2rem;
    }
    .about-header .page-subtitle {
        font-size: 1rem;
    }
    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    .about-team .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
} 
/* ========================================
   صفحه درباره ما
   ======================================== */

/* بخش ۱: هدر با افکت پارالکس */
.about-hero {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--olive-green) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><circle cx="20" cy="20" r="30"/><circle cx="80" cy="80" r="40"/><circle cx="50" cy="50" r="20"/></svg>');
    background-size: 200px 200px;
    animation: floatBg 20s linear infinite;
}
@keyframes floatBg {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
    100% { transform: translate(0, 0); }
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 77, 58, 0.6);
}
.about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}
.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.about-breadcrumb {
    font-size: 0.95rem;
    opacity: 0.8;
}
.about-breadcrumb a {
    color: var(--white);
    text-decoration: none;
}
.about-breadcrumb a:hover {
    text-decoration: underline;
}
.about-breadcrumb .separator {
    margin: 0 8px;
}

/* بخش ۲: داستان کلینیک */
.about-story {
    padding: 40px 0 60px;
}
.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.story-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.6s ease;
}
.story-image:hover img {
    transform: scale(1.03);
}
.story-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--matte-gold);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(196, 168, 130, 0.4);
}
.story-image-badge span:first-child {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.story-image-badge span:last-child {
    font-size: 0.8rem;
    opacity: 0.9;
}
.story-content .section-tag {
    display: inline-block;
    color: var(--matte-gold);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.story-content h2 {
    font-size: 2.2rem;
    color: var(--dark-green);
    margin-bottom: 16px;
}
.story-content p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 16px;
}
.story-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0 24px;
}
.story-stat {
    text-align: center;
}
.story-stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--matte-gold);
}
.story-stat .label {
    font-size: 0.85rem;
    color: var(--muted-foreground);
}
.story-content .btn-primary i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}
.story-content .btn-primary:hover i {
    transform: translateX(-4px);
}

/* بخش ۳: رویکرد ما */
.about-approach {
    padding: 60px 0;
    background: var(--off-white);
    border-radius: var(--radius);
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header .section-tag {
    display: inline-block;
    color: var(--matte-gold);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.section-header h2 {
    font-size: 2.2rem;
    color: var(--dark-green);
    margin: 4px 0 8px;
}
.section-header p {
    color: var(--muted-foreground);
    font-size: 1.05rem;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.approach-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
}
.approach-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--matte-gold);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.approach-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s ease;
}
.approach-card:hover .approach-icon {
    background: var(--matte-gold);
}
.approach-card:hover .approach-icon i {
    color: var(--white);
}
.approach-icon i {
    font-size: 1.6rem;
    color: var(--matte-gold);
    transition: color 0.4s ease;
}
.approach-card h3 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 6px;
}
.approach-card p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* بخش ۴: تیم ما */
.about-team {
    padding: 60px 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.team-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}
.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.team-card:hover .team-card-image img {
    transform: scale(1.05);
}
.team-card-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    transition: bottom 0.4s ease;
}
.team-card:hover .team-card-social {
    bottom: 0;
}
.team-card-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}
.team-card-social a:hover {
    background: var(--white);
    color: var(--dark-green);
    transform: scale(1.1);
}
.team-card-info {
    padding: 20px;
    text-align: center;
}
.team-card-info h3 {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 2px;
}
.team-specialty {
    color: var(--olive-green);
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.team-card-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-bottom: 14px;
}
.team-card-stats strong {
    color: var(--matte-gold);
}
.team-cta {
    text-align: center;
    margin-top: 30px;
}
.team-cta .btn-primary i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}
.team-cta .btn-primary:hover i {
    transform: translateX(-4px);
}

/* بخش ۵: گالری */
.about-gallery {
    padding: 60px 0;
    background: var(--off-white);
    border-radius: var(--radius);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}
.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 77, 58, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1.4rem;
    transform: scale(0.6);
    transition: all 0.4s ease;
}
.gallery-item:hover .gallery-icon {
    transform: scale(1);
    background: rgba(255,255,255,0.3);
}

/* بخش ۶: مزایا */
.about-benefits {
    padding: 60px 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.benefit-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.benefit-item:hover {
    border-color: var(--matte-gold);
    transform: translateY(-6px) scale(1.01);
}
.benefit-icon {
    font-size: 2.5rem;
    color: var(--matte-gold);
    margin-bottom: 12px;
    transition: transform 0.4s ease;
}
.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(-4deg);
}
.benefit-item h3 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 6px;
}
.benefit-item p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* بخش ۷: فراخوان نهایی */
.about-cta {
    padding: 60px 0 40px;
}
.cta-box {
    background: linear-gradient(135deg, var(--dark-green), var(--olive-green));
    padding: 50px 40px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><circle cx="20" cy="20" r="30"/><circle cx="80" cy="80" r="40"/><circle cx="50" cy="50" r="20"/></svg>');
    background-size: 200px 200px;
    animation: floatBg 20s linear infinite;
}
.cta-box-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}
.cta-box-content h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.cta-box-content p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 24px;
}
.cta-box-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-white {
    background: var(--white) !important;
    color: var(--dark-green) !important;
}
.btn-white:hover {
    background: var(--off-white) !important;
}
.btn-outline-white {
    background: transparent !important;
    color: var(--white) !important;
    border-color: rgba(255,255,255,0.4) !important;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: var(--white) !important;
}
.cta-box-actions .btn-primary i,
.cta-box-actions .btn-secondary i {
    margin: 0 6px;
}

/* ========================================
   واکنش‌گرایی صفحه درباره ما
   ======================================== */
@media (max-width: 992px) {
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .story-image {
        order: -1;
    }
    .story-image img {
        aspect-ratio: 16/9;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-item--large {
        grid-column: span 1;
        grid-row: span 1;
    }
}
@media (max-width: 768px) {
    .about-hero {
        height: 220px;
    }
    .about-title {
        font-size: 2rem;
    }
    .story-content h2 {
        font-size: 1.8rem;
    }
    .story-stats {
        gap: 16px;
        flex-wrap: wrap;
    }
    .story-stat .number {
        font-size: 1.6rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .approach-grid {
        grid-template-columns: 1fr 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
        gap: 10px;
    }
    .cta-box {
        padding: 30px 20px;
    }
    .cta-box-content h2 {
        font-size: 1.6rem;
    }
    .cta-box-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-box-actions .btn-primary,
    .cta-box-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
} 
/* ========================================
   استایل لیبل‌های گالری (غیرشلوغ و زیبا)
   ======================================== */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(58, 77, 58, 0.7) 0%,
        rgba(58, 77, 58, 0.1) 50%,
        rgba(58, 77, 58, 0.2) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* لیبل زیبا و غیرشلوغ */
.gallery-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 18px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-label {
    transform: translateY(0);
    opacity: 1;
}

.gallery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 1rem;
    transform: scale(0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* ========================================
   لیبل‌های انگلیسی (برای نمایش در هاور)
   ======================================== */
.gallery-label-en {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.gallery-item:hover .gallery-label-en {
    transform: translateY(0);
    opacity: 1;
}

/* ========================================
   واکنش‌گرایی گالری با لیبل‌ها
   ======================================== */
@media (max-width: 768px) {
    .gallery-label {
        font-size: 0.7rem;
        padding: 4px 14px;
    }
    .gallery-label-en {
        font-size: 0.5rem;
    }
    .gallery-icon {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}
/* ========================================
   استایل‌های جدید صفحه خدمات (نسخه بهبودیافته)
   ======================================== */

/* ---------- هدر با المان‌های تزئینی ---------- */
.services-hero {
    position: relative;
    height: 420px;
    background: linear-gradient(135deg, #2d4a2d 0%, var(--olive-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}
.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1;
}
.services-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
}
.services-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.services-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 14px;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    z-index: 0;
}
.hero-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
    animation: floatShape 15s ease-in-out infinite;
}
.hero-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
    animation: floatShape 12s ease-in-out infinite reverse;
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* ---------- خدمات برجسته ---------- */
.services-highlight {
    padding: 40px 0 20px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(196, 168, 130, 0.1);
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-color: var(--matte-gold);
}
.service-card-inner {
    padding: 30px 25px;
    position: relative;
}
.service-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.service-card:hover .service-icon {
    background: var(--matte-gold);
}
.service-card:hover .service-icon i {
    color: var(--white);
}
.service-icon i {
    font-size: 1.6rem;
    color: var(--matte-gold);
    transition: color 0.4s ease;
}
.service-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(196, 168, 130, 0.12);
    line-height: 1;
}
.service-card-inner h3 {
    font-size: 1.25rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}
.service-card-inner p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
}
.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}
.service-features li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-features li i {
    color: var(--matte-gold);
    font-size: 0.85rem;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--matte-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease, color 0.3s ease;
}
.service-link:hover {
    gap: 14px;
    color: var(--olive-green);
}

/* ---------- حوزه‌های درمانی ---------- */
.services-treatments {
    padding: 60px 0;
    background: var(--off-white);
}
.treatment-item {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.treatment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--matte-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.treatment-item:hover::before {
    transform: scaleX(1);
}
.treatment-item:hover {
    border-color: var(--matte-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.treatment-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.4s ease;
}
.treatment-item:hover .treatment-icon {
    background: var(--matte-gold);
}
.treatment-item:hover .treatment-icon i {
    color: var(--white);
}
.treatment-icon i {
    font-size: 1.5rem;
    color: var(--matte-gold);
    transition: color 0.4s ease;
}
.treatment-item h3 {
    font-size: 1.05rem;
    color: var(--dark-green);
    margin-bottom: 6px;
}
.treatment-item p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
}
.treatment-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 14px;
    border-radius: 50px;
    background: rgba(196, 168, 130, 0.12);
    color: var(--matte-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- دستگاه‌های درمانی ---------- */
.services-devices {
    padding: 60px 0;
}
.device-item {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}
.device-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.device-icon {
    font-size: 2.5rem;
    color: var(--matte-gold);
    margin-bottom: 10px;
    transition: transform 0.4s ease;
}
.device-item:hover .device-icon {
    transform: scale(1.1) rotate(-4deg);
}
.device-item h3 {
    font-size: 1.05rem;
    color: var(--dark-green);
    margin-bottom: 4px;
}
.device-item p {
    color: var(--muted-foreground);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 10px;
}
.device-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 14px;
    border-radius: 50px;
    background: rgba(196, 168, 130, 0.12);
    color: var(--matte-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- آمار بهبودیافته ---------- */
.services-stats {
    background: var(--dark-green);
    color: var(--white);
    padding: 60px 0;
}
.services-stats .stat-item {
    text-align: center;
}
.services-stats .stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4px;
}
.services-stats .stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 2px;
}
.services-stats .stat-desc {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ---------- CTA بهبودیافته ---------- */
.services-cta {
    padding: 60px 0 40px;
}
.cta-box {
    background: linear-gradient(135deg, var(--dark-green), var(--olive-green));
    padding: 50px 40px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-shape {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    z-index: 0;
}
.cta-box-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}
.cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.cta-box-content h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.cta-box-content p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 24px;
}
.cta-box-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-white {
    background: var(--white) !important;
    color: var(--dark-green) !important;
}
.btn-white:hover {
    background: var(--off-white) !important;
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent !important;
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12) !important;
    border-color: var(--white) !important;
    transform: translateY(-2px);
}
.cta-box-actions .btn-primary i,
.cta-box-actions .btn-secondary i {
    margin: 0 6px;
}

/* ---------- واکنش‌گرایی ---------- */
@media (max-width: 992px) {
    .services-hero {
        height: 320px;
    }
    .services-hero-content h1 {
        font-size: 2.4rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .services-hero {
        height: 260px;
    }
    .services-hero-content h1 {
        font-size: 1.8rem;
    }
    .services-hero-content p {
        font-size: 0.95rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .services-stats .stat-number {
        font-size: 2.4rem;
    }
    .cta-box {
        padding: 30px 20px;
    }
    .cta-box-content h2 {
        font-size: 1.6rem;
    }
    .cta-box-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-box-actions .btn-primary,
    .cta-box-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    .devices-grid {
        grid-template-columns: 1fr;
    }
    .services-stats .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .hero-shape {
        display: none;
    }
} 
/* ========================================
   استایل‌های صفحه تماس با ما (نسخه فوق‌العاده)
   ======================================== */

/* ---------- هدر با المان‌های تزئینی ---------- */
.contact-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--olive-green) 0%, var(--dark-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}
.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.contact-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 14px;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    z-index: 0;
    animation: floatShape 15s ease-in-out infinite;
}
.hero-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
}
.hero-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
    animation-delay: -5s;
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* ---------- بخش اطلاعات و فرم ---------- */
.contact-main {
    padding: 20px 0 40px;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* فرم تماس */
.contact-form {
    background: var(--white);
    padding: 40px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(196, 168, 130, 0.08);
}
.form-header {
    margin-bottom: 28px;
}
.form-header h3 {
    font-size: 1.6rem;
    color: var(--dark-green);
    margin-bottom: 4px;
}
.form-header p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}
.form-group {
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--dark-green);
}
.form-group label i {
    color: var(--matte-gold);
    font-size: 0.85rem;
}
.form-group label span {
    color: #e74c3c;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--off-white);
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--matte-gold);
    outline: none;
    box-shadow: 0 0 0 4px rgba(196, 168, 130, 0.12);
    background: var(--white);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
}
.contact-form .btn-primary i {
    margin: 0 8px;
}
.contact-form .btn-primary .fa-arrow-left {
    transition: transform 0.3s ease;
}
.contact-form .btn-primary:hover .fa-arrow-left {
    transform: translateX(-4px);
}

/* اطلاعات تماس */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(196, 168, 130, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-info-card:hover {
    transform: translateX(-6px);
    border-color: var(--matte-gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.contact-icon-wrapper {
    flex-shrink: 0;
}
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.contact-info-card:hover .contact-icon {
    background: var(--matte-gold);
}
.contact-info-card:hover .contact-icon i {
    color: var(--white);
}
.contact-icon i {
    font-size: 1.2rem;
    color: var(--matte-gold);
    transition: color 0.4s ease;
}
.contact-detail h4 {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-weight: 400;
    margin-bottom: 2px;
}
.contact-detail p,
.contact-detail a {
    font-size: 1rem;
    color: var(--dark-green);
    text-decoration: none;
    margin: 0;
    font-weight: 500;
}
.contact-detail a:hover {
    color: var(--matte-gold);
}
.working-hours {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 2px 0;
    color: var(--dark-green);
}
.working-hours.closed {
    color: #e74c3c;
}
.working-hours.closed span:last-child {
    font-weight: 600;
}

/* شبکه‌های اجتماعی */
.contact-social {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}
.contact-social span {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}
.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--off-white);
    color: var(--dark-green);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.contact-social a:hover {
    background: var(--matte-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(196, 168, 130, 0.3);
}

/* ---------- بخش نقشه ---------- */
.contact-map-section {
    padding: 40px 0 60px;
    background: var(--off-white);
}
.map-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}
.map-container {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}
.map-info {
    padding: 35px 30px;
    display: flex;
    align-items: center;
}
.map-info-content {
    width: 100%;
}
.map-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.map-info-icon i {
    font-size: 1.6rem;
    color: var(--matte-gold);
}
.map-info h3 {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 6px;
}
.map-info > p {
    color: var(--muted-foreground);
    margin-bottom: 18px;
}
.map-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.map-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.map-features li:last-child {
    border-bottom: none;
}
.map-features li i {
    color: var(--matte-gold);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.map-features li div {
    display: flex;
    flex-direction: column;
}
.map-features li strong {
    font-size: 0.95rem;
    color: var(--dark-green);
}
.map-features li span {
    font-size: 0.85rem;
    color: var(--muted-foreground);
}
.map-phone-cta {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}
.map-phone-cta .btn-secondary {
    padding: 10px 22px;
    font-size: 0.9rem;
    background: var(--off-white);
    color: var(--dark-green);
    border: 1px solid var(--border);
}
.map-phone-cta .btn-secondary:hover {
    background: var(--muted);
}
.map-phone-cta .btn-primary {
    padding: 10px 22px;
    font-size: 0.9rem;
}
.map-phone-cta .btn-primary i {
    margin: 0 6px;
}

/* ---------- واکنش‌گرایی ---------- */
@media (max-width: 992px) {
    .contact-hero {
        height: 320px;
    }
    .contact-hero-content h1 {
        font-size: 2.4rem;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    .map-container {
        min-height: 300px;
    }
    .map-container iframe {
        min-height: 300px;
    }
}
@media (max-width: 768px) {
    .contact-hero {
        height: 260px;
    }
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
    .contact-hero-content p {
        font-size: 0.95rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 25px 20px;
    }
    .contact-info-card {
        padding: 14px 16px;
    }
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    .contact-icon i {
        font-size: 1rem;
    }
    .contact-detail h4 {
        font-size: 0.8rem;
    }
    .contact-detail p,
    .contact-detail a {
        font-size: 0.9rem;
    }
    .contact-social a {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    .map-info {
        padding: 25px 20px;
    }
    .map-phone-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .map-phone-cta .btn-secondary,
    .map-phone-cta .btn-primary {
        text-align: center;
    }
    .hero-shape {
        display: none;
    }
}
@media (max-width: 480px) {
    .contact-form {
        padding: 20px 16px;
    }
    .working-hours {
        font-size: 0.8rem;
        flex-wrap: wrap;
        gap: 2px 8px;
    }
    .map-container {
        min-height: 220px;
    }
    .map-container iframe {
        min-height: 220px;
    }
    .contact-social {
        flex-wrap: wrap;
    }
} 
/* ========================================
   استایل لینک نقشه و placeholder
   ======================================== */

/* لینک نقشه در بخش اطلاعات تماس */
.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    color: var(--matte-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(196, 168, 130, 0.08);
}
.map-link:hover {
    background: var(--matte-gold);
    color: var(--white);
    transform: translateX(-4px);
}
.map-link i {
    font-size: 0.9rem;
}

/* placeholder نقشه (قابل کلیک) */
.map-iframe-link {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
    text-decoration: none;
    color: inherit;
}
.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #f0f4f0 0%, #e8ede8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius);
    transition: all 0.4s ease;
    border: 2px dashed rgba(196, 168, 130, 0.2);
}
.map-placeholder:hover {
    background: linear-gradient(135deg, #e8f0e8 0%, #dce8dc 100%);
    border-color: var(--matte-gold);
    transform: scale(1.01);
}
.map-placeholder-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.map-placeholder-icon i {
    font-size: 2.5rem;
    color: var(--matte-gold);
}
.map-placeholder h3 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 8px;
}
.map-placeholder p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    max-width: 400px;
    margin-bottom: 16px;
}
.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: var(--matte-gold);
    color: var(--white);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.map-placeholder:hover .map-btn {
    background: #b3966f;
    transform: scale(1.05);
}
.map-btn i {
    font-size: 0.9rem;
}

/* ---------- واکنش‌گرایی ---------- */
@media (max-width: 768px) {
    .map-placeholder {
        min-height: 280px;
        padding: 30px 16px;
    }
    .map-placeholder-icon {
        width: 60px;
        height: 60px;
    }
    .map-placeholder-icon i {
        font-size: 1.8rem;
    }
    .map-placeholder h3 {
        font-size: 1.1rem;
    }
    .map-placeholder p {
        font-size: 0.85rem;
    }
    .map-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {
    .map-placeholder {
        min-height: 220px;
        padding: 20px 12px;
    }
    .map-placeholder-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }
    .map-placeholder-icon i {
        font-size: 1.4rem;
    }
    .map-placeholder h3 {
        font-size: 0.95rem;
    }
    .map-placeholder p {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    .map-btn {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
} 
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo-img {
    max-width: 60px;   /* اندازه دلخواه */
    height: auto;
    border-radius: 8px; /* اختیاری */
}

/* در صورت نیاز به چیدمان عمودی */
.footer-logo {
    flex-direction: column;
    align-items: flex-start;
} 
/* نمایش ستون‌ها به‌صورت گرید با عرض مساوی */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* هر ستون */
.footer-col {
    padding: 10px;
}

/* لیست ساعت‌کاری */
.working-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 15px;
}

.working-hours li:last-child {
    border-bottom: none;
}

/* برجسته‌سازی روز تعطیل */
.working-hours li:last-child span:last-child {
    color: #e74c3c;
    font-weight: bold;
}

/* برای نمایش عنوان ستون */
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
    border-right: 4px solid #3498db;
    padding-right: 10px;
}
/* ===== فوتر ===== */
.site-footer {
    background: #1a2a3a; /* پس‌زمینه تیره */
    color: #e0e0e0;
    padding: 40px 0 20px;
    font-size: 14px;
    line-height: 1.8;
}

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

/* گرید ۴ ستونه با عرض مساوی */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

/* هر ستون */
.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 18px;
    border-right: 4px solid #f39c12; /* خط نارنجی در کنار عنوان */
    padding-right: 12px;
}

/* ===== ستون ساعت کاری ===== */
.working-hours {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.working-hours li:last-child {
    border-bottom: none;
}

.working-hours .day {
    color: #b0c4de;
}

.working-hours .time {
    color: #ffffff;
    font-weight: 500;
}

/* رنگ قرمز برای روز تعطیل */
.working-hours .time.closed {
    color: #e74c3c;
    font-weight: bold;
}

/* دکمه رزرو نوبت */
.btn-appointment {
    display: inline-block;
    background: #f39c12;
    color: #1a2a3a;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 5px;
}

.btn-appointment:hover {
    background: #e67e22;
    color: #fff;
}

/* ===== ستون اطلاعات تماس ===== */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    width: 20px;
    color: #f39c12;
}

/* ===== ستون لینک‌ها ===== */
.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 6px;
}

.footer-menu a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #f39c12;
}

/* ===== لوگو ===== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo-img {
    max-width: 60px;
    height: auto;
    border-radius: 8px;
}

.footer-logo h3 {
    color: #ffffff;
    font-size: 20px;
    margin: 0;
}

/* ===== پایین فوتر (کپی‌رایت) ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    text-align: center;
    font-size: 13px;
    color: #8899aa;
}

/* ===== واکنش‌گرایی ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
/* ===== فوتر ===== */
.site-footer {
    background: #f8f9fa; /* رنگ پس‌زمینه روشن (مثلاً سفید یا خاکستری خیلی روشن) */
    color: #333333; /* رنگ متن تیره برای خوانایی */
    padding: 40px 0 20px;
    font-size: 14px;
    line-height: 1.8;
    border-top: 3px solid #your-primary-color; /* خط بالایی با رنگ اصلی برند */
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #your-primary-color; /* رنگ عنوان‌ها (مثلاً آبی یا نارنجی برند) */
    font-size: 18px;
    margin-bottom: 18px;
    border-right: 4px solid #your-secondary-color; /* خط کناری با رنگ ثانویه */
    padding-right: 12px;
}

/* ===== ستون ساعت کاری ===== */
.working-hours {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #dee2e6; /* خط جداکننده روشن */
}

.working-hours li:last-child {
    border-bottom: none;
}

.working-hours .day {
    color: #555555; /* رنگ روزهای هفته */
}

.working-hours .time {
    color: #222222; /* رنگ ساعت‌ها (تیره‌تر) */
    font-weight: 500;
}

.working-hours .time.closed {
    color: #e74c3c; /* قرمز برای روز تعطیل - قابل تغییر */
    font-weight: bold;
}

/* دکمه رزرو نوبت */
.btn-appointment {
    display: inline-block;
    background: #your-primary-color; /* رنگ دکمه مطابق برند */
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-appointment:hover {
    background: #your-secondary-color; /* رنگ تیره‌تر برای هاور */
    color: #fff;
}

/* ===== ستون اطلاعات تماس ===== */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333333;
}

.contact-info i {
    width: 20px;
    color: #your-primary-color; /* رنگ آیکون‌ها */
}

/* ===== ستون لینک‌ها ===== */
.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 6px;
}

.footer-menu a {
    color: #444444;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #your-primary-color; /* رنگ هاور لینک‌ها */
}

/* ===== لوگو ===== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo-img {
    max-width: 60px;
    height: auto;
    border-radius: 8px;
}

.footer-logo h3 {
    color: #your-primary-color; /* رنگ عنوان کلینیک */
    font-size: 20px;
    margin: 0;
}

/* ===== کپی‌رایت ===== */
.footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 18px;
    text-align: center;
    font-size: 13px;
    color: #777777;
}

/* ===== واکنش‌گرایی ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
:root {
    --primary-color: #your-color;
    --secondary-color: #your-color2;
    --bg-light: #f8f9fa;
    --text-dark: #333;
}

.site-footer {
    background: var(--bg-light);
    color: var(--text-dark);
}

.footer-col h4 {
    color: var(--primary-color);
    border-right-color: var(--secondary-color);
}
/* ===== بخش تیم ===== */
.team-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 4px solid #your-primary-color; /* رنگ برند */
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.member-role {
    color: #7f8c8d;
    font-size: 14px;
}

/* ===== بخش مزایا ===== */
.benefits-section {
    padding: 60px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    text-align: center;
    padding: 25px 15px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.benefit-item:hover {
    background: #eef2f7;
    transform: scale(1.02);
}

.benefit-item i {
    font-size: 40px;
    color: #your-primary-color;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== بخش دستگاه‌ها ===== */
.devices-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.device-item {
    background: #fff;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.device-item:hover {
    border-bottom-color: #your-primary-color;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.device-item i {
    font-size: 32px;
    color: #your-primary-color;
    margin-bottom: 12px;
}

.device-item h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.device-item p {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.5;
}

/* ===== عنوان‌های مشترک ===== */
.section-title {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 8px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #your-primary-color;
    margin: 10px auto 0;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 16px;
    margin-bottom: 20px;
} 
:root {
    /* پالت رنگ دقیق سایت */
    --color-primary: #7A8B6E;      /* سبز خاکستری ملایم */
    --color-dark: #3A4D3A;         /* سبز تیره برای متن و هدر */
    --color-secondary: #9CAF88;    /* سبز روشن‌تر */
    --color-bg-main: #F9FBF7;      /* پس‌زمینه اصلی */
    --color-bg-secondary: #F3F4F6; /* پس‌زمینه ثانویه */
    --color-white: #FFFFFF;        /* سفید خالص */
    --color-accent: #C4A882;       /* طلایی/بژ برای دکمه‌ها */
    --color-text-light: #99A1AF;   /* متن روشن */
    --shadow-soft: 0 4px 12px rgba(156, 175, 136, 0.125);
    --shadow-medium: 0 8px 25px rgba(156, 175, 136, 0.20);
}

/* ===== هدر ===== */
.about-hero {
    background: var(--color-dark);
    padding: 100px 0 70px;
    text-align: center;
    color: var(--color-white);
    position: relative;
}
.about-hero-content { position: relative; z-index: 2; }
.about-hero h1 {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.about-hero p {
    font-size: 17px;
    font-weight: 300;
    opacity: 0.85;
}
.about-breadcrumb { margin-top: 12px; }
.about-breadcrumb a {
    color: var(--color-accent);
    text-decoration: none;
}
.about-breadcrumb a:hover {
    color: var(--color-white);
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.10);
    z-index: 1;
}

/* ===== داستان ===== */
.about-story {
    padding: 70px 0;
    background: var(--color-bg-main);
}
.story-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}
.story-image { flex: 1; position: relative; }
.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}
.story-image-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 12px 22px;
    border-radius: 10px;
    text-align: center;
}
.story-image-badge span:first-child {
    font-size: 22px;
    font-weight: bold;
    display: block;
}
.story-content { flex: 1; }
.story-content .section-tag {
    color: var(--color-accent);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}
.story-content h2 {
    font-size: 30px;
    font-weight: 300;
    color: var(--color-primary);
    margin: 8px 0 15px;
}
.story-content p {
    color: var(--color-dark);
    line-height: 1.8;
}
.story-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}
.story-stat { text-align: center; }
.story-stat .number {
    font-size: 26px;
    font-weight: 300;
    color: var(--color-primary);
}
.story-stat .label {
    display: block;
    font-size: 13px;
    color: var(--color-text-light);
}

/* ===== رویکرد ===== */
.about-approach {
    padding: 60px 0;
    background: var(--color-bg-secondary);
}
.section-header { text-align: center; margin-bottom: 35px; }
.section-tag {
    color: var(--color-accent);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}
.section-header h2 {
    font-size: 28px;
    font-weight: 300;
    color: var(--color-primary);
    margin: 6px 0;
}
.section-header p {
    color: var(--color-text-light);
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
}
.approach-card {
    background: var(--color-white);
    padding: 22px 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}
.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}
.approach-icon {
    font-size: 34px;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.approach-card h3 {
    color: var(--color-primary);
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 8px;
}
.approach-card p {
    color: var(--color-text-light);
    font-size: 14px;
}

/* ===== تیم ===== */
.about-team {
    padding: 60px 0;
    background: var(--color-bg-main);
}
.team-card-full {
    display: flex;
    gap: 30px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s;
}
.team-card-full:hover {
    box-shadow: var(--shadow-medium);
}
.team-card-full-image {
    flex: 0 0 200px;
}
.team-card-full-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}
.team-card-full-content { flex: 1; }
.team-card-full-content h3 {
    color: var(--color-dark);
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 2px;
}
.team-specialty {
    color: var(--color-accent);
    font-weight: 400;
    margin-bottom: 12px;
}
.team-description {
    color: var(--color-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}
.team-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 15px 0;
}
.team-detail h4 {
    color: var(--color-primary);
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 6px;
}
.team-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.team-detail ul li {
    color: var(--color-text-light);
    font-size: 13px;
    padding: 2px 0;
}
.team-actions {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}
.team-cta { text-align: center; margin-top: 10px; }

/* ===== دستگاه‌ها ===== */
.about-devices {
    padding: 60px 0;
    background: var(--color-bg-secondary);
}
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
}
.device-item {
    background: var(--color-white);
    padding: 18px 14px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}
.device-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}
.device-item i {
    font-size: 26px;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.device-item h4 {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 4px;
}
.device-item p {
    font-size: 12px;
    color: var(--color-text-light);
}

/* ===== گالری ===== */
.about-gallery {
    padding: 60px 0;
    background: var(--color-bg-main);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}
.gallery-item--large { grid-row: span 2; grid-column: span 2; }
.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 77, 58, 0.30);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
    background: var(--color-white);
    padding: 4px 14px;
    border-radius: 20px;
    color: var(--color-dark);
    font-size: 12px;
    margin-bottom: 4px;
}
.gallery-icon { color: var(--color-white); font-size: 20px; }

/* ===== CTA ===== */
.about-cta {
    padding: 60px 0;
    background: var(--color-bg-secondary);
}
.cta-box {
    background: var(--color-dark);
    padding: 45px 30px;
    border-radius: 12px;
    text-align: center;
    color: var(--color-white);
}
.cta-box h2 {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 8px;
}
.cta-box p {
    opacity: 0.85;
    margin-bottom: 18px;
}
.cta-box-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== دکمه‌ها ===== */
.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 30px;
    display: inline-block;
    transition: 0.3s;
    text-decoration: none;
    font-weight: 400;
}
.btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn-white {
    background: var(--color-white);
    color: var(--color-dark);
}
.btn-white:hover {
    background: var(--color-bg-secondary);
    color: var(--color-dark);
}
.btn-outline-white {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    transition: 0.3s;
    text-decoration: none;
    font-weight: 400;
}
.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-dark);
}
.btn-outline-small {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    transition: 0.3s;
    text-decoration: none;
}
.btn-outline-small:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn-small {
    padding: 6px 18px;
    font-size: 13px;
}

/* ===== واکنش‌گرایی ===== */
@media (max-width: 992px) {
    .story-wrapper { flex-direction: column; }
    .team-card-full { flex-direction: column; }
    .team-card-full-image { flex: 0 0 auto; }
    .team-card-full-image img { height: 180px; }
    .team-details-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item--large { grid-column: span 1; }
}

@media (max-width: 576px) {
    .about-hero h1 { font-size: 26px; }
    .about-hero { padding: 70px 0 50px; }
    .story-stats { flex-wrap: wrap; justify-content: center; }
    .team-details-grid { grid-template-columns: 1fr; }
    .team-actions { flex-direction: column; align-items: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 180px; }
    .cta-box { padding: 25px 15px; }
    .cta-box-actions { flex-direction: column; align-items: center; }
    .devices-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-grid { grid-template-columns: 1fr 1fr; }
} 
/* ===== بخش تیم ===== */
.about-team {
    padding: 60px 0;
    background: var(--color-bg-main);
}

/* کارت‌های بزرگ پزشکان (مشابه قبل) */
.team-card-full { ... } /* همانند کد قبلی */

/* ===== کارت‌های کادر پشتیبانی (جدید) ===== */
.staff-section-header {
    text-align: center;
    margin: 40px 0 20px;
}
.staff-subtitle {
    font-size: 22px;
    font-weight: 300;
    color: var(--color-primary);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}
.staff-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    margin: 6px auto 0;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 10px;
}
.staff-card {
    background: var(--color-white);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}
.staff-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}
.staff-card-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 3px solid var(--color-secondary);
}
.staff-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.staff-card h4 {
    color: var(--color-dark);
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 2px;
}
.staff-role {
    color: var(--color-text-light);
    font-size: 13px;
}

/* ===== سایر بخش‌ها (دستگاه‌ها، گالری، CTA) ===== */
/* بقیه کدهای CSS مانند قبل با همان پالت رنگ */
/* ============================================================
   ریسپانسیو (تبلت و موبایل) - بهینه‌شده برای نمایش منظم
   ============================================================ */

/* ===== تبلت (حداکثر ۹۹۲ پیکسل) ===== */
@media (max-width: 992px) {
    .story-wrapper {
        flex-direction: column;
    }
    .story-image-badge {
        right: 0;
        bottom: -10px;
    }

    .team-card-full {
        flex-direction: column;
    }
    .team-card-full-image {
        flex: 0 0 auto;
    }
    .team-card-full-image img {
        height: 200px;
        width: 100%;
    }
    .team-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    /* گالری: تبدیل به ۲ ستون */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    /* حذف اسپن ۲ ستونه برای عکس بزرگ در تبلت */
    .gallery-item--large {
        grid-row: span 1;
        grid-column: span 1;
    }
    .gallery-item img {
        height: 200px;
    }

    .devices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== موبایل بزرگ (حداکثر ۷۶۸ پیکسل) ===== */
@media (max-width: 768px) {
    .about-hero {
        padding: 70px 0 50px;
    }
    .about-hero h1 {
        font-size: 28px;
    }
    .about-hero p {
        font-size: 15px;
    }

    .story-stats {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .story-stat .number {
        font-size: 22px;
    }

    .approach-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .staff-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .team-details-grid {
        grid-template-columns: 1fr;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cta-box {
        padding: 30px 20px;
    }
    .cta-box h2 {
        font-size: 22px;
    }
    .cta-box-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .btn-primary, .btn-outline-white {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   ریسپانسیو کامل برای مدیریت پیکسل عکس‌ها در همه دستگاه‌ها
   ============================================================ */

/* ===== دسکتاپ (بزرگتر از 1200px) ===== */
@media (min-width: 1200px) {
    .gallery-item img {
        height: 280px;
        object-fit: cover;
    }
    .gallery-item--large img {
        height: 580px;
    }
    .team-card-full-image img {
        height: 250px;
        object-fit: cover;
    }
    .staff-card-image {
        width: 100px;
        height: 100px;
    }
    .story-image img {
        height: auto;
        max-height: 500px;
        object-fit: cover;
    }
    .device-item i {
        font-size: 32px;
    }
}

/* ===== تبلت (بین 768px تا 1200px) ===== */
@media (min-width: 768px) and (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    .gallery-item--large {
        grid-row: span 1 !important;
        grid-column: span 1 !important;
    }
    .gallery-item img {
        height: 220px;
        object-fit: cover;
    }
    .gallery-item--large img {
        height: 220px;
    }

    .team-card-full-image img {
        height: 200px;
        object-fit: cover;
    }

    .staff-card-image {
        width: 80px;
        height: 80px;
    }

    .story-image img {
        height: auto;
        max-height: 400px;
        object-fit: cover;
    }

    .devices-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .device-item i {
        font-size: 28px;
    }
}

/* ===== موبایل (کوچکتر از 768px) ===== */
@media (max-width: 767px) {
    /* --- گالری --- */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    .gallery-item--large {
        grid-row: span 1 !important;
        grid-column: span 1 !important;
    }
    .gallery-item img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }
    .gallery-item--large img {
        height: 200px;
    }
    .gallery-overlay .gallery-label {
        font-size: 12px;
        padding: 4px 12px;
    }

    /* --- داستان کلینیک --- */
    .story-image img {
        height: auto;
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }
    .story-image-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 10px;
        display: inline-block;
        padding: 8px 16px;
        font-size: 14px;
    }
    .story-image-badge span:first-child {
        font-size: 18px;
    }

    /* --- پزشکان (کارت بزرگ) --- */
    .team-card-full {
        flex-direction: column;
        padding: 15px;
    }
    .team-card-full-image {
        width: 100% !important;
        flex: 0 0 auto;
    }
    .team-card-full-image img {
        height: 200px;
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    .team-card-full-content h3 {
        font-size: 18px;
    }
    .team-description {
        font-size: 14px;
    }
    .team-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .team-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .team-actions .btn-outline-small,
    .team-actions .btn-primary {
        width: 100%;
        text-align: center;
        padding: 8px 16px;
    }

    /* --- کادر پشتیبانی --- */
    .staff-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    .staff-card {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px 15px;
        text-align: right;
        flex-direction: row;
    }
    .staff-card-image {
        width: 60px !important;
        height: 60px !important;
        flex-shrink: 0;
        margin: 0 !important;
        border-width: 2px;
    }
    .staff-card h4 {
        font-size: 15px;
        margin-bottom: 0;
    }
    .staff-role {
        font-size: 12px;
    }

    /* --- دستگاه‌های درمانی --- */
    .devices-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    .device-item {
        padding: 12px 10px;
    }
    .device-item i {
        font-size: 22px;
    }
    .device-item h4 {
        font-size: 13px;
    }
    .device-item p {
        font-size: 11px;
    }

    /* --- رویکرد (مزایا) --- */
    .approach-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px;
    }
    .approach-card {
        padding: 15px 12px;
    }
    .approach-icon {
        font-size: 28px;
    }
    .approach-card h3 {
        font-size: 15px;
    }
    .approach-card p {
        font-size: 13px;
    }

    /* --- CTA --- */
    .cta-box {
        padding: 20px 15px;
    }
    .cta-box h2 {
        font-size: 20px;
    }
    .cta-box p {
        font-size: 14px;
    }
    .cta-box-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .btn-primary,
    .btn-outline-white {
        width: 100%;
        text-align: center;
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ===== موبایل خیلی کوچک (کمتر از 480px) ===== */
@media (max-width: 480px) {
    .gallery-item img {
        height: 160px;
    }
    .gallery-item--large img {
        height: 160px;
    }

    .story-image img {
        max-height: 220px;
    }

    .team-card-full-image img {
        height: 160px;
    }

    .staff-card-image {
        width: 50px !important;
        height: 50px !important;
    }
    .staff-card h4 {
        font-size: 14px;
    }
    .staff-role {
        font-size: 11px;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }
    .device-item {
        padding: 10px 8px;
    }
    .device-item i {
        font-size: 18px;
    }
    .device-item h4 {
        font-size: 12px;
    }
    .device-item p {
        font-size: 10px;
    }

    .approach-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .section-header h2 {
        font-size: 20px;
    }
    .section-header p {
        font-size: 13px;
    }

    .cta-box h2 {
        font-size: 18px;
    }
    .cta-box p {
        font-size: 13px;
    }
} 
/* ============================================================
   دستیار هوش مصنوعی - استایل مدرن و زیبا
   ============================================================ */

/* ===== دکمه شناور ===== */
.ai-chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-primary, #7A8B6E);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(58, 77, 58, 0.25);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: inherit;
    border: none;
    outline: none;
}

.ai-chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(58, 77, 58, 0.35);
    background: var(--color-dark, #3A4D3A);
}

.ai-chat-toggle .ai-chat-icon {
    font-size: 24px;
    line-height: 1;
}

.ai-chat-toggle .ai-chat-label {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.ai-chat-toggle.ai-chat-active {
    background: var(--color-dark, #3A4D3A);
}

/* ===== پنجره چت ===== */
.ai-chat-box {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 99998;
    width: 380px;
    max-height: 550px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(122, 139, 110, 0.15);
}

.ai-chat-box-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* ===== هدر چت ===== */
.ai-chat-header {
    background: var(--color-primary, #7A8B6E);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-accent, #C4A882);
}

.ai-chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-chat-avatar {
    font-size: 32px;
    background: rgba(255, 255, 255, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-header-info h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

.ai-chat-header-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin: 0;
}

.ai-chat-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* ===== پیام‌ها ===== */
.ai-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px 18px;
    background: var(--color-bg-main, #F9FBF7);
    min-height: 200px;
    max-height: 350px;
}

.ai-chat-messages::-webkit-scrollbar {
    width: 4px;
}

.ai-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
    background: var(--color-secondary, #9CAF88);
    border-radius: 10px;
}

/* ===== پیام‌های فردی ===== */
.ai-chat-message {
    display: flex;
    margin-bottom: 12px;
    animation: aiChatFadeIn 0.3s ease;
}

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

.ai-chat-message-user {
    justify-content: flex-end;
}

.ai-chat-message-bot {
    justify-content: flex-start;
}

.ai-chat-message-content {
    max-width: 82%;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
}

.ai-chat-message-user .ai-chat-message-content {
    background: var(--color-primary, #7A8B6E);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.ai-chat-message-bot .ai-chat-message-content {
    background: #FFFFFF;
    color: var(--text-dark, #3D3D3D);
    border: 1px solid rgba(122, 139, 110, 0.15);
    border-bottom-left-radius: 4px;
}

/* ===== بخش تایپ ===== */
.ai-chat-input-area {
    display: flex;
    gap: 10px;
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(122, 139, 110, 0.12);
    background: #fff;
}

.ai-chat-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(122, 139, 110, 0.25);
    border-radius: 30px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    background: var(--color-bg-main, #F9FBF7);
    color: var(--text-dark, #3D3D3D);
    font-family: inherit;
}

.ai-chat-input:focus {
    border-color: var(--color-primary, #7A8B6E);
    box-shadow: 0 0 0 3px rgba(122, 139, 110, 0.15);
}

.ai-chat-send-btn {
    background: var(--color-primary, #7A8B6E);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-send-btn:hover {
    background: var(--color-dark, #3A4D3A);
    transform: scale(1.05);
}

/* ===== وضعیت تایپ (سه نقطه) ===== */
.ai-chat-typing {
    display: none;
    padding: 4px 18px 12px;
    gap: 5px;
    align-items: center;
}

.ai-chat-typing-active {
    display: flex;
}

.ai-chat-typing span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-secondary, #9CAF88);
    border-radius: 50%;
    animation: aiChatTyping 1.4s infinite both;
}

.ai-chat-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-chat-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes aiChatTyping {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== واکنش‌گرایی ===== */
@media (max-width: 576px) {
    .ai-chat-toggle {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        gap: 8px;
    }
    .ai-chat-toggle .ai-chat-label {
        font-size: 13px;
    }
    .ai-chat-toggle .ai-chat-icon {
        font-size: 20px;
    }
    .ai-chat-box {
        bottom: 80px;
        right: 12px;
        left: 12px;
        width: auto;
        max-height: 450px;
        border-radius: 16px;
    }
    .ai-chat-messages {
        max-height: 250px;
        min-height: 150px;
    }
    .ai-chat-message-content {
        font-size: 13px;
        padding: 8px 14px;
    }
    .ai-chat-header-info h3 {
        font-size: 14px;
    }
} 
/* ============================================================
   بخش معرفی دستیار هوشمند دیبا
   ============================================================ */

.ai-intro-section {
    padding: 80px 0;
    background: var(--color-bg-main, #F9FBF7);
    position: relative;
    overflow: hidden;
}

.ai-intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(122, 139, 110, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ai-intro-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* ===== محتوای متنی ===== */
.ai-intro-content {
    flex: 1;
}

.ai-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(122, 139, 110, 0.12);
    padding: 6px 16px 6px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.ai-badge-icon {
    font-size: 18px;
}

.ai-badge-text {
    color: var(--color-primary, #7A8B6E);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ai-intro-title {
    font-size: 38px;
    font-weight: 300;
    color: var(--color-dark, #3A4D3A);
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.ai-intro-title .ai-highlight {
    display: block;
    color: var(--color-primary, #7A8B6E);
    font-weight: 500;
    font-size: 32px;
}

.ai-intro-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark, #3D3D3D);
    margin-bottom: 25px;
    max-width: 550px;
}

.ai-intro-desc strong {
    color: var(--color-primary, #7A8B6E);
    font-weight: 600;
}

/* ===== لیست ویژگی‌ها ===== */
.ai-intro-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
}

.ai-intro-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ai-feature-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ai-intro-features li strong {
    display: block;
    color: var(--color-dark, #3A4D3A);
    font-size: 15px;
    font-weight: 600;
}

.ai-intro-features li p {
    margin: 0;
    color: var(--text-light, #99A1AF);
    font-size: 13px;
    line-height: 1.5;
}

/* ===== دکمه و وضعیت ===== */
.ai-intro-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-ai-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary, #7A8B6E);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-ai-trigger:hover {
    background: var(--color-dark, #3A4D3A);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 77, 58, 0.25);
    color: #fff;
}

.btn-ai-trigger i {
    transition: transform 0.3s;
}

.btn-ai-trigger:hover i {
    transform: translateX(-4px);
}

.ai-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light, #99A1AF);
}

.ai-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    animation: aiPulse 1.5s ease-in-out infinite;
}

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

/* ===== بخش تصویری ===== */
.ai-intro-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== کره‌های پس‌زمینه ===== */
.ai-orb-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ai-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.ai-orb-1 {
    width: 300px;
    height: 300px;
    background: var(--color-primary, #7A8B6E);
    top: 10%;
    left: 5%;
    animation: aiOrbFloat 6s ease-in-out infinite;
}

.ai-orb-2 {
    width: 200px;
    height: 200px;
    background: var(--color-accent, #C4A882);
    bottom: 5%;
    right: 5%;
    animation: aiOrbFloat 8s ease-in-out infinite reverse;
}

.ai-orb-3 {
    width: 150px;
    height: 150px;
    background: var(--color-secondary, #9CAF88);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: aiOrbFloat 10s ease-in-out infinite 2s;
}

@keyframes aiOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -15px) scale(1.05); }
    66% { transform: translate(-10px, 10px) scale(0.95); }
}

/* ===== محتوای بصری ===== */
.ai-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ai-visual-emoji {
    font-size: 72px;
    display: block;
    margin-bottom: 10px;
    animation: aiEmojiBounce 3s ease-in-out infinite;
}

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

.ai-visual-chat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ai-chat-bubble {
    background: var(--color-white, #FFFFFF);
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    font-size: 13px;
    color: var(--text-dark, #3D3D3D);
    max-width: 85%;
    opacity: 0;
    animation: aiBubbleIn 0.5s ease forwards;
}

.ai-chat-bubble span {
    display: block;
}

.ai-bubble-1 {
    animation-delay: 0.3s;
    border-bottom-left-radius: 4px;
    background: var(--color-primary, #7A8B6E);
    color: #fff;
}

.ai-bubble-2 {
    animation-delay: 1.2s;
    border-bottom-right-radius: 4px;
    background: var(--color-white, #FFFFFF);
    border: 1px solid rgba(122, 139, 110, 0.15);
}

.ai-bubble-3 {
    animation-delay: 2.1s;
    border-bottom-left-radius: 4px;
    background: var(--color-secondary, #9CAF88);
    color: #fff;
}

@keyframes aiBubbleIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== آمار ===== */
.ai-visual-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.ai-stat {
    text-align: center;
    background: var(--color-white, #FFFFFF);
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    min-width: 60px;
}

.ai-stat-number {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary, #7A8B6E);
}

.ai-stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-light, #99A1AF);
    margin-top: 2px;
}

/* ===== واکنش‌گرایی ===== */
@media (max-width: 992px) {
    .ai-intro-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .ai-intro-content {
        text-align: center;
    }
    .ai-intro-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .ai-intro-features {
        grid-template-columns: 1fr 1fr;
        text-align: right;
    }
    .ai-intro-actions {
        justify-content: center;
    }
    .ai-visual-wrapper {
        max-width: 340px;
    }
}

@media (max-width: 576px) {
    .ai-intro-section {
        padding: 50px 0;
    }
    .ai-intro-title {
        font-size: 28px;
    }
    .ai-intro-title .ai-highlight {
        font-size: 24px;
    }
    .ai-intro-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ai-intro-features li {
        gap: 10px;
    }
    .ai-visual-wrapper {
        max-width: 280px;
    }
    .ai-visual-emoji {
        font-size: 52px;
    }
    .ai-chat-bubble {
        font-size: 12px;
        padding: 6px 14px;
    }
    .ai-visual-stats {
        gap: 10px;
        flex-wrap: wrap;
    }
    .ai-stat {
        padding: 8px 14px;
        min-width: 50px;
    }
    .ai-stat-number {
        font-size: 16px;
    }
    .btn-ai-trigger {
        font-size: 14px;
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }
    .ai-intro-actions {
        flex-direction: column;
        width: 100%;
    }
} 
/* ============================================================
   ریسپانسیو چت‌بات برای موبایل و تبلت
   ============================================================ */

/* ===== تبلت (۷۶۸px تا ۱۰۲۴px) ===== */
@media (max-width: 1024px) {
    .ai-chat-box {
        width: 340px;
        max-height: 500px;
        right: 20px;
        bottom: 90px;
    }
    .ai-chat-messages {
        max-height: 300px;
        min-height: 180px;
    }
    .ai-chat-toggle {
        padding: 12px 18px;
        gap: 10px;
    }
    .ai-chat-toggle .ai-chat-label {
        font-size: 14px;
    }
}

/* ===== موبایل بزرگ (۴۸۰px تا ۷۶۷px) ===== */
@media (max-width: 767px) {
    /* دکمه شناور */
    .ai-chat-toggle {
        bottom: 20px;
        right: 16px;
        padding: 12px 16px;
        gap: 8px;
        border-radius: 40px;
        box-shadow: 0 4px 16px rgba(58, 77, 58, 0.20);
    }
    .ai-chat-toggle .ai-chat-icon {
        font-size: 20px;
    }
    .ai-chat-toggle .ai-chat-label {
        font-size: 13px;
    }

    /* پنجره چت */
    .ai-chat-box {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 85vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.12);
        border: none;
    }
    .ai-chat-box-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    /* هدر چت */
    .ai-chat-header {
        padding: 14px 16px;
        border-radius: 20px 20px 0 0;
    }
    .ai-chat-header-info h3 {
        font-size: 15px;
    }
    .ai-chat-header-info p {
        font-size: 11px;
    }
    .ai-chat-avatar {
        font-size: 28px;
        width: 38px;
        height: 38px;
    }
    .ai-chat-close {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    /* پیام‌ها */
    .ai-chat-messages {
        max-height: 55vh;
        min-height: 150px;
        padding: 12px 14px;
    }
    .ai-chat-message-content {
        font-size: 13px;
        padding: 8px 14px;
        max-width: 88%;
    }

    /* ورودی */
    .ai-chat-input-area {
        padding: 10px 14px 14px;
        gap: 8px;
    }
    .ai-chat-input {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 25px;
    }
    .ai-chat-send-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* وضعیت تایپ */
    .ai-chat-typing {
        padding: 2px 14px 8px;
    }
    .ai-chat-typing span {
        width: 7px;
        height: 7px;
    }
}

/* ===== موبایل خیلی کوچک (کمتر از ۴۸۰px) ===== */
@media (max-width: 480px) {
    .ai-chat-toggle {
        bottom: 16px;
        right: 12px;
        padding: 10px 14px;
        gap: 6px;
    }
    .ai-chat-toggle .ai-chat-icon {
        font-size: 18px;
    }
    .ai-chat-toggle .ai-chat-label {
        font-size: 12px;
    }

    .ai-chat-box {
        max-height: 80vh;
    }

    .ai-chat-messages {
        max-height: 45vh;
        min-height: 120px;
        padding: 10px 12px;
    }
    .ai-chat-message-content {
        font-size: 12px;
        padding: 6px 12px;
        max-width: 92%;
    }

    .ai-chat-header {
        padding: 12px 14px;
    }
    .ai-chat-header-info h3 {
        font-size: 14px;
    }
    .ai-chat-avatar {
        font-size: 24px;
        width: 34px;
        height: 34px;
    }

    .ai-chat-input {
        font-size: 12px;
        padding: 6px 12px;
    }
    .ai-chat-send-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .ai-chat-typing span {
        width: 6px;
        height: 6px;
    }
}

/* ===== هنگام باز بودن چت در موبایل، اسکرول بدنه قفل شود ===== */
body.ai-chat-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
} 
/* ============================================================
   بخش معرفی دستیار هوشمند دیبا - نسخه موبایل
   ============================================================ */

.ai-intro-section {
    padding: 60px 0;
    background: var(--color-bg-main, #F9FBF7);
    position: relative;
    overflow: hidden;
}

/* ===== محتوای اصلی ===== */
.ai-intro-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* ===== سمت چپ: محتوای متنی ===== */
.ai-intro-content {
    flex: 1.2;
}

.ai-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(122, 139, 110, 0.12);
    padding: 5px 14px 5px 10px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.ai-badge-icon {
    font-size: 16px;
}

.ai-badge-text {
    color: var(--color-primary, #7A8B6E);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ai-intro-title {
    font-size: 34px;
    font-weight: 300;
    color: var(--color-dark, #3A4D3A);
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.ai-intro-title .ai-highlight {
    display: block;
    color: var(--color-primary, #7A8B6E);
    font-weight: 500;
    font-size: 28px;
    margin-top: 2px;
}

.ai-intro-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark, #3D3D3D);
    margin-bottom: 22px;
    max-width: 520px;
}

.ai-intro-desc strong {
    color: var(--color-primary, #7A8B6E);
    font-weight: 600;
}

/* ===== لیست ویژگی‌ها ===== */
.ai-intro-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 25px;
}

.ai-intro-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ai-feature-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ai-intro-features li strong {
    display: block;
    color: var(--color-dark, #3A4D3A);
    font-size: 14px;
    font-weight: 600;
}

.ai-intro-features li p {
    margin: 0;
    color: var(--text-light, #99A1AF);
    font-size: 12px;
    line-height: 1.5;
}

/* ===== دکمه و وضعیت ===== */
.ai-intro-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-ai-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary, #7A8B6E);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-ai-trigger:hover {
    background: var(--color-dark, #3A4D3A);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 77, 58, 0.25);
    color: #fff;
}

.ai-availability {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light, #99A1AF);
}

.ai-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: aiPulse 1.5s ease-in-out infinite;
}

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

/* ===== سمت راست: بخش تصویری ===== */
.ai-intro-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== کره‌های پس‌زمینه ===== */
.ai-orb-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ai-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.ai-orb-1 {
    width: 250px;
    height: 250px;
    background: var(--color-primary, #7A8B6E);
    top: 15%;
    left: 5%;
    animation: aiOrbFloat 6s ease-in-out infinite;
}

.ai-orb-2 {
    width: 180px;
    height: 180px;
    background: var(--color-accent, #C4A882);
    bottom: 10%;
    right: 5%;
    animation: aiOrbFloat 8s ease-in-out infinite reverse;
}

.ai-orb-3 {
    width: 120px;
    height: 120px;
    background: var(--color-secondary, #9CAF88);
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: aiOrbFloat 10s ease-in-out infinite 2s;
}

@keyframes aiOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(12px, -12px) scale(1.05); }
    66% { transform: translate(-8px, 8px) scale(0.95); }
}

/* ===== محتوای بصری ===== */
.ai-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ai-visual-emoji {
    font-size: 60px;
    display: block;
    margin-bottom: 8px;
    animation: aiEmojiBounce 3s ease-in-out infinite;
}

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

.ai-visual-chat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.ai-chat-bubble {
    background: var(--color-white, #FFFFFF);
    padding: 6px 16px;
    border-radius: 18px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    font-size: 12px;
    color: var(--text-dark, #3D3D3D);
    max-width: 85%;
    opacity: 0;
    animation: aiBubbleIn 0.5s ease forwards;
}

.ai-chat-bubble span {
    display: block;
}

.ai-bubble-1 {
    animation-delay: 0.3s;
    border-bottom-left-radius: 4px;
    background: var(--color-primary, #7A8B6E);
    color: #fff;
}

.ai-bubble-2 {
    animation-delay: 1.2s;
    border-bottom-right-radius: 4px;
    background: var(--color-white, #FFFFFF);
    border: 1px solid rgba(122, 139, 110, 0.12);
}

.ai-bubble-3 {
    animation-delay: 2.1s;
    border-bottom-left-radius: 4px;
    background: var(--color-secondary, #9CAF88);
    color: #fff;
}

@keyframes aiBubbleIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== آمار ===== */
.ai-visual-stats {
    display: flex;
    gap: 15px;
    margin-top: 16px;
    justify-content: center;
}

.ai-stat {
    text-align: center;
    background: var(--color-white, #FFFFFF);
    padding: 8px 14px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    min-width: 55px;
}

.ai-stat-number {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary, #7A8B6E);
}

.ai-stat-label {
    display: block;
    font-size: 10px;
    color: var(--text-light, #99A1AF);
    margin-top: 2px;
}

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

/* ===== تبلت (۷۶۸px تا ۱۰۲۴px) ===== */
@media (max-width: 1024px) {
    .ai-intro-wrapper {
        gap: 30px;
    }
    .ai-intro-title {
        font-size: 30px;
    }
    .ai-intro-title .ai-highlight {
        font-size: 24px;
    }
    .ai-visual-wrapper {
        max-width: 320px;
    }
    .ai-orb-1 { width: 200px; height: 200px; }
    .ai-orb-2 { width: 150px; height: 150px; }
    .ai-orb-3 { width: 100px; height: 100px; }
}

/* ===== موبایل بزرگ (۴۸۰px تا ۷۶۷px) ===== */
@media (max-width: 767px) {
    .ai-intro-section {
        padding: 40px 0;
    }

    .ai-intro-wrapper {
        flex-direction: column;
        gap: 25px;
    }

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

    .ai-intro-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .ai-intro-title {
        font-size: 26px;
    }
    .ai-intro-title .ai-highlight {
        font-size: 20px;
    }

    .ai-intro-desc {
        font-size: 14px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 5px;
    }

    .ai-intro-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
        text-align: right;
        padding: 0 5px;
    }

    .ai-intro-features li {
        gap: 8px;
        align-items: flex-start;
    }

    .ai-feature-icon {
        font-size: 18px;
        margin-top: 1px;
    }

    .ai-intro-features li strong {
        font-size: 13px;
    }

    .ai-intro-features li p {
        font-size: 11px;
    }

    .ai-intro-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-ai-trigger {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .ai-availability {
        font-size: 12px;
    }

    /* ===== بخش تصویری ===== */
    .ai-intro-visual {
        width: 100%;
    }

    .ai-visual-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .ai-orb-1 { width: 180px; height: 180px; }
    .ai-orb-2 { width: 130px; height: 130px; }
    .ai-orb-3 { width: 90px; height: 90px; }

    .ai-visual-emoji {
        font-size: 48px;
    }

    .ai-chat-bubble {
        font-size: 11px;
        padding: 5px 14px;
        max-width: 90%;
    }

    .ai-visual-stats {
        gap: 10px;
        margin-top: 12px;
        flex-wrap: wrap;
    }

    .ai-stat {
        padding: 6px 12px;
        min-width: 45px;
    }

    .ai-stat-number {
        font-size: 15px;
    }

    .ai-stat-label {
        font-size: 9px;
    }
}

/* ===== موبایل خیلی کوچک (کمتر از ۴۸۰px) ===== */
@media (max-width: 480px) {
    .ai-intro-section {
        padding: 30px 0;
    }

    .ai-intro-title {
        font-size: 22px;
    }
    .ai-intro-title .ai-highlight {
        font-size: 18px;
    }

    .ai-intro-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .ai-intro-features {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: right;
    }

    .ai-intro-features li {
        gap: 8px;
        align-items: flex-start;
    }

    .ai-feature-icon {
        font-size: 16px;
    }

    .ai-intro-features li strong {
        font-size: 13px;
    }

    .ai-intro-features li p {
        font-size: 11px;
    }

    .btn-ai-trigger {
        font-size: 13px;
        padding: 10px 16px;
    }

    .ai-visual-wrapper {
        max-width: 220px;
    }

    .ai-orb-1 { width: 140px; height: 140px; }
    .ai-orb-2 { width: 100px; height: 100px; }
    .ai-orb-3 { width: 70px; height: 70px; }

    .ai-visual-emoji {
        font-size: 40px;
    }

    .ai-chat-bubble {
        font-size: 10px;
        padding: 4px 12px;
        max-width: 95%;
    }

    .ai-visual-stats {
        gap: 8px;
    }

    .ai-stat {
        padding: 5px 10px;
        min-width: 40px;
    }

    .ai-stat-number {
        font-size: 14px;
    }

    .ai-stat-label {
        font-size: 9px;
    }
}
/* ============================================================
   بخش معرفی دستیار هوشمند دیبا - طراحی موبایل-فیرست
   ============================================================ */

/* ===== تنظیمات پایه ===== */
.ai-intro-section {
    padding: 40px 0 50px;
    background: var(--color-bg-main, #F9FBF7);
    overflow: hidden;
}

.ai-intro-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ===== محتوای متنی (بالا در موبایل) ===== */
.ai-intro-content {
    text-align: center;
    order: 1;
}

.ai-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(122, 139, 110, 0.12);
    padding: 4px 12px 4px 10px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.ai-badge-icon {
    font-size: 14px;
}

.ai-badge-text {
    color: var(--color-primary, #7A8B6E);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.ai-intro-title {
    font-size: 22px;
    font-weight: 300;
    color: var(--color-dark, #3A4D3A);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.ai-intro-title .ai-highlight {
    display: block;
    color: var(--color-primary, #7A8B6E);
    font-weight: 500;
    font-size: 18px;
    margin-top: 2px;
}

.ai-intro-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-dark, #3D3D3D);
    margin: 8px 0 18px;
    padding: 0 5px;
}

.ai-intro-desc strong {
    color: var(--color-primary, #7A8B6E);
    font-weight: 600;
}

/* ===== لیست ویژگی‌ها ===== */
.ai-intro-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    text-align: right;
}

.ai-intro-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: var(--color-white, #FFFFFF);
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ai-feature-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.ai-intro-features li strong {
    display: block;
    color: var(--color-dark, #3A4D3A);
    font-size: 12px;
    font-weight: 600;
}

.ai-intro-features li p {
    margin: 0;
    color: var(--text-light, #99A1AF);
    font-size: 10px;
    line-height: 1.4;
}

/* ===== دکمه و وضعیت ===== */
.ai-intro-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.btn-ai-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-primary, #7A8B6E);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-ai-trigger:hover {
    background: var(--color-dark, #3A4D3A);
    color: #fff;
}

.ai-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light, #99A1AF);
}

.ai-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: aiPulse 1.5s ease-in-out infinite;
}

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

/* ===== بخش تصویری (پایین در موبایل) ===== */
.ai-intro-visual {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.ai-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== کره‌های پس‌زمینه ===== */
.ai-orb-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ai-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.10;
}

.ai-orb-1 {
    width: 160px;
    height: 160px;
    background: var(--color-primary, #7A8B6E);
    top: 20%;
    left: 5%;
    animation: aiOrbFloat 6s ease-in-out infinite;
}

.ai-orb-2 {
    width: 120px;
    height: 120px;
    background: var(--color-accent, #C4A882);
    bottom: 15%;
    right: 5%;
    animation: aiOrbFloat 8s ease-in-out infinite reverse;
}

.ai-orb-3 {
    width: 80px;
    height: 80px;
    background: var(--color-secondary, #9CAF88);
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: aiOrbFloat 10s ease-in-out infinite 2s;
}

@keyframes aiOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10px, -10px) scale(1.05); }
    66% { transform: translate(-6px, 6px) scale(0.95); }
}

/* ===== محتوای بصری ===== */
.ai-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ai-visual-emoji {
    font-size: 44px;
    display: block;
    margin-bottom: 6px;
    animation: aiEmojiBounce 3s ease-in-out infinite;
}

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

.ai-visual-chat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ai-chat-bubble {
    background: var(--color-white, #FFFFFF);
    padding: 5px 12px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 10px;
    color: var(--text-dark, #3D3D3D);
    max-width: 90%;
    opacity: 0;
    animation: aiBubbleIn 0.5s ease forwards;
}

.ai-chat-bubble span {
    display: block;
}

.ai-bubble-1 {
    animation-delay: 0.3s;
    border-bottom-left-radius: 3px;
    background: var(--color-primary, #7A8B6E);
    color: #fff;
}

.ai-bubble-2 {
    animation-delay: 1.2s;
    border-bottom-right-radius: 3px;
    background: var(--color-white, #FFFFFF);
    border: 1px solid rgba(122, 139, 110, 0.10);
}

.ai-bubble-3 {
    animation-delay: 2.1s;
    border-bottom-left-radius: 3px;
    background: var(--color-secondary, #9CAF88);
    color: #fff;
}

@keyframes aiBubbleIn {
    from {
        opacity: 0;
        transform: translateY(6px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== آمار ===== */
.ai-visual-stats {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.ai-stat {
    text-align: center;
    background: var(--color-white, #FFFFFF);
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-width: 45px;
}

.ai-stat-number {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary, #7A8B6E);
}

.ai-stat-label {
    display: block;
    font-size: 9px;
    color: var(--text-light, #99A1AF);
    margin-top: 1px;
}

/* ============================================================
   بهبود برای تبلت و دسکتاپ
   ============================================================ */

/* ===== تبلت (بزرگتر از 768px) ===== */
@media (min-width: 768px) {
    .ai-intro-section {
        padding: 50px 0 60px;
    }

    .ai-intro-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 35px;
    }

    .ai-intro-content {
        text-align: right;
        flex: 1.2;
        order: 1;
    }

    .ai-intro-badge {
        margin-bottom: 14px;
    }

    .ai-intro-title {
        font-size: 30px;
    }
    .ai-intro-title .ai-highlight {
        font-size: 24px;
    }

    .ai-intro-desc {
        font-size: 14px;
        padding: 0;
    }

    .ai-intro-features {
        gap: 12px 20px;
    }

    .ai-intro-features li {
        padding: 10px 14px;
    }

    .ai-intro-features li strong {
        font-size: 13px;
    }
    .ai-intro-features li p {
        font-size: 11px;
    }

    .ai-intro-actions {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .btn-ai-trigger {
        width: auto;
        padding: 12px 24px;
        font-size: 14px;
    }

    .ai-availability {
        font-size: 13px;
    }

    .ai-intro-visual {
        flex: 1;
        order: 2;
    }

    .ai-visual-wrapper {
        max-width: 320px;
    }

    .ai-orb-1 { width: 200px; height: 200px; }
    .ai-orb-2 { width: 150px; height: 150px; }
    .ai-orb-3 { width: 100px; height: 100px; }

    .ai-visual-emoji {
        font-size: 52px;
    }

    .ai-chat-bubble {
        font-size: 11px;
        padding: 6px 14px;
    }

    .ai-stat {
        padding: 8px 14px;
        min-width: 50px;
    }
    .ai-stat-number {
        font-size: 16px;
    }
    .ai-stat-label {
        font-size: 10px;
    }
}

/* ===== دسکتاپ (بزرگتر از 1024px) ===== */
@media (min-width: 1024px) {
    .ai-intro-section {
        padding: 60px 0 70px;
    }

    .ai-intro-wrapper {
        gap: 50px;
    }

    .ai-intro-title {
        font-size: 36px;
    }
    .ai-intro-title .ai-highlight {
        font-size: 28px;
    }

    .ai-intro-desc {
        font-size: 15px;
        max-width: 520px;
    }

    .ai-intro-features {
        gap: 14px 25px;
    }

    .ai-intro-features li strong {
        font-size: 14px;
    }
    .ai-intro-features li p {
        font-size: 12px;
    }

    .ai-visual-wrapper {
        max-width: 380px;
    }

    .ai-orb-1 { width: 250px; height: 250px; }
    .ai-orb-2 { width: 180px; height: 180px; }
    .ai-orb-3 { width: 120px; height: 120px; }

    .ai-visual-emoji {
        font-size: 60px;
    }

    .ai-chat-bubble {
        font-size: 12px;
        padding: 8px 16px;
    }

    .ai-stat {
        padding: 10px 18px;
        min-width: 60px;
    }
    .ai-stat-number {
        font-size: 18px;
    }
    .ai-stat-label {
        font-size: 11px;
    }
} 
/* ============================================================
   صفحه پزشکان - استایل اختصاصی
   ============================================================ */

/* ===== هدر ===== */
.page-doctors .doctors-hero {
    background: linear-gradient(135deg, var(--color-dark, #3A4D3A), var(--color-primary, #7A8B6E));
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-doctors .doctors-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.page-doctors .doctors-hero-content {
    position: relative;
    z-index: 2;
}

.page-doctors .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.page-doctors .hero-title {
    font-size: 42px;
    font-weight: 300;
    margin: 0 0 10px;
    letter-spacing: 1px;
}

.page-doctors .hero-desc {
    font-size: 17px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.page-doctors .hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.page-doctors .hero-stat {
    text-align: center;
}

.page-doctors .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: var(--color-accent, #C4A882);
}

.page-doctors .stat-label {
    font-size: 13px;
    opacity: 0.7;
}

/* ===== بخش اصلی ===== */
.page-doctors .doctors-main {
    padding: 70px 0;
    background: var(--color-bg-main, #F9FBF7);
}

/* ===== کارت پزشکان ===== */
.page-doctors .doctor-card {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.page-doctors .doctor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary, #7A8B6E), var(--color-accent, #C4A882));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-doctors .doctor-card:hover::before {
    opacity: 1;
}

.page-doctors .doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(58,77,58,0.08);
}

.page-doctors .doctor-card-reverse {
    flex-direction: row-reverse;
}

/* ===== تصویر ===== */
.page-doctors .doctor-card-image {
    flex: 0 0 260px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.page-doctors .doctor-card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page-doctors .doctor-card:hover .doctor-card-image img {
    transform: scale(1.03);
}

/* ===== شبکه‌های اجتماعی ===== */
.page-doctors .doctor-card-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 14px;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.page-doctors .doctor-card:hover .doctor-card-social {
    opacity: 1;
    transform: translateY(0);
}

.page-doctors .doctor-card-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-doctors .doctor-card-social a:hover {
    background: var(--color-accent, #C4A882);
    transform: translateY(-2px);
}

/* ===== نشان سابقه ===== */
.page-doctors .doctor-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-accent, #C4A882);
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    text-align: center;
    line-height: 1.3;
}

.page-doctors .doctor-card-badge span:first-child {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

/* ===== محتوا ===== */
.page-doctors .doctor-card-content {
    flex: 1;
}

.page-doctors .doctor-card-content h3 {
    font-size: 26px;
    font-weight: 400;
    color: var(--color-dark, #3A4D3A);
    margin: 0 0 2px;
}

.page-doctors .doctor-specialty {
    display: inline-block;
    color: var(--color-accent, #C4A882);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 12px;
}

.page-doctors .doctor-description {
    color: var(--text-dark, #3D3D3D);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===== جزئیات ===== */
.page-doctors .doctor-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.page-doctors .doctor-detail h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark, #3A4D3A);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-doctors .doctor-detail h4 i {
    color: var(--color-primary, #7A8B6E);
    font-size: 14px;
}

.page-doctors .doctor-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-doctors .doctor-detail ul li {
    color: var(--text-light, #99A1AF);
    font-size: 13px;
    padding: 2px 0;
    line-height: 1.5;
}

.page-doctors .doctor-detail ul li strong {
    color: var(--color-dark, #3A4D3A);
}

/* ===== دکمه‌ها ===== */
.page-doctors .doctor-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.page-doctors .btn-outline-small {
    border: 1px solid var(--color-primary, #7A8B6E);
    color: var(--color-primary, #7A8B6E);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.page-doctors .btn-outline-small:hover {
    background: var(--color-primary, #7A8B6E);
    color: #fff;
}

.page-doctors .btn-primary.btn-small {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 30px;
    background: var(--color-primary, #7A8B6E);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.page-doctors .btn-primary.btn-small:hover {
    background: var(--color-dark, #3A4D3A);
    transform: translateY(-2px);
}

/* ===== بخش کادر پشتیبانی ===== */
.page-doctors .staff-section {
    padding: 60px 0;
    background: #fff;
}

.page-doctors .staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.page-doctors .staff-card {
    background: var(--color-bg-main, #F9FBF7);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.page-doctors .staff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(58,77,58,0.06);
}

.page-doctors .staff-card-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 3px solid var(--color-secondary, #9CAF88);
}

.page-doctors .staff-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-doctors .staff-card h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-dark, #3A4D3A);
    margin: 0 0 4px;
}

.page-doctors .staff-role {
    color: var(--text-light, #99A1AF);
    font-size: 13px;
    margin: 0 0 12px;
}

.page-doctors .staff-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.page-doctors .staff-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(122,139,110,0.08);
    color: var(--color-primary, #7A8B6E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-doctors .staff-social a:hover {
    background: var(--color-primary, #7A8B6E);
    color: #fff;
}

/* ===== بخش مشاوره (CTA) ===== */
.page-doctors .consultation-section {
    padding: 60px 0;
    background: var(--color-bg-secondary, #F3F4F6);
}

.page-doctors .consultation-box {
    background: linear-gradient(135deg, var(--color-dark, #3A4D3A), var(--color-primary, #7A8B6E));
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.page-doctors .consultation-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 10px;
}

.page-doctors .consultation-content h2 {
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 8px;
}

.page-doctors .consultation-content p {
    opacity: 0.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.page-doctors .consultation-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-doctors .btn-white {
    background: #fff;
    color: var(--color-dark, #3A4D3A);
}

.page-doctors .btn-white:hover {
    background: var(--color-bg-secondary, #F3F4F6);
    color: var(--color-dark, #3A4D3A);
}

.page-doctors .btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.page-doctors .btn-outline-white:hover {
    background: #fff;
    color: var(--color-dark, #3A4D3A);
}

/* ===== بخش هدر مشترک ===== */
.page-doctors .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-doctors .section-tag {
    color: var(--color-accent, #C4A882);
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}

.page-doctors .section-header h2 {
    font-size: 30px;
    font-weight: 300;
    color: var(--color-dark, #3A4D3A);
    margin: 6px 0;
}

.page-doctors .section-header p {
    color: var(--text-light, #99A1AF);
}

/* ===== واکنش‌گرایی ===== */
@media (max-width: 992px) {
    .page-doctors .doctor-card {
        flex-direction: column;
        padding: 20px;
    }
    .page-doctors .doctor-card-reverse {
        flex-direction: column;
    }
    .page-doctors .doctor-card-image {
        flex: 0 0 auto;
    }
    .page-doctors .doctor-card-image img {
        height: 250px;
    }
    .page-doctors .doctor-details-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-doctors .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .page-doctors .hero-title {
        font-size: 28px;
    }
    .page-doctors .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .page-doctors .stat-number {
        font-size: 22px;
    }
    .page-doctors .doctor-details-grid {
        grid-template-columns: 1fr;
    }
    .page-doctors .staff-grid {
        grid-template-columns: 1fr;
    }
    .page-doctors .consultation-content h2 {
        font-size: 22px;
    }
    .page-doctors .consultation-actions {
        flex-direction: column;
        align-items: center;
    }
    .page-doctors .consultation-actions a {
        width: 100%;
        justify-content: center;
    }
    .page-doctors .doctor-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .page-doctors .doctor-actions a {
        justify-content: center;
    }
    .page-doctors .doctor-card-social a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}
/* ============================================================
   بخش ویژه دکتر سیما (صفحه اصلی)
   ============================================================ */
.doctor-feature-section {
    padding: 70px 0;
    background: var(--color-bg-main, #F9FBF7);
    position: relative;
}

.doctor-feature-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 4px 30px rgba(58, 77, 58, 0.06);
    transition: all 0.4s ease;
}

.doctor-feature-wrapper:hover {
    box-shadow: 0 8px 40px rgba(58, 77, 58, 0.10);
}

/* ===== تصویر ===== */
.doctor-feature-image {
    flex: 0 0 280px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.doctor-feature-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.doctor-feature-wrapper:hover .doctor-feature-image img {
    transform: scale(1.02);
}

.doctor-feature-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--color-primary, #7A8B6E);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== محتوا ===== */
.doctor-feature-content {
    flex: 1;
}

.doctor-feature-tag {
    display: inline-block;
    background: rgba(122, 139, 110, 0.10);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--color-primary, #7A8B6E);
    margin-bottom: 10px;
}

.doctor-feature-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--color-dark, #3A4D3A);
    margin: 0 0 2px;
}

.doctor-feature-specialty {
    color: var(--color-accent, #C4A882);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 14px;
}

.doctor-feature-desc {
    color: var(--text-dark, #3D3D3D);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===== آمار ===== */
.doctor-feature-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 22px;
}

.df-stat {
    text-align: center;
}

.df-stat .df-number {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary, #7A8B6E);
}

.df-stat .df-label {
    font-size: 12px;
    color: var(--text-light, #99A1AF);
}

/* ===== دکمه‌ها ===== */
.doctor-feature-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.25);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.35);
    color: #fff;
}

.btn-instagram i {
    font-size: 18px;
}

/* ===== واکنش‌گرایی ===== */
@media (max-width: 992px) {
    .doctor-feature-wrapper {
        flex-direction: column;
        padding: 25px;
        text-align: center;
    }
    .doctor-feature-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 280px;
    }
    .doctor-feature-image img {
        height: 280px;
    }
    .doctor-feature-stats {
        justify-content: center;
    }
    .doctor-feature-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .doctor-feature-section {
        padding: 40px 0;
    }
    .doctor-feature-wrapper {
        padding: 16px;
        border-radius: 16px;
    }
    .doctor-feature-content h2 {
        font-size: 24px;
    }
    .doctor-feature-image {
        max-width: 200px;
    }
    .doctor-feature-image img {
        height: 220px;
    }
    .doctor-feature-stats {
        gap: 15px;
        flex-wrap: wrap;
    }
    .doctor-feature-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .btn-instagram,
    .doctor-feature-actions .btn-outline-small {
        width: 100%;
        justify-content: center;
    }
}