/*---------------------------------------
  BLOG DETAY - BAŞLANGIÇ              
-----------------------------------------*/

/*---------------------------------------
  ARTICLE HEADER - BAŞLANGIÇ              
-----------------------------------------*/
.article-header {
  margin-bottom: 40px;
}

.article-category {
  margin-bottom: 15px;
}

.category-badge,
.blog-category-badge {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.blog-category-badge:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(25, 178, 192, 0.3);
}

.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 25px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(25, 178, 192, 0.1);
  border-bottom: 1px solid rgba(25, 178, 192, 0.1);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 1rem;
}

.publish-date {
  color: var(--p-color);
  font-size: 0.9rem;
}

.article-stats {
  display: flex;
  gap: 20px;
  align-items: center;
}

.reading-time {
  color: var(--p-color);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
/*---------------------------------------
 ARTICLE HEADER - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
 ARTICLE IMAGE - BAŞLANGIÇ              
-----------------------------------------*/
.article-image {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-image:hover img {
  transform: scale(1.02);
}
/*---------------------------------------
 ARTICLE IMAGE - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
 ARTICLE CONTENT - BAŞLANGIÇ              
-----------------------------------------*/
.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--p-color);
}

.article-intro .lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(25, 178, 192, 0.05);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 10px 10px 0;
}

.content-section {
  margin-bottom: 40px;
}

.content-section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(25, 178, 192, 0.2);
}

