/* ============================================================================
   KLİNİK HAKKINDA SECTION CSS - HİZMETLER STYLE'INA GÖRE
   ============================================================================ */

/* Ana Bölüm */
.clinic-about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.clinic-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="clinic-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(%23clinic-grid)"/></svg>');
  pointer-events: none;
}

.clinic-about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 80px 0;
}

/* Section Title */
.clinic-about-section .section-title {
  margin-bottom: 60px;
  text-align: center;
}

.clinic-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);
}

.clinic-about-section .section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.clinic-about-section .section-title h2 span {
  background: linear-gradient(135deg, #007bff, #0056b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.clinic-about-section .section-title p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Clinic Content */
.clinic-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);
}

/* Clinic About Text */
.clinic-about-text {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 2px solid #f8f9fa;
}

.clinic-about-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
}

.clinic-about-text h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(180deg, #007bff, #0056b3);
  border-radius: 2px;
}

.clinic-about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
  text-align: justify;
}

/* Clinic Features */
.clinic-features {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 2px solid #f8f9fa;
}

.clinic-features h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}

.clinic-features h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(180deg, #007bff, #0056b3);
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-card {
  background: #f8f9fa;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 123, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.feature-card:hover::before {
  transform: translateX(0);
}

.feature-card:hover {
  background: white;
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 28px;
  color: white;
}

.feature-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Clinic Process */
.clinic-process {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 2px solid #f8f9fa;
}

.clinic-process h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}

.clinic-process h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(180deg, #007bff, #0056b3);
  border-radius: 2px;
}

.process-steps {
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  z-index: 1;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.step-content {
  background: white;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.05);
  flex: 1;
}

.step-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Clinic Gallery */
.clinic-gallery h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}

.clinic-gallery h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(180deg, #007bff, #0056b3);
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px 15px 15px;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Sidebar */
.clinic-sidebar {
  position: sticky;
  top: 20px;
}

/* Info Card */
.info-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;
}

.info-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  text-align: center;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item i {
  color: #007bff;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.info-content .label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.info-content .value {
  font-size: 15px;
  color: #2c3e50;
  font-weight: 600;
}

/* Technology Card */
.technology-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;
}

.technology-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.tech-item i {
  color: #28a745;
  font-size: 14px;
  width: 16px;
}

.tech-item span {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* Contact Card */
.contact-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);
}

.contact-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
  text-align: center;
}

.contact-info {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-item i {
  font-size: 16px;
  width: 20px;
  color: white;
  margin-top: 2px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-text .label {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.contact-text .value {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-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: block;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card .btn:hover {
  background: white;
  color: #007bff;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .clinic-about-section .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 60px 0;
  }

  .clinic-about-section .section-title h2 {
    font-size: 32px;
  }

  .clinic-content,
  .info-card,
  .technology-card,
  .contact-card {
    padding: 25px 20px;
  }

  .features-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-steps::before {
    display: none;
  }

  .clinic-sidebar {
    margin-top: 30px;
    position: static;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }

  .clinic-about-section .section-title h2 {
    font-size: 28px;
  }

  .clinic-about-section .section-title p {
    font-size: 16px;
  }

  .clinic-content {
    padding: 20px 15px;
  }

  .clinic-about-text h3,
  .clinic-features h3,
  .clinic-process h3,
  .clinic-gallery h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .clinic-about-text p {
    font-size: 15px;
    text-align: left;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 24px;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .gallery-item img {
    height: 150px;
  }

  .info-card h4,
  .technology-card h4,
  .contact-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }

  .clinic-about-section .container {
    padding: 0 15px;
  }

  .clinic-about-section .section-title h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .clinic-about-section .section-title .subtitle {
    font-size: 12px;
    padding: 6px 15px;
  }

  .clinic-content {
    padding: 15px 10px;
  }

  .clinic-about-text h3,
  .clinic-features h3,
  .clinic-process h3,
  .clinic-gallery h3 {
    font-size: 20px;
    padding-left: 15px;
  }

  .clinic-about-text h3::before,
  .clinic-features h3::before,
  .clinic-process h3::before,
  .clinic-gallery h3::before {
    height: 25px;
    width: 3px;
  }

  .clinic-about-text p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .feature-card {
    padding: 20px 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon i {
    font-size: 20px;
  }

  .feature-card h5 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .step-content {
    padding: 15px 20px;
  }

  .step-content h5 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 13px;
  }

  .gallery-item img {
    height: 120px;
  }

  .info-card,
  .technology-card,
  .contact-card {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .info-item {
    gap: 12px;
  }

  .info-content .value {
    font-size: 14px;
  }

  .tech-item span {
    font-size: 13px;
  }

  .contact-text .value {
    font-size: 13px;
  }
}

/* Özel Küçük Ekranlar için */
@media (max-width: 480px) {
  .clinic-about-section .section-title h2 {
    font-size: 22px;
  }

  .clinic-content {
    padding: 12px 8px;
  }

  .clinic-about-text h3,
  .clinic-features h3,
  .clinic-process h3,
  .clinic-gallery h3 {
    font-size: 18px;
  }

  .info-card,
  .technology-card,
  .contact-card {
    padding: 15px 10px;
  }
}
