/* ===== DOCTORS SECTION ===== */
.doctors {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef9f0 0%, #ffffff 100%);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.doctor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.3);
}

.doctor-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

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

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-info {
    padding: 30px;
}

.doctor-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #a73143 0%, #c41e3a 50%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doctor-title {
    color: var(--gray-color);
    font-size: 16px;
    margin-bottom: 20px;
    font-style: italic;
}

.doctor-credentials {
    list-style: none;
    padding: 0;
}

.doctor-credentials li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--gray-color);
    font-size: 14px;
}

.doctor-credentials li:last-child {
    border-bottom: none;
}

.doctor-credentials li:before {
    margin-right: 8px;
}

/* ===== FACILITIES SECTION ===== */
.facilities {
    padding: 80px 0;
    background: white;
}

.facilities-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.facilities-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.facility-card {
    background: linear-gradient(135deg, #fef9f0 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.facility-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.facility-card ul {
    list-style: none;
    padding: 0;
}

.facility-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    color: var(--gray-color);
    font-size: 15px;
}

.facility-card ul li:last-child {
    border-bottom: none;
}

.facility-images {
    margin-top: 60px;
}

.facility-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.facility-image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.facility-image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ===== TESTIMONIALS ENHANCEMENTS ===== */
.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    text-align: center;
}

.stat-item {
    background: linear-gradient(135deg, #fef9f0 0%, #ffffff 100%);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
    font-size: 42px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--gray-color);
    font-size: 16px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-header div:nth-child(2) {
    flex: 1;
}

.testimonial-header h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-header span {
    font-size: 14px;
    color: var(--gray-color);
}

.testimonial-service {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--gray-color);
    font-style: italic;
}

.testimonial-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #fef9f0 0%, #ffffff 100%);
    border-radius: 20px;
}

.testimonial-cta p {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.btn-testimonial {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

.btn-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5);
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
    .doctors-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .doctor-image {
        height: 300px;
    }
    
    .facility-image-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item h3 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .testimonial-stats {
        grid-template-columns: 1fr;
    }
}