.content-section h3 {
  color: var(--dark-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 25px;
}

.content-section p {
  margin-bottom: 20px;
}

.content-section ul {
  margin-bottom: 20px;
}

.content-section li {
  margin-bottom: 10px;
  line-height: 1.7;
}
/*---------------------------------------
 ARTICLE CONTENT - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
 CONTENT BOXES - BAŞLANGIÇ              
-----------------------------------------*/
.warning-box,
.tip-box,
.info-box,
.highlight-box {
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid;
}

.warning-box {
  background: rgba(255, 193, 7, 0.1);
  border-left-color: #ffc107;
}

.warning-box h4 {
  color: #b8860b;
  margin-bottom: 15px;
}

.tip-box {
  background: rgba(40, 167, 69, 0.1);
  border-left-color: #28a745;
}

.tip-box h4 {
  color: #155724;
  margin-bottom: 15px;
}

.info-box {
  background: rgba(23, 162, 184, 0.1);
  border-left-color: #17a2b8;
}

.info-box h4 {
  color: #0c5460;
  margin-bottom: 15px;
}

.highlight-box {
  background: rgba(25, 178, 192, 0.1);
  border-left-color: var(--primary-color);
}

.highlight-box h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.protection-section {
  background: var(--white-color);
  padding: 25px;
  border-radius: 15px;
  margin: 25px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(25, 178, 192, 0.1);
}

.protection-section h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.tactics-list {
  list-style: none;
  padding: 0;
}

.tactics-list li {
  background: var(--white-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.company-info {
  background: linear-gradient(
    135deg,
    rgba(25, 178, 192, 0.1) 0%,
    rgba(25, 178, 192, 0.1) 100%
  );
  padding: 30px;
  border-radius: 20px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.company-info::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;
}

.company-info p {
  position: relative;
  z-index: 2;
}

.conclusion {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-top: 20px;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(30deg);
  }
}
/*---------------------------------------
 CONTENT BOXES - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
 SOCIAL SHARE - BAŞLANGIÇ              
-----------------------------------------*/
.social-share {
  padding: 30px;
  background: var(--white-color);
  border-radius: 15px;
  border: 1px solid rgba(25, 178, 192, 0.1);
  margin: 40px 0;
  text-align: center;
}

.social-share h5 {
  color: var(--dark-color);
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.share-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.share-btn.facebook {
  background: #3b5998;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: var(--white-color);
}
/*---------------------------------------
 SOCIAL SHARE - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
 ARTICLE TAGS - BAŞLANGIÇ              
-----------------------------------------*/
.article-tags {
  margin: 40px 0;
}

.article-tags h5 {
  color: var(--dark-color);
  margin-bottom: 15px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: rgba(25, 178, 192, 0.1);
  color: var(--primary-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}
/*---------------------------------------
 ARTICLE TAGS - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
 SIDEBAR - BAŞLANGIÇ              
-----------------------------------------*/
.sidebar {
  padding-left: 30px;
}

.author-box {
  background: var(--white-color);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(25, 178, 192, 0.1);
}

.author-avatar-large {
  margin-bottom: 20px;
}

.author-avatar-large img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.author-box h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.author-box p {
  color: var(--p-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.author-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.author-social a {
  width: 40px;
  height: 40px;
  background: rgba(25, 178, 192, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-social a:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.related-articles {
  background: var(--white-color);
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(25, 178, 192, 0.1);
}

.related-articles h4 {
  color: var(--primary-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(25, 178, 192, 0.2);
}

.related-article {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(25, 178, 192, 0.1);
}

.related-article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-image {
  flex-shrink: 0;
}

.related-image img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.related-content h6 {
  margin-bottom: 8px;
}

.related-content h6 a {
  color: var(--dark-color);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.related-content h6 a:hover {
  color: var(--primary-color);
}

.related-date {
  color: var(--p-color);
  font-size: 0.8rem;
}

.sidebar-newsletter {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  color: var(--white-color);
}

.sidebar-newsletter h4 {
  color: var(--white-color);
  margin-bottom: 15px;
}

.sidebar-newsletter p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.sidebar-newsletter .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-newsletter input {
  padding: 12px 15px;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
}

.sidebar-newsletter input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.sidebar-newsletter .btn {
  background: var(--white-color);
  color: var(--primary-color);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sidebar-newsletter .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}
/*---------------------------------------
 SIDEBAR - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
 RESPONSIVE DESIGN - BAŞLANGIÇ              
-----------------------------------------*/
@media screen and (max-width: 991px) {
  .sidebar {
    padding-left: 0;
    margin-top: 50px;
  }

  .article-title {
    font-size: 2rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .article-stats {
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .article-title {
    font-size: 1.8rem;
  }

  .article-intro .lead {
    font-size: 1.1rem;
    padding: 20px;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .share-buttons {
    flex-wrap: wrap;
  }

  .tags {
    justify-content: center;
  }

  .related-article {
    flex-direction: column;
    text-align: center;
  }

  .related-image {
    align-self: center;
  }

  .newsletter-input {
    border-radius: 15px 15px 0 0;
  }

  .newsletter-btn {
    border-radius: 0 0 15px 15px;
  }
}

@media screen and (max-width: 480px) {
  .article-title {
    font-size: 1.5rem;
  }

  .category-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .article-image img {
    height: 250px;
  }

  .article-content {
    font-size: 1rem;
  }

  .content-section h2 {
    font-size: 1.3rem;
  }

  .warning-box,
  .tip-box,
  .info-box,
  .highlight-box,
  .protection-section {
    padding: 20px;
  }

  .company-info {
    padding: 25px;
  }

  .social-share {
    padding: 25px;
  }

  .share-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}
/*---------------------------------------
 RESPONSIVE DESIGN - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
 MOBILE NAVBAR STYLES - BAŞLANGIÇ              
-----------------------------------------*/
/* Mobil eğitim butonu ortada - tam ortada */
.mobile-edu-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  order: 2;
  background: var(--primary-color);
  border-radius: 20px;
  color: var(--white-color);
  width: auto;
  min-width: 100px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 600;
  margin: 0;
  border: none;
  box-shadow: 0 2px 8px rgba(25, 178, 192, 0.3);
  text-decoration: none !important;
}

.mobile-edu-btn:hover {
  background: var(--secondary-color);
  transform: translate(-50%, -50%) scale(1.05);
  color: var(--white-color);
  text-decoration: none !important;
}

.mobile-edu-btn i {
  font-size: 12px;
}

/* MOBİL İLETİŞİM BÖLÜMÜ */
.mobile-contact-section {
  margin-top: 30px;
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
}

/* Mobil telefon */
.mobile-phone {
  margin-bottom: 25px;
  text-align: center;
}

.mobile-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(25, 178, 192, 0.3);
}

.mobile-phone-link:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 178, 192, 0.4);
  color: var(--white-color);
  text-decoration: none;
}

.mobile-phone-link i {
  font-size: 18px;
}

/* Mobil sosyal medya */
.mobile-social {
  text-align: center;
}

.mobile-social-title {
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mobile-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-social-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  text-decoration: none;
}
/*---------------------------------------
 MOBILE NAVBAR STYLES - BİTİŞ              
-----------------------------------------*/


/*---------------------------------------
  MOBİL KENAR BOŞLUKLARI - BAŞLANGIÇ              
-----------------------------------------*/
@media screen and (max-width: 768px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  .section-padding {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .content-wrapper,
  .main-content,
  .page-content {
    padding: 0 15px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .section-padding {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .content-wrapper,
  .main-content,
  .page-content {
    padding: 0 10px;
  }
}
/*---------------------------------------
  MOBİL KENAR BOŞLUKLARI - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
 BLOG DETAY - BİTİŞ              
-----------------------------------------*/
