/* ============================================
   서울비디치과 Doctors Page Styles
   ============================================ */

/* ■ Collaboration Intro */
.collab-intro {
  text-align: center;
  padding: var(--space-12);
  max-width: 900px;
  margin: 0 auto;
}

.collab-icon {
  width: 80px;
  height: 80px;
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000000;
  margin: 0 auto var(--space-6);
}

.collab-intro h2 {
  margin-bottom: var(--space-4);
}

.collab-intro > p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-8);
}

.collab-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
}

@media (max-width: 640px) {
  .collab-stats {
    flex-direction: column;
    gap: var(--space-6);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-2);
}

/* ■ Featured Doctor */
.doctor-featured {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-8);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
}

@media (max-width: 768px) {
  .doctor-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.doctor-featured-image {
  aspect-ratio: 3/4;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.doctor-photo-placeholder i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
}

.doctor-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--color-white);
  color: #000000;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}

.doctor-name-lg {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-2);
  color: var(--color-white);
}

.doctor-specialty-lg {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-6);
}

.doctor-credentials-list h4 {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.doctor-credentials-list ul {
  list-style: none;
  margin-bottom: var(--space-6);
}

.doctor-credentials-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .doctor-credentials-list li {
    justify-content: center;
  }
}

.doctor-credentials-list i {
  color: var(--color-white);
  width: 20px;
}

.doctor-quote {
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-white);
  border-radius: var(--radius-md);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
  .doctor-quote {
    text-align: left;
  }
}

.doctor-actions {
  display: flex;
  gap: var(--space-3);
}

@media (max-width: 768px) {
  .doctor-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ■ Doctor Filter */
.doctor-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.filter-btn {
  padding: var(--space-2) var(--space-5);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(139, 90, 43, 0.2);
  color: #D4B896;
}

.filter-btn.active {
  background: linear-gradient(135deg, #8B5A2B 0%, #C9A962 100%);
  color: #ffffff;
  border-color: #C9A962;
}

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 var(--space-1);
  margin-left: var(--space-1);
  font-size: 10px;
  font-weight: var(--font-bold);
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
}

.filter-btn.active .filter-count {
  background: rgba(0, 0, 0, 0.2);
}

/* ■ Doctors Grid */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.doctor-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-white);
  overflow: hidden;
  padding: 0;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.doctor-photo {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

/* 📸 원장 프로필 이미지 스타일 */
.doctor-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-photo-img {
  transform: scale(1.05);
}

.doctor-photo .doctor-photo-placeholder {
  height: 100%;
}

.doctor-photo .doctor-photo-placeholder i {
  font-size: 4rem;
}

.doctor-card-info {
  padding: var(--space-5);
}

.doctor-role {
  display: inline-block;
  padding: var(--space-1) var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--font-medium);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.doctor-role.representative {
  background: var(--color-white);
  color: #000000;
  font-weight: var(--font-bold);
}

.doctor-role.pediatric {
  background: #FFB6C1;
  color: #8B0000;
  font-weight: var(--font-bold);
}

.doctor-role.orthodontics {
  background: #87CEEB;
  color: #00008B;
  font-weight: var(--font-bold);
}

.doctor-card-name {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin: var(--space-1) 0;
}

.doctor-card-specialty {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-3);
}

.doctor-card-credentials {
  list-style: none;
}

.doctor-card-credentials li {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  padding: var(--space-1) 0;
}

/* ■ Specialty Grid */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

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

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

.specialty-card {
  text-align: center;
  padding: var(--space-6);
}

.specialty-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 auto var(--space-4);
  font-size: 1.5rem;
  color: var(--color-white);
}

.specialty-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.specialty-count {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.specialty-card p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* CTA Badge */
.cta-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
}

/* Mobile Nav Hours */
.mobile-nav-hours {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.mobile-nav-hours i {
  margin-right: var(--space-2);
  color: var(--color-primary);
}

/* ■ E-E-A-T Notice */
.eeat-notice {
  padding: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.eeat-notice h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.eeat-notice h3 i {
  color: var(--color-success);
}

.eeat-notice p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--leading-relaxed);
}

/* ■ Individual Doctor Page */
.doctor-profile-hero {
  padding: calc(80px + var(--space-16)) 0 var(--space-12);
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
}

.doctor-profile-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 768px) {
  .doctor-profile-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.doctor-profile-image {
  position: sticky;
  top: 100px;
}

.doctor-profile-photo {
  aspect-ratio: 3/4;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.doctor-profile-info h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-2);
}

.doctor-profile-specialty {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-6);
}

.doctor-profile-philosophy {
  padding: var(--space-6);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-8);
}

.doctor-profile-philosophy h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.doctor-profile-philosophy blockquote {
  font-size: var(--text-lg);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--leading-relaxed);
}

.credentials-section {
  margin-bottom: var(--space-8);
}

.credentials-section h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-white);
  display: inline-block;
  color: var(--color-white);
}

.credentials-list {
  list-style: none;
}

.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

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

.credentials-list i {
  color: var(--color-white);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .credentials-list li {
    justify-content: center;
    text-align: left;
  }
}

.doctor-cases-section {
  margin-bottom: var(--space-8);
}

.doctor-cases-section h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}

.doctor-faq-section h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}
