/* ============================
   BLOG PAGE STYLES
   ============================ */

/* INTRO */
.blog-intro {
  background: linear-gradient(rgba(249,249,249,0.94), rgba(249,249,249,0.94)),
    url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1600') center/cover no-repeat fixed;
  padding: 80px 0 30px;
}

.blog-label {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: #c9a84c;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  padding: 8px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.blog-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f2a3c;
  margin-bottom: 18px;
  line-height: 1.3;
}

.blog-section-title span {
  color: #c9a84c;
}

.blog-text {
  color: #555;
  font-size: 15px;
  line-height: 1.85;
}

/* BLOG LISTING */
.blog-listing {
  background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600') center/cover no-repeat fixed;
  padding: 30px 0 80px;
}

.blog-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border-color: rgba(201,168,76,0.25);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(201,168,76,0.95);
  color: #0f2a3c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 20px;
  z-index: 2;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.blog-card-category:hover {
  background: #0f2a3c;
  color: #fff;
  text-decoration: underline;
}

.blog-card-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-card-meta span {
  color: #999;
  font-size: 12px;
  font-weight: 600;
}

.blog-card-meta span i {
  color: #c9a84c;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f2a3c;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.blog-card:hover .blog-card-title {
  color: #c9a84c;
}

.blog-card-excerpt {
  color: #666;
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
  margin-top: auto;
}

.blog-read-more {
  color: #c9a84c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.blog-card:hover .blog-read-more {
  letter-spacing: 1.5px;
}

.blog-read-more i {
  transition: transform 0.3s;
}

.blog-card:hover .blog-read-more i {
  transform: translateX(4px);
}

/* ============================
   BLOG DETAIL PAGE
   ============================ */
.blog-detail {
  background: linear-gradient(rgba(249,249,249,0.95), rgba(249,249,249,0.95)),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600') center/cover no-repeat fixed;
  padding: 80px 0;
}

.blog-detail-box {
  background: #fff;
  border-radius: 16px;
  padding: 36px 34px;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* Meta */
.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}

.blog-detail-meta span {
  color: #888;
  font-size: 13px;
  font-weight: 600;
}

.blog-detail-meta span i {
  color: #c9a84c;
}

.blog-detail-category {
  background: rgba(201,168,76,0.1);
  color: #c9a84c !important;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px !important;
}

/* Image */
.blog-detail-img {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
}

.blog-detail-img img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

/* Content */
.blog-detail-content {
  color: #444;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 30px;
}

.blog-detail-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0f2a3c;
  margin: 30px 0 14px;
}

.blog-detail-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f2a3c;
  margin: 24px 0 12px;
}

.blog-detail-content p {
  margin-bottom: 16px;
}

.blog-detail-content ul,
.blog-detail-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.blog-detail-content li {
  margin-bottom: 8px;
  line-height: 1.75;
}

.blog-detail-content strong {
  color: #0f2a3c;
}

.blog-detail-content blockquote {
  background: rgba(201,168,76,0.06);
  border-left: 4px solid #c9a84c;
  padding: 18px 24px;
  border-radius: 0 10px 10px 0;
  margin: 20px 0;
  font-style: italic;
  color: #555;
}

/* Tags */
.blog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.tags-label {
  color: #0f2a3c;
  font-weight: 700;
  font-size: 14px;
}

.blog-tag {
  background: #f5f5f5;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  transition: all 0.3s;
}

.blog-tag:hover {
  background: rgba(201,168,76,0.1);
  color: #c9a84c;
}

/* Share */
.blog-detail-share {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid #f0f0f0;
}

.share-label {
  color: #0f2a3c;
  font-weight: 700;
  font-size: 14px;
}

.blog-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.blog-share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: #fff;
}

