/*---------------------------------------
  HAKKIMIZDA - BAŞLANGIÇ              
-----------------------------------------*/

/*---------------------------------------
  NAVBAR ACTIVE STATE - BAŞLANGIÇ              
-----------------------------------------*/
.dropdown-item.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color) !important;
}
/*---------------------------------------
  NAVBAR ACTIVE STATE - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  MOBILE NAVBAR STYLES - BAŞLANGIÇ              
-----------------------------------------*/
@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*---------------------------------------
  MOBILE NAVBAR STYLES - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  HERO TITLE SECTION - BAŞLANGIÇ              
-----------------------------------------*/
/* .hero-title-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 80px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-title-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: shine 3s ease-in-out infinite;
}

.hero-title-section::after {
  content: "";
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(0.5px);
}

@keyframes shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.hero-title-section .container {
  position: relative;
  z-index: 2;
}

.hero-title-section h1 {
  font-weight: 700;
  font-size: 3rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem !important;
}

.hero-title-section .lead {
  font-size: 1.3rem;
  font-weight: 300;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
  line-height: 1.6;
} */
/*---------------------------------------
  HERO TITLE SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  SECTION HEADER - BAŞLANGIÇ              
-----------------------------------------*/
.section-header {
  position: relative;
}

.section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/*---------------------------------------
  SECTION HEADER - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  ABOUT TEXT CONTENT - BAŞLANGIÇ              
-----------------------------------------*/
.about-text-content {
  position: relative;
  z-index: 2;
}

.lead-paragraph {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  padding-left: 25px;
}

