/* ==================================================
   SERVICES PAGE - صفحه خدمات دامپزشکی
   ================================================== */

/* پس‌زمینه اصلی */
.services-page {
    background: linear-gradient(180deg, #f8fdf8 0%, #ffffff 100%);
    padding: 40px 0 60px;
    min-height: 60vh;
}

/* بخش معرفی */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.services-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e9;
    color: #4caf50;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-intro h2 {
    font-size: 32px;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 800;
}

.services-intro p {
    color: #666;
    font-size: 16px;
    line-height: 2;
}

/* شبکه خدمات */
.services-grid-lg {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* کارت خدمات */
.service-card-lg {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card-lg:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
}

/* هدر کارت با گرادیانت */
.service-card-lg-header {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    padding: 35px 20px 25px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* افکت دایره‌ای در پس‌زمینه */
.service-card-lg-header::before {
    content: '';
    position: absolute;
    top: -80%;
    right: -30%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

.service-card-lg-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: pulse 6s ease-in-out infinite reverse;
}

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

/* آیکون خدمات */
.service-card-lg-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.service-card-lg:hover .service-card-lg-icon {
    transform: rotate(360deg) scale(1.1);
}

/* عنوان خدمات */
.service-card-lg-header h3 {
    font-size: 22px;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* بدنه کارت */
.service-card-lg-body {
    padding: 25px 25px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-lg-body p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
    min-height: 55px;
}

/* لیست ویژگی‌ها (اختیاری) */
.service-card-lg-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.service-card-lg-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px dashed #eee;
}

.service-card-lg-features li:last-child {
    border-bottom: none;
}

.service-card-lg-features i {
    color: #4caf50;
    font-size: 14px;
}

/* فوتر کارت */
.service-card-lg-footer {
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8fdf8, #e8f5e9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid rgba(76, 175, 80, 0.1);
    gap: 15px;
}

/* قیمت */
.service-card-lg-price {
    color: #2e7d32;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.service-card-lg-price small {
    color: #888;
    font-weight: 500;
    font-size: 11px;
    margin-bottom: 2px;
}

.service-card-lg-price .currency {
    font-size: 12px;
    color: #4caf50;
    font-weight: 600;
    margin-right: 3px;
}

/* دکمه رزرو */
.btn-book {
    padding: 12px 22px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-book:hover {
    background: linear-gradient(135deg, #388e3c, #1b5e20);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    gap: 10px;
}

.btn-book i {
    font-size: 14px;
}

/* ==================================================
   بخش‌های اضافی برای صفحه خدمات
   ================================================== */

/* بنر تماس در انتهای صفحه */
.services-cta-banner {
    margin-top: 50px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-radius: 25px;
    padding: 45px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.25);
}

.services-cta-banner::before {
    content: '\f21a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 200px;
    opacity: 0.1;
    transform: rotate(-20deg);
}

.services-cta-banner h3 {
    font-size: 26px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.services-cta-banner p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.services-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.services-cta-buttons .btn {
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
}

.btn-white-solid {
    background: white;
    color: #2e7d32;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-white-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

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

/* ==================================================
   RESPONSIVE - موبایل
   ================================================== */

@media (max-width: 768px) {
    .services-page {
        padding: 25px 0 40px;
    }
    
    .services-intro {
        margin-bottom: 30px;
    }
    
    .services-intro h2 {
        font-size: 24px;
    }
    
    .services-intro p {
        font-size: 14px;
    }
    
    .services-grid-lg {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-lg-header {
        padding: 30px 20px 20px;
    }
    
    .service-card-lg-icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }
    
    .service-card-lg-header h3 {
        font-size: 20px;
    }
    
    .service-card-lg-body {
        padding: 20px 20px 10px;
    }
    
    .service-card-lg-body p {
        font-size: 13px;
        min-height: auto;
    }
    
    .service-card-lg-footer {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .service-card-lg-price {
        align-items: center;
    }
    
    .btn-book {
        width: 100%;
        justify-content: center;
    }
    
    .services-cta-banner {
        padding: 35px 20px;
        margin-top: 30px;
    }
    
    .services-cta-banner h3 {
        font-size: 20px;
    }
    
    .services-cta-banner p {
        font-size: 14px;
    }
    
    .services-cta-buttons {
        flex-direction: column;
    }
    
    .services-cta-buttons .btn,
    .btn-white-solid,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-intro h2 {
        font-size: 20px;
    }
    
    .service-card-lg {
        border-radius: 15px;
    }
    
    .service-card-lg-header {
        padding: 25px 15px 20px;
    }
    
    .service-card-lg-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}