:root {
  --orange: #e8973a;
  --orange-hover: #d4851f;
  --dark-bg: #2c3e50;
  --dark-footer: #1e2d3d;
  --text-dark: #333;
  --text-light: #666;
  --text-white: #fff;
  --border-light: #eee;
  --bg-light: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-inner {
  width: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-img {
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  z-index: 100;
}

.nav-links .dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 8px 20px;
  font-weight: 400;
}

.dropdown-content a:hover {
  background: var(--bg-light);
}

.nav-contact {
  color: var(--text-dark) !important;
  font-weight: 700;
}

.nav-contact:hover {
  color: var(--orange) !important;
}

.btn-cta {
  background: var(--orange);
  color: var(--text-white) !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}

.btn-cta:hover {
  background: var(--orange-hover);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* HERO BLOG */
.blog-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #34495e 100%);
  color: var(--text-white);
  padding: 60px 20px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.blog-hero p {
  font-size: 18px;
  opacity: 0.8;
}

/* CATEGORY FILTERS */
.category-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--orange);
  border-radius: 30px;
  background: #fff;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: var(--orange);
  color: #fff;
}

.filter-btn.active {
  background: var(--orange);
  color: #fff;
}

.article-card.hidden {
  display: none;
}

/* BLOG CONTENT */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.article-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--bg-light);
}

.article-card-body {
  padding: 24px;
}

.article-card-category {
  display: inline-block;
  background: var(--orange);
  color: var(--text-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.article-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--text-dark);
}

.article-card-title a:hover {
  color: var(--orange);
}

.article-card-excerpt {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.article-card-date {
  color: var(--orange);
  font-weight: 600;
}

.read-more {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
  transition: color 0.2s;
}

.read-more:hover {
  color: var(--orange-hover);
}

/* ARTICLE PAGE */
.article-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.article-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 30px;
}

.article-page .back-link:hover {
  color: var(--orange-hover);
}

.article-header {
  margin-bottom: 30px;
}

.article-header .category-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--text-white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.article-header h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.article-header .article-meta {
  color: var(--text-light);
  font-size: 14px;
}

.article-header .article-meta .date {
  color: var(--orange);
  font-weight: 600;
}

.article-featured-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  max-height: 400px;
  object-fit: cover;
}

.article-content h2 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--text-dark);
}

.article-content h3 {
  font-size: 20px;
  margin: 25px 0 12px;
  color: var(--text-dark);
}

.article-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.article-content ul, .article-content ol {
  margin: 16px 0;
  padding-left: 30px;
}

.article-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.article-content a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(232, 151, 58, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}

.article-content a:hover {
  text-decoration-color: var(--orange);
}

.article-content img {
  width: 100%;
  border-radius: 12px;
  margin: 10px 0 20px;
  max-height: 450px;
  object-fit: cover;
}

.article-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--text-white) !important;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none !important;
  margin: 10px 0 20px;
  transition: background 0.2s;
}

.article-cta:hover {
  background: var(--orange-hover);
}

/* FOOTER */
.footer {
  background: var(--dark-bg);
  color: var(--text-white);
  padding: 60px 20px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .footer-logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-brand .footer-logo .logo-o {
  color: var(--orange);
}

.footer-brand p {
  opacity: 0.7;
  font-size: 14px;
}

.footer-links h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  opacity: 0.7;
  font-size: 14px;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--orange);
}

.footer-social h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-size: 16px;
}

.social-icons a:hover {
  background: var(--orange);
}

.made-in {
  font-size: 14px;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  text-align: center;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-inner {
    height: 60px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .blog-hero h1 {
    font-size: 28px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
  }

  .article-header h1 {
    font-size: 26px;
  }
}
