/* ============================================================================
   HASTA YOLCULUĞU SECTION CSS - HİZMETLER STYLE'INA GÖRE
   ============================================================================ */

/* Ana Bölüm */
.patient-journey-section {
  position: relative;
  overflow: hidden;
}

.patient-journey-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.patient-journey-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="journey-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(%23journey-grid)"/></svg>');
  pointer-events: none;
}

.patient-journey-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 80px 0;
}

/* Row yapısı */
.patient-journey-section .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.patient-journey-section .col-lg-12 {
  width: 100%;
  padding: 0 15px;
}

.patient-journey-section .col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.patient-journey-section .col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}

.patient-journey-section .col-lg-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding: 0 15px;
}

.patient-journey-section .col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Section Title */
.patient-journey-section .section-title {
  margin-bottom: 60px;
}

.patient-journey-section .section-title.text-center {
  text-align: center;
}

.patient-journey-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);
}

.patient-journey-section .section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.patient-journey-section .section-title h2 span {
  background: linear-gradient(135deg, #007bff, #0056b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.patient-journey-section .section-title p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Journey Steps */
.journey-steps {
  margin-bottom: 60px;
}

/* Journey Step Card */
.journey-step {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 123, 255, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.journey-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.journey-step:hover::before {
  transform: scaleX(1);
}

.journey-step:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
  border-color: rgba(0, 123, 255, 0.1);
}

/* Step Number */
.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  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;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Step Icon */
.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.journey-step:hover .step-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.step-icon i {
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.journey-step:hover .step-icon i {
  transform: scale(1.1);
}

/* Step Content */
.step-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.journey-step:hover .step-content h4 {
  color: #007bff;
}

.step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Additional Info */
.additional-info {
  background: rgba(0, 123, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #007bff;
  margin-top: 15px;
}

.additional-info p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.additional-info strong {
  color: #007bff;
}

/* Doctor Intro */
.doctor-intro {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.05);
  transition: all 0.4s ease;
}

.doctor-intro:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 123, 255, 0.12);
}

.doctor-intro .row.align-items-center {
  align-items: center;
}

/* Doctor Image */
.doctor-image {
  position: relative;
  text-align: center;
}

.doctor-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.doctor-image:hover img {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  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: 20px;
  font-weight: 700;
  line-height: 1;
}

.experience-badge p {
  margin: 5px 0 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Doctor Content */
.doctor-content {
  padding-left: 30px;
}

.section-subtitle .subtitle {
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
}

.doctor-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.2;
}

.doctor-title {
  font-size: 16px;
  color: #007bff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.doctor-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.doctor-content .btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.doctor-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
  text-decoration: none;
  color: white;
}

/* Additional Options */
.additional-options {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.05);
}

.additional-options .section-title {
  margin-bottom: 40px;
}

.additional-options .section-title h3 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.additional-options .section-title p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Options Grid */
.options-grid .row {
  margin: 0 -10px;
}

.options-grid .col-lg-4,
.options-grid .col-md-6 {
  padding: 0 10px;
  margin-bottom: 20px;
}

.option-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);
  height: 100%;
}

.option-card:hover {
  background: white;
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
  transform: translateY(-5px);
  border-color: rgba(0, 123, 255, 0.1);
}

.option-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 20px;
  transition: all 0.3s ease;
}

.option-card:hover .option-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.option-icon i {
  font-size: 24px;
  color: white;
}

.option-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.option-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Utility Classes */
.mt-5 {
  margin-top: 3rem;
}

