/* ============================================================================
   DOKTOR HAKKINDA SECTION CSS - HİZMETLER STYLE'INA GÖRE
   ============================================================================ */

/* Ana Bölüm */
.doctor-about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.doctor-about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="doctor-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%23007bff" stroke-width="0.3" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23doctor-grid)"/></svg>');
  pointer-events: none;
}

.doctor-about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 80px 0;
}

/* Section Title */
.doctor-about-section .section-title {
  margin-bottom: 60px;
  text-align: center;
}

.doctor-about-section .section-title .subtitle {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.doctor-about-section .section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.doctor-about-section .section-title h2 span {
  background: linear-gradient(135deg, #007bff, #0056b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.doctor-about-section .section-title p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Doctor Info Content */
.doctor-info-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.05);
  margin-bottom: 30px;
}

/* Doctor Main Info */
.doctor-main-info {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f8f9fa;
}

.doctor-photo {
  position: relative;
  text-align: center;
}

.doctor-photo img {
  width: 100%;
  max-width: 250px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.doctor-photo:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

.experience-badge span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.experience-badge p {
  margin: 5px 0 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Doctor Basic Info */
.doctor-basic-info h3 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.doctor-specialty {
  font-size: 16px;
  color: #007bff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.doctor-licenses {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.license-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.license-item i {
  color: #007bff;
  font-size: 16px;
  width: 20px;
}

.license-item span {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

/* About Text */
.doctor-about-text {
  margin-bottom: 40px;
}

.doctor-about-text h4 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.doctor-about-text h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 25px;
  background: linear-gradient(180deg, #007bff, #0056b3);
  border-radius: 2px;
}

.doctor-about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
  text-align: justify;
}

/* Education Timeline */
.doctor-education {
  margin-bottom: 40px;
}

.doctor-education h4 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}

.doctor-education h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 25px;
  background: linear-gradient(180deg, #007bff, #0056b3);
  border-radius: 2px;
}

.education-timeline {
  position: relative;
  padding-left: 30px;
}

.education-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #007bff, #0056b3);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: #007bff;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #007bff;
}

.timeline-date {
  background: #007bff;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
}

.timeline-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.timeline-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Specialties Grid */
.doctor-specialties {
  margin-bottom: 40px;
}

.doctor-specialties h4 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}

.doctor-specialties h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 25px;
  background: linear-gradient(180deg, #007bff, #0056b3);
  border-radius: 2px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.specialty-card {
  background: #f8f9fa;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 123, 255, 0.05);
}

.specialty-card:hover {
  background: white;
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
  transform: translateY(-5px);
}

.specialty-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.specialty-card:hover .specialty-icon {
  transform: scale(1.1);
}

.specialty-icon i {
  font-size: 24px;
  color: white;
}

.specialty-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.specialty-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Achievements */
.doctor-achievements h4 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}

.doctor-achievements h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 25px;
  background: linear-gradient(180deg, #007bff, #0056b3);
  border-radius: 2px;
}

.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  background: white;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.1);
}

.achievement-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffc107, #e0a800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.achievement-icon i {
  font-size: 20px;
  color: white;
}

.achievement-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.achievement-content p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Sidebar */
.doctor-sidebar {
  position: sticky;
  top: 20px;
}

/* Stats Card */
.stats-card {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.05);
  margin-bottom: 25px;
  text-align: center;
}

.stats-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
}

.stat-item {
  margin-bottom: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.stat-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #007bff;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Memberships Card */
.memberships-card {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.05);
  margin-bottom: 25px;
}

.memberships-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.membership-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.membership-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.membership-item i {
  color: #28a745;
  font-size: 14px;
  width: 16px;
}

