/* Blog Post Styles */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px 0;
  border-bottom: 1px solid #dee2e6;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb-nav a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #82c931;
}

.breadcrumb-separator {
  color: #adb5bd;
  font-size: 12px;
}

.breadcrumb-current {
  color: #495057;
  font-weight: 500;
}

.blog-post {
  padding: 60px 0;
  background: #fff;
}

.blog-post-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  align-items: start;
}

.blog-post-main {
  max-width: 100%;
}

.blog-post-image {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #82c931 0%, #6ba82a 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-post-header {
  margin-bottom: 40px;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.blog-post-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
}

.blog-post-meta i {
  color: #82c931;
}

.blog-post-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.blog-post-excerpt {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.6;
  font-weight: 400;
}

.blog-post-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 50px;
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.blog-post-content li {
  margin-bottom: 8px;
}

.blog-post-footer {
  padding-top: 40px;
  border-top: 2px solid #f8f9fa;
  margin-bottom: 40px;
}

.blog-post-tags {
  margin-bottom: 30px;
}

.blog-post-tags h4 {
  font-size: 16px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 15px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #f8f9fa;
  color: #495057;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #82c931;
  color: white;
  border-color: #82c931;
}

.blog-post-share h4 {
  font-size: 16px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 15px;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
  background: #1877f2;
}
.share-btn.twitter {
  background: #1da1f2;
}
.share-btn.linkedin {
  background: #0077b5;
}
.share-btn.whatsapp {
  background: #25d366;
}

.blog-post-navigation {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog-post-navigation .btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  min-width: 200px;
}

.btn-primary {
  background: linear-gradient(135deg, #82c931 0%, #6ba82a 100%);
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #666;
  border: 2px solid #e0e0e0;
}

.btn-outline:hover {
  background: #f8f9fa;
  border-color: #82c931;
  color: #82c931;
}

/* Sidebar Styles */
.blog-post-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f3f4;
}

.sidebar-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f8f9fa;
}

.contact-card {
  background: #fff;
  color: white;
}

.contact-card h3 {
  color: black;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.contact-card p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-info {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 500;
}

.contact-item i {
  width: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-success {
  background: #25d366;
  color: white;
  border: none;
}

.btn-success:hover {
  background: #20b954;
  transform: translateY(-2px);
}

.related-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.related-post-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f3f4;
}

.related-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-post-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-content h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}

.related-post-content h4 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
  color: #82c931;
}

.related-post-date {
  font-size: 12px;
  color: #6c757d;
}

.categories-list {
  list-style: none;
  padding: 0;
}

.categories-list li {
  margin-bottom: 10px;
}

.categories-list a {
  color: #495057;
  text-decoration: none;
  padding: 8px 0;
  display: block;
  border-bottom: 1px solid #f1f3f4;
  transition: all 0.3s ease;
  font-weight: 500;
}

.categories-list a:hover {
  color: #82c931;
  padding-left: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-post-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-post-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-post {
    padding: 40px 0;
  }

  .blog-post-title {
    font-size: 28px;
  }

  .blog-post-image {
    height: 250px;
    margin-bottom: 30px;
  }

  .blog-post-meta {
    flex-direction: column;
    gap: 10px;
  }

  .blog-post-navigation {
    flex-direction: column;
  }

  .blog-post-navigation .btn {
    min-width: auto;
  }

  .sidebar-card {
    padding: 20px;
  }

  .share-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .breadcrumb-nav {
    font-size: 12px;
  }

  .breadcrumb-current {
    display: none;
  }

  .blog-post-title {
    font-size: 24px;
  }

  .blog-post-excerpt {
    font-size: 16px;
  }

  .blog-post-content {
    font-size: 15px;
  }
}
