  /* ================================
       MODERN BLOG DETAIL STYLES
    ================================ */
  .blog-detail-wrapper {
      background: #f8f9fa;
      padding: 60px 0;
  }

  .blog-post-card {
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      margin-bottom: 30px;
  }

  .blog-featured-image {
      position: relative;
      overflow: hidden;
      height: 450px;
      background: linear-gradient(135deg, #feb100 0%, #ffc933 100%);
  }

  .blog-featured-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .blog-featured-image:hover img {
      transform: scale(1.05);
  }

  .blog-content-wrapper {
      padding: 50px;
  }

  .blog-title {
      font-size: 2.75rem;
      font-weight: 700;
      color: #272b2e;
      line-height: 1.3;
      margin-bottom: 25px;
      letter-spacing: -0.5px;
  }

  .blog-meta-info {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      padding: 20px 0;
      border-top: 1px solid #e9ecef;
      border-bottom: 1px solid #e9ecef;
      margin-bottom: 35px;
  }

  .meta-item {
      display: flex;
      align-items: center;
      color: #5B6880;
      font-size: 0.95rem;
  }

  .meta-item svg {
      margin-right: 8px;
      color: #feb100;
  }

  .meta-author {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .author-avatar {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: linear-gradient(135deg, #feb100 0%, #ffc933 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 1.1rem;
  }

  .blog-content {
      line-height: 1.9;
      color: #5B6880;
      font-size: 1.05rem;
  }

  .blog-content p {
      margin-bottom: 1.5rem;
  }

  .blog-content h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #272b2e;
      margin-top: 3rem;
      margin-bottom: 1.5rem;
      padding-bottom: 15px;
      border-bottom: 3px solid #feb100;
      display: inline-block;
  }

  .blog-content h3 {
      font-size: 1.75rem;
      font-weight: 700;
      color: #272b2e;
      margin-top: 2.5rem;
      margin-bottom: 1.25rem;
  }

  .blog-content h4 {
      font-size: 1.5rem;
      font-weight: 600;
      color: #272b2e;
      margin-top: 2rem;
      margin-bottom: 1rem;
  }

  .blog-content img {
      border-radius: 15px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
      margin: 2.5rem 0;
      transition: transform 0.3s ease;
  }

  .blog-content img:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  }

  /* Two Column Image Gallery */
  .blog-image-gallery {
      margin: 2.5rem 0;
  }

  .blog-image-gallery .row {
      margin: 0;
  }

  .blog-image-gallery .col-md-6 {
      padding: 0 10px;
      margin-bottom: 20px;
  }

  .blog-image-gallery .col-md-6:first-child {
      padding-left: 0;
  }

  .blog-image-gallery .col-md-6:last-child {
      padding-right: 0;
  }

  .blog-image-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
      transition: all 0.3s ease;
      height: 100%;
  }

  .blog-image-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      margin: 0;
      border-radius: 15px;
  }

  .blog-image-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  }

  .blog-image-item:hover img {
      transform: scale(1.1);
  }

  @media (max-width: 767px) {
      .blog-image-gallery .col-md-6 {
          padding: 0;
          margin-bottom: 20px;
      }
  }

  .blog-quote-box {
      background: linear-gradient(135deg, #f5f8ff 0%, #ffffff 100%);
      border-left: 5px solid #feb100;
      padding: 30px 35px;
      margin: 3rem 0;
      border-radius: 12px;
      position: relative;
      box-shadow: 0 5px 20px rgba(254, 177, 0, 0.1);
  }

  .blog-quote-box::before {
      content: '"';
      position: absolute;
      top: -10px;
      left: 20px;
      font-size: 80px;
      color: #feb100;
      opacity: 0.2;
      font-family: Georgia, serif;
  }

  .blog-quote-box p {
      font-size: 1.2rem;
      font-style: italic;
      color: #272b2e;
      margin: 0;
      line-height: 1.8;
      position: relative;
      z-index: 1;
  }

  .blog-quote-author {
      margin-top: 15px;
      font-size: 0.95rem;
      color: #5B6880;
      font-weight: 600;
  }

  .blog-content ul {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
  }

  .blog-content ul li {
      padding: 12px 0 12px 35px;
      position: relative;
      color: #5B6880;
      font-size: 1.05rem;
  }

  .blog-content ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #feb100;
      font-weight: bold;
      font-size: 1.3rem;
  }

  .blog-tags-share {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      padding: 30px 0;
      border-top: 2px solid #e9ecef;
      margin-top: 40px;
  }

  .blog-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
  }

  .blog-tags span {
      font-weight: 600;
      color: #272b2e;
      margin-right: 10px;
  }

  .tag-badge {
      background: #f5f8ff;
      color: #272b2e;
      padding: 8px 18px;
      border-radius: 25px;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid #e9ecef;
  }

  .tag-badge:hover {
      background: #feb100;
      color: white;
      border-color: #feb100;
      transform: translateY(-2px);
  }

  .social-share-buttons {
      display: flex;
      gap: 12px;
  }

  .social-btn {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  .social-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }

  .social-btn.facebook {
      background: #1877f2;
      color: white;
  }

  .social-btn.linkedin {
      background: #0077b5;
      color: white;
  }

  .social-btn.twitter {
      background: #1da1f2;
      color: white;
  }

  .social-btn.email {
      background: #30373f;
      color: white;
  }

  /* Related Posts */
  .related-posts-section {
      margin-top: 50px;
      padding-top: 40px;
      border-top: 2px solid #e9ecef;
  }

  .section-title {
      font-size: 1.75rem;
      font-weight: 700;
      color: #272b2e;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #feb100, #ffc933);
      border-radius: 2px;
  }

  .related-post-card {
      background: #ffffff;
      border-radius: 15px;
      padding: 25px;
      height: 100%;
      border: 1px solid #e9ecef;
      transition: all 0.3s ease;
      box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  }

  .related-post-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border-color: #feb100;
  }

  .related-post-card h5 {
      font-size: 1.25rem;
      font-weight: 600;
      color: #272b2e;
      margin-bottom: 15px;
      line-height: 1.4;
  }

  .related-post-card p {
      color: #5B6880;
      font-size: 0.95rem;
      margin-bottom: 15px;
      line-height: 1.6;
  }

  .read-more-link {
      color: #feb100;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
  }

  .read-more-link:hover {
      color: #ffc933;
      padding-left: 5px;
  }

  /* Comments Section */
  .comments-section {
      margin-top: 50px;
      padding-top: 40px;
      border-top: 2px solid #e9ecef;
  }

  .comment-item {
      display: flex;
      gap: 20px;
      margin-bottom: 30px;
      padding: 25px;
      background: #f8f9fa;
      border-radius: 15px;
      transition: all 0.3s ease;
  }

  .comment-item:hover {
      background: #ffffff;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }

  .comment-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1.3rem;
      flex-shrink: 0;
      background: linear-gradient(135deg, #feb100 0%, #ffc933 100%);
  }

  .comment-content {
      flex: 1;
  }

  .comment-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
  }

  .comment-author {
      font-weight: 600;
      color: #272b2e;
      font-size: 1.05rem;
  }

  .comment-date {
      color: #5B6880;
      font-size: 0.9rem;
  }

  .comment-text {
      color: #5B6880;
      line-height: 1.7;
      margin-bottom: 10px;
  }

  .comment-reply {
      color: #feb100;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s ease;
  }

  .comment-reply:hover {
      color: #ffc933;
  }

  /* Comment Form */
  .comment-form-wrapper {
      background: #ffffff;
      padding: 35px;
      border-radius: 15px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      margin-top: 30px;
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-control {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid #e9ecef;
      border-radius: 10px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: #f8f9fa;
  }

  .form-control:focus {
      outline: none;
      border-color: #feb100;
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(254, 177, 0, 0.1);
  }

  .form-control textarea {
      min-height: 150px;
      resize: vertical;
  }

  .submit-btn {
      background: linear-gradient(135deg, #feb100 0%, #ffc933 100%);
      color: white;
      padding: 14px 35px;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(254, 177, 0, 0.3);
  }

  .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(254, 177, 0, 0.4);
  }

  /* Sidebar Styles */
  .blog-sidebar {
      position: sticky;
      top: 120px;
  }

  .sidebar-widget {
      background: #ffffff;
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      border: 1px solid #e9ecef;
  }

  .widget-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #272b2e;
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 3px solid #feb100;
      position: relative;
  }

  .search-box {
      position: relative;
  }

  .search-input {
      width: 100%;
      padding: 14px 50px 14px 18px;
      border: 2px solid #e9ecef;
      border-radius: 10px;
      font-size: 1rem;
      transition: all 0.3s ease;
  }

  .search-input:focus {
      outline: none;
      border-color: #feb100;
      box-shadow: 0 0 0 3px rgba(254, 177, 0, 0.1);
  }

  .search-btn {
      position: absolute;
      right: 5px;
      top: 50%;
      transform: translateY(-50%);
      background: linear-gradient(135deg, #feb100 0%, #ffc933 100%);
      color: white;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .search-btn:hover {
      transform: translateY(-50%) scale(1.1);
  }

  .category-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .category-list li {
      padding: 12px 0;
      border-bottom: 1px solid #f0f0f0;
  }

  .category-list li:last-child {
      border-bottom: none;
  }

  .category-list a {
      color: #5B6880;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.3s ease;
      font-size: 1rem;
  }

  .category-list a:hover {
      color: #feb100;
      padding-left: 10px;
  }

  .category-list a::after {
      content: '→';
      color: #feb100;
      font-weight: bold;
      transition: all 0.3s ease;
  }

  .category-list a:hover::after {
      transform: translateX(5px);
  }

  .recent-posts-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .recent-post-item {
      padding: 15px 0;
      border-bottom: 1px solid #f0f0f0;
  }

  .recent-post-item:last-child {
      border-bottom: none;
  }

  .recent-post-item:hover {
      padding-left: 5px;
  }

  .recent-post-link {
      display: flex;
      gap: 15px;
      color: #272b2e;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .recent-post-link:hover {
      color: #feb100;
  }

  .recent-post-image {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      border-radius: 10px;
      overflow: hidden;
      background: #f0f0f0;
  }

  .recent-post-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
  }

  .recent-post-link:hover .recent-post-image img {
      transform: scale(1.1);
  }

  .recent-post-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .recent-post-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: #272b2e;
      margin: 0 0 8px 0;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: color 0.3s ease;
  }

  .recent-post-link:hover .recent-post-title {
      color: #feb100;
  }

  .recent-post-date {
      font-size: 0.85rem;
      color: #5B6880;
      margin: 0;
  }

  .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
  }

  .tag-cloud a {
      background: #f5f8ff;
      color: #272b2e;
      padding: 8px 18px;
      border-radius: 25px;
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      border: 1px solid #e9ecef;
  }

  .tag-cloud a:hover {
      background: #feb100;
      color: white;
      border-color: #feb100;
      transform: translateY(-2px);
  }

  .newsletter-box {
      background: linear-gradient(135deg, #feb100 0%, #ffc933 100%);
      padding: 35px;
      border-radius: 15px;
      color: white;
      text-align: center;
  }

  .newsletter-box h5 {
      color: white;
      font-size: 1.5rem;
      margin-bottom: 10px;
  }

  .newsletter-box p {
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 25px;
      font-size: 0.95rem;
  }

  .newsletter-input {
      width: 100%;
      padding: 14px 18px;
      border: none;
      border-radius: 10px;
      margin-bottom: 15px;
      font-size: 1rem;
  }

  .newsletter-btn {
      width: 100%;
      padding: 14px;
      background: #30373f;
      color: white;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .newsletter-btn:hover {
      background: #272b2e;
      transform: translateY(-2px);
  }

  @media (max-width: 991px) {
      .blog-sidebar {
          position: relative;
          top: 0;
          margin-top: 40px;
      }

      .blog-content-wrapper {
          padding: 30px 20px;
      }

      .blog-title {
          font-size: 2rem;
      }

      .blog-tags-share {
          flex-direction: column;
          align-items: flex-start;
      }
  }

  /* FAQ Item (background stays) */
  /* FAQ Item (background stays) */
  .faq-item {
      background: #dbe1e9;
      /* background NOT removed */
      border-radius: 6px;
      margin-bottom: 12px;
  }

  /* Question wrapper */
  .faq-question {
      padding: 14px 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
  }

  /* Question text */
  .faq-question h3 {
      margin: 0;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.5;
      flex: 1;
      /* text takes full width */
      padding-right: 30px;
      /* space for + */
      position: relative;
  }

  /* Plus icon always right-end */
  .faq-icon {
      position: absolute;
      right: 18px;
      font-size: 20px;
      font-weight: bold;
  }

  /* Answer */
  .faq-answer {
      display: none;
      padding: 0 18px 14px;
  }

  .faq-item.active .faq-answer {
      display: block;
  }

  /* Rotate + on open */
  .faq-item.active .faq-icon {
      transform: rotate(45deg);
  }

  /* Answer text */
  .faq-answer h3 {
      margin: 0;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.6;
      color: #333;
  }