.membership-item span {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* Appointment Card */
.appointment-card {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
  text-align: center;
}

.appointment-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.appointment-card p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.appointment-card .btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.appointment-card .btn:hover {
  background: white;
  color: #007bff;
  text-decoration: none;
}

.contact-info {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  font-size: 14px;
  width: 16px;
}

.contact-item span {
  font-size: 13px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .doctor-about-section .section-title h2 {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .section-padding {
    padding: 60px 0;
  }

  .doctor-about-section .section-title h2 {
    font-size: 32px;
  }

  .doctor-info-content {
    padding: 30px 20px;
  }

  .doctor-main-info {
    margin-bottom: 30px;
  }

  .doctor-basic-info h3 {
    font-size: 28px;
  }

  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .education-timeline {
    padding-left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .timeline-item::before {
    left: -27px;
  }

  .timeline-date {
    min-width: auto;
    padding: 6px 12px;
    font-size: 12px;
  }

  .doctor-sidebar {
    margin-top: 30px;
    position: static;
  }

  .stats-card,
  .memberships-card,
  .appointment-card {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }

  .doctor-about-section .section-title h2 {
    font-size: 28px;
  }

  .doctor-about-section .section-title p {
    font-size: 16px;
  }

  .doctor-info-content {
    padding: 25px 15px;
  }

  .doctor-main-info .row {
    flex-direction: column;
    text-align: center;
  }

  .doctor-photo {
    margin-bottom: 25px;
  }

  .doctor-photo img {
    max-width: 200px;
  }

  .experience-badge {
    position: static;
    display: inline-block;
    margin-top: 15px;
    padding: 12px;
  }

  .doctor-basic-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .doctor-specialty {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .doctor-licenses {
    justify-content: center;
    align-items: center;
  }

  .license-item {
    justify-content: center;
    text-align: center;
  }

  .doctor-about-text h4,
  .doctor-education h4,
  .doctor-specialties h4,
  .doctor-achievements h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .doctor-about-text p {
    font-size: 15px;
    text-align: left;
  }

  .education-timeline {
    padding-left: 15px;
  }

  .education-timeline::before {
    left: 8px;
  }

  .timeline-item::before {
    left: -18px;
    width: 10px;
    height: 10px;
  }

  .timeline-content h5 {
    font-size: 16px;
  }

  .timeline-content p {
    font-size: 13px;
  }

  .specialty-card {
    padding: 20px 15px;
  }

  .specialty-icon {
    width: 50px;
    height: 50px;
  }

  .specialty-icon i {
    font-size: 20px;
  }

  .specialty-card h5 {
    font-size: 15px;
  }

  .specialty-card p {
    font-size: 12px;
  }

  .achievements-list {
    gap: 15px;
  }

  .achievement-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .achievement-icon {
    width: 45px;
    height: 45px;
  }

  .achievement-icon i {
    font-size: 18px;
  }

  .achievement-content h6 {
    font-size: 15px;
  }

  .achievement-content p {
    font-size: 12px;
  }

  .stats-card h4,
  .memberships-card h4,
  .appointment-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  .membership-item span {
    font-size: 13px;
  }

  .appointment-card p {
    font-size: 13px;
  }

  .contact-item span {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }

  .doctor-about-section .container {
    padding: 0 15px;
  }

  .doctor-about-section .section-title h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .doctor-about-section .section-title .subtitle {
    font-size: 12px;
    padding: 6px 15px;
  }

  .doctor-info-content {
    padding: 20px 12px;
    margin-bottom: 20px;
  }

  .doctor-photo img {
    max-width: 150px;
  }

  .experience-badge {
    padding: 10px;
  }

  .experience-badge span {
    font-size: 16px;
  }

  .experience-badge p {
    font-size: 9px;
  }

  .doctor-basic-info h3 {
    font-size: 20px;
  }

  .doctor-specialty {
    font-size: 13px;
  }

  .license-item span {
    font-size: 13px;
  }

  .doctor-about-text h4,
  .doctor-education h4,
  .doctor-specialties h4,
  .doctor-achievements h4 {
    font-size: 18px;
    padding-left: 15px;
  }

  .doctor-about-text h4::before,
  .doctor-education h4::before,
  .doctor-specialties h4::before,
  .doctor-achievements h4::before {
    height: 20px;
    width: 3px;
  }

  .doctor-about-text p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .education-timeline {
    padding-left: 10px;
  }

  .timeline-item {
    margin-bottom: 20px;
  }

  .timeline-item::before {
    left: -13px;
    width: 8px;
    height: 8px;
  }

  .timeline-date {
    padding: 5px 10px;
    font-size: 11px;
  }

  .timeline-content h5 {
    font-size: 14px;
  }

  .timeline-content p {
    font-size: 12px;
  }

  .specialty-card {
    padding: 15px 10px;
  }

  .specialty-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
  }

  .specialty-icon i {
    font-size: 18px;
  }

  .specialty-card h5 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .specialty-card p {
    font-size: 11px;
  }

  .achievement-item {
    padding: 12px;
    gap: 10px;
  }

  .achievement-icon {
    width: 40px;
    height: 40px;
  }

  .achievement-icon i {
    font-size: 16px;
  }

  .achievement-content h6 {
    font-size: 14px;
  }

  .achievement-content p {
    font-size: 11px;
  }

  .stats-card,
  .memberships-card,
  .appointment-card {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .stats-card h4,
  .memberships-card h4,
  .appointment-card h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .stat-item {
    padding: 10px 0;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 11px;
  }

  .membership-item {
    padding: 5px 0;
  }

  .membership-item span {
    font-size: 12px;
  }

  .appointment-card .btn {
    padding: 10px 20px;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .contact-info {
    padding-top: 15px;
  }

  .contact-item {
    margin-bottom: 8px;
  }

  .contact-item span {
    font-size: 11px;
  }
}

/* Özel Küçük Ekranlar için */
@media (max-width: 480px) {
  .doctor-about-section .section-title h2 {
    font-size: 22px;
  }

  .doctor-info-content {
    padding: 15px 10px;
  }

  .doctor-basic-info h3 {
    font-size: 18px;
  }

  .doctor-about-text h4,
  .doctor-education h4,
  .doctor-specialties h4,
  .doctor-achievements h4 {
    font-size: 16px;
  }

  .stats-card,
  .memberships-card,
  .appointment-card {
    padding: 15px 10px;
  }
}

/* Landscape tablet orientasyonu için */
@media (max-width: 1024px) and (orientation: landscape) {
  .section-padding {
    padding: 50px 0;
  }

  .doctor-main-info .row {
    align-items: flex-start;
  }

  .doctor-photo img {
    max-width: 180px;
  }

  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
