/* PAGE HERO — same as contact.css */
.page-hero {
  background: linear-gradient(135deg, #0d2b4e 0%, #1976c8 100%);
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.page-hero h1 span {
  background: linear-gradient(to right, #ffffff, #a8c8e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* BREADCRUMB — same as contact.css */
.breadcrumb {
  background: #f3f7fc;
  padding: 14px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #667085;
}

.breadcrumb-inner a {
  color: #1976c8;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner i { font-size: 14px; color: #aaa; }

/* BLOG PAGE SECTION */
.blog-page-section {
  padding: 100px 24px;
  background: #fafbfc;
}

/* FILTER TABS */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #667085;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #1976c8;
  border-color: #1976c8;
  color: #fff;
  box-shadow: 0 4px 12px rgba(25,118,200,0.25);
}

/* FEATURED CARD */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.blog-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(25,118,200,0.12);
  border-color: #1976c8;
}

.blog-featured-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-featured:hover .blog-featured-img img {
  transform: scale(1.06);
}

.blog-featured-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(25,118,200,0.1);
  color: #1976c8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}

.blog-featured-content h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: #0d2b4e;
  line-height: 1.35;
  margin-bottom: 16px;
}

.blog-featured-content p {
  font-size: 15px;
  color: #667085;
  line-height: 1.8;
  margin-bottom: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i { color: #1976c8; font-size: 15px; }

/* BLOG CARDS GRID */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
}

.blog-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(25,118,200,0.1);
  border-color: #1976c8;
}

.blog-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-item:hover .blog-card-img img {
  transform: scale(1.08);
}

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #1976c8;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 14px;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-meta i { color: #1976c8; font-size: 14px; }

.blog-card-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0d2b4e;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-body p {
  font-size: 14px;
  color: #667085;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 24px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #1976c8;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-read-more:hover {
  gap: 14px;
  color: #0d2b4e;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}

.page-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #667085;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  text-decoration: none;
}

.page-btn:hover,
.page-btn.active {
  background: #1976c8;
  border-color: #1976c8;
  color: #fff;
  box-shadow: 0 4px 12px rgba(25,118,200,0.25);
}

.page-dots {
  font-size: 14px;
  color: #aaa;
  padding: 0 4px;
}

/* NEWSLETTER — reuses cta-inner from style.css, just adds form style */
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  border: none;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  font-size: 15px;
  outline: none;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  width: 100%;
}

.newsletter-form button {
  padding: 16px 24px;
  background: #0d2b4e;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #4ab5f7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured-img { min-height: 260px; }
  .blog-featured-content { padding: 32px 28px; }
}

@media (max-width: 600px) {
  .blog-cards-grid { grid-template-columns: 1fr; }
  .newsletter-form {
    flex-direction: column;
    border-radius: 12px;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    justify-content: center;
    border-radius: 0;
  }
}
