/*!
Theme Name: AdX Approval
Theme URI: https://adxapproval.com
Author: AdX Approval Team
Author URI: https://adxapproval.com
Description: A professional monetization partner WordPress theme with MCM integration. Features dark theme with neon green accents, responsive design, and full customization options.
Version: 1.5.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adxapproval
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* ============================================
   GLOBAL STYLES
   ============================================ */
:root {
  --primary-color: #10b981;
  --primary-dark: #059669;
  --background-color: #0a0e14;
  --card-background: #1a1f2e;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --border-color: rgba(16, 185, 129, 0.2);
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  outline: none !important;
  box-shadow: none !important;
}

a:focus, button:focus {
  outline: none !important;
  box-shadow: none !important;
}

a:hover {
  color: var(--primary-dark);
}

/* ============================================
   HEADER STYLES
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.header-container {
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  z-index: 1001;
}

.site-logo a {
  color: var(--text-primary);
}

.site-logo .accent {
  color: var(--primary-color);
}

/* ============================================
   MOBILE NAV TOGGLE
   ============================================ */
.mobile-nav-toggle {
  display: none !important;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
}

.hamburger-icon {
  display: block;
  width: 25px;
  height: 18px;
  position: relative;
}

.hamburger-icon .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.hamburger-icon .line:nth-child(1) { top: 0; }
.hamburger-icon .line:nth-child(2) { top: 8px; }
.hamburger-icon .line:nth-child(3) { top: 16px; }

.mobile-nav-toggle.is-active .line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-nav-toggle.is-active .line:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.is-active .line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   DESKTOP NAVIGATION
   ============================================ */
.main-navigation {
  display: flex;
  align-items: center;
  position: static;
  width: auto;
  height: auto;
  background: none;
  padding: 0;
  overflow: visible;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

/* ============================================
   DESKTOP HEADER ACTIONS
   ============================================ */
.desktop-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-login {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 18px;
  border: 1px solid var(--text-primary);
  border-radius: 4px;
}

.btn-signup {
  font-size: 13px;
  font-weight: 600;
  background-color: #000033;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px solid #000033;
}

/* ============================================
   MOBILE RESPONSIVE HEADER
   ============================================ */
@media (max-width: 1024px) {
  .mobile-nav-toggle { display: flex !important; }
  .desktop-header-actions { display: none !important; }
  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--background-color);
    z-index: 1000;
    transition: all 0.4s ease-in-out;
    padding-top: 100px;
    display: block;
    overflow-y: auto;
  }
  .main-navigation.is-active { right: 0; }
  .nav-inner { padding: 0 30px; flex-direction: column; gap: 30px; }
  .nav-menu { flex-direction: column; gap: 20px; width: 100%; }
  .nav-menu li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }
  .nav-menu li a { font-size: 18px; display: block; }
  .mobile-header-actions { display: flex !important; flex-direction: column; gap: 15px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-color); }
  .btn-login-mobile, .btn-signup-mobile { text-align: center; padding: 12px; font-weight: 700; border-radius: 6px; font-size: 16px; }
  .btn-login-mobile { color: #fff; border: 1px solid #fff; }
  .btn-signup-mobile { background-color: var(--primary-color); color: #000; }
}

/* ============================================
   MAIN CONTENT AREA - MOBILE FRIENDLY
   ============================================ */
.site-main {
  margin-top: var(--header-height);
  padding: 15px;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  min-height: calc(100vh - var(--header-height));
  display: block !important; /* Changed from flex to block to ensure natural full width */
  box-sizing: border-box;
}

/* Aggressive full-width override for all inner pages */
.site-main,
.site-main > *,
.site-main article,
.site-main .entry-content,
.site-main .entry-header,
.site-main section {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
  display: block !important;
  float: none !important;
  position: relative !important;
  left: 0 !important;
}

/* Ensure inner content padding remains for readability */
.entry-content, .entry-header {
  padding: 20px !important;
}

@media (min-width: 768px) {
  .entry-content, .entry-header {
    padding: 40px !important;
  }
}

/* Specific fix for the "boxed" appearance seen in screenshots */
body.page #main, body.single #main {
  padding: 20px !important;
  display: block !important;
}