/* Journey Step Animation */
.journey-step {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.journey-step:nth-child(1) {
  animation-delay: 0.1s;
}
.journey-step:nth-child(2) {
  animation-delay: 0.2s;
}
.journey-step:nth-child(3) {
  animation-delay: 0.3s;
}
.journey-step:nth-child(4) {
  animation-delay: 0.4s;
}
.journey-step:nth-child(5) {
  animation-delay: 0.5s;
}
.journey-step:nth-child(6) {
  animation-delay: 0.6s;
}
.journey-step:nth-child(7) {
  animation-delay: 0.7s;
}
.journey-step:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .journey-step {
    padding: 30px 25px;
  }

  .step-icon {
    width: 70px;
    height: 70px;
  }

  .step-icon i {
    font-size: 28px;
  }

  .step-content h4 {
    font-size: 20px;
  }

  .doctor-content {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }

  .doctor-content h3 {
    font-size: 28px;
  }

  .additional-options .section-title h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }

  .patient-journey-section .container {
    padding: 0 15px;
  }

  .patient-journey-section .section-title h2 {
    font-size: 28px;
  }

  .patient-journey-section .section-title p {
    font-size: 16px;
  }

  .journey-step {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .step-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }

  .step-icon i {
    font-size: 26px;
  }

  .step-content h4 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .step-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .additional-info {
    padding: 12px;
    margin-top: 12px;
  }

  .additional-info p {
    font-size: 13px;
  }

  .doctor-intro {
    padding: 30px 25px;
  }

  .doctor-image img {
    max-width: 250px;
  }

  .experience-badge {
    top: 15px;
    right: 15px;
    padding: 12px;
  }

  .experience-badge span {
    font-size: 18px;
  }

  .doctor-content h3 {
    font-size: 24px;
  }

  .doctor-title {
    font-size: 14px;
  }

  .doctor-description {
    font-size: 15px;
  }

  .doctor-content .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
  }

  .additional-options {
    padding: 30px 25px;
  }

  .additional-options .section-title h3 {
    font-size: 24px;
  }

  .option-card {
    padding: 25px 20px;
  }

  .option-icon {
    width: 50px;
    height: 50px;
  }

  .option-icon i {
    font-size: 20px;
  }

  .option-card h5 {
    font-size: 16px;
  }

  .option-card p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }

  .patient-journey-section .section-title {
    margin-bottom: 40px;
  }

  .patient-journey-section .section-title h2 {
    font-size: 24px;
  }

  .patient-journey-section .section-title .subtitle {
    font-size: 12px;
    padding: 6px 15px;
  }

  .journey-step {
    padding: 25px 20px;
    text-align: center;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
  }

  .step-icon i {
    font-size: 24px;
  }

  .step-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .step-content p {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: left;
  }

  .additional-info {
    text-align: left;
  }

  .doctor-intro {
    padding: 25px 20px;
  }

  .doctor-image img {
    max-width: 200px;
  }

  .experience-badge {
    top: 10px;
    right: 10px;
    padding: 10px;
  }

  .experience-badge span {
    font-size: 16px;
  }

  .experience-badge p {
    font-size: 10px;
  }

  .section-subtitle .subtitle {
    font-size: 11px;
    padding: 5px 12px;
  }

  .doctor-content h3 {
    font-size: 22px;
  }

  .doctor-title {
    font-size: 13px;
  }

  .doctor-description {
    font-size: 14px;
    text-align: left;
  }

  .doctor-content .btn {
    padding: 14px;
    font-size: 14px;
  }

  .additional-options {
    padding: 25px 20px;
  }

  .additional-options .section-title {
    margin-bottom: 30px;
  }

  .additional-options .section-title h3 {
    font-size: 22px;
  }

  .additional-options .section-title p {
    font-size: 14px;
  }

  .options-grid .col-lg-4,
  .options-grid .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .option-card {
    padding: 20px 15px;
    margin-bottom: 15px;
  }

  .option-icon {
    width: 45px;
    height: 45px;
  }

  .option-icon i {
    font-size: 18px;
  }

  .option-card h5 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .option-card p {
    font-size: 12px;
  }
}

/* Special Effects */
.journey-step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.journey-step:hover::after {
  opacity: 1;
}
patient-journey-section .section-title h2 {
  font-size: 36px;
}

.journey-step {
  padding: 35px 25px;
}

.doctor-intro {
  padding: 40px 30px;
}

