/* =========================
   INNER PAGES (BLOG, REVIEWS)
========================= */

/* Page spacing */
.inner-page {
  padding: 60px 20px;
}

/* HERO SECTION */
.blog-hero {
  text-align: center;
  padding: 80px 20px 60px;
  max-width: 900px;
  margin: auto;
}

.blog-hero h1 {
  font-size: 42px;
  color: var(--gold, #d4af37);
  margin-bottom: 12px;
}

.blog-hero p {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.6;
}

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start; /* 🔑 THIS FIXES THE HEIGHT ISSUE */
}

/* BLOG CARD */
.blog-card {
  background: #121212;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.blog-card-content {
  padding: 22px;
}

.blog-tag {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold, #d4af37);
}

.blog-card h2 {
  font-size: 20px;
  margin: 10px 0;
  color: #ffffff;
}

.blog-card p {
  font-size: 14px;
  color: #bdbdbd;
  line-height: 1.6;
}

/* READ MORE */
.blog-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold, #d4af37);
  text-decoration: none;
  font-weight: 500;
}
/* =========================
   BLOG TYPOGRAPHY POLISH
========================= */

/* General article text */
.blog-article {
  max-width: 780px;
  margin: 80px auto;
  padding: 0 20px;
  line-height: 1.9;
}