.full-width-page, .full-width-article {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* Content Area for all pages */
.site-main > article,
.site-main > .blog-posts-container,
.site-main > section,
.site-main > .no-results {
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 20px;
  background-color: rgba(26, 31, 46, 0.3);
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%; /* Ensure it takes full width of site-main */
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .site-main {
    padding: 30px;
  }
  .site-main > article,
  .site-main > .blog-posts-container,
  .site-main > section,
  .site-main > .no-results {
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .site-main {
    padding: 40px;
  }
}

/* ============================================
   BLOG SECTION - CARD LAYOUT
   ============================================ */
.blog-posts-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .blog-posts-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (min-width: 1024px) {
  .blog-posts-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* ============================================
   ARTICLE/POST STYLES
   ============================================ */
article {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(26, 31, 46, 0.5);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Ensure single page/post articles don't double border if they are direct children of site-main */
.site-main > article.singular {
  border: 2px solid var(--primary-color);
}

article:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

/* Archive/Blog Page Styles */
.archive article,
.blog article,
.category article {
  display: flex;
  flex-direction: column;
}

.archive article .entry-header,
.blog article .entry-header,
.category article .entry-header,
.archive article .entry-content,
.blog article .entry-content,
.category article .entry-content,
.archive article .entry-footer,
.blog article .entry-footer,
.category article .entry-footer {
  display: none;
}

.post-thumbnail-link {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.post-thumbnail-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.archive article:hover .post-thumbnail-image,
.blog article:hover .post-thumbnail-image,
.category article:hover .post-thumbnail-image {
  transform: scale(1.05);
}

.archive article .entry-title,
.blog article .entry-title,
.category article .entry-title {
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  color: var(--text-primary);
  border-bottom: none;
}

@media (min-width: 768px) {
  .archive article .entry-title,
  .blog article .entry-title,
  .category article .entry-title {
    font-size: 20px;
  }
}

.archive article .entry-title a,
.blog article .entry-title a,
.category article .entry-title a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.archive article .entry-title a:hover,
.blog article .entry-title a:hover,
.category article .entry-title a:hover {
  color: var(--primary-dark);
}

/* Single Post/Page Styles */
.entry-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.entry-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  color: var(--text-primary);
}

.entry-title a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.entry-title a:hover {
  color: var(--primary-dark);
}

@media (min-width: 768px) {
  .entry-title {
    font-size: 20px;
  }
}

.entry-content {
  padding: 20px;
  flex-grow: 1;
  overflow: hidden;
}

.entry-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 15px 0;
}

@media (min-width: 768px) {
  .entry-content p {
    font-size: 15px;
  }
}

.entry-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--border-color);
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.cat-links,
.tags-links,
.comments-link,
.edit-link {
  display: inline-block;
}

.cat-links a,
.tags-links a,
.comments-link a,
.edit-link a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.cat-links a:hover,
.tags-links a:hover,
.comments-link a:hover,
.edit-link a:hover {
  color: var(--primary-dark);
}

/* ============================================
   PAGINATION STYLES
   ============================================ */
.posts-pagination,
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.posts-pagination a,
.posts-pagination span,
.pagination a,
.pagination span {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.posts-pagination a:hover,
.pagination a:hover {
  background-color: var(--primary-color);
  color: #000;
  border-color: var(--primary-color);
}

.posts-pagination .current,
.pagination .current {
  background-color: var(--primary-color);
  color: #000;
  border-color: var(--primary-color);
}

/* ============================================
   SAN1GO FINAL CTA SECTION STYLES
   ============================================ */
.final-cta-section {
  padding: 60px 20px;
  background-color: #0a0e14;
}

@media (min-width: 768px) {
  .final-cta-section {
    padding: 80px 40px;
  }
}

@media (min-width: 1024px) {
.final-cta-section {
  padding: 60px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  margin-bottom: 30px;
}
}

.final-cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.final-cta-card {
  background-color: rgba(26, 31, 46, 0.5);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .final-cta-card {
    padding: 50px 40px;
  }
}

@media (min-width: 1024px) {
  .final-cta-card {
    padding: 60px 40px;
  }
}

.final-cta-card .section-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .final-cta-card .section-title {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .final-cta-card .section-title {
    font-size: 42px;
  }
}

.final-cta-card .section-content {
  font-size: 16px;
  color: #a0a0a0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .final-cta-card .section-content {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.contact-container {
  max-width: 800px; /* Increased from 500px to make it look more "full page" */
  margin: 0 auto;
  text-align: left;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .contact-form label {
    font-size: 14px;
  }
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="url"] {
  width: 100%;
  background-color: #181e25;
  border: 1px solid rgba(41, 50, 56, 0.65);
  border-radius: 8px;
  padding: 12px 16px;
  color: #f8fbff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="url"] {
    font-size: 16px;
    padding: 14px 18px;
  }
}

.contact-form input:focus {
  border-color: #10b981;
}

.requirements-box {
  background-color: rgba(10, 14, 20, 0.6);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.requirements-box p {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .requirements-box p {
    font-size: 14px;
  }
}

.requirements-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-box li {
  font-size: 13px;
  color: #a0a0a0;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

@media (min-width: 768px) {
  .requirements-box li {
    font-size: 14px;
  }
}

.requirements-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #10b981;
}

.disclaimer-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.disclaimer-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: #10b981;
  flex-shrink: 0;
}

.disclaimer-group label {
  font-size: 12px;
  color: #a0a0a0;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .disclaimer-group label {
    font-size: 13px;
  }
}

.btn-apply-now {
  width: 100%;
  background-color: #10b981;
  color: #000000;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .btn-apply-now {
    padding: 16px 20px;
    font-size: 16px;
  }
}

