/* Blog Page Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.headerContent {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.backButton {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.backButton:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(-3px);
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 120px 20px 100px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroBackground {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.heroOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.75) 50%, rgba(0, 118, 163, 0.3) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 118, 163, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.heroContent {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.heroTitle {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.heroDescription {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 0;
}

.blogSection {
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.blogGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.blogCard {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.blogCard:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 118, 163, 0.8);
  box-shadow: 0 20px 40px rgba(0, 118, 163, 0.3);
  background: rgba(0, 118, 163, 0.05);
}

.blogCardHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.blogCategory {
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0, 118, 163, 0.15);
  color: #66b3d1;
  font-weight: 600;
}

.blogReadTime {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.blogTitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blogExcerpt {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blogFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blogAuthor {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.authorName {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.blogDate {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.readMore {
  font-size: 0.95rem;
  color: #0076a3;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.blogCard:hover .readMore {
  transform: translateX(5px);
}

/* Suggested Blogs Section */
.suggestedSection {
  padding: 80px 20px;
  background: var(--bg-secondary);
  max-width: 1400px;
  margin: 0 auto;
}

.suggestedContainer {
  width: 100%;
}

.suggestedTitle {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #b8b8c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.suggestedGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.suggestedCard {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.suggestedCard:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 118, 163, 0.8);
  box-shadow: 0 20px 40px rgba(0, 118, 163, 0.3);
  background: rgba(0, 118, 163, 0.05);
}

.suggestedCardHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.suggestedCategory {
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0, 118, 163, 0.15);
  color: #66b3d1;
  font-weight: 600;
}

.suggestedReadTime {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.suggestedCardTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  flex-grow: 1;
}

.suggestedCardFooter {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.suggestedReadMore {
  font-size: 0.95rem;
  color: #0076a3;
  font-weight: 600;
  transition: transform 0.3s ease;
  display: inline-block;
}

.suggestedCard:hover .suggestedReadMore {
  transform: translateX(5px);
}

/* Services Promotion Section */
.servicesPromoSection {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.1) 0%, rgba(0, 153, 204, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.servicesPromoSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 118, 163, 0.5) 50%, transparent 100%);
}

.servicesPromoContainer {
  max-width: 1400px;
  margin: 0 auto;
}

.servicesPromoContent {
  text-align: center;
}

.servicesPromoTitle {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #b8b8c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.servicesPromoDescription {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.servicesPromoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.servicePromoCard {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.servicePromoCard:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 118, 163, 0.5);
  box-shadow: 0 15px 35px rgba(0, 118, 163, 0.2);
}

.servicePromoIcon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 118, 163, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #66b3d1;
}

.servicePromoCardTitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.servicePromoCardDescription {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.servicesPromoCTA {
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 118, 163, 0.3);
}

.servicesPromoCTA:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 118, 163, 0.4);
}

.footer {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 80px;
}

/* Blog Post Page Styles */
.article {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.articleHeader {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category {
  display: inline-block;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0, 118, 163, 0.15);
  color: #66b3d1;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.articleTitle {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #b8b8c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.authorInfo {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.date {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.readTime {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.paragraph {
  margin-bottom: 1.5rem;
}

.paragraph strong {
  color: var(--text-primary);
  font-weight: 700;
}

.articleFooter {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.backToBlog {
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.backToBlog:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 118, 163, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .headerContent {
    padding: 0 20px;
    flex-direction: column;
    gap: 15px;
  }

  .heroTitle {
    font-size: 2.5rem;
  }

  .heroDescription {
    font-size: 1.1rem;
  }

  .blogGrid {
    grid-template-columns: 1fr;
  }

  .articleTitle {
    font-size: 2rem;
  }

  .meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .suggestedSection {
    padding: 60px 15px;
  }

  .suggestedTitle {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .suggestedGrid {
    grid-template-columns: 1fr;
  }

  .servicesPromoSection {
    padding: 60px 15px;
  }

  .servicesPromoTitle {
    font-size: 1.75rem;
  }

  .servicesPromoDescription {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .servicesPromoGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .headerContent {
    padding: 0 15px;
  }

  .hero {
    padding: 40px 15px 30px;
  }

  .heroTitle {
    font-size: 1.75rem;
  }

  .heroDescription {
    font-size: 0.95rem;
  }

  .blogGrid {
    padding: 0 15px;
  }

  .blogCard {
    padding: 1.5rem;
  }

  .articleTitle {
    font-size: 1.75rem;
  }

  .content {
    font-size: 0.95rem;
  }
}