.additional-options {
  padding: 40px 30px;
}

@media (max-width: 992px) {
  .section-padding {
    padding: 60px 0;
  }

  .patient-journey-section .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .patient-journey-section .col-lg-4,
  .patient-journey-section .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .patient-journey-section .section-title h2 {
    font-size: 32px;
  }

  .journey-step {
    padding: 30px 25px;
  }

  .step-icon {
    width: 70px;
    height: 70px;
  }

  .step-icon i {
    font-size: 28px;
  }

  .step-content h4 {
    font-size: 20px;
  }

  .doctor-content {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }

  .doctor-content h3 {
    font-size: 28px;
  }

  .additional-options .section-title h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }

  .patient-journey-section .container {
    padding: 0 15px;
  }

  .patient-journey-section .section-title h2 {
    font-size: 28px;
  }

  .patient-journey-section .section-title p {
    font-size: 16px;
  }

  .journey-step {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .step-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }

  .step-icon i {
    font-size: 26px;
  }

  .step-content h4 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .step-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .additional-info {
    padding: 12px;
    margin-top: 12px;
  }

  .additional-info p {
    font-size: 13px;
  }

  .doctor-intro {
    padding: 30px 25px;
  }

  .doctor-image img {
    max-width: 250px;
  }

  .experience-badge {
    top: 15px;
    right: 15px;
    padding: 12px;
  }

  .experience-badge span {
    font-size: 18px;
  }

  .doctor-content h3 {
    font-size: 24px;
  }

  .doctor-title {
    font-size: 14px;
  }

  .doctor-description {
    font-size: 15px;
  }

  .doctor-content .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
  }

  .additional-options {
    padding: 30px 25px;
  }

  .additional-options .section-title h3 {
    font-size: 24px;
  }

  .option-card {
    padding: 25px 20px;
  }

  .option-icon {
    width: 50px;
    height: 50px;
  }

  .option-icon i {
    font-size: 20px;
  }

  .option-card h5 {
    font-size: 16px;
  }

  .option-card p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }

  .patient-journey-section .section-title {
    margin-bottom: 40px;
  }

  .patient-journey-section .section-title h2 {
    font-size: 24px;
  }

  .patient-journey-section .section-title .subtitle {
    font-size: 12px;
    padding: 6px 15px;
  }

  .journey-step {
    padding: 25px 20px;
    text-align: center;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
  }

  .step-icon i {
    font-size: 24px;
  }

  .step-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .step-content p {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: left;
  }

  .additional-info {
    text-align: left;
  }

  .doctor-intro {
    padding: 25px 20px;
  }

  .doctor-image img {
    max-width: 200px;
  }

  .experience-badge {
    top: 10px;
    right: 10px;
    padding: 10px;
  }

  .experience-badge span {
    font-size: 16px;
  }

  .experience-badge p {
    font-size: 10px;
  }

  .section-subtitle .subtitle {
    font-size: 11px;
    padding: 5px 12px;
  }

  .doctor-content h3 {
    font-size: 22px;
  }

  .doctor-title {
    font-size: 13px;
  }

  .doctor-description {
    font-size: 14px;
    text-align: left;
  }

  .doctor-content .btn {
    padding: 14px;
    font-size: 14px;
  }

  .additional-options {
    padding: 25px 20px;
  }

  .additional-options .section-title {
    margin-bottom: 30px;
  }

  .additional-options .section-title h3 {
    font-size: 22px;
  }

  .additional-options .section-title p {
    font-size: 14px;
  }

  .options-grid .col-lg-4,
  .options-grid .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .option-card {
    padding: 20px 15px;
    margin-bottom: 15px;
  }

  .option-icon {
    width: 45px;
    height: 45px;
  }

  .option-icon i {
    font-size: 18px;
  }

  .option-card h5 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .option-card p {
    font-size: 12px;
  }
}

/* Special Effects */
.journey-step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.journey-step:hover::after {
  opacity: 1;
}