.btn-apply-now:hover {
  background-color: #059669;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  padding: 100px 20px 60px;
  text-align: center;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 120px 40px 80px;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 160px 20px 80px;
  }
}

.hero-content h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 48px;
  }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background-color: #111;
  padding: 40px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .stats-section {
    padding: 60px 40px;
  }
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 40px;
  }
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 5px;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 14px;
  }
}

/* ============================================
   GENERIC SECTION STYLES
   ============================================ */
.section {
  padding: 40px 15px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 30px;
  box-sizing: border-box;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
}

@media (min-width: 768px) {
.section {
  padding: 60px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  margin-bottom: 30px;
}
}

@media (min-width: 1024px) {
  .section {
    padding: 80px 20px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
  }
}

.feature-card {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: rgba(26, 31, 46, 0.5);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .feature-card {
    padding: 25px;
  }
}

.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
  background-color: rgba(10, 14, 20, 0.8);
  border-top: 1px solid var(--border-color);
  padding: 40px 20px;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 50px 40px;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 60px 40px;
  }
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 12px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .footer-bottom {
    font-size: 13px;
    padding-top: 30px;
    margin-top: 30px;
  }
}

/* ============================================
   SOCIAL MEDIA ICONS & FOOTER ENHANCEMENTS
   ============================================ */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .social-links {
    gap: 20px;
  }
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2a3f4f;
  border: none;
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .social-links a {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .social-links a {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

.social-links a svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (min-width: 768px) {
  .social-links a svg {
    width: 35px;
    height: 35px;
  }
}

@media (min-width: 1024px) {
  .social-links a svg {
    width: 40px;
    height: 40px;
  }
}

.social-links a:hover {
  background-color: #3a5f6f;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.social-facebook:hover {
  background-color: #1877f2;
}

.social-whatsapp:hover {
  background-color: #25d366;
}

.social-linkedin:hover {
  background-color: #0a66c2;
}

.social-bing:hover {
  background-color: #00bcf2;
}

.social-twitter:hover {
  background-color: #1da1f2;
}

.social-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-section h3 {
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .footer-section h3 {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .footer-section h3 {
    font-size: 20px;
  }
}

.footer-section:nth-child(3) h3 {
  color: #ffc107;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-section:nth-child(3) h3::after {
  background-color: #ffc107;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .footer-section ul li a {
    font-size: 15px;
  }
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-section p {
    font-size: 15px;
  }
}

.contact-info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .contact-info-list li {
    font-size: 15px;
  }
}

.contact-info-list i {
  color: var(--primary-color);
  margin-top: 5px;
  flex-shrink: 0;
}

/* ============================================
   NO RESULTS PAGE
   ============================================ */
.no-results {
  text-align: center;
  padding: 40px 20px;
}

@media (min-width: 768px) {
  .no-results {
    padding: 60px 40px;
  }
}

.no-results .page-header {
  margin-bottom: 20px;
}

.no-results .page-content {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   SINGLE POST/PAGE STYLES
   ============================================ */
.single article,
.page article {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background-color: rgba(26, 31, 46, 0.5);
  padding: 20px;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .single article,
  .page article {
    padding: 40px;
  }
}

.single .entry-header,
.page .entry-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.single .entry-title,
.page .entry-title {
  font-size: 24px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .single .entry-title,
  .page .entry-title {
    font-size: 32px;
  }
}

.single .entry-content,
.page .entry-content {
  padding: 0;
  border: none;
}

.single .entry-content p,
.page .entry-content p {
  -webkit-line-clamp: unset;
  display: block;
  margin-bottom: 15px;
}

.single .entry-footer,
.page .entry-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: 20px;
}