/* Article title */
.blog-article h1 {
  font-size: 44px;
  color: var(--gold, #d4af37);
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Meta (date, author) */
.blog-meta {
  font-size: 14px;
  color: #999;
  margin-bottom: 40px;
}

/* Paragraphs */
.blog-article p {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 26px;
}

/* Sub-headings */
.blog-article h2 {
  font-size: 26px;
  color: #ffffff;
  margin: 50px 0 16px;
}

.blog-article h3 {
  font-size: 22px;
  color: #d4af37;
  margin: 40px 0 14px;
}

/* Lists */
.blog-article ul {
  margin: 20px 0 30px 20px;
}

.blog-article li {
  font-size: 17px;
  color: #d0d0d0;
  margin-bottom: 12px;
}

/* Links inside articles */
.blog-article a {
  color: #d4af37;
  text-decoration: underline;
}

/* Highlight box (pro touch) */
.highlight-box {
  background: #121212;
  border-left: 4px solid #d4af37;
  padding: 20px;
  margin: 40px 0;
  color: #ddd;
  font-style: italic;
}
/* =========================
   REVIEW (MONEY) PAGES
========================= */

.review-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.review-section h1 {
  font-size: 42px;
  color: var(--gold, #d4af37);
  margin-bottom: 20px;
}

.review-section p {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* REVIEW CARD */
.review-card {
  background: #121212;
  border-radius: 14px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.review-card h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 16px;
  color: #cfcfcf;
  margin-bottom: 18px;
}

/* BUY BUTTON */
.review-card a {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(90deg, #d4af37, #ffdd77);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}
/* =========================
   COMPARISON TABLE
========================= */

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 50px 0;
  background: #121212;
  border-radius: 14px;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
}

.compare-table th {
  background: #0f0f0f;
  color: var(--gold, #d4af37);
  font-weight: 600;
  font-size: 15px;
}

.compare-table td {
  color: #e0e0e0;
  font-size: 15px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.compare-table tr:hover {
  background: rgba(212,175,55,0.05);
}

.compare-table a {
  color: var(--gold, #d4af37);
  font-weight: 600;
  text-decoration: none;
}
/* =========================
   RELATED ARTICLES
========================= */

.related-articles {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.related-articles h3 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 25px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.related-card {
  background: #121212;
  padding: 22px;
  border-radius: 14px;
  transition: transform 0.25s ease;
}

.related-card:hover {
  transform: translateY(-4px);
}

.related-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.related-card p {
  font-size: 14px;
  color: #bdbdbd;
  margin-bottom: 12px;
}

.related-card a {
  color: var(--gold, #d4af37);
  text-decoration: none;
  font-weight: 500;
}
/* =========================
   BREADCRUMBS
========================= */

.breadcrumbs {
  max-width: 900px;
  margin: 30px auto 0;
  padding: 0 20px;
  font-size: 14px;
  color: #aaa;
}

.breadcrumbs a {
  color: var(--gold, #d4af37);
  text-decoration: none;
}

.breadcrumbs span {
  margin: 0 8px;
  color: #666;
}
/* =========================
   BLOG CTA BOX
========================= */

.blog-cta {
  margin: 70px 0;
  padding: 35px;
  background: linear-gradient(135deg, #121212, #0c0c0c);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 16px;
  text-align: center;
}

.blog-cta h3 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 12px;
}

.blog-cta p {
  font-size: 16px;
  color: #cfcfcf;
  margin-bottom: 22px;
}

.blog-cta a {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(90deg, #d4af37, #ffdd77);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
}
/* =========================
   COMING SOON PAGE
========================= */
.coming-soon {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.coming-soon h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.coming-soon p {
  max-width: 600px;
  opacity: 0.8;
  margin-bottom: 25px;
}

/* =========================
   REVIEWS PAGE
========================= */
.reviews-hero {
  text-align: center;
  padding: 80px 20px 50px;
  max-width: 900px;
  margin: auto;
}

.reviews-grid {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.review-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.review-card h2 {
  margin-bottom: 10px;
}

.review-card p {
  opacity: 0.75;
  margin-bottom: 20px;
}
/* =========================
   REVIEWS HUB
========================= */

.reviews-hero {
  text-align: center;
  padding: 80px 20px 50px;
  max-width: 900px;
  margin: auto;
}

.reviews-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.reviews-hero p {
  font-size: 1.1rem;
  opacity: 0.8;
}

.reviews-grid {
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.review-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.review-card h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 20px;
}

.review-card .btn {
  align-self: flex-start;
}

.btn.disabled {
  pointer-events: none;
  opacity: 0.4;
}
/* =========================
   BLOG → REVIEW CTA
========================= */

.blog-cta {
  margin: 60px 0 40px;
  padding: 35px 30px;
  background: linear-gradient(
    135deg,
    rgba(218,165,32,0.12),
    rgba(0,0,0,0.6)
  );
  border: 1px solid rgba(218,165,32,0.35);
  border-radius: 16px;
  text-align: center;
}

.blog-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.blog-cta p {
  max-width: 620px;
  margin: 0 auto 22px;
  opacity: 0.85;
}
/* =========================
   CATEGORY PAGE
========================= */

.category-hero {
  text-align: center;
  padding: 80px 20px 50px;
  max-width: 900px;
  margin: auto;
}

.category-info {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.category-info ul {
  margin-top: 15px;
  line-height: 1.8;
}

.category-note {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  opacity: 0.8;
}
/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.review-card {
  background: rgba(255,255,255,0.04);
  padding: 24px;
  border-radius: 14px;
}

.review-card h2 {
  margin-bottom: 10px;
}

.review-card p {
  margin-bottom: 16px;
  line-height: 1.6;
}
.blog-card.no-image {
  padding: 24px;
  background: #0b0b0b;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.blog-card.no-image:hover {
  border-color: rgba(255, 215, 0, 0.35);
  transform: translateY(-2px);
}
/* CLEAN BLOG CARD – IMAGELESS */
.blog-card-clean {
  background: #0b0b0b;
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.25s ease;
}

.blog-card-clean:hover {
  border-color: rgba(255, 215, 0, 0.35);
  transform: translateY(-2px);
}

.blog-card-clean .blog-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffd700;
}

.blog-card-clean h2 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
}

.blog-card-clean .blog-excerpt {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.blog-card-clean .blog-read-more {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
}

.blog-card-clean .blog-read-more:hover {
  text-decoration: underline;
}
.blog-card-clean {
  height: auto !important;
  min-height: unset !important;
}
.blog-card-clean {
  background: #0b0b0b;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: auto;
}

.blog-tag {
  font-size: 12px;
  letter-spacing: 1px;
  color: #f5c842;
}

.read-more {
  color: #f5c842;
  font-weight: 600;
  margin-top: auto;
}
/* =========================
   BLOG GRID – CLEAN CARDS
========================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

/* =========================
   BLOG CARD
========================= */

.blog-card-clean {
  background: linear-gradient(180deg, #0e0e0e, #050505);
  border: 1px solid rgba(255, 200, 0, 0.18);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-clean:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

/* =========================
   BLOG TAG
========================= */

.blog-tag {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffd200;
  margin-bottom: 12px;
  font-weight: 600;
}

/* =========================
   BLOG TITLE
========================= */

.blog-card-clean h2 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #ffffff;
}

/* =========================
   BLOG EXCERPT
========================= */

.blog-card-clean p {
  font-size: 15px;
  line-height: 1.6;
  color: #cfcfcf;
  margin-bottom: 20px;
}

/* =========================
   READ MORE LINK
========================= */

.blog-card-clean .read-more {
  align-self: flex-start;
  font-weight: 600;
  color: #ffd200;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.blog-card-clean .read-more:hover {
  border-color: #ffd200;
  transform: translateX(4px);
}
/* =========================
   BLOG GRID
========================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

/* =========================
   BLOG CARD
========================= */
.blog-grid .card {
  background: #111;
  border-radius: 14px;
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.65);
}

/* =========================
   CATEGORY TAG
========================= */
.blog-grid .tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d4af37, #a67c00);
  color: #000;
  width: fit-content;
  margin-bottom: 14px;
}

/* =========================
   CARD TITLE
========================= */
.blog-grid h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* =========================
   CARD DESCRIPTION
========================= */
.blog-grid p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 18px;
}

/* =========================
   READ MORE LINK
========================= */
.blog-grid a {
  margin-top: auto;
  font-weight: 600;
  text-decoration: none;
  color: #d4af37;
  transition: color 0.3s ease;
}

.blog-grid a:hover {
  color: #fff;
}
/* =========================
   RELATED / HELPFUL ARTICLES
========================= */

.related-articles {
  margin-top: 60px;
  padding: 30px;
  border-radius: 14px;
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.related-articles h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: #d4af37; /* gold accent */
  letter-spacing: 0.5px;
}

.related-articles ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-articles li {
  margin-bottom: 12px;
}

.related-articles li:last-child {
  margin-bottom: 0;
}

.related-articles a {
  display: block;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #eaeaea;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.related-articles a:hover {
  background: linear-gradient(135deg, #d4af37, #a67c00);
  color: #000;
  transform: translateX(6px);
  border-color: transparent;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {
  .related-articles {
    padding: 22px;
  }

  .related-articles h3 {
    font-size: 1.15rem;
  }

  .related-articles a {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
}
/* =========================
   MOBILE NAVIGATION
========================= */

/* Hide mobile nav by default */
.mobile-nav,
.mobile-nav-toggle {
  display: none;
}

/* Ensure header stays on top */
.header {
  position: relative;
  z-index: 3000;
}

/* Mobile styles */
@media (max-width: 768px) {

  /* Hide desktop nav */
  .main-nav {
    display: none;
  }

  /* Hamburger button */
  .mobile-nav-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.9rem;
    background: none;
    border: none;
    color: #d4af37;
    cursor: pointer;
    z-index: 3001;
  }

  /* Mobile menu container */
  .mobile-nav {
    position: absolute;
    top: 70px; /* below header */
    left: 0;
    width: 100%;
    background: #111;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 18px;
    z-index: 3000;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

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

  .mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