.blog-share-btn.facebook { background: #1877f2; }
.blog-share-btn.twitter { background: #1da1f2; }
.blog-share-btn.whatsapp { background: #25d366; }
.blog-share-btn.linkedin { background: #0077b5; }

/* ============================
   SIDEBAR
   ============================ */
.blog-sidebar-widget {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  margin-bottom: 24px;
}

.blog-sidebar-widget h4 {
  font-size: 17px;
  font-weight: 800;
  color: #0f2a3c;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.blog-sidebar-widget > p {
  color: #666;
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.sidebar-cta-btn {
  display: inline-block;
  background: #0f2a3c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
}

.sidebar-cta-btn:hover {
  background: #c9a84c;
  color: #0f2a3c;
}

/* Recent Posts */
.sidebar-post {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.sidebar-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-post:hover {
  padding-left: 4px;
}

.sidebar-post-img {
  width: 70px;
  height: 55px;
  min-width: 70px;
  border-radius: 8px;
  overflow: hidden;
}

.sidebar-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebar-post-info h6 {
  font-size: 13px;
  font-weight: 700;
  color: #0f2a3c;
  margin-bottom: 4px;
  line-height: 1.35;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-post:hover .sidebar-post-info h6 {
  color: #c9a84c;
}

.sidebar-post-info span {
  color: #999;
  font-size: 11px;
  font-weight: 600;
}

.sidebar-post-info span i {
  color: #c9a84c;
}

/* Categories */
.sidebar-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-category {
  background: #f5f5f5;
  color: #555;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.sidebar-category:hover {
  background: rgba(201,168,76,0.12);
  color: #c9a84c;
}

/* CTA Widget */
.blog-sidebar-cta {
  background: linear-gradient(135deg, #0f2a3c 0%, #0c1e2a 100%);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.sidebar-cta-content {
  padding: 28px 24px;
  text-align: center;
}

.sidebar-cta-content h4 {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 10px;
}

.sidebar-cta-content p {
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.sidebar-cta-btn-gold {
  display: inline-block;
  background: #c9a84c;
  color: #0f2a3c;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
}

.sidebar-cta-btn-gold:hover {
  background: #e0c065;
  color: #0f2a3c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

/* ============================
   BLOG CTA SECTION
   ============================ */
.blog-cta {
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600') center/cover no-repeat fixed;
  padding: 80px 0;
}

.blog-cta h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
}

.blog-cta h2 span {
  color: #c9a84c;
}

.blog-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.75;
}

.btn-blog-cta {
  background: #c9a84c;
  color: #0f2a3c;
  font-weight: 700;
  padding: 13px 36px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-blog-cta:hover {
  background: #e0c065;
  color: #0f2a3c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

.btn-blog-cta-outline {
  background: transparent;
  color: #c9a84c;
  font-weight: 700;
  padding: 13px 36px;
  border-radius: 50px;
  border: 2px solid #c9a84c;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-left: 14px;
  text-decoration: none;
  display: inline-block;
}

.btn-blog-cta-outline:hover {
  background: #c9a84c;
  color: #0f2a3c;
  transform: translateY(-2px);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 991px) {
  .blog-section-title {
    font-size: 28px;
  }
  .blog-cta h2 {
    font-size: 28px;
  }
  .blog-detail-box {
    padding: 28px 22px;
  }
}

@media (max-width: 576px) {
  .blog-intro {
    padding: 50px 0 15px;
  }
  .blog-listing {
    padding: 15px 0 50px;
  }
  .blog-detail,
  .blog-cta {
    padding: 50px 0;
  }
  .blog-section-title {
    font-size: 22px;
  }
  .blog-cta h2 {
    font-size: 20px;
  }
  .blog-card-img {
    height: 180px;
  }
  .blog-card-title {
    font-size: 15px;
  }
  .blog-detail-box {
    padding: 20px 16px;
  }
  .blog-detail-content {
    font-size: 14px;
  }
  .blog-detail-content h2 {
    font-size: 18px;
  }
  .blog-detail-meta {
    gap: 10px;
  }
  .btn-blog-cta,
  .btn-blog-cta-outline {
    display: block;
    width: 100%;
    text-align: center;
  }
  .btn-blog-cta-outline {
    margin-left: 0;
    margin-top: 12px;
  }

  /* Why section mobile */
  .blog-why-section {
    padding: 0 0 20px;
  }
  .blog-why-card {
    padding: 22px 18px;
  }
  .blog-why-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .blog-why-card h4 {
    font-size: 15px;
  }

  /* Subscribe section mobile */
  .blog-subscribe-section {
    padding: 50px 0;
  }
  .blog-subscribe-box {
    padding: 28px 20px;
    border-radius: 18px;
  }
  .blog-subscribe-title {
    font-size: 22px;
  }
  .blog-subscribe-social {
    flex-direction: column;
  }
  .blog-social-btn {
    justify-content: center;
  }
  .blog-subscribe-stats {
    gap: 12px;
    margin-top: 24px;
  }
  .blog-stat {
    padding: 18px 14px;
  }
  .blog-stat-number {
    font-size: 24px;
  }
}

/* BLOG HEADER SLIDER */
.blog-slider-section {
  background: linear-gradient(rgba(255,255,255,0.97), rgba(255,255,255,0.97)),
    url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1600') center/cover no-repeat fixed;
  padding: 40px 0 10px;
}
.blog-slider-section .carousel-item {
  min-height: 220px;
}
.blog-slider-section img {
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* BLOG FILTER BAR */
.blog-filter-bar {
  background: #f9f9f9;
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* Search Box */
.blog-search-box {
  position: relative;
  flex: 0 0 auto;
  width: 280px;
}
.blog-search-box i.fa-search {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 0.9rem;
  pointer-events: none;
}
.blog-search-box input {
  width: 100%;
  padding: 11px 38px 11px 42px;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.3s;
}
.blog-search-box input:focus {
  border-color: #c9a84c;
}
.blog-search-box input::placeholder {
  color: #bbb;
}
.clear-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #bbb;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 50%;
  transition: all 0.2s;
  display: none;
}
.clear-search.visible {
  display: block;
}
.clear-search:hover {
  color: #c9a84c;
  background: #f0f0f0;
}

/* BLOG CATEGORIES FILTER */
.blog-categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1 1 auto;
}
.blog-categories-filter .btn {
  font-weight: 600;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 0.82rem;
  background: #fff;
  color: #555;
  border: 1.5px solid #ddd;
  transition: all 0.25s;
  cursor: pointer;
}
.blog-categories-filter .btn:hover {
  background: #f0e6c8;
  border-color: #c9a84c;
  color: #0f2a3c;
}
.blog-categories-filter .btn.active,
.blog-categories-filter .btn:active {
  background: #c9a84c !important;
  color: #0f2a3c !important;
  border-color: #c9a84c !important;
}

/* Results Info */
.blog-results-info {
  font-size: 0.85rem;
  color: #999;
  font-weight: 500;
  flex: 0 0 auto;
  margin-left: auto;
}
.blog-results-info span {
  font-weight: 700;
  color: #0f2a3c;
}

/* Blog card hide animation */
.blog-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.blog-item.hidden {
  display: none !important;
}

/* ============================
   MOBILE FILTER — FAB + DRAWER (hidden on desktop)
   ============================ */
.blog-mobile-filter-fab {
  display: none;
}
.blog-filter-overlay {
  display: none;
}
.blog-drawer-header {
  display: none;
}

@media (max-width: 991px) {
  .blog-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .blog-search-box {
    width: 100%;
  }
  .blog-results-info {
    margin-left: 0;
    text-align: center;
  }
}

/* ===== MOBILE APP-STYLE BOTTOM SHEET ===== */
@media (max-width: 768px) {

  /* FAB button */
  .blog-mobile-filter-fab {
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1040;
    background: linear-gradient(135deg, #c9a84c, #b89640);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(201,168,76,0.45), 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
  }

  .blog-mobile-filter-fab:active {
    transform: scale(0.95);
  }

  .blog-mobile-filter-fab i {
    font-size: 16px;
  }

  .blog-fab-badge {
    background: #fff;
    color: #c9a84c;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
  }

  /* Overlay */
  .blog-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1049;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .blog-filter-overlay.open {
    display: block;
    opacity: 1;
  }

  /* Bottom sheet drawer */
  .blog-filter-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    margin-bottom: 0;
    border-radius: 24px 24px 0 0;
    padding: 0 20px 28px;
    background: #fff;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
    border: none;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .blog-filter-bar.open {
    transform: translateY(0);
  }

  /* Drawer header */
  .blog-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 12px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 4px;
  }

  .blog-drawer-handle {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 4px;
  }

  .blog-drawer-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f2a3c;
    letter-spacing: 0.3px;
  }

  .blog-drawer-title i {
    color: #c9a84c;
    margin-right: 8px;
  }

  .blog-drawer-close {
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .blog-drawer-close:active {
    background: #eee;
    color: #555;
  }

  /* Search box full width */
  .blog-search-box {
    width: 100%;
  }

  .blog-search-box input {
    padding: 14px 38px 14px 42px;
    font-size: 15px;
    border-radius: 14px;
    background: #f8f9fa;
  }

  /* Category pills — vertical wrap in drawer */
  .blog-categories-filter {
    gap: 10px;
  }

  .blog-categories-filter .btn {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 14px;
  }

  /* Results info */
  .blog-results-info {
    margin-left: 0;
    text-align: center;
    padding-top: 4px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .blog-filter-bar {
    padding: 16px 18px;
  }
  .blog-categories-filter .btn {
    padding: 7px 14px;
    font-size: 0.78rem;
  }
}

/* Category filter links */
.blog-categories-filter a.btn {
  text-decoration: none;
}

/* Pagination */
.blog-pagination nav {
  display: flex;
  justify-content: center;
}
.blog-pagination .pagination {
  gap: 6px;
}
.blog-pagination .page-link {
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f2a3c;
  border: 1.5px solid #ddd;
  background: #fff;
  transition: all 0.2s;
}
.blog-pagination .page-link:hover {
  background: #f0e6c8;
  border-color: #c9a84c;
  color: #0f2a3c;
}
.blog-pagination .page-item.active .page-link {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #0f2a3c;
}
.blog-pagination .page-item.disabled .page-link {
  color: #ccc;
  background: #f9f9f9;
}

/* ============================
   WHY READ OUR BLOG SECTION
   ============================ */
.blog-why-section {
  padding: 0 0 40px;
  background: linear-gradient(rgba(249,249,249,0.94), rgba(249,249,249,0.94)),
    url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1600') center/cover no-repeat fixed;
}

.blog-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  border: 1.5px solid #f0f0f0;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  border-color: rgba(201,168,76,0.25);
}

.blog-why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(201,168,76,0.1);
  color: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 18px;
}

.blog-why-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: #0f2a3c;
  margin-bottom: 10px;
}

.blog-why-card p {
  font-size: 13.5px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

/* ============================
   NEWSLETTER / SUBSCRIBE SECTION
   ============================ */
.blog-subscribe-section {
  padding: 80px 0;
  background: #fff;
}

.blog-subscribe-box {
  background: linear-gradient(135deg, #faf8f2, #fff);
  border-radius: 24px;
  padding: 48px 42px;
  border: 1.5px solid #f0ead8;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.blog-subscribe-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f2a3c;
  margin-bottom: 12px;
}

.blog-subscribe-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 24px;
}

.blog-subscribe-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.blog-social-btn.facebook { background: #1877f2; }
.blog-social-btn.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.blog-social-btn.youtube { background: #ff0000; }

.blog-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: #fff;
}

/* Stats grid */
.blog-subscribe-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.blog-stat {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  border: 1.5px solid #f0f0f0;
  transition: all 0.3s ease;
}

.blog-stat:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.blog-stat-number {
  font-size: 30px;
  font-weight: 800;
  color: #c9a84c;
  line-height: 1;
  margin-bottom: 6px;
}

.blog-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