.lead-paragraph::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.content-paragraph {
  font-size: 1.05rem;
  color: var(--p-color);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.content-paragraph:hover {
  color: var(--dark-color);
  transform: translateX(5px);
}
/*---------------------------------------
  ABOUT TEXT CONTENT - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  SUCCESS QUOTE - BAŞLANGIÇ              
-----------------------------------------*/
.success-quote {
  background: linear-gradient(135deg, rgba(25, 178, 192, 0.1) 0%, rgba(25, 178, 192, 0.1) 100%);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.success-quote::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(25, 178, 192, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

.quote-text {
  font-size: 1.1rem;
  color: var(--dark-color);
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.quote-highlight {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/*---------------------------------------
  SUCCESS QUOTE - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  IMAGE WRAPPER - BAŞLANGIÇ              
-----------------------------------------*/
.about-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: perspective(1000px) rotateY(-5deg);
  /* transition: all 0.3s ease; - Transition kaldırıldı */
}

/* Hover efektleri kaldırıldı */
/* .about-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
} */

.about-office-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  /* transition: transform 0.3s ease; - Transition kaldırıldı */
}

/* Hover efekti kaldırıldı */
/* .about-image-wrapper:hover .about-office-image {
  transform: scale(1.05);
} */

/* Mobile Office Image - Hover efektleri olmadan basit görünüm */
.mobile-office-image {
  text-align: center;
}

.mobile-image-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  display: inline-block;
  max-width: 100%;
}

.office-image-mobile {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
/*---------------------------------------
  IMAGE WRAPPER - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  DECORATIVE ELEMENTS - KALDIRILD              
-----------------------------------------*/
/* Tüm dekoratif elementler ve animasyonlar kaldırıldı */
/*---------------------------------------
  DECORATIVE ELEMENTS - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  IMAGE OVERLAY - KALDIRILD              
-----------------------------------------*/
/* Tüm overlay efektleri kaldırıldı */
/*---------------------------------------
  IMAGE OVERLAY - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  PROCESS FLOW - BAŞLANGIÇ              
-----------------------------------------*/
.about-description {
  background: var(--white-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(25, 178, 192, 0.1);
  line-height: 1.7;
  color: var(--p-color);
  font-size: 1.05rem;
}

.process-flow h4 {
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
}

.process-flow h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* 3 kart için ortalanmış düzen */
.process-flow .row {
  justify-content: center;
}

.process-step {
  background: var(--white-color);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border: 1px solid rgba(25, 178, 192, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(25, 178, 192, 0.15);
  border-color: var(--primary-color);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white-color);
  font-size: 1.2rem;
  margin: 0 auto 15px auto;
}

.process-step h6 {
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step .small {
  color: var(--p-color);
  line-height: 1.5;
}
/*---------------------------------------
  PROCESS FLOW - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  MISSION VISION - BAŞLANGIÇ              
-----------------------------------------*/
.mission-vision-block {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(25, 178, 192, 0.1);
  transition: all 0.3s ease;
}

.mission-vision-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(25, 178, 192, 0.15);
}

.mv-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mission-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.vision-icon {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.mv-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: iconShimmer 3s ease-in-out infinite;
}

@keyframes iconShimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

.mv-content h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.mv-content .lead {
  color: var(--p-color);
  line-height: 1.7;
  font-size: 1.1rem;
}

.mission-points {
  margin-top: 20px;
}

.mission-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--p-color);
  line-height: 1.6;
}

.mission-point i {
  margin-top: 2px;
  flex-shrink: 0;
}
/*---------------------------------------
  MISSION VISION - BİTİŞ              
-----------------------------------------*/


/*---------------------------------------
  RESPONSIVE DESIGN - BAŞLANGIÇ              
-----------------------------------------*/

/* Mobil görünümde kenar boşlukları */
@media screen and (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section-title {
    text-align: center;
  }
  
  .lead-paragraph {
    text-align: center;
  }
  
  .content-paragraph {
    text-align: center;
  }
  
  .about-content {
    padding: 0 15px;
  }
  
  .mobile-office-image {
    padding: 0 15px;
  }
  
  .about-description {
    margin: 0 15px;
  }
  
  .mission-vision-block {
    margin: 0 15px 30px 15px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .section-title {
    text-align: center;
  }
  
  .lead-paragraph {
    text-align: center;
  }
  
  .content-paragraph {
    text-align: center;
  }
  
  .about-content {
    padding: 0 10px;
  }
  
  .mobile-office-image {
    padding: 0 10px;
  }
  
  .about-description {
    margin: 0 10px;
  }
  
  .mission-vision-block {
    margin: 0 10px 30px 10px;
  }
}

@media screen and (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }
  
  .about-image-wrapper {
    transform: none;
    margin-bottom: 40px;
  }
  
  .about-office-image {
    height: 350px;
  }
  
  .quote-highlight {
    font-size: 1.5rem;
  }

  .mission-vision-block {
    padding: 30px;
    margin-bottom: 30px;
  }

  .mv-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .about-description {
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .lead-paragraph {
    font-size: 1.1rem;
    padding-left: 20px;
    text-align: center;
  }
  
  .content-paragraph {
    font-size: 1rem;
    text-align: center;
  }
  
  .success-quote {
    padding: 20px;
    margin: 30px 15px 0 15px;
  }
  
  .quote-highlight {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .mission-vision-block {
    padding: 25px;
    margin: 0 15px 30px 15px;
  }

  .mv-icon {
    width: 70px;
    height: 70px;
  }

  .mv-content h2 {
    font-size: 1.5rem;
  }

  .about-description {
    padding: 25px;
    margin: 0 15px;
  }

  .process-step {
    padding: 20px 15px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 991px) {
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .lead-paragraph {
    text-align: center;
  }
  
  .about-office-image {
    height: 280px;
  }
  
  .quote-highlight {
    font-size: 1.2rem;
  }

  .success-quote {
    padding: 15px;
    margin: 25px 10px 0 10px;
  }

  .mission-vision-block {
    padding: 20px;
    margin: 0 10px 25px 10px;
  }

  .mv-icon {
    width: 60px;
    height: 60px;
  }

  .mv-content h2 {
    font-size: 1.3rem;
  }

  .about-description {
    padding: 20px;
    font-size: 1rem;
    margin: 0 10px;
  }

  .process-step {
    padding: 15px 10px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
/*---------------------------------------
  RESPONSIVE DESIGN - BİTİŞ              
-----------------------------------------*/



/*---------------------------------------
  HAKKIMIZDA - BİTİŞ              
-----------------------------------------*